CryptoIcicleWhat's going on with Optimism? - TPS
    Updated 2024-02-13
    -- Payout 150 USDC
    -- Grand Prize 450 USDC
    -- Level Advanced

    -- What's going on with Optimism?
    -- This is an open-ended bounty, what we call a Free Square, and it’s an opportunity for you to show us what you’ve got.
    -- Any topic is fair game; The goal here is to explore the data in creative ways and show off your explorations with visualizations (or even a tool/frontend if you’ve got eyes on the grand prize).

    with tps as (
    select
    block_timestamp::date as date,
    sum(n_txns_secs) as sum_tps,
    avg(n_txns_secs) as avg_tps,
    max(n_txns_secs) as max_tps,
    sum(sum_tps) over (order by date asc rows between unbounded preceding and current row) as cumulative_sum_tps,
    avg(avg_tps) over (order by date asc rows between unbounded preceding and current row) as overall_avg_tps,
    max(max_tps) over (order by date asc rows between unbounded preceding and current row) as overall_max_tps
    from(
    select
    block_timestamp,
    count(distinct tx_hash) as n_txns_secs
    from optimism.core.fact_transactions
    where block_timestamp >= CURRENT_DATE - {{n_days}}
    group by block_timestamp
    ) group by date
    )

    select * from tps
    order by date desc
    Last run: about 1 year agoAuto-refreshes every 24 hours
    DATE
    SUM_TPS
    AVG_TPS
    MAX_TPS
    CUMULATIVE_SUM_TPS
    OVERALL_AVG_TPS
    OVERALL_MAX_TPS
    1
    2024-02-13 00:00:00.0003649329.2747192344197678.76462723612
    2
    2024-02-12 00:00:00.0003434667.95060262340548358.758959644612
    3
    2024-02-11 00:00:00.0003177387.35504662337113698.768042314612
    4
    2024-02-10 00:00:00.0002985796.911551173333936318.78409909612
    5
    2024-02-09 00:00:00.0002795866.47189872330950528.805622632612
    6
    2024-02-08 00:00:00.0003003266.95199186328154668.832758965612
    7
    2024-02-07 00:00:00.0003406487.88537109325151408.854885647612
    8
    2024-02-06 00:00:00.0003483798.064329387321744928.8664275612
    9
    2024-02-05 00:00:00.0003507558.11932973318261138.876091337612
    10
    2024-02-04 00:00:00.0003357977.77307985314753588.885320146612
    11
    2024-02-03 00:00:00.0003519208.146296118311395618.899051518612
    12
    2024-02-02 00:00:00.0003724838.622292101307876418.908460962612
    13
    2024-02-01 00:00:00.0004087449.461667113304151588.912083354612
    14
    2024-01-31 00:00:00.0003782568.755926150300064148.90503741612
    15
    2024-01-30 00:00:00.0003751938.685023158296281588.906973922612
    16
    2024-01-29 00:00:00.0003949749.14291790292529658.909894328612
    17
    2024-01-28 00:00:00.0004085269.4566286288579918.90678736612
    18
    2024-01-27 00:00:00.0003524518.15858877284494658.899357189612
    19
    2024-01-26 00:00:00.0004023919.314606135280970148.909504712612
    20
    2024-01-25 00:00:00.00046039010.65717693276946238.903878305612
    91
    6KB
    113s