zakkisyedzksync #2
    Updated 2022-06-16
    select
    date_trunc(day,block_timestamp) as date,
    symbol,
    count(symbol) as count,
    sum(amount_usd) as volume_usd
    from ethereum.core.ez_token_transfers
    where origin_to_address ='0xabea9132b05a70803a4e85094fd0e1800777fbef'
    and block_timestamp >= CURRENT_DATE - 60
    and amount_usd > 0
    and symbol is not null
    group by 1,2
    order by 1 desc
    Run a query to Download Data