0-MIDTop 20 Depositors By $Volume With Other Details
    Updated 2023-09-10
    select TO_ADDRESS as "👤 DEPOSITOR"
    ,sum(AMOUNT_USD) as "💸 VOLUME"
    ,count(distinct TX_HASH) as "🔗 BRIDGES"
    ,count(distinct BLOCK_TIMESTAMP::date) as "💎 ACTIVE DAYS"
    from avalanche.core.ez_token_transfers
    where ORIGIN_TO_ADDRESS='0xef3c714c9425a8f3697a9c969dc1af30ba82e5d4'
    and ORIGIN_FUNCTION_SIGNATURE in ('0xcdd1b25d')
    and AMOUNT_USD is not null
    group by 1
    order by 2 desc
    limit 20





    Run a query to Download Data