feyikemiTop Platforms by Total Traded Volume
    Updated 2025-03-25
    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
    PLATFORM
    TOTAL_TRADES
    TOTAL_TRADERS
    TOTAL_TRADED_VOLUME
    1
    cellana64523433372173237767145.29162
    2
    liquidswap118473358367732220168441.49083
    3
    thala53935954611232116216611.62373
    4
    pancake5906595386246938767552.483162
    5
    sushi183380084169523369353.872395
    6
    hippo98076255889140791804.568689
    7
    batswap182365141764601430.20567322
    8
    auxexchange1002863689202346553.04028015
    9
    cetus8499451751747209.96192198
    10
    animeswap79236755642780817.405518067
    10
    431B
    16s