BlockTrackercontract deployed
    Updated 2025-05-26
    select
    date_trunc('{{granularity}}', block_timestamp) as date,
    count(DISTINCT tx_hash) as contract_deployed,
    sum(contract_deployed) over (order by date) aS TOTAL_contract_deployed
    from monad.testnet.fact_traces
    where type ilike '%CREATE%'
    and TX_SUCCEEDED
    and input <> '0x'
    and to_address is not null
    and ORIGIN_FUNCTION_SIGNATURE <> '0x'
    and block_timestamp::date >= '2025-01-07'
    group by 1
    order by date desc


    Last run: 15 days ago
    DATE
    CONTRACT_DEPLOYED
    TOTAL_CONTRACT_DEPLOYED
    1
    2025-06-09 00:00:00.0005398422310364
    2
    2025-06-08 00:00:00.00014023322256380
    3
    2025-06-07 00:00:00.00014052622116147
    4
    2025-06-06 00:00:00.00014624221975621
    5
    2025-06-05 00:00:00.00015625821829379
    6
    2025-06-04 00:00:00.00014331821673121
    7
    2025-06-03 00:00:00.00013865821529803
    8
    2025-06-02 00:00:00.00011818921391145
    9
    2025-06-01 00:00:00.00011778021272956
    10
    2025-05-31 00:00:00.00011085221155176
    11
    2025-05-30 00:00:00.00013698321044324
    12
    2025-05-29 00:00:00.00013924220907341
    13
    2025-05-28 00:00:00.00015301120768099
    14
    2025-05-27 00:00:00.00015806520615088
    15
    2025-05-26 00:00:00.00016346320457023
    16
    2025-05-25 00:00:00.00014374520293560
    17
    2025-05-24 00:00:00.00015696320149815
    18
    2025-05-23 00:00:00.00015458819992852
    19
    2025-05-22 00:00:00.00016120719838264
    20
    2025-05-21 00:00:00.00015705919677057
    ...
    154
    6KB
    615s