0-MIDuser dis poly 2
    Updated 2023-09-14
    with tab1 as (
    select
    FROM_ADDRESS
    ,count(distinct TX_HASH) as "WITHDRAW COUNT"
    from polygon.core.ez_token_transfers
    where ORIGIN_TO_ADDRESS='0x88dcdc47d2f83a99cf0000fdf667a468bb958a78'
    and ORIGIN_FUNCTION_SIGNATURE in ('0xa5977fbb')
    group by 1)
    select "WITHDRAW COUNT"
    ,count(distinct FROM_ADDRESS) as withdrawers
    from tab1
    group by 1






    Run a query to Download Data