Healthy Defi KPIsAvalanche - Contract Program Deployments | Ali3N
    Updated 2024-11-24
    select 'Avalanche' as chain,
    block_timestamp::date as date,
    count (*) as n_deployments,
    from avalanche.core.fact_traces
    where block_timestamp >= current_date - 30
    and type in ('CREATE','CREATE2')
    and tx_status = 'SUCCESS'
    and output is not null
    and trace_status = 'SUCCESS'
    group by 1,2
    order by date desc


    QueryRunArchived: QueryRun has been archived