Data Nexus
Data Nexus
> @azf20 I like that, we'd just need to make sure it runs before any other triggers in the first block, rather than after as would be the default for...
We're running into a similar issue with Silo where we want to be able to aggregate a users Collateral vs their Debt to get a liquidation percentage (if > 90%...
When running this query, I get a successful result. Can this issue be closed?
I'll inspect this one further. I am noticing that the totalSupply is incorrect on a pool that I'm testing on the hosted service, however the decentralized network subgraph seems to...
@PaladinDotEth with the resync, this should be resolved. Can you double check that you're now receiving the expected values?
Interesting, I assumed you were interested in the pool's total supply. Honestly I wouldn't use the token.totalSupply since this is fetched at the time the token is first utilized in...
We could add something like `store.remove("Tick", tick.id)` to remove the old ticks. This can also lead to a trimmer database tables (and faster queries) if indexers are pruning really old...
Currently it is suggested to use this subgraph: https://thegraph.com/hosted-service/subgraph/ianlapham/uniswap-v2-dev Also, a version on the decentralized network can be found here: https://thegraph.com/explorer/subgraphs/A3Np3RQbaBA6oKJgiwDJeo5T3zrYfGHPWFYayMwtNDum?v=1&view=Playground&chain=arbitrum-one
blocks is not an entity in the subgraph. If you want to know what block the subgraph has ingested up to, you can run this query: ```graphql query { _meta{block{number}}...