aureasarsanedesaptos in 2024 3
    Updated 3 days ago
    WITH swaps_data AS (
    SELECT
    DATE_TRUNC('month', block_timestamp) AS month,
    platform,
    COUNT(DISTINCT tx_hash) AS total_swaps,
    SUM(amount_out_usd) AS volume_traded_usd
    FROM aptos.defi.ez_dex_swaps
    where date_trunc('day',block_timestamp) between '2024-01-01' and '2024-12-31' and amount_out_usd is not null and amount_out_usd<1e6
    GROUP BY 1, 2
    )
    SELECT
    month,
    platform,
    total_swaps,
    volume_traded_usd,
    RANK() OVER (PARTITION BY month ORDER BY volume_traded_usd DESC) AS rank_by_volume
    FROM swaps_data
    order by 1 desc


    Last run: 3 days ago
    MONTH
    PLATFORM
    TOTAL_SWAPS
    VOLUME_TRADED_USD
    RANK_BY_VOLUME
    1
    2024-12-01 00:00:00.000thala669331404240399.7374041
    2
    2024-12-01 00:00:00.000hippo565467725713.710581366
    3
    2024-12-01 00:00:00.000liquidswap1487749361714593.0044672
    4
    2024-12-01 00:00:00.000auxexchange176353199858.4655967858
    5
    2024-12-01 00:00:00.000cetus146042204115.9953308567
    6
    2024-12-01 00:00:00.000batswap2998746764.10145483210
    7
    2024-12-01 00:00:00.000animeswap12903082444.0150236629
    8
    2024-12-01 00:00:00.000pancake585245137729970.4740013
    9
    2024-12-01 00:00:00.000sushi22835494192289.09951015
    10
    2024-12-01 00:00:00.000cellana754012134007557.0415684
    11
    2024-11-01 00:00:00.000batswap3689253287.6819589710
    12
    2024-11-01 00:00:00.000thala814488419870849.8658711
    13
    2024-11-01 00:00:00.000pancake649215158282075.4688783
    14
    2024-11-01 00:00:00.000cellana743432107208865.1245644
    15
    2024-11-01 00:00:00.000auxexchange239115205495.6543659018
    16
    2024-11-01 00:00:00.000liquidswap921147264733068.7739892
    17
    2024-11-01 00:00:00.000animeswap15901889976.2535126949
    18
    2024-11-01 00:00:00.000cetus169893209176.0723405167
    19
    2024-11-01 00:00:00.000sushi23053078245952.81693015
    20
    2024-11-01 00:00:00.000hippo545308797005.813594756
    ...
    119
    7KB
    18s