flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Total number of Ethereum users according to their number of months of activeness
nsa2000
Total number of Ethereum users according to their number of months of activeness
Updated 2022-12-19
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
--credit to jackguy
SELECT
active_months
,
count
(
*
)
as
users
FROM
(
SELECT
from_address
,
count
(
DISTINCT
date_trunc
(
'month'
,
block_timestamp
)
)
as
active_months
FROM
ethereum
.
core
.
fact_transactions
GROUP
BY
1
)
GROUP
BY
1
Results
Run a query to Download Data