select date_trunc('day', block_timestamp) as dt, platform,
count(distinct tx_hash) as num_txs, sum(amount_out) as amount_deposited,
count(origin_from_address) as users
from ethereum.core.ez_dex_swaps
where symbol_out = 'stETH' and dt >= '2022-01-01'
group by 1, 2