MLDZMNFee (protocol)
    Updated 2024-03-21
    select
    date,
    sum(FEES) as "Daily protocol fees",
    sum("Daily protocol fees") over (order by date) as "Cumulative fee"
    from external.defillama.fact_protocol_fees_revenue
    where CHAIN = 'ethereum'
    and date>= '{{Start_date}}'
    group by 1
    order by 1 desc






    QueryRunArchived: QueryRun has been archived