gihankumarCross-Chain DEX Swap Gas Fee Analysis (7D)
    Updated 2025-04-25
    WITH chain_data AS (
    SELECT 'ethereum' AS chain, platform, swaps.tx_hash, tx.gas_price, tx.gas_used
    FROM ethereum.defi.ez_dex_swaps swaps
    JOIN ethereum.core.fact_transactions tx ON swaps.tx_hash = tx.tx_hash
    WHERE tx.block_timestamp >= CURRENT_DATE - INTERVAL '7 days'

    UNION ALL

    SELECT 'arbitrum' AS chain, platform, swaps.tx_hash, tx.gas_price_paid, tx.gas_used
    FROM arbitrum.defi.ez_dex_swaps swaps
    JOIN arbitrum.core.fact_transactions tx ON swaps.tx_hash = tx.tx_hash
    WHERE tx.block_timestamp >= CURRENT_DATE - INTERVAL '7 days'

    UNION ALL

    SELECT 'optimism' AS chain, platform, swaps.tx_hash, tx.gas_price, tx.gas_used
    FROM optimism.defi.ez_dex_swaps swaps
    JOIN optimism.core.fact_transactions tx ON swaps.tx_hash = tx.tx_hash
    WHERE tx.block_timestamp >= CURRENT_DATE - INTERVAL '7 days'

    UNION ALL

    SELECT 'base' AS chain, platform, swaps.tx_hash, tx.gas_price, tx.gas_used
    FROM base.defi.ez_dex_swaps swaps
    JOIN base.core.fact_transactions tx ON swaps.tx_hash = tx.tx_hash
    WHERE tx.block_timestamp >= CURRENT_DATE - INTERVAL '7 days'

    UNION ALL

    SELECT 'polygon' AS chain, platform, swaps.tx_hash, tx.gas_price, tx.gas_used
    FROM polygon.defi.ez_dex_swaps swaps
    JOIN polygon.core.fact_transactions tx ON swaps.tx_hash = tx.tx_hash
    WHERE tx.block_timestamp >= CURRENT_DATE - INTERVAL '7 days'
    )

    SELECT
    Last run: about 1 month ago
    CHAIN
    PLATFORM
    SWAP_COUNT
    AVG_GAS_FEE_GWEI
    AVG_GAS_FEE_ETH
    1
    polygonhashflow-v32000.2159132.15913427e-10
    2
    polygoncurve496910.1458821.45881618e-10
    3
    polygonkyberswap-v180620.1140011.14000934e-10
    4
    polygondodo-v138030.1137721.13772085e-10
    5
    polygonbalancer1066440.0848798.4879048e-11
    6
    polygonquickswap-v37641300.0762927.6292084e-11
    7
    polygondodo-v2229060.0747717.4770723e-11
    8
    polygonuniswap-v315370460.0678576.7856888e-11
    9
    polygonwoofi76910.0630986.3097998e-11
    10
    polygonsushiswap893420.0579925.7991559e-11
    11
    polygonfraxswap29230.0537795.377912e-11
    12
    polygonquickswap-v216500120.0458624.5861957e-11
    13
    polygonkyberswap-v218040.0253332.5333032e-11
    14
    polygonuniswap-v2581280.0204332.043258e-11
    15
    ethereumsushiswap523900.0090219.020855e-12
    16
    ethereumpancakeswap-v3361200.0089618.960773e-12
    17
    ethereumuniswap-v38680710.0055825.581657e-12
    18
    ethereumcurve670190.0032913.290935e-12
    19
    ethereumdodo-v245460.002852.850257e-12
    20
    ethereumkyberswap-v2150.0024622.462065e-12
    89
    4KB
    75s