flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
flow average speed
arctic-night-fox
flow average speed
Updated 2022-07-21
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
with
flow
as
(
select
date_trunc
(
'day'
,
block_timestamp
)
as
daily
,
COUNT
(
tx_id
)
as
flow_count
from
flow
.
core
.
fact_transactions
WHERE
daily
::
DATE
>=
CURRENT_DATE
-
90
group
by
1
)
select
(
SUM
(
flow_count
)
/
COUNT
(
daily
)
)
/
(
24
*
60
)
from
flow
Results
Run a query to Download Data