adriaparcerisasflow tx vs l2 1.2
    Updated 2025-04-14
    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_txs as (
    -- Flow transactions
    select
    'Flow' as chain,
    block_timestamp,
    tx_succeeded
    from flow_1
    UNION ALL
    -- Arbitrum transactions
    select
    'Arbitrum' as chain,
    block_timestamp,
    case when status = 'SUCCESS' then true else false end as tx_succeeded
    from arbitrum.core.fact_transactions
    where origin_function_signature <> '0x6bf6a42d' -- exclude system transactions
    UNION ALL
    -- Optimism transactions
    select
    'Optimism' as chain,
    block_timestamp,
    case when status = 'SUCCESS' then true else false end as tx_succeeded
    from optimism.core.fact_transactions
    UNION ALL
    Last run: 28 days ago
    CHAIN
    DATE
    STATUS
    TX_COUNT
    SUCCESS_RATE
    1
    Base2025-04-13 00:00:00.000Succeeded725673194.791462
    2
    Arbitrum2025-04-13 00:00:00.000Succeeded141619580.885217
    3
    Optimism2025-04-13 00:00:00.000Succeeded94198895.502795
    4
    Mantle2025-04-13 00:00:00.000Succeeded26746997.905136
    5
    Flow2025-04-13 00:00:00.000Succeeded23035379.865269
    6
    Base2025-04-12 00:00:00.000Succeeded743112995.232328
    7
    Arbitrum2025-04-12 00:00:00.000Succeeded139585485.072069
    8
    Optimism2025-04-12 00:00:00.000Succeeded87044896.664997
    9
    Mantle2025-04-12 00:00:00.000Succeeded27255898.306246
    10
    Flow2025-04-12 00:00:00.000Succeeded22799278.440763
    11
    Base2025-04-11 00:00:00.000Succeeded707381194.916836
    12
    Arbitrum2025-04-11 00:00:00.000Succeeded167044883.783049
    13
    Optimism2025-04-11 00:00:00.000Succeeded89136795.731962
    14
    Mantle2025-04-11 00:00:00.000Succeeded27314097.94563
    15
    Flow2025-04-11 00:00:00.000Succeeded24283579.817183
    16
    Base2025-04-10 00:00:00.000Succeeded688408793.675666
    17
    Arbitrum2025-04-10 00:00:00.000Succeeded196973080.01607
    18
    Optimism2025-04-10 00:00:00.000Succeeded96905694.612847
    19
    Mantle2025-04-10 00:00:00.000Succeeded27728096.969697
    20
    Flow2025-04-10 00:00:00.000Succeeded25284880.496641
    ...
    150
    10KB
    28s