This project indexes all votes made on the Terra Developer Fund You can try out this project in the Explorer here https://explorer.subquery.network/subquery/subquery/juno-terra-developer-fund-votes
yarn
yarn codegen
yarn build
yarn start:docker
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
}
}
}