0xHaM-dTotal agents creation Over Time
Updated 2025-01-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
-- forked from MLDZMN / Total agents creation 2 @ https://flipsidecrypto.xyz/MLDZMN/q/oRtz5mx8KUP0/total-agents-creation-2
select
trunc(BLOCK_TIMESTAMP, 'week') as date,
case
when NAME ilike '%market_maker%' then 'Creator'
when NAME ilike '%Trader%' then 'Trader'
when NAME ilike '%Mech%' then 'Mech'
else 'Other' end as service_type,
count(distinct TX_HASH) as no_services,
sum(no_services) over (partition by service_type ORDER by date) as cum_service_type
from crosschain.olas.ez_service_registrations
WHERE NAME is not null
group by 1,2
-- having NAME is not null
QueryRunArchived: QueryRun has been archived