w3hc / gov-ui

A UI for Gov
https://gov-ui.netlify.app/
GNU General Public License v3.0
2 stars 2 forks source link

Add subgraph #76

Closed julienbrg closed 1 month ago

julienbrg commented 1 month ago

https://github.com/w3hc/gov-subgraph

bertux commented 1 month ago

Build completed: QmQ8dJap9ZuXUuj9ZvesxbVHfkUcBZuTrztD7bBvQhBunC

Deployed to https://thegraph.com/studio/subgraph/gov-subgraph

Subgraph endpoints: Queries (HTTP): https://api.studio.thegraph.com/query/52496/gov-subgraph/v0.0.1

bertux commented 1 month ago

documented at https://docs.chainstack.com/docs/subgraphs-tutorial-fetching-subgraph-data-using-javascript#using-the-urql-library

bertux commented 1 month ago

DEVELOPMENT QUERY URL - LATEST VERSION : https://api.studio.thegraph.com/query/52496/gov-subgraph/version/latest

query proposalsCreated {
  proposalCreateds {
    proposalId
    blockNumber
    calldatas
    description
    voteEnd
    voteStart
    transactionHash
  }
}
bertux commented 1 month ago

subgraph query example at https://github.com/bertux/subgraph-query/blob/main/index.ts

bertux commented 1 month ago

Query whith chronological ordering: { proposalCreateds(orderDirection: desc, orderBy: voteEnd) { proposalId blockNumber calldatas description voteEnd voteStart transactionHash } }