PROTOCOL | TOTAL_REVENUE | TOTAL_FEE | |
---|---|---|---|
1 | Raydium | 7006778 | 58389840 |
2 | Solana Name Service | 1295928 | 1295928 |
3 | Solend | 422460 | 983133 |
4 | Lifinity V1 | 215276 | 1435157 |
5 | DLN | 67395 | 67395 |
Snehatop 5 protocol - Last 6 month copy
Updated 2024-02-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- forked from intensodefi / top 5 protocol - Last 6 month @ https://flipsidecrypto.xyz/intensodefi/q/aj9rHkrijAgy/top-5-protocol---last-6-month
select protocol, sum(revenue) as total_revenue,
sum(fees) as total_fee
from external.defillama.fact_protocol_fees_revenue
where chain like 'solana'
and date_trunc('month',date) >date_trunc('month',CURRENT_TIMESTAMP) - interval '6 months'
and protocol !='Solana'
group by 1
order by 2 desc
limit 5
Last run: over 1 year ago
5
146B
3s