An open API service indexing awesome lists of open source software.

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

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
```