potmoChain Max TPS Comparison: Chain Lifetime
    Updated 9 hours ago
    with cross_chain as(
    select blockchain, max(transaction_count/ 3600) as max_TPS
    from crosschain.stats.ez_core_metrics_hourly
    where blockchain in (
    'polygon',
    'bsc',
    'base',
    'avalanche',
    'arbitrum',
    'optimism',
    'ethereum'
    )
    --and block_timestamp_hour > '2025-02-18'
    group by 1),
    monad as (
    select (select'Monad') as blockchain,
    (select "overall"
    from $query('de434495-e102-4625-aea2-23f67c37b837')
    where "metric" = 'Max TPS'
    qualify row_number()over (order by hr desc) =1) as max_tps
    ),
    combined_chains as (
    select *
    from monad
    union all
    select * from cross_chain
    ),
    paid_ratios AS (
    SELECT
    'arbitrum' as blockchain,
    ROUND(COUNT(CASE WHEN tx_fee > 0 THEN 1 END) / COUNT(*), 3) as paid_ratio
    FROM arbitrum.core.fact_transactions
    WHERE block_timestamp >= '2025-02-19'

    UNION ALL
    SELECT
    Last run: about 9 hours agoAuto-refreshes every 12 hours
    BLOCKCHAIN
    MAX_TPS
    PAID_RATIO
    1
    Monad1934.019
    2
    bsc1556.7580560.918
    3
    arbitrum295.5158330.853
    4
    base249.4188890.994
    5
    polygon241.7455561
    6
    avalanche80.3569441
    7
    optimism59.5352780.956
    8
    ethereum40.1213891
    8
    212B
    367s