Cypher-Laboratory / OpenOasis

EVM verifier for Alice's Ring ring signature.
3 stars 2 forks source link

Added a basic subgraph for tracking WETH and the associated addresses #9

Closed gaurangtorvekar closed 11 months ago

gaurangtorvekar commented 1 year ago

Addressing the issue https://github.com/Cypher-Laboratory/OpenOasis/issues/1

Deployed to https://thegraph.com/studio/subgraph/weth-alicering

Subgraph endpoints: Queries (HTTP): https://api.studio.thegraph.com/query/43387/weth-alicering/0.0.2

A simple query such as this should return the addresses and balances as required -

query GetAddressBalances { addressBalances(first: 100, where: { balance_gte: "10" }, orderBy: balance, orderDirection: desc) { id balance } }