MLDZMNComp 1
Updated 2024-11-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
select
case
when NAME ilike '%valory%' then 'valory'
when NAME ilike '%eightballer%' then 'eightballer'
when NAME ilike '%elcollectooorr%' then 'elcollectooorr'
when NAME ilike '%dvilela%' then 'dvilela'
when NAME ilike '%zarathustra%' then 'zarathustra'
when NAME ilike '%balancer%' then 'balancer'
when NAME ilike '%jhehemann%' then 'jhehemann'
when NAME ilike '%algovera%' then 'algovera'
when NAME ilike '%postmint%' then 'postmint'
when NAME ilike '%fetchai%' then 'fetchai'
else 'others'
end as authorship,
count(distinct TX_HASH) as no_components
from crosschain.olas.ez_unit_registrations
where UNIT_TYPE = 'component'
group by 1
QueryRunArchived: QueryRun has been archived