PLATFORM | LABEL_TYPE | POOL_VALUE_USD | TVL_CHAR | |
---|---|---|---|---|
1 | AstroLend | Defi | 16943445.1984315 | 16,943,445 |
2 | Orca | Dex | 11953289.1033843 | 11,953,289 |
3 | Save | Defi | 9485145.69387867 | 9,485,146 |
4 | Invariant | Dex | 4235994.42205493 | 4,235,994 |
5 | Lifinity | Dex | 612934.933035905 | 612,935 |
6 | SolarDex | Dex | 263391.2115 | 263,391 |
mmdrezaTVL by Platform copy
Updated 2025-03-30
99
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 flyingfish / TVL by Platform @ https://flipsidecrypto.xyz/flyingfish/q/Rcbg1lYY7Klx/tvl-by-platform
with dex_liq as (
select
'Orca' as platform
, 'Dex' as label_type
, *
from $query('ffdf4c8b-c768-442a-a8a3-b7e86e6d9b7a')
union all
select
'Lifinity' as platform
, 'Dex' as label_type
, *
from $query('17eba8cd-bb89-4ae3-a400-6d955be86250')
union all
select
'Invariant' as platform
, 'Dex' as label_type
, *
from $query('7ebc9c05-e76d-421a-b77a-f90b4b1fe4d4')
union all
select
'Save' as platform
, 'Defi' as label_type
, sum(amount_usd) as pool_value_usd
from $query('c19068fc-46ba-4ed5-bc4c-7391abccc6bb')
union all
select
Last run: 27 days ago
6
322B
3s