pecio222compare networks
    Updated 5 days ago
    with monad_raw as (
    select
    date_trunc('minute', block_timestamp) as minute,
    count(distinct block_hash) / 60 as blocks_per_sec,
    count(distinct block_hash) as blocks_amount,
    sum(tx_count) as txs_per_min,
    sum(tx_count) / 60 as txs_per_sec,
    from
    monad.testnet.fact_blocks
    where
    block_timestamp > to_timestamp(1738368000) -- 1 February 2025 00:00:00
    group by
    1
    ),
    monad_daily as (
    select
    date_trunc('day', minute) as days,
    avg(blocks_per_sec) as avg_blocks_per_sec,
    avg(txs_per_min) / 60 as avg_tps,
    60 / avg(blocks_amount) as avg_block_time,
    avg(txs_per_min / blocks_amount) as avg_transactions_per_block,
    'monad testnet' as chain
    from
    monad_raw
    group by
    1
    order by
    1 desc
    ),
    avax_raw as (
    select
    date_trunc('minute', block_timestamp) as minute,
    count(distinct block_hash) / 60 as blocks_per_sec,
    count(distinct block_hash) as blocks_amount,
    sum(tx_count) as txs_per_min,
    sum(tx_count) / 60 as txs_per_sec,
    Last run: 5 days ago
    DAYS
    AVG_BLOCKS_PER_SEC
    AVG_TPS
    AVG_BLOCK_TIME
    AVG_TRANSACTIONS_PER_BLOCK
    CHAIN
    1
    2025-04-21 00:00:00.0000.677952159943.10465871.475034.495758026906avalanche
    2
    2025-04-21 00:00:00.0000.835671349.1412851.196643417.797388solana
    3
    2025-04-21 00:00:00.0001.837840677673202.3286687666670.544117110.18105734434monad testnet
    4
    2025-04-21 00:00:00.0000.49962908011973.2455984166672.001485146.604995034125base
    5
    2025-04-20 00:00:00.0000.578.38571762156.771435176389base
    6
    2025-04-20 00:00:00.0002.5253821062.355440.39598420.671195solana
    7
    2025-04-20 00:00:00.0001.857233806944196.3217708333330.538435106.066246941667monad testnet
    8
    2025-04-20 00:00:00.0000.639143518752.32839121.5645943.618172021528avalanche
    9
    2025-04-19 00:00:00.0000.6684722263892.4727777833331.4959483.666701954861avalanche
    10
    2025-04-19 00:00:00.0000.568.8329166666672137.665833342361base
    11
    2025-04-19 00:00:00.0001.870810188194232.6614004666670.534528124.829309971528monad testnet
    12
    2025-04-19 00:00:00.0002.528091009.2096880.395555399.198437solana
    13
    2025-04-18 00:00:00.0000.6645023159722.4635995333331.5048863.692594122222avalanche
    14
    2025-04-18 00:00:00.0000.564.2514004666672128.502800925694base
    15
    2025-04-18 00:00:00.0002.5203131016.5935650.396776403.360125solana
    16
    2025-04-18 00:00:00.0001.836319451389225.8661921333330.544568123.772299240278monad testnet
    17
    2025-04-17 00:00:00.0001.802141213194396.8391666666670.554895223.652587565972monad testnet
    18
    2025-04-17 00:00:00.0002.4944331067.8963770.400893428.111893solana
    19
    2025-04-17 00:00:00.0000.575.6608564833332151.321712963194base
    20
    2025-04-17 00:00:00.0000.6900810041672.9368751.4491054.212776503472avalanche
    ...
    320
    27KB
    6s