flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
transactions are done in a block on average on Ploygon
arctic-night-fox
transactions are done in a block on average on Ploygon
Updated 2022-07-27
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
WITH
Base
AS
(
SELECT
COUNT
(
DISTINCT
TX_HASH
)
AS
transactions_number
FROM
polygon
.
core
.
fact_transactions
WHERE
BLOCK_TIMESTAMP
::
DATE
>=
'2022-01-01'
AND
STATUS
=
'SUCCESS'
GROUP
BY
BLOCK_NUMBER
)
SELECT
AVG
(
transactions_number
)
FROM
Base
Results
Run a query to Download Data