0.1.0 • Published 1 year ago

prallel-moonbeam-distribution-subql v0.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Moonbeam Distribution Subql

Based on SubQuery project defines for collect the crowdloan data from Heiko or Parallel Substrate blockchain

Development

Start project in Docker

docker-compose pull && docker-compose up

Query data

open your browser and head to http://localhost:3000.

Finally, you should see a GraphQL playground is showing in the explorer and the schemas that ready to query.

  query {
      claimTxes (first: 5) {
          nodes {
              id
              from
              to
              amount
          }
      }
      distributionTxes (first: 5) {
          nodes {
              id
              from
              to
              amount
          }
      }
  }