flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Arbitrum - Open Analyitics Bounty: Average TPS per Day
piper
Arbitrum - Open Analyitics Bounty: Average TPS per Day
Updated 2022-07-26
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
WITH
all_tps
AS
(
SELECT
block_timestamp
::
date
AS
date
,
COUNT
(
tx_hash
)
/
86400
AS
tps
FROM
arbitrum
.
core
.
fact_transactions
WHERE
block_timestamp
::
date
<=
'2022-07-25'
GROUP
BY
date
)
SELECT
avg
(
tps
)
AS
avg_tps
FROM
all_tps
Results
Run a query to Download Data