alessio9567IXS Swap Volume by Pool
    Updated 2025-06-05
    with ixs_swaps AS (
    SELECT
    DATE_TRUNC('week', block_timestamp) AS week,
    'ethereum' AS chain,
    platform AS dex,
    contract_address as pool_address,
    CONCAT(symbol_in, '-', symbol_out) AS pool_pair,
    SUM(COALESCE(amount_in_usd, amount_out_usd)) AS weekly_volume_usd
    FROM
    ethereum.defi.ez_dex_swaps
    WHERE
    (
    symbol_in = 'IXS'
    OR symbol_out = 'IXS'
    )
    AND amount_in_usd IS NOT NULL
    AND amount_out_usd IS NOT NULL
    and block_timestamp BETWEEN '{{start_day}}'
    AND '{{end_day}}'
    GROUP BY
    week,
    chain,
    dex,
    pool_address,
    pool_pair
    UNION
    all
    SELECT
    DATE_TRUNC('week', block_timestamp) AS week,
    'polygon' AS chain,
    platform AS dex,
    contract_address as pool_address,
    CONCAT(symbol_in, '-', symbol_out) AS pool_pair,
    SUM(COALESCE(amount_in_usd, amount_out_usd)) AS weekly_volume_usd
    FROM
    polygon.defi.ez_dex_swaps
    Last run: 25 days agoAuto-refreshes every 24 hours
    WEEK
    POOL_PAIR
    SUM(WEEKLY_VOLUME_USD)
    1
    2024-08-12 00:00:00.000IXS-WETH_ethereum1079634.19
    2
    2024-05-06 00:00:00.000other147463.58
    3
    2024-04-29 00:00:00.000IXS-WETH_ethereum1061859.34
    4
    2025-01-20 00:00:00.000other101079.06
    5
    2025-03-17 00:00:00.000other22218.07
    6
    2024-09-02 00:00:00.000other25.69
    7
    2025-03-31 00:00:00.000other15882.51
    8
    2025-05-05 00:00:00.000IXS-WETH_base45489.2
    9
    2024-10-28 00:00:00.000IXS-WETH_ethereum1506607.71
    10
    2025-01-13 00:00:00.000IXS-WETH_base142281.03
    11
    2025-06-02 00:00:00.000other10735.11
    12
    2024-11-11 00:00:00.000IXS-WETH_base336437.6
    13
    2024-06-10 00:00:00.000IXS-WMATIC_polygon116889.89
    14
    2024-12-30 00:00:00.000other44662.79
    15
    2024-07-15 00:00:00.000IXS-WETH_ethereum2190419.04
    16
    2024-03-04 00:00:00.000other379138.26
    17
    2024-11-04 00:00:00.000IXS-WMATIC_polygon91617.75
    18
    2024-01-08 00:00:00.000IXS-WMATIC_polygon200518.06
    19
    2025-03-03 00:00:00.000other25514.76
    20
    2025-04-28 00:00:00.000IXS-WMATIC_polygon12206.33
    ...
    254
    13KB
    231s