SWAP_PAIR | DISTINCT_SWAP_COUNT | DISTINCT_SWAPPER_COUNT | TOTAL_SWAP_VOLUME_USD | |
---|---|---|---|---|
1 | MSOL-SOL | 3871908 | 243851 | 1996377636.13 |
2 | MSOL-USDC | 1915444 | 74448 | 660620419.18 |
3 | MSOL-JITOSOL | 115261 | 29513 | 107094811.28 |
4 | MSOL-USDT | 425930 | 16249 | 102383096.45 |
5 | MSOL-BSOL | 103414 | 18820 | 73432857.12 |
6 | MSOL-MSOL | 576584 | 117 | 49605607.23 |
7 | MSOL-JUPSOL | 13436 | 2333 | 31587297.33 |
8 | MSOL-INF | 4463 | 1968 | 27413253.05 |
9 | MSOL-STSOL | 82635 | 2734 | 16983121.96 |
10 | MSOL-ETH | 36810 | 2473 | 14609045.4 |
datavortexmsol pairs
Updated 2025-02-18
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
›
⌄
WITH swap_data AS (
SELECT
swap_from_mint,
swap_to_mint,
swap_from_symbol,
swap_to_symbol,
tx_id,
swapper,
swap_from_amount_usd,
swap_to_amount_usd,
block_timestamp
FROM
solana.marinade.ez_swaps
WHERE
swap_from_mint = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
-- AND block_timestamp >= CURRENT_DATE - INTERVAL '1 MONTH'
)
SELECT
CONCAT(swap_from_symbol, '-', swap_to_symbol) AS swap_pair,
COUNT(DISTINCT tx_id) AS distinct_swap_count,
COUNT(DISTINCT swapper) AS distinct_swapper_count,
SUM(swap_from_amount_usd) AS total_swap_volume_usd
FROM
swap_data
where swap_pair IS NOT NULL
GROUP BY
swap_pair
ORDER BY
total_swap_volume_usd DESC
LIMIT 10
Last run: 3 months ago
10
390B
5s