flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Base - 'Bridge to Base' mints over time
piper
Base - 'Bridge to Base' mints over time
Updated 2023-11-07
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
TO_CHAR
(
BLOCK_TIMESTAMP
,
'YYYY-MM-DD HH24'
)
AS
time
,
COUNT
(
TX_HASH
)
AS
"Number of mints per hour"
FROM
base
.
core
.
ez_nft_transfers
WHERE
EVENT_TYPE
=
'mint'
AND
PROJECT_NAME
=
'Bridge to Base'
GROUP
BY
time
ORDER
BY
2
DESC
Results
Run a query to Download Data