BlockTrackercontract deployed
    Updated 2025-04-06
    -- forked from contract deployed @ https://flipsidecrypto.xyz/studio/queries/8f910da9-97b6-4bda-94db-5a8999ccaf26

    select
    date_trunc('{{granularity}}', block_timestamp) as date,
    count(DISTINCT to_address) as contract_deployed,
    sum(contract_deployed) over (order by date) as cumulative_contract_deployed
    from swell.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: 21 days ago
    DATE
    CONTRACT_DEPLOYED
    CUMULATIVE_CONTRACT_DEPLOYED
    1
    2025-04-06 00:00:00.000757594
    2
    2025-04-05 00:00:00.0001367519
    3
    2025-04-04 00:00:00.0001137383
    4
    2025-04-03 00:00:00.0001757270
    5
    2025-04-02 00:00:00.0002447095
    6
    2025-04-01 00:00:00.0005256851
    7
    2025-03-31 00:00:00.0004256326
    8
    2025-03-30 00:00:00.0002525901
    9
    2025-03-29 00:00:00.000325649
    10
    2025-03-28 00:00:00.000375617
    11
    2025-03-27 00:00:00.000275580
    12
    2025-03-26 00:00:00.000175553
    13
    2025-03-25 00:00:00.000325536
    14
    2025-03-24 00:00:00.000205504
    15
    2025-03-23 00:00:00.00055484
    16
    2025-03-22 00:00:00.00025479
    17
    2025-03-21 00:00:00.00065477
    18
    2025-03-20 00:00:00.000175471
    19
    2025-03-19 00:00:00.000165454
    20
    2025-03-18 00:00:00.000325438
    ...
    125
    4KB
    1s