select
block_timestamp::date as date,
count(distinct(depositor_address)) as users,
sum(withdrawn_tokens) as total_eth
from ethereum.aave.ez_withdraws
where symbol = 'WETH'
and block_timestamp >= '2022-09-01'
and block_timestamp < '2022-09-15'
group by date