alitaslimiTPS Over Time
Updated 2024-08-08
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
›
⌄
with
transactions as (
select
date_trunc('second', block_timestamp) as date,
count(distinct tx_hash) as tps
from
avalanche.core.fact_transactions
where
block_timestamp::date between '2021-09-21' and current_date - 1
group by
date
)
select
date_trunc('day', date) as "Date",
avg(tps) as "Average TPS",
median(tps) as "Median TPS",
max(tps) as "Max TPS",
min(tps) as "Min TPS"
from
transactions
group by
"Date"
order by
"Date" desc
QueryRunArchived: QueryRun has been archived