datavortextotal swap fees
    Updated 2025-04-23
    WITH dedust_swaps AS (
    SELECT DISTINCT
    tx_hash
    FROM
    ton.defi.fact_dex_trades
    WHERE
    project = 'dedust'
    ),
    matched_fees AS (
    SELECT
    ds.tx_hash,
    t.BLOCK_TIMESTAMP,
    t.total_fees / 1e9 AS fee_in_ton
    FROM
    dedust_swaps ds
    INNER JOIN
    ton.core.fact_transactions t
    ON
    ds.tx_hash = t.tx_hash
    WHERE
    t.total_fees IS NOT NULL
    ),
    weekly_fees AS (
    SELECT
    DATE_TRUNC('week', BLOCK_TIMESTAMP) AS weekly,
    SUM(fee_in_ton) AS weekly_total_fees_ton
    FROM
    matched_fees
    GROUP BY
    DATE_TRUNC('week', BLOCK_TIMESTAMP)
    )
    SELECT
    weekly AS "weekly",
    weekly_total_fees_ton AS "weekly total fees (TON)",
    SUM(weekly_total_fees_ton) OVER (ORDER BY weekly) AS "cumulative fees (TON)"
    FROM
    Last run: about 2 months ago
    weekly
    weekly total fees (TON)
    cumulative fees (TON)
    1
    2025-04-21 00:00:00.000183.19179116945.09854
    2
    2025-04-14 00:00:00.000476.616634116761.90675
    3
    2025-04-07 00:00:00.000689.811254116285.290116
    4
    2025-03-31 00:00:00.000581.701952115595.478862
    5
    2025-03-24 00:00:00.000550.722474115013.77691
    6
    2025-03-17 00:00:00.000504.83257114463.054436
    7
    2025-03-10 00:00:00.000649.672914113958.221866
    8
    2025-03-03 00:00:00.000528.682661113308.548952
    9
    2025-02-24 00:00:00.000556.668956112779.866291
    10
    2025-02-17 00:00:00.000503.737379112223.197335
    11
    2025-02-10 00:00:00.000661.824807111719.459956
    12
    2025-02-03 00:00:00.0001004.123443111057.635149
    13
    2025-01-27 00:00:00.0001087.906151110053.511706
    14
    2025-01-20 00:00:00.0002037.12434108965.605555
    15
    2025-01-13 00:00:00.0001629.197232106928.481215
    16
    2025-01-06 00:00:00.0001385.966314105299.283983
    17
    2024-12-30 00:00:00.000801.463502103913.317669
    18
    2024-12-23 00:00:00.0001047.881705103111.854167
    19
    2024-12-16 00:00:00.0001375.018971102063.972462
    20
    2024-12-09 00:00:00.0001523.5173100688.953491
    69
    4KB
    27s