abbasian34MakerDao
    Updated 2022-09-05
    select date_trunc ('day', block_timestamp) as Day, symbol, count(DISTINCT tx_hash) as transaction,
    sum(AMOUNT_WITHDRAWN) as "volume withdraw",
    count(DISTINCT WITHDRAWER) as WITHDRAWER
    from ethereum.maker.ez_withdrawals
    where symbol = 'WETH'
    and TX_STATUS = 'SUCCESS'
    group by Day, Symbol
    Run a query to Download Data