ML6Top 10 ERC20 Tokens deposited in past 2 months (USD)
    Updated 2022-06-17
    select sum(raw_amount/pow(10,decimals)) as volume ,contract_address,symbol
    from
    ethereum.core.ez_token_transfers
    where
    to_address='0xabea9132b05a70803a4e85094fd0e1800777fbef'
    and to_date(block_timestamp) > getdate() - interval '60 days' and amount is not null
    group by 2,3
    order by 1 DESC
    limit 10
    Run a query to Download Data