select
symbol_out as "Token ($TON swapped to )",
sum(amount_in_usd) as "Volume (USD)"
from
bsc.core.ez_dex_swaps
where
token_in = lower ('0x76a797a59ba2c17726896976b7b3747bfd1d220f')
and amount_in_usd is not null
and symbol_out is not null
group by
1
order by
2 desc
limit
100