boomer77aave $eth withdraw
    Updated 2022-09-13
    select date_trunc('day', block_timestamp) as dt, sum(withdrawn_tokens) as ETH_withdrew, sum(withdrawn_usd) as ETH_withdrew_usd, avg(token_price) as ETH_price,
    count(distinct depositor_address) as withdrawer_count, count(distinct tx_hash) as tx_count
    from ethereum.aave.ez_withdraws
    where symbol = 'WETH' and date(block_timestamp) >= '2022-07-01'
    group by 1
    Run a query to Download Data