0xHaM-din ttl
Updated 2024-10-01
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
›
⌄
select
'All Time' as preiod,
count(distinct tx_hash) as "Transaction Count",
count(distinct origin_from_address) as "User Count",
round("User Count" / count(distinct block_timestamp::date)) as "Average Daily Users",
count(distinct service_id) as "# Services",
from
crosschain.olas.fact_service_events
GROUP BY 1
UNION All
select
'Q3 2024' as preiod,
count(distinct tx_hash) as "Transaction Count",
count(distinct origin_from_address) as "User Count",
round("User Count" / count(distinct block_timestamp::date)) as "Average Daily Users",
count(distinct service_id) as "# Services",
from
crosschain.olas.fact_service_events
where
block_timestamp::date >= '2024-07-01'
AND
block_timestamp::date < '2024-10-01'
GROUP BY 1
order by 2 DESC
QueryRunArchived: QueryRun has been archived