Flipside TeamFee (protocol)
Updated 2024-09-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- forked from MLDZMN / Fee (protocol) @ https://flipsidecrypto.xyz/MLDZMN/q/998n5GWEge2B/fee-protocol
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}}'
and date < current_date
group by 1
order by 1 desc
;
QueryRunArchived: QueryRun has been archived