NuveveCryptoArchivedWithdrawn Share - 30d
    Updated 2023-06-06
    select
    symbol,
    sum(withdrawn_usd) as withdrawn_usd
    from ethereum.aave.ez_withdraws
    where block_timestamp >= current_date - 30
    and withdrawn_usd is not null
    group by symbol

    Run a query to Download Data