TIME | Max tx_hash on a Trace | Avg tx_hash count per Trace | median tx_hash count per Trace | |
---|---|---|---|---|
1 | 2025-04-21 00:00:00.000 | 340 | 3 | 2 |
2 | 2025-05-13 00:00:00.000 | 724 | 3 | 2 |
3 | 2025-05-07 00:00:00.000 | 751 | 3 | 2 |
4 | 2025-05-08 00:00:00.000 | 712 | 4 | 2 |
5 | 2025-04-07 00:00:00.000 | 727 | 4 | 2 |
6 | 2025-04-22 00:00:00.000 | 769 | 3 | 2 |
7 | 2025-05-26 00:00:00.000 | 751 | 3 | 2 |
8 | 2025-03-28 00:00:00.000 | 1213 | 3 | 2 |
9 | 2025-06-09 00:00:00.000 | 602 | 3 | 2 |
10 | 2025-05-16 00:00:00.000 | 694 | 3 | 2 |
11 | 2025-05-21 00:00:00.000 | 313 | 3 | 2 |
12 | 2025-04-06 00:00:00.000 | 265 | 4 | 2 |
13 | 2025-05-02 00:00:00.000 | 751 | 3 | 2 |
14 | 2025-03-16 00:00:00.000 | 766 | 3 | 2 |
15 | 2025-03-15 00:00:00.000 | 729 | 3 | 2 |
16 | 2025-03-14 00:00:00.000 | 1230 | 3 | 2 |
17 | 2025-04-18 00:00:00.000 | 751 | 3 | 2 |
18 | 2025-04-03 00:00:00.000 | 751 | 4 | 2 |
19 | 2025-05-19 00:00:00.000 | 602 | 3 | 2 |
20 | 2025-04-29 00:00:00.000 | 385 | 3 | 2 |
HessishKPI - ovr 2
Updated 8 days ago
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
›
⌄
with trace as
(select
block_timestamp::date as timestamp ,
Trace_id,
count(TX_HASH) as txs
from
ton.core.fact_transactions
where
block_timestamp::date >= current_date - {{Last_N_days}}
and TX_SUCCEEDED = 'TRUE'
group by all)
select date_trunc('{{Timeframe}}',timestamp) as time,
max(txs) as "Max tx_hash on a Trace",
round(avg(txs)) as "Avg tx_hash count per Trace",
round(median(txs)) as "median tx_hash count per Trace"
from trace
group by all
Last run: 8 days ago
90
3KB
26s