CHAIN | PROTOCOL | VOL | |
---|---|---|---|
1 | stacks | velar protocol | 817841 |
2 | bsquared | glowswap | 13768777 |
3 | stacks | alex | 660153051 |
4 | stacks | allbridge classic | 21567696 |
5 | merlin | merlinswap | 1120840140 |
6 | bitlayer | macaron amm | 52577445 |
7 | merlin | bitgenie amm | 20798393 |
8 | bitlayer | macaron | 6016001 |
9 | stacks | bitflow | 62343116 |
10 | bob | uniswap v3 | 892328790 |
11 | bob | velodrome v1 | 5225971 |
mamad-5XN3k3BOB || Competitors DEX Volume
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
›
⌄
⌄
⌄
⌄
/*select
*
from external.defillama.fact_chain_tvl
where chain in ('Bitlayer','Stacks','Merlin','BSquared','BOB')
*/
select
chain,
protocol,
sum(VOLUME) as vol
from external.defillama.fact_dex_volume
where chain in ('bitlayer','stacks','merlin','bsquared','bob')
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)
from external.defillama.fact_stablecoin_supply
group by 1,2,3
*/
Last run: about 2 months ago
11
366B
3s