POOL_NAME | LP_TXS | LP_PROVIDERS | LP_AMOUNT_USD | |
---|---|---|---|---|
1 | SOL-MSOL | 390076 | 35801 | 21215155656.4655 |
2 | MSOL-USDC | 450499 | 13641 | 1664461044.0177267 |
3 | MSOL-USDT | 187178 | 3801 | 955158374.7205218 |
4 | MSOL-ETH | 113350 | 3374 | 284416203.1662418 |
5 | SOETH-MSOL | 22416 | 1024 | 142901321.0525151 |
6 | MSOL-SOL | 70107 | 23835 | 132967198.75284895 |
7 | MNDE-MSOL | 128046 | 14069 | 112777260.21510126 |
8 | ORCA-MSOL | 38973 | 10752 | 97635826.53997786 |
9 | BSOL-MSOL | 71042 | 553 | 79885545.84067285 |
10 | MSOL-JITOSOL | 37731 | 330 | 78446392.43504564 |
0xHaM-dTop LP Pools
Updated 2025-02-18
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
POOL_NAME,
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 2 months ago
10
442B
4s