flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Base_ez_5 copy copy
jackguy
Base_ez_5 copy copy
Updated 2023-09-29
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
SELECT
avg
(
active_days
)
,
median
(
active_days
)
FROM
(
SELECT
from_address
,
count
(
DISTINCT
tx_hash
)
as
events
,
count
(
DISTINCT
date_trunc
(
'day'
,
block_timestamp
)
)
as
active_days
FROM
base
.
core
.
fact_transactions
GROUP
BY
1
)
Results
Run a query to Download Data