with steth as (
select
block_timestamp::date as date,
sum(amount_in) as stETH_volume
from ethereum.core.ez_dex_swaps
where token_in = lower('0x38b7Bf4eeCF3EB530b1529c9401FC37d2a71a912')
--and date >= current_date - 200
group by 1
)
select * from steth limit 100