Movement TeamDaily Peak TPS
    Updated 2025-02-06
    with tb1 as (select
    date_trunc('second',block_timestamp) as seconds,
    count(*) as tps

    from aptos.core.fact_transactions
    where block_timestamp >= current_date - 1
    group by 1
    )

    select
    date_trunc('hour', seconds) as hour,
    max(tps) as max_tps
    from tb1
    group by 1
    order by 1 desc
    Last run: about 2 months ago
    HOUR
    MAX_TPS
    1
    2025-02-06 22:00:00.000129
    2
    2025-02-06 21:00:00.000143
    3
    2025-02-06 20:00:00.000152
    4
    2025-02-06 19:00:00.000140
    5
    2025-02-06 18:00:00.000189
    6
    2025-02-06 17:00:00.000220
    7
    2025-02-06 16:00:00.000195
    8
    2025-02-06 15:00:00.000148
    9
    2025-02-06 14:00:00.000164
    10
    2025-02-06 13:00:00.000173
    11
    2025-02-06 12:00:00.000181
    12
    2025-02-06 11:00:00.000193
    13
    2025-02-06 10:00:00.000134
    14
    2025-02-06 09:00:00.000150
    15
    2025-02-06 08:00:00.000168
    16
    2025-02-06 07:00:00.000155
    17
    2025-02-06 06:00:00.000193
    18
    2025-02-06 05:00:00.000136
    19
    2025-02-06 04:00:00.000104
    20
    2025-02-06 03:00:00.000116
    47
    1KB
    1s