flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Mints Daily n Ethereum
nits
Mints Daily n Ethereum
Updated 2022-06-16
Copy Reference
Fork
9
1
2
3
4
5
›
⌄
SELECT
date
(
block_timestamp
)
as
day
,
count
(
DISTINCT
tx_id
)
as
total_txs
,
sum
(
total_txs
)
over
(
order
by
day
)
as
cumulative_total_txs
from
ethereum
.
nft_events
where
event_type
=
'mint'
and
day
>=
CURRENT_DATE
-
120
GROUP
by
1
limit
150
Results
Run a query to Download Data