datavortexUSDT Contribution Percentage
    Updated 10 days ago

    WITH platform_volumes AS (
    SELECT
    platform,
    SUM(amount_in_usd) AS total_volume,
    SUM(CASE
    WHEN token_in = '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT'
    OR token_out = '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT'
    THEN amount_in_usd
    ELSE 0
    END) AS usdt_volume
    FROM
    aptos.defi.ez_dex_swaps
    WHERE
    block_timestamp BETWEEN '2024-01-01' AND '2024-12-31'
    GROUP BY
    platform
    )
    SELECT
    platform,
    usdt_volume,
    total_volume,
    ROUND((usdt_volume / NULLIF(total_volume, 0)) * 100, 2) AS token_contribution_percentage
    FROM
    platform_volumes
    ORDER BY
    token_contribution_percentage DESC;
    Last run: 10 days ago
    PLATFORM
    USDT_VOLUME
    TOTAL_VOLUME
    TOKEN_CONTRIBUTION_PERCENTAGE
    1
    sushi169695151.488943403210981.83899942.09
    2
    liquidswap463504651.528412053115681.2918822.58
    3
    cetus247795.8277743561493609.7147492216.59
    4
    hippo15838713.8137344148732259.69220610.65
    5
    animeswap52173.899783858683015.3432489877.64
    6
    thala101654785.329322682439239.577463.79
    7
    pancake23280439.6648447786760768.3823432.96
    8
    auxexchange11640.8134493222176393.543993380.53
    9
    batswap18453.4811229836277566.621127660.29
    10
    cellana117657203.2564841396751576106.80.01
    10
    510B
    4s