NuveveCryptoArchivedETH Liquidations (Aave) In The Last 5 Days
    Updated 2022-11-23
    select
    block_timestamp::date as date,
    sum(liquidated_amount_usd) as amount_usd
    from ethereum.aave.ez_liquidations
    where collateral_token_symbol = 'WETH'
    and block_timestamp >= current_date - 5
    group by date

    Run a query to Download Data