NuveveCryptoArchivedTotal Liquidity
    Updated 2023-03-26
    select
    date_trunc('week', block_hour) as week,
    avg(total_liquidity_usd) as average_total_liquidity
    from aave.market_stats
    where block_hour >= current_date - 365
    group by 1
    order by 1 desc

    Run a query to Download Data