select
count (distinct tx_hash) as swaps_count,
count (distinct origin_from_address) as swappers_count,
sum (amount_in_usd) as volume_usd
from ethereum.core.ez_dex_swaps
where token_in = '0xae78736cd615f374d3085123a210448e74fc6393' --rETH
order by 1 asc