KaskoazulNFT number of projects labelled
Updated 2022-09-19
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 raw as (
select blockchain,
project_name,
address_name
from arbitrum.core.dim_labels
where label_type = 'nft'
union all
select blockchain,
project_name,
address_name
from avalanche.core.dim_labels
where label_type = 'nft'
union all
select blockchain,
project_name,
address_name
from bsc.core.dim_labels
where label_type = 'nft'
union all
select blockchain,
project_name,
address_name
from optimism.core.dim_labels
where label_type = 'nft'
union all
select blockchain,
project_name,
address_name
from polygon.core.dim_labels
where label_type = 'nft'
)
select blockchain,
count (distinct project_name) as projects,
count (distinct address_name) as addresses
from raw
Run a query to Download Data