select
trunc(block_timestamp,'month') as months,
symbol_out as symbol,
sum(amount_out) as volume_swapped,
count(distinct tx_hash) as swaps
from ethereum.core.ez_dex_swaps
where symbol_out in ('aETH','rETH','stETH') and amount_out<10000
group by 1,2
order by 1 asc