CHAIN | PROTOCOL | FEE | |
---|---|---|---|
1 | bsquared | KiloEx | 25429 |
2 | stacks | Allbridge Classic | 5340 |
3 | bob | Velodrome V1 | 3904 |
4 | bob | Swing | 16 |
5 | bsquared | Swing | 2 |
6 | bob | Velodrome V2 | 5790 |
7 | bob | Uniswap V3 | 305350 |
8 | bitlayer | Swing | 31 |
9 | merlin | BitGenie AMM | 63448 |
10 | merlin | Surf Protocol | 5392828 |
11 | bob | BOB | 760074 |
12 | bob | Gamma | 13871 |
13 | bitlayer | Bitlayer | 15597160 |
mamad-5XN3k3BOB || Competitors DEX Fees
Updated 2025-04-04
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
⌄
⌄
⌄
-- forked from BOB || Competitors DEX Volume (Daily) @ https://flipsidecrypto.xyz/studio/queries/68c56f20-0a89-47de-ad8f-6004a35acb87
/*select
*
from external.defillama.fact_chain_tvl
where chain in ('Bitlayer','Stacks','Merlin','BSquared','BOB')
*/
/*
select
date,
chain,
protocol,
VOLUME
from external.defillama.fact_dex_volume
where chain in ('bitlayer','stacks','merlin','bsquared','bob')
and date >= '2024-01-01'
--group by 1,2
*/
select
chain,
protocol,
sum(FEES) as fee
from external.defillama.fact_protocol_fees_revenue
where chain in ('bitlayer','stacks','merlin','bsquared','bob')
group by 1,2
/*
select
STABLECOIN,
SYMBOL,
CHAINS,
max_by(CIRCULATING,date) as circ,
max(date)
Last run: about 2 months ago
13
358B
3s