adriaparcerisasflow tx vs l2 1.3
    Updated 2 days ago
    WITH
    flow_1 as (
    select distinct tx_id as tx_hash, block_timestamp, tx_succeeded
    from flow.core.fact_transactions
    UNION
    select distinct tx_hash as tx_id, block_timestamp, tx_succeeded
    from flow.core_evm.fact_transactions
    ),
    all_chains AS (
    -- Arbitrum transactions
    SELECT
    DATE_TRUNC('day', block_timestamp) as date,
    'Arbitrum' as chain,
    COUNT(DISTINCT tx_hash) as total_transactions,
    COUNT(DISTINCT tx_hash)/86400.0 as tps
    FROM arbitrum.core.fact_transactions
    WHERE date < CURRENT_DATE
    AND date >= '2025-01-01'
    AND status = 'SUCCESS'
    -- Exclude system transactions for Arbitrum
    AND origin_function_signature <> '0x6bf6a42d'
    GROUP BY 1,2

    UNION ALL

    -- Base transactions
    SELECT
    DATE_TRUNC('day', block_timestamp) as date,
    'Base' as chain,
    COUNT(DISTINCT tx_hash) as total_transactions,
    COUNT(DISTINCT tx_hash)/86400.0 as tps
    FROM base.core.fact_transactions
    WHERE date < CURRENT_DATE
    AND date >= '2025-01-01'
    AND status = 'SUCCESS'
    GROUP BY 1,2
    Last run: 2 days ago
    DATE
    CHAIN
    TOTAL_TRANSACTIONS
    AVG_TPS
    1
    2025-01-01 00:00:00.000Arbitrum118523813.72
    2
    2025-01-01 00:00:00.000Base8760628101.4
    3
    2025-01-01 00:00:00.000Flow2221932.57
    4
    2025-01-01 00:00:00.000Mantle4034064.67
    5
    2025-01-01 00:00:00.000Optimism6409017.42
    6
    2025-01-02 00:00:00.000Arbitrum142913016.54
    7
    2025-01-02 00:00:00.000Base735280685.1
    8
    2025-01-02 00:00:00.000Flow2456772.84
    9
    2025-01-02 00:00:00.000Mantle4246434.91
    10
    2025-01-02 00:00:00.000Optimism8413469.74
    11
    2025-01-03 00:00:00.000Arbitrum140427016.25
    12
    2025-01-03 00:00:00.000Base740531085.71
    13
    2025-01-03 00:00:00.000Flow2306552.67
    14
    2025-01-03 00:00:00.000Mantle3945564.57
    15
    2025-01-03 00:00:00.000Optimism7952919.2
    16
    2025-01-04 00:00:00.000Arbitrum132627615.35
    17
    2025-01-04 00:00:00.000Base770490789.18
    18
    2025-01-04 00:00:00.000Flow2353362.72
    19
    2025-01-04 00:00:00.000Mantle3812464.41
    20
    2025-01-04 00:00:00.000Optimism87277310.1
    ...
    515
    25KB
    180s