NuveveCryptoArchivedLiquity Monthly Revenue
    select
    date_trunc('month', date) as month,
    sum(revenue) as revenue
    from external.defillama.fact_protocol_fees_revenue
    where protocol = 'Liquity'
    group by month
    order by month asc

    Run a query to Download Data