flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Ethereum User Retention 2
mattkstew
Ethereum User Retention 2
Updated 2022-12-19
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with
tab1
as
(
select
from_address
,
count
(
distinct
date_trunc
(
'month'
,
block_timestamp
)
)
as
Months_active
from
ethereum
.
core
.
fact_transactions
group
by
1
)
select
months_active
,
count
(
*
)
from
tab1
group
by
1
Results
Run a query to Download Data