Historical Chart for the Minting of any ERC20 token

I’m trying to find out if there is any tool out there that can provide me a chart where I can see the minting of any ERC20 token over time.

Thanks!

This could be created using BigQuery by checking for contract creations of contracts with the ERC20 Function Signatures.


Alternatively on eth.events: https://eth.events

1 Like

This is an open source token minting tracker you can rip code from, just inspect source and steal the JS or go to the github page via the github icon link :slight_smile:

https://0x1d00ffff.github.io/0xBTC-Stats/?page=stats&

Its made for a token that is literally MINED but could work for any events that are logged such as those for normal MINTING by a centralized token monarch of course. Usually ppl don’t build tools for that though because there is no reason to, for those projects.

This is something that I’m pretty sure could be accomplished using The Graph, cf. https://github.com/graphprotocol/graph-node/blob/876ecab190ca54c8b3ec8552334c2d358344caad/docs/getting-started.md. Probably better for ongoing, production-style uses cases than for a one-off query.