select
sum(amount) volume,
count(tx_hash),
count(distinct to_address),
symbol
from ethereum.core.ez_token_transfers
where contract_address in (lower('0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'),lower('0x6B175474E89094C44Da98b954EedeAC495271d0F'),lower('0xdac17f958d2ee523a2206206994597c13d831ec7'))
and from_address = lower('0x99c9fc46f92e8a1c0dec1b1747d010903e884be1')
group by symbol