flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Months Active Metrics on Flow
mattkstew
Months Active Metrics on Flow
Updated 2022-12-19
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with
tab1
as
(
select
proposer
,
count
(
distinct
date_trunc
(
'month'
,
block_timestamp
)
)
as
Months_active
from
flow
.
core
.
fact_transactions
group
by
1
)
select
avg
(
months_active
)
,
median
(
months_active
)
,
max
(
months_active
)
from
tab1
-- by 1
Results
Run a query to Download Data