0-MIDTop 20 Depositors By $Volume With Other Details
    Updated 2023-09-14
    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 polygon.core.ez_token_transfers
    where ORIGIN_TO_ADDRESS='0x88dcdc47d2f83a99cf0000fdf667a468bb958a78'
    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