BlockTrackercontract deployed
    Updated 8 days ago
    select
    date_trunc('day', block_timestamp) as date,
    count(DISTINCT to_address) as contract_deployed,
    sum(contract_deployed) over (order by date) as cumulative_contract_deployed
    from ink.core.fact_traces
    where type ilike '%CREATE%'
    and TX_SUCCEEDED
    and to_address is not null
    and input <> '0x'
    and ORIGIN_FUNCTION_SIGNATURE <> '0x'
    group by 1
    order by date desc



    Last run: 8 days ago
    DATE
    CONTRACT_DEPLOYED
    CUMULATIVE_CONTRACT_DEPLOYED
    1
    2025-04-06 00:00:00.0002159562446
    2
    2025-04-05 00:00:00.0003149560287
    3
    2025-04-04 00:00:00.0003184557138
    4
    2025-04-03 00:00:00.0003542553954
    5
    2025-04-02 00:00:00.0004979550412
    6
    2025-04-01 00:00:00.0007171545433
    7
    2025-03-31 00:00:00.0003165538262
    8
    2025-03-30 00:00:00.0001058535097
    9
    2025-03-29 00:00:00.000828534039
    10
    2025-03-28 00:00:00.000819533211
    11
    2025-03-27 00:00:00.0001065532392
    12
    2025-03-26 00:00:00.000743531327
    13
    2025-03-25 00:00:00.000825530584
    14
    2025-03-24 00:00:00.0001879529759
    15
    2025-03-23 00:00:00.0002501527880
    16
    2025-03-22 00:00:00.0001871525379
    17
    2025-03-21 00:00:00.00090019523508
    18
    2025-03-20 00:00:00.000110570433489
    19
    2025-03-19 00:00:00.000119362322919
    20
    2025-03-18 00:00:00.0002345203557
    ...
    119
    5KB
    15s