Salehcontracts -date
    Updated 2025-04-30
    select
    block_timestamp::date as date
    ,count(distinct tx_hash) as "Number of Contracts Created"
    ,sum("Number of Contracts Created") over(order by date) as "CUM Contracts Created"
    from mezo.testnet.fact_traces
    where TYPE ilike '%create%'
    and TX_SUCCEEDED
    group by 1
    order by 1


    Last run: 24 days ago
    DATE
    Number of Contracts Created
    CUM Contracts Created
    1
    2025-03-29 00:00:00.000362362
    2
    2025-03-30 00:00:00.00014441806
    3
    2025-03-31 00:00:00.0007692575
    4
    2025-04-01 00:00:00.0009293504
    5
    2025-04-02 00:00:00.00010064510
    6
    2025-04-03 00:00:00.0003544864
    7
    2025-04-04 00:00:00.0001435007
    8
    2025-04-05 00:00:00.000725079
    9
    2025-04-06 00:00:00.0001815260
    10
    2025-04-07 00:00:00.0004695729
    11
    2025-04-08 00:00:00.0003006029
    12
    2025-04-09 00:00:00.0002706299
    13
    2025-04-10 00:00:00.0005536852
    14
    2025-04-11 00:00:00.0005187370
    15
    2025-04-12 00:00:00.0001747544
    16
    2025-04-13 00:00:00.0005468090
    17
    2025-04-14 00:00:00.0007688858
    18
    2025-04-15 00:00:00.0003309188
    19
    2025-04-16 00:00:00.0001819369
    20
    2025-04-17 00:00:00.0003469715
    33
    1KB
    3s