legomanExplore label types
Updated 2022-11-18Copy Reference Fork
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
›
⌄
-- -- only have flipside labels
-- select creator, count(*)
-- from crosschain.core.address_labels
-- group by 1
-- order by 2 desc
select project_name , label_type, count(*)
from crosschain.core.address_labels
where creator = 'flipside'
group by 1,2
having count(*) > 50
order by 3 desc
-- select *
-- from crosschain.core.address_labels
-- where project_name = 'gastoken.io'
-- limit 100
-- select label_type, count(*)
-- from crosschain.core.address_labels
-- group by 1 order by 2
-- select project_name, count(distinct address)
-- from crosschain.core.address_labels
-- where label_type = 'cex'
-- group by 1 order by 2 desc
-- select blockchain, count(*)
-- from crosschain.core.address_labels
-- where label_type = 'cex'
-- group by 1 order by 2 desc
-- -- Ethereum cex labels
-- select project_name, address
-- from crosschain.core.address_labels
Run a query to Download Data