flipside
GROWTH MCP
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
BECOME A PARTNER
flipside
2.3 number of transactions per block in each day
ZSaed
2.3 number of transactions per block in each day
Updated 2022-11-09
Copy Reference
Fork
9
1
2
3
4
5
6
7
›
⌄
select
BLOCK_TIMESTAMP
::
date
as
day
,
sum
(
TX_COUNT
)
/
count
(
DISTINCT
BLOCK_NUMBER
)
as
AVG_PER_BOLCK
,
count
(
DISTINCT
BLOCK_NUMBER
)
as
bolck_per_day
from
optimism
.
core
.
fact_blocks
where
day
<
'2022-11-01'
GROUP
by
day
Results
Run a query to Download Data