Ranger-AJHxKvavg TPS: OP, ARB, AVAX, BSC, ETH, SOL, POL
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
›
⌄
with
tps_feb as (
select
date_trunc('second', block_timestamp) as tx_time,
count(tx_hash) as tps
from
arbitrum.core.fact_transactions
where
block_timestamp::date >= '2022-02-01'
-- and succeeded = True
group by
1
order by
1
),
tps_daily as (
select
tx_time::date as date,
min(tps) as minimum,
avg(tps) as average,
median(tps) as median,
max(tps) as maximum
from
tps_feb
group by
1
order by
1
)
select
*
from
tps_daily
Run a query to Download Data