adriaparcerisasflow tx vs l2
    Updated 4 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
    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
    FROM base.core.fact_transactions
    WHERE date < CURRENT_DATE
    AND date >= '2025-01-01'
    AND status = 'SUCCESS'
    GROUP BY 1,2

    UNION ALL
    Last run: 4 days ago
    DATE
    CHAIN
    TOTAL_TRANSACTIONS
    1
    2025-01-01 00:00:00.000Arbitrum1185238
    2
    2025-01-01 00:00:00.000Base8760628
    3
    2025-01-01 00:00:00.000Flow222193
    4
    2025-01-01 00:00:00.000Mantle403406
    5
    2025-01-01 00:00:00.000Optimism640901
    6
    2025-01-02 00:00:00.000Arbitrum1429130
    7
    2025-01-02 00:00:00.000Base7352806
    8
    2025-01-02 00:00:00.000Flow245677
    9
    2025-01-02 00:00:00.000Mantle424643
    10
    2025-01-02 00:00:00.000Optimism841346
    11
    2025-01-03 00:00:00.000Arbitrum1404270
    12
    2025-01-03 00:00:00.000Base7405310
    13
    2025-01-03 00:00:00.000Flow230655
    14
    2025-01-03 00:00:00.000Mantle394556
    15
    2025-01-03 00:00:00.000Optimism795291
    16
    2025-01-04 00:00:00.000Arbitrum1326276
    17
    2025-01-04 00:00:00.000Base7704907
    18
    2025-01-04 00:00:00.000Flow235336
    19
    2025-01-04 00:00:00.000Mantle381246
    20
    2025-01-04 00:00:00.000Optimism872773
    ...
    445
    19KB
    201s