select symbol_out,
count (distinct tx_hash) as TX_Count,
count (distinct origin_from_address) as Users_Count,
sum (amount_in) as Volume,
avg (amount_in) as Average_Volume
from ethereum.core.ez_dex_swaps
where token_in in ('0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48')
and block_timestamp >= '2023-03-10 00:00:00.000' and block_timestamp <= '2023-03-11 23:50:00.000'
and symbol_out is not null
group by 1
order by Volume desc