Yousefi_1994Average Transactions Per Block (TPB)
    Updated 2022-07-25
    with polygon as (
    select
    avg(tx_count) as avg_tpb
    from polygon.core.fact_blocks
    where block_timestamp::date <= current_date - 1
    order by block_number desc
    limit 1000000
    ),
    ethereum as (
    select
    avg(tx_count) as avg_tpb
    from ethereum.core.fact_blocks
    where block_timestamp::date <= current_date - 1
    order by block_number desc
    limit 1000000
    ),
    solana as (
    select
    avg(tx_count) as avg_tpb
    from solana.core.fact_blocks
    where block_timestamp::date <= current_date - 1
    order by block_id desc
    limit 1000000
    ),
    flow as (
    select
    avg(tx_count) as avg_tpb
    from flow.core.fact_blocks
    where block_timestamp::date <= current_date - 1
    order by block_height desc
    limit 1000000
    ),
    osmosis as (
    select
    avg(tx_count) as avg_tpb
    from osmosis.core.fact_blocks
    Run a query to Download Data