select
SYMBOL_Out as token,
sum(AMOUNT_IN) as amount,
sum(AMOUNT_IN_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_IN='rETH'
group by 1
order by 2 desc limit 10