Updated 2025-03-01
    with daily as (
    SELECT
    date_trunc('day', block_timestamp) as date,
    24 * 60 * 60 AS seconds_per_day,
    count(DISTINCT tx_hash) / seconds_per_day as TPS
    from
    boba.core.fact_transactions
    group by
    date
    order by
    date asc
    )

    select
    date_trunc('month', date) as month,
    avg(tps)
    from daily
    group by 1



    Last run: 18 days ago
    MONTH
    AVG(TPS)
    1
    2024-09-01 00:00:00.0000.513323733333
    2
    2021-12-01 00:00:00.0000.027358483871
    3
    2024-05-01 00:00:00.0000.503565193548
    4
    2024-11-01 00:00:00.0000.5300498
    5
    2021-11-01 00:00:00.0000.0763488
    6
    2024-08-01 00:00:00.0000.514457548387
    7
    2023-08-01 00:00:00.0000.004564387097
    8
    2022-09-01 00:00:00.0000.012738866667
    9
    2023-11-01 00:00:00.0000.0044926
    10
    2022-01-01 00:00:00.0000.013553193548
    11
    2022-02-01 00:00:00.0000.025613071429
    12
    2024-07-01 00:00:00.0000.518511064516
    13
    2024-10-01 00:00:00.0000.512591193548
    14
    2023-04-01 00:00:00.0000.005350733333
    15
    2022-04-01 00:00:00.0000.040988833333
    16
    2023-02-01 00:00:00.0000.007614071429
    17
    2022-07-01 00:00:00.0000.017634677419
    18
    2023-12-01 00:00:00.0000.004690548387
    19
    2025-01-01 00:00:00.0000.530800870968
    20
    2024-04-01 00:00:00.0000.241733466667
    42
    2KB
    2s