select 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
order by 2 desc