flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Average Number of Transactions Per Block
walemaths
Average Number of Transactions Per Block
Updated 2024-06-07
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
DATE_TRUNC
(
'day'
,
block_timestamp
)
AS
block_date
,
AVG
(
tx_count
)
AS
avg_transactions_per_block
FROM
flow
.
core
.
fact_blocks
GROUP
BY
block_date
ORDER
BY
block_date
;
Results
QueryRunArchived: QueryRun has been archived