Getting Real Time Alerts on New ERC20 Deployments

Hi, I was wondering if anyone here knew the best way to get real time alerts on new Deployments for ERC20 Tokens and other data points like adding liquidity to UniSwap.

Hi @nathes97

I am not sure if there is an easy way track erc20 deployments. However it is possible to tract the token when it is added to uniswap pools using the streams API.
You can use streams API to monitor the pairCreated event from 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f contract.
https://etherscan.io/address/0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f#events

If you are new to streams have a look at this tutorial to know you to use streams to monitor contract events.

To get the data about new erc20 tokens you will mostly have to process all the transactions in a block data and look for contract creation data.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.