Updated 2025-04-26
    -- forked from https://flipsidecrypto.xyz/hess/q/cILchiNxlMCI/average-success-rate
    with chains as (
    select date(block_timestamp) as date,
    'Aptos' as chain,
    count(DISTINCT TX_HASH) as total_tx,
    total_tx/86400 as tps
    from aptos.core.fact_transactions
    where block_timestamp::date >= '2025-01-01'
    group by 1,2
    UNION
    select date(block_timestamp) as date,
    'Sei' as chain,
    count(DISTINCT tx_id) as total_tx,
    total_tx/86400 as tps
    from sei.core.fact_transactions
    where block_timestamp::date >= '2025-01-01'
    and TX_SUCCEEDED = 'true'
    group by 1,2
    UNION
    select date(block_timestamp) as date,
    'Arbitrum' as chain,
    count(DISTINCT tx_hash) as total_tx,
    total_tx/86400 as tps
    from arbitrum.core.fact_transactions
    where block_timestamp::date >= '2025-01-01'
    and STATUS = 'SUCCESS'
    group by 1,2
    UNION
    select date(block_timestamp) as date,
    'Optimism' as chain,
    count(DISTINCT tx_hash) as total_tx,
    total_tx/86400 as tps
    from optimism.core.fact_transactions
    where block_timestamp::date >= '2025-01-01'
    and STATUS = 'SUCCESS'
    group by 1,2
    Last run: about 2 months ago
    CHAIN
    TYPE
    Avg Tps
    1
    ArbitrumOther Chain22.851225741935
    2
    BSCOther Chain50.412659806452
    3
    PolygonOther Chain30.770968516129
    4
    FlowOther Chain2.299305258065
    5
    AptosAptos45.939032322581
    6
    NearOther Chain72.207383096774
    7
    SeiOther Chain47.003553645161
    8
    OptimismOther Chain10.702044967742
    9
    AtomOther Chain0.313499032258
    10
    SolanaOther Chain576.96671716129
    11
    BaseOther Chain74.335790064516
    12
    OsmosisOther Chain1.597386096774
    13
    EthereumOther Chain13.40905383871
    14
    AvalancheOther Chain2.840629451613
    14
    560B
    455s