Skip to content

Subsquid indexer to determine how much each wallet deposited for the Entangle seed

Notifications You must be signed in to change notification settings

kinsyudev/entangle-seed-deposits

Repository files navigation

Prerequisites

Running

Navigate to the example folder.

npm ci
sqd build
# start the database
sqd up
# starts a long-running ETL and blocks the terminal
sqd process

# starts the GraphQL API server at localhost:4350/graphql
sqd serve

Verify

In order to verify the data, simply run the squid, and once it's done processing. In the GraphQL explorer, use the following query:

query Deposits {
  accounts(orderBy: totalDeposits_DESC) {
    id
    totalDeposits
    deposits {
      amount
      id
      txHash
    }
  }
}

It'll match exactly with data/all-deposits.json

Final data

All the final data can be found in the data folder.

About

Subsquid indexer to determine how much each wallet deposited for the Entangle seed

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published