Eman-RazNumber of Contracts Deployed on the Different Chains
Updated 2024-11-26
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
32
33
34
35
36
›
⌄
with arbitrum as (select count(distinct address) as "Number of Contract", 'Arbitrum' as "Chain"
from arbitrum.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
avalanche as (select count(distinct address) as "Number of Contract", 'Avalanche' as "Chain"
from avalanche.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
base as (select count(distinct address) as "Number of Contract", 'Base' as "Chain"
from base.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
blast as (select count(distinct address) as "Number of Contract", 'Blast' as "Chain"
from blast.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
bsc as (select count(distinct address) as "Number of Contract", 'BSC' as "Chain"
from bsc.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
core as (select count(distinct address) as "Number of Contract", 'Core' as "Chain"
from core.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
ethereum as (select count(distinct address) as "Number of Contract", 'Ethereum' as "Chain"
from ethereum.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
gnosis as (select count(distinct address) as "Number of Contract", 'Gnosis' as "Chain"
from gnosis.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
kaia as (select count(distinct address) as "Number of Contract", 'Kaia' as "Chain"
from kaia.core.dim_contracts
where created_block_timestamp::date>='2024-01-01'),
QueryRunArchived: QueryRun has been archived