ERC20 Balances

Historical ERC20 balances of all addresses at every block height.

ERC20 balances table contains the ERC20 balances of all addresses, at every block height. Use this table to easily plot the change in the balance of ERC20 tokens for an address or a group of addresses over time.

Sample Query

Getting the ERC20 Balances of USDC in Binance Hot Wallet.

select 
date(block_timestamp) as date,
median(balance) as usdc_balance
from polygon.assets.erc20_balances 
where address = '0xe7804c37c13166ff0b37f5ae0bb07a3aebb6e245' -- Binance Hot Wallet
and token_address ='0x2791bca1f2de4661ed88a30c99a7a9449aa84174' -- USDC
group by 1
order by 1 desc

Table Columns

Last updated