select
block_timestamp::date as day
,symbol
,sum(amount_usd) as amount_usd
,count(*) as tx_count
from ethereum.core.ez_token_transfers
where block_timestamp >= CURRENT_DATE - 60
and origin_to_address = '0xabea9132b05a70803a4e85094fd0e1800777fbef'
and symbol is not null
group by 1 , 2
order by 1