stwiname / juno-terra-developer-fund-votes

This project indexes all votes made on the Terra Developer Fund

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SubQuery Starter Project for Juno

This is a starter project for Indexing Juno. It includes a simple blockhandler and an event handler. This project indexes all transfer events in juno-1.

Geting Started

1. Install dependencies

yarn

2. Generate types

yarn codegen

3. Build

yarn build

4. Run locally

yarn start:docker

5. Make a test query

Open up the query service in your local browser here http://localhost:3000/

query {
	votes(
    first: 5
    orderBy: BLOCK_HEIGHT_DESC
    # filter: {proposalID: {equalTo: "4"}}
  ) {
    nodes {
      id
      blockHeight
      voter
      vote
    }
  }
}

About

This project indexes all votes made on the Terra Developer Fund

License:MIT License


Languages

Language:TypeScript 100.0%