select
SYMBOL_in as token,
sum(AMOUNT_out) as amount,
sum(AMOUNT_out_USD) as usd_amount,
count(distinct tx_hash) as no_swaps,
count(distinct ORIGIN_FROM_ADDRESS) as no_swapper
from ethereum.core.ez_dex_swaps
where SYMBOL_out='stETH'
group by 1
order by 2 desc limit 10