rezarwzContract Deployments
    Updated 2025-03-28
    /*with all_contracts as (
    SELECT
    block_number,
    block_timestamp,
    tx_hash,
    to_address AS created_contract_address,
    from_address AS creator_address,
    input AS created_contract_input,
    INSERTED_TIMESTAMP
    from
    blast.core.fact_traces
    WHERE
    TYPE ILIKE 'create%'
    AND to_address IS NOT NULL
    AND input IS NOT NULL
    AND input != '0x'
    AND tx_status = 'SUCCESS'
    AND trace_status = 'SUCCESS'
    )*/
    SELECT
    date_trunc('{{interval}}', block_Timestamp) as date,
    count(tx_hash) as "# of deployed contracts",
    sum("# of deployed contracts") over (
    ORDER by
    date asc
    ) as "Total contract deployments"
    from
    blast.core.fact_traces
    WHERE
    TYPE ILIKE 'create%'
    AND to_address IS NOT NULL
    AND input IS NOT NULL
    AND input != '0x'
    AND tx_status = 'SUCCESS'
    AND trace_status = 'SUCCESS'
    group by
    Last run: 18 days ago
    DATE
    # of deployed contracts
    Total contract deployments
    1
    2025-04-01 00:00:00.0001886709709
    2
    2025-03-01 00:00:00.0009793707823
    3
    2025-02-01 00:00:00.00012044698030
    4
    2025-01-01 00:00:00.00013367685986
    5
    2024-12-01 00:00:00.00051714672619
    6
    2024-11-01 00:00:00.00069091620905
    7
    2024-10-01 00:00:00.00075184551814
    8
    2024-09-01 00:00:00.00053499476630
    9
    2024-08-01 00:00:00.0009974423131
    10
    2024-07-01 00:00:00.00054362413157
    11
    2024-06-01 00:00:00.000102695358795
    12
    2024-05-01 00:00:00.00059751256100
    13
    2024-04-01 00:00:00.00067759196349
    14
    2024-03-01 00:00:00.000121519128590
    15
    2024-02-01 00:00:00.00070717071
    15
    612B
    201s