elsinatps
Updated 2025-03-01Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with daily as (
SELECT
date_trunc('day', block_timestamp) as date,
24 * 60 * 60 AS seconds_per_day,
count(DISTINCT tx_hash) / seconds_per_day as TPS
from
boba.core.fact_transactions
group by
date
order by
date asc
)
select
date_trunc('month', date) as month,
avg(tps)
from daily
group by 1
QueryRunArchived: QueryRun has been archived