flipside
GROWTH MCP
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
BECOME A PARTNER
flipside
Hourly number of Polygon transactions since January 1st 2023
alessio9567
Hourly number of Polygon transactions since January 1st 2023
Updated 2023-02-20
Copy Reference
Fork
9
1
2
3
4
5
6
7
›
⌄
SELECT
date_trunc
(
'hour'
,
block_timestamp
)
hourt
,
COUNT
(
DISTINCT
tx_hash
)
hourly_transactions
,
AVG
(
hourly_transactions
)
OVER
(
ORDER
BY
hourt
)
AS
hourly_moving_average
FROM
polygon
.
core
.
fact_transactions
WHERE
block_timestamp
>=
'2023-01-01'
GROUP
BY
1
Results
Run a query to Download Data