tkvresearchOptimism I txs + user
    Updated 10 days ago

    select date_trunc('week',block_timestamp) as time,
    count(DISTINCT from_address) as "Weekly users",
    count(DISTINCT tx_hash) as "Weekly transactions"
    from Optimism.core.fact_transactions
    where status = 'SUCCESS'
    and date_trunc('week',block_timestamp) != date_trunc('week',current_date())
    group by 1
    order by 1 desc


    Last run: 10 days ago
    TIME
    Weekly users
    Weekly transactions
    1
    2025-02-24 00:00:00.0005067326955653
    2
    2025-02-17 00:00:00.0006139746438723
    3
    2025-02-10 00:00:00.0005109575509945
    4
    2025-02-03 00:00:00.0003981867042412
    5
    2025-01-27 00:00:00.0003547585800961
    6
    2025-01-20 00:00:00.0004236065429433
    7
    2025-01-13 00:00:00.0003793005839342
    8
    2025-01-06 00:00:00.0003879895325552
    9
    2024-12-30 00:00:00.0004149575470616
    10
    2024-12-23 00:00:00.0003400505821854
    11
    2024-12-16 00:00:00.0003711727425855
    12
    2024-12-09 00:00:00.0003542027028317
    13
    2024-12-02 00:00:00.0004335976914502
    14
    2024-11-25 00:00:00.0004217866346313
    15
    2024-11-18 00:00:00.0002916636487892
    16
    2024-11-11 00:00:00.0002929736267602
    17
    2024-11-04 00:00:00.0003554885729930
    18
    2024-10-28 00:00:00.0003915695708339
    19
    2024-10-21 00:00:00.0004824805364520
    20
    2024-10-14 00:00:00.0004203035841765
    ...
    173
    7KB
    86s