PLATFORM | LP_TXS | LP_PROVIDERS | LP_AMOUNT_USD | |
---|---|---|---|---|
1 | raydium | 490416 | 11395 | 20754544221.737522 |
2 | orca | 1972362 | 68195 | 4131219334.9910116 |
3 | meteora | 89990 | 33069 | 155990421.13670656 |
0xHaM-dTop LP Platforms
Updated 2025-02-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
PLATFORM,
count(distinct TX_ID) as lp_txs,
count(distinct PROVIDER_ADDRESS) as lp_providers,
sum(TOKEN_A_AMOUNT_USD+TOKEN_B_AMOUNT_USD) as lp_amount_usd,
from solana.marinade.ez_liquidity_pool_actions
group by 1
having lp_amount_usd > 0
order by 4 desc
limit 10
Last run: about 1 month ago
3
130B
1s