BlockTrackercontract deployed
    Updated 5 days ago
    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: 5 days ago
    DATE
    CONTRACT_DEPLOYED
    TOTAL_CONTRACT_DEPLOYED
    1
    2025-03-15 00:00:00.0001114805201754
    2
    2025-03-14 00:00:00.0002463645090274
    3
    2025-03-13 00:00:00.0003201204843910
    4
    2025-03-12 00:00:00.0002843864523790
    5
    2025-03-11 00:00:00.0002966924239404
    6
    2025-03-10 00:00:00.0001858313942712
    7
    2025-03-09 00:00:00.0001728143756881
    8
    2025-03-08 00:00:00.0001576303584067
    9
    2025-03-07 00:00:00.0002273753426437
    10
    2025-03-06 00:00:00.0001889373199062
    11
    2025-03-05 00:00:00.0001870673010125
    12
    2025-03-04 00:00:00.0002200242823058
    13
    2025-03-03 00:00:00.0001939992603034
    14
    2025-03-02 00:00:00.0002158912409035
    15
    2025-03-01 00:00:00.0002634032193144
    16
    2025-02-28 00:00:00.0003316201929741
    17
    2025-02-27 00:00:00.0003633031598121
    18
    2025-02-26 00:00:00.0004846021234818
    19
    2025-02-25 00:00:00.000253311750216
    20
    2025-02-24 00:00:00.000127188496905
    68
    3KB
    46s