select block_timestamp::date as date,
count (distinct tx_hash) as Withdraw_Count,
count (distinct withdrawer) as Users_Count,
sum (amount_withdrawn) as ETH_Volume
from ethereum.maker.ez_withdrawals
where symbol in ('WETH','ETH','aETH','aWETH','cETH','cbETH','fETH','iETH','ibETH','icETH','pETH','rETH','sETH','stETH','stkETH','vETH','wstETH')
--and platform ilike 'uniswap%'
and block_timestamp >= CURRENT_DATE - 21
and tx_status = 'SUCCESS'
group by 1
order by 1