PLATFORM | SWAP_COUNT | UNIQUE_SWAPPERS | TOTAL_VOLUME_USD | |
---|---|---|---|---|
1 | jupiter swap v6 | 166216 | 23060 | 1155613089.72 |
2 | raydium concentrated liquidity | 734657 | 94025 | 291553167.6 |
3 | meteora pools program | 117864 | 21057 | 56224909.03 |
4 | Raydium Liquidity Pool V4 | 219880 | 29823 | 27753502.855 |
5 | meteora dlmm pools program | 41295 | 7599 | 16866434.665 |
6 | orca whirlpool program | 12081 | 2343 | 3274404.215 |
7 | Saber Stable Swap | 146 | 2 | 106562.645 |
sagharkariplatform
Updated 2025-04-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
platform,
COUNT(DISTINCT tx_id) AS swap_count,
COUNT(DISTINCT swapper) AS unique_swappers,
SUM((swap_from_amount_usd + swap_to_amount_usd) / 2) AS total_volume_usd
FROM solana.marinade.ez_swaps
WHERE succeeded = TRUE
AND block_timestamp >= DATE '2025-01-01'
AND (
swap_from_mint = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So' OR
swap_to_mint = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
)
GROUP BY platform
ORDER BY total_volume_usd DESC
limit 7;
Last run: 21 days ago
7
359B
4s