select
date_trunc('day',block_timestamp) as days,
symbol,
count(distinct tx_hash) as number_swap,
sum(amount_usd) as total_amount
from ethereum.core.ez_token_transfers
where to_address = lower('0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1')
and symbol is not null
group by 1,2