SalehFLOW Speed (redux)-Daily comparison
    Updated 2025-05-14
    with lst_flow as (
    select
    date_trunc(day,block_timestamp)::date as date
    ,count (distinct tx_id) as tx_count
    ,tx_count/1440 as TPM
    ,tx_count/86400 as TPS
    from flow.core.fact_transactions
    where block_timestamp >= '2025-01-01' and block_timestamp <=current_date-1
    and TX_SUCCEEDED=true
    group by 1
    )
    ,lst_ethereum as (
    select
    date_trunc(day,block_timestamp)::date as date
    ,count (distinct tx_hash) as tx_count
    ,tx_count/1440 as TPM
    ,tx_count/86400 as TPS
    from ethereum.core.fact_transactions
    where block_timestamp >= '2025-01-01' and block_timestamp <=current_date-1
    and STATUS='SUCCESS'
    group by 1
    )
    ,lst_avalanche as (
    select
    date_trunc(day,block_timestamp)::date as date
    ,count (distinct tx_hash) as tx_count
    ,tx_count/1440 as TPM
    ,tx_count/86400 as TPS
    from avalanche.core.fact_transactions
    where block_timestamp >= '2025-01-01' and block_timestamp <=current_date-1
    and TX_SUCCEEDED
    group by 1
    )
    ,lst_near as (
    select
    date_trunc(day,block_timestamp)::date as date
    Last run: about 1 month ago
    TYPE
    DATE
    TX_COUNT
    TPM
    TPS
    1
    Flow2025-04-21 00:00:00.000280956195.1083333.251806
    2
    Ethereum2025-04-21 00:00:00.0001164440808.63888913.477315
    3
    Avalanche2025-04-21 00:00:00.000256613178.2034722.970058
    4
    Near2025-04-21 00:00:00.00057499833993.0437566.550729
    5
    THORChain2025-04-21 00:00:00.000338974235.3986113.92331
    6
    Flow2025-02-01 00:00:00.000302695210.2048613.503414
    7
    Flow2025-02-28 00:00:00.000176165122.3368062.038947
    8
    Flow2025-03-11 00:00:00.000476636330.9972225.51662
    9
    Ethereum2025-02-28 00:00:00.0001319882916.58472215.276412
    10
    Ethereum2025-03-11 00:00:00.0001291281896.72291714.945382
    11
    Ethereum2025-02-01 00:00:00.0001114823774.18263912.903044
    12
    Avalanche2025-03-11 00:00:00.000343284238.3916673.973194
    13
    Avalanche2025-02-01 00:00:00.000317937220.7895833.679826
    14
    Avalanche2025-02-28 00:00:00.000379422263.48754.391458
    15
    Near2025-02-01 00:00:00.00057478063991.53194466.525532
    16
    Near2025-02-28 00:00:00.00065127494522.74236175.379039
    17
    Near2025-03-11 00:00:00.00069800294847.24236180.787373
    18
    THORChain2025-02-01 00:00:00.000342205237.6423613.960706
    19
    THORChain2025-03-11 00:00:00.000263822183.2097223.053495
    20
    THORChain2025-02-28 00:00:00.000310620215.7083333.595139
    ...
    660
    42KB
    337s