MLDZMNTop ERC20 tokens deposited (USD volume)
    Updated 2022-06-17
    select
    SYMBOL,
    sum(AMOUNT_USD) as volume_USD,
    count(distinct tx_hash) as count_deposit,
    count(distinct FROM_ADDRESS) as unique_wallets

    from ethereum.core.ez_token_transfers
    where TO_ADDRESS='0xabea9132b05a70803a4e85094fd0e1800777fbef'
    and BLOCK_TIMESTAMP>=CURRENT_DATE-60
    and amount>0
    group by 1 having VOLUME_USD is not null
    order by 2 desc
    Run a query to Download Data