PROJECT | total swaps | total pools | total traders | total swap volume (TON) | total swap volume (USD) | avg swap volume (USD) | avg swaps per trader | avg swap volume per pool (USD) | |
---|---|---|---|---|---|---|---|---|---|
1 | ston.fi | 24157573 | 22381 | 4994078 | 1075604090 | 5845086829 | 241.956708 | 4.837244 | 261162.898396 |
2 | dedust | 11394803 | 34215 | 1254170 | 849332235 | 4824152730 | 423.364294 | 9.085533 | 140995.257343 |
3 | ton.fun | 4782472 | 396711 | 618257 | 65701659 | 296742429 | 62.047918 | 7.735411 | 748.006556 |
4 | tonco | 75142 | 100 | 5774 | 42610668 | 162363165 | 2160.751178 | 13.013855 | 1623631.65 |
5 | gaspump | 764646 | 25585 | 43268 | 7381701 | 43189046 | 56.482406 | 17.672321 | 1688.061208 |
6 | megaton | 8037 | 28 | 610 | 635536 | 2752263 | 342.449048 | 13.17541 | 98295.107143 |
datavortexvs other dex
Updated 2025-04-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT
project,
COUNT(DISTINCT tx_hash) AS "total swaps",
COUNT(DISTINCT pool_address) AS "total pools",
COUNT(DISTINCT trader_address) AS "total traders",
SUM(volume_ton) AS "total swap volume (TON)",
SUM(volume_usd) AS "total swap volume (USD)",
AVG(volume_usd) AS "avg swap volume (USD)",
COUNT(DISTINCT tx_hash) * 1.0 / NULLIF(COUNT(DISTINCT trader_address), 0) AS "avg swaps per trader",
SUM(volume_usd) / NULLIF(COUNT(DISTINCT pool_address), 0) AS "avg swap volume per pool (USD)"
FROM
ton.defi.fact_dex_trades
WHERE
volume_usd IS NOT NULL
GROUP BY
project
ORDER BY
"total swap volume (USD)" DESC;
Last run: about 2 months ago
6
493B
6s