PLATFORM | TOTAL_TRADES | TOTAL_TRADERS | TOTAL_TRADED_VOLUME | |
---|---|---|---|---|
1 | cellana | 6452343 | 337217 | 3237767145.29162 |
2 | liquidswap | 11847335 | 836773 | 2220168441.49083 |
3 | thala | 5393595 | 461123 | 2116216611.62373 |
4 | pancake | 5906595 | 386246 | 938767552.483162 |
5 | sushi | 1833800 | 84169 | 523369353.872395 |
6 | hippo | 980762 | 55889 | 140791804.568689 |
7 | batswap | 182365 | 14176 | 4601430.20567322 |
8 | auxexchange | 1002863 | 68920 | 2346553.04028015 |
9 | cetus | 849945 | 175 | 1747209.96192198 |
10 | animeswap | 792367 | 55642 | 780817.405518067 |
feyikemiTop Platforms by Total Traded Volume
Updated 2025-03-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
Platform,
COUNT(DISTINCT tx_hash) AS Total_Trades,
COUNT(DISTINCT swapper) AS Total_Traders,
SUM(COALESCE(amount_in_usd, amount_out_usd)) AS Total_Traded_Volume
FROM
aptos.defi.ez_dex_swaps
WHERE block_timestamp::DATE >= '{{Start_Date}}'
AND amount_in_usd < 1e6
AND amount_out_usd < 1e6
GROUP BY 1
ORDER BY Total_Traded_Volume DESC
LIMIT 10
Last run: 2 months ago
10
431B
16s