rezarwzTPS Tx Overview
    Updated 5 days ago
    WITH t AS (
    SELECT
    HASH,
    BLOCK_TIMESTAMP,
    LEAD(BLOCK_TIMESTAMP, 1) OVER (ORDER BY BLOCK_TIMESTAMP ASC NULLS LAST) AS next_block_timestamp,
    TX_COUNT
    FROM blast.core.fact_blocks
    )
    SELECT
    DATE_TRUNC('day', BLOCK_TIMESTAMP) AS hour,
    COUNT(*) AS block_count,
    SUM(TX_COUNT) AS total_transactions,
    AVG(TX_COUNT / TIMESTAMPDIFF(SECOND, BLOCK_TIMESTAMP, next_block_timestamp)) AS avg_tps,
    MAX(TX_COUNT / TIMESTAMPDIFF(SECOND, BLOCK_TIMESTAMP, next_block_timestamp)) AS max_tps,
    MIN(TX_COUNT / TIMESTAMPDIFF(SECOND, BLOCK_TIMESTAMP, next_block_timestamp)) AS min_tps,
    STDDEV(TX_COUNT / TIMESTAMPDIFF(SECOND, BLOCK_TIMESTAMP, next_block_timestamp)) AS tps_inequality
    FROM t
    WHERE next_block_timestamp IS NOT NULL
    GROUP BY DATE_TRUNC('day', BLOCK_TIMESTAMP)
    ORDER BY 1
    Last run: 5 days agoAuto-refreshes every 3 hours
    HOUR
    BLOCK_COUNT
    TOTAL_TRANSACTIONS
    AVG_TPS
    MAX_TPS
    MIN_TPS
    TPS_INEQUALITY
    1
    2024-02-24 00:00:00.000469346920.50.50.50
    2
    2024-02-25 00:00:00.00043200432070.50008101851910.50.00636424646
    3
    2024-02-26 00:00:00.00043200432170.50019675925910.50.009916813601
    4
    2024-02-27 00:00:00.00043200432720.5008333333331.50.50.02095544166
    5
    2024-02-28 00:00:00.00043200439040.5081481481483.50.50.06720896946
    6
    2024-02-29 00:00:00.000432004356135.04181712963144.50.56.376481975
    7
    2024-03-01 00:00:00.000432008554649.9012037037041920.55.92566501
    8
    2024-03-02 00:00:00.000432005504506.370949074074630.52.85348505
    9
    2024-03-03 00:00:00.000432005205516.02489583333394.50.52.696882836
    10
    2024-03-04 00:00:00.000432004760265.50956018518597.50.52.907652762
    11
    2024-03-05 00:00:00.000432003600794.167581018519970.52.169147898
    12
    2024-03-06 00:00:00.000432004590085.3125925925931700.56.823577573
    13
    2024-03-07 00:00:00.000432003118963.609907407407111.50.51.905351807
    14
    2024-03-08 00:00:00.000432002739333.170520833333540.51.507971736
    15
    2024-03-09 00:00:00.000432002459802.84699074074149.50.51.409213192
    16
    2024-03-10 00:00:00.000432002442132.82653935185237.50.51.239450473
    17
    2024-03-11 00:00:00.000432002479572.86987268518560.50.51.427505733
    18
    2024-03-12 00:00:00.000432002415282.79546296296323.50.51.26602061
    19
    2024-03-13 00:00:00.000432002106012.4375115740742160.52.809917366
    20
    2024-03-14 00:00:00.000432003080973.565937551.50.52.091040187
    ...
    405
    30KB
    1s