BlockTrackercontract deployed
Updated 2025-02-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
›
⌄
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_
QueryRunArchived: QueryRun has been archived