BlockTrackercontract deployed
    Updated 2025-02-10
    with base_ as (
    select
    date_trunc('{{granularity}}', block_timestamp) as date,
    'Base' as chain,
    count(DISTINCT tx_hash) as contract_deployed
    from base.core.fact_traces
    where block_timestamp :: date >= dateadd(day, -{{past_days}}, current_date())
    and date < current_date
    and type ilike 'CREATE%'
    group by 1
    )
    , avalanche_ as (
    select
    date_trunc('{{granularity}}', block_timestamp) as date,
    'Avalanche' as chain,
    count(DISTINCT tx_hash) as contract_deployed
    from avalanche.core.fact_traces
    where block_timestamp :: date >= dateadd(day, -{{past_days}}, current_date())
    and date < current_date
    and type ilike 'CREATE%'
    group by 1
    )
    select *
    from base_
    union all
    select *
    from avalanche_



    Last run: 20 days ago
    DATE
    CHAIN
    CONTRACT_DEPLOYED
    1
    2025-02-13 00:00:00.000Base21894
    2
    2025-02-17 00:00:00.000Base42236
    3
    2025-03-31 00:00:00.000Base62881
    4
    2025-02-13 00:00:00.000Avalanche1346
    5
    2025-02-17 00:00:00.000Avalanche1489
    6
    2025-03-31 00:00:00.000Avalanche1782
    7
    2025-02-16 00:00:00.000Base38361
    8
    2025-03-02 00:00:00.000Base50967
    9
    2025-03-22 00:00:00.000Base56054
    10
    2025-03-02 00:00:00.000Avalanche1534
    11
    2025-02-16 00:00:00.000Avalanche1100
    12
    2025-03-22 00:00:00.000Avalanche2024
    13
    2025-03-06 00:00:00.000Base58342
    14
    2025-03-11 00:00:00.000Base47249
    15
    2025-03-11 00:00:00.000Avalanche1642
    16
    2025-03-06 00:00:00.000Avalanche2820
    17
    2025-04-12 00:00:00.000Base43424
    18
    2025-04-16 00:00:00.000Base73001
    19
    2025-05-08 00:00:00.000Base56763
    20
    2025-04-12 00:00:00.000Avalanche10540
    ...
    180
    8KB
    376s