flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
service consistency timeline
permary
service consistency timeline
Updated 2024-11-04
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT
DATE_TRUNC
(
'week'
,
block_timestamp
)
as
week
,
service_id
,
name
,
COUNT
(
*
)
as
days_active_this_week
,
(
COUNT
(
*
)
::
FLOAT
/
7
)
*
100
as
weekly_consistency_percentage
FROM
crosschain
.
olas
.
ez_service_checkpoints
GROUP
BY
1
,
2
,
3
ORDER
BY
1
,
2
;
Results
QueryRunArchived: QueryRun has been archived