elsinaWeekly Number of Contracts Created Recap
    Updated 9 days ago
    select
    date_trunc('week', block_timestamp) as date,
    count(distinct tx_hash) as tx_count,
    sum(tx_count) over(order by date) as cum_tx_count
    from mezo.testnet.fact_traces
    where TYPE ilike '%create%'
    and TX_SUCCEEDED = 'TRUE'
    group by 1
    order by 1


    Last run: 9 days ago
    DATE
    TX_COUNT
    CUM_TX_COUNT
    1
    2025-03-24 00:00:00.00018061806
    2
    2025-03-31 00:00:00.00034545260
    3
    2025-04-07 00:00:00.00028308090
    4
    2025-04-14 00:00:00.000228710377
    5
    2025-04-21 00:00:00.000435714734
    6
    2025-04-28 00:00:00.000326417998
    7
    2025-05-05 00:00:00.000478622784
    8
    2025-05-12 00:00:00.000755130335
    9
    2025-05-19 00:00:00.0002319753532
    10
    2025-05-26 00:00:00.00084354375
    10
    388B
    2s