SalehFLOW Speed (redux)-compare
    Updated 2025-05-14
    with lst_flow as (
    select
    datediff(day,min(block_timestamp),max(block_timestamp)) as acivity_days
    ,count (distinct tx_id) as tx_count
    ,tx_count/acivity_days/1440 as TPM
    ,tx_count/acivity_days/86400 as TPS
    from flow.core.fact_transactions
    where block_timestamp >= '2025-01-01' and block_timestamp <=current_date-1
    and TX_SUCCEEDED=true
    )
    ,lst_ethereum as (
    select
    datediff(day,min(block_timestamp),max(block_timestamp)) as acivity_days
    ,count (distinct tx_hash) as tx_count
    ,tx_count/acivity_days/1440 as TPM
    ,tx_count/acivity_days/86400 as TPS
    from ethereum.core.fact_transactions
    where block_timestamp >= '2025-01-01' and block_timestamp <=current_date-1
    and STATUS='SUCCESS'
    )
    ,lst_avalanche as (
    select
    datediff(day,min(block_timestamp),max(block_timestamp)) as acivity_days
    ,count (distinct tx_hash) as tx_count
    ,tx_count/acivity_days/1440 as TPM
    ,tx_count/acivity_days/86400 as TPS
    from avalanche.core.fact_transactions
    where block_timestamp >= '2025-01-01' and block_timestamp <=current_date-1
    and TX_SUCCEEDED
    )
    ,lst_near as (
    select
    datediff(day,min(block_timestamp),max(block_timestamp)) as acivity_days
    ,count (distinct tx_hash) as tx_count
    ,tx_count/(acivity_days*1440) as TPM
    ,tx_count/(acivity_days*86400) as TPS
    Last run: 16 days ago
    TYPE
    ACIVITY_DAYS
    TX_COUNT
    TPM
    TPS
    1
    Flow13134145190181.0071564888893.016785941481
    2
    Ethereum131160015930848.26086726041714.137681121007
    3
    Avalanche13142191204223.6599024597223.727665040995
    4
    Near1318722946494624.12345777.068724
    5
    THORChain13142038324222.849473.714158
    5
    265B
    310s