cloudr3nTotal number of services, agent and components over time
Updated 2024-05-29
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
weekly_counts as (
select
date_trunc('week', mint_date) as week,
'service' as mint_type,
count(*) as total_count
from (
select
block_timestamp as mint_date
from
ethereum.core.ez_decoded_event_logs
where
1=1
and event_name='Transfer'
and contract_address='0x48b6af7b12c71f09e2fc8af4855de4ff54e775ca'
and decoded_log:from='0x0000000000000000000000000000000000000000'
union all
select
block_timestamp as mint_date
from
polygon.core.ez_decoded_event_logs
where
1=1
and event_name='Transfer'
and contract_address='0xe3607b00e75f6405248323a9417ff6b39b244b50'
and decoded_log:from='0x0000000000000000000000000000000000000000'
union all
select
block_timestamp as mint_date
from
gnosis.core.ez_decoded_event_logs
Auto-refreshes every 24 hours
QueryRunArchived: QueryRun has been archived