You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not implemented right now, under graphNetwork.totalClaimableTokens . However, it could be roughly implemented by doing:
when a pool gets claimed for the first time, we know all those tokens are claimable, thus we add that total to the total claimable
When an indexer claims, then we subtract that small amount
When the final indexer claims, we also remove the burnt amount of tokens from that pool. Unfortunately the burnt amount will always be included in the total amount, there is no easy way to avoid this. At least it gets cleared once the final person claims for that pool
The text was updated successfully, but these errors were encountered:
If we do this, we could also track the amount burnt from rebate pools, which is currently not tracked on the subgraph.
I wanted to do this for a while, since it's one of the missing important values missing.
As @davekaj said, it would require us to copy the logic from the contracts (track amount of tokens claimable, amount of indexers that will be claiming, and when the last one claims, count the rest as burnt tokens).
This is not implemented right now, under
graphNetwork.totalClaimableTokens
. However, it could be roughly implemented by doing:The text was updated successfully, but these errors were encountered: