permaryDaily Contracts Deployed
    Updated 5 days ago
    with daily_deployments as (
    select
    date_trunc('day', closed_at) as deployment_date,
    count(distinct contract_id) as daily_contracts_deployed
    from stellar.core.fact_operations
    where
    soroban_operation_type = 'create_contract'
    group by 1
    )
    select
    deployment_date,
    daily_contracts_deployed,
    sum(daily_contracts_deployed) over (order by deployment_date) as cumulative_contracts_deployed
    from daily_deployments
    order by deployment_date desc;
    Last run: 5 days ago
    DEPLOYMENT_DATE
    DAILY_CONTRACTS_DEPLOYED
    CUMULATIVE_CONTRACTS_DEPLOYED
    1
    2025-03-13 00:00:00.00022148
    2
    2025-03-12 00:00:00.00062146
    3
    2025-03-10 00:00:00.00012140
    4
    2025-03-09 00:00:00.00032139
    5
    2025-03-08 00:00:00.00012136
    6
    2025-03-07 00:00:00.00012135
    7
    2025-03-04 00:00:00.00032134
    8
    2025-03-03 00:00:00.00032131
    9
    2025-03-02 00:00:00.00022128
    10
    2025-03-01 00:00:00.00042126
    11
    2025-02-28 00:00:00.00022122
    12
    2025-02-27 00:00:00.00012120
    13
    2025-02-26 00:00:00.00022119
    14
    2025-02-24 00:00:00.00022117
    15
    2025-02-23 00:00:00.00012115
    16
    2025-02-21 00:00:00.00022114
    17
    2025-02-20 00:00:00.00012112
    18
    2025-02-19 00:00:00.00022111
    19
    2025-02-18 00:00:00.000102109
    20
    2025-02-17 00:00:00.00012099
    ...
    314
    11KB
    2s