Afonso_Diaz2023-08-22 05:51 PM
    Updated 2023-08-22
    select
    date_trunc('month', date)::date as month,
    avg(tvl_usd) as average_tvl_usd
    from external.defillama.fact_chain_tvl
    group by 1
    having month is not null
    order by 1
    Run a query to Download Data