We are developing an app that uses your subgraph to get the complete list of token holders. To avoid having to request the whole subgraph every few weeks, we added the lastUpdateAt field, which lets us do a request having a where { lastUpdateAt_gte: $max_lastUpdateAt }
This field is initially zero, and is set every time the balance/totalSupply changes
The subgraph is currently deployed and running on TheGraph
We are developing an app that uses your subgraph to get the complete list of token holders. To avoid having to request the whole subgraph every few weeks, we added the
lastUpdateAt
field, which lets us do a request having awhere { lastUpdateAt_gte: $max_lastUpdateAt }
This field is initially zero, and is set every time the balance/totalSupply changes
The subgraph is currently deployed and running on TheGraph
Related issue: grasia/dao-analyzer#38