https://github.com/developer-dao/coordinape-playground
Playground for analyzing and adjusting our Coordinape circle data
https://github.com/developer-dao/coordinape-playground
Last synced: 12 months ago
JSON representation
Playground for analyzing and adjusting our Coordinape circle data
- Host: GitHub
- URL: https://github.com/developer-dao/coordinape-playground
- Owner: Developer-DAO
- Created: 2022-03-14T16:57:39.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-22T18:23:10.000Z (almost 4 years ago)
- Last Synced: 2025-01-13T15:17:30.839Z (about 1 year ago)
- Language: TypeScript
- Homepage: coordinape-playground.vercel.app
- Size: 261 KB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `coordinape-playground`
This is a [Next.js](https://nextjs.org/) project bootstrapped with
[`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the
result.
You can start editing the page by modifying `pages/index.tsx`. The page
auto-updates as you edit the file.
## CSV Results
This project includes `data.csv` which is the result of our Coordinape epoch in
a `csv` format.
### Generating a CSV results file
This project includes a `csv` script which fetches the Coordinape epoch results
and writes them to two files in a `csv` format:
- `users.csv`: all of the users in the epoch and their GIFT+CODE allocations
- `gifts.csv`: all of the token transactions in the epoch
```sh
# writes results to data.csv
COORDINAPE_TOKEN="Bearer 12345|ABCDEFGHIJKLMNOP" yarn csv
```