flipside
GROWTH MCP
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
BECOME A PARTNER
flipside
The number of NFT buyers according to their number of months of buying NFTs (Ethereum blockchain)
nsa2000
The number of NFT buyers according to their number of months of buying NFTs (Ethereum blockchain)
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
BUYER_ADDRESS
,
count
(
DISTINCT
date_trunc
(
'month'
,
block_timestamp
)
)
as
active_months
FROM
ethereum
.
core
.
ez_nft_sales
GROUP
BY
1
)
GROUP
BY
1
Results
Run a query to Download Data