DATE | CHAIN | T_P_S | |
---|---|---|---|
1 | 2025-04-12 00:00:00.000 | Base | 90.316419 |
2 | 2025-04-16 00:00:00.000 | Base | 82.886838 |
3 | 2025-05-08 00:00:00.000 | Base | 118.71166 |
4 | 2025-04-16 00:00:00.000 | Avalanche | 3.136159 |
5 | 2025-04-12 00:00:00.000 | Avalanche | 3.040882 |
6 | 2025-05-08 00:00:00.000 | Avalanche | 8.386076 |
7 | 2025-03-15 00:00:00.000 | Base | 81.743547 |
8 | 2025-03-19 00:00:00.000 | Base | 90.107665 |
9 | 2025-02-15 00:00:00.000 | Base | 76.470624 |
10 | 2025-02-15 00:00:00.000 | Avalanche | 3.284173 |
11 | 2025-03-15 00:00:00.000 | Avalanche | 2.882334 |
12 | 2025-03-19 00:00:00.000 | Avalanche | 3.235084 |
13 | 2025-05-13 00:00:00.000 | Base | 133.129887 |
14 | 2025-05-13 00:00:00.000 | Avalanche | 4.717816 |
15 | 2025-03-22 00:00:00.000 | Base | 88.590222 |
16 | 2025-02-16 00:00:00.000 | Base | 82.803433 |
17 | 2025-03-02 00:00:00.000 | Base | 92.800088 |
18 | 2025-02-16 00:00:00.000 | Avalanche | 4.036378 |
19 | 2025-03-02 00:00:00.000 | Avalanche | 4.303786 |
20 | 2025-03-22 00:00:00.000 | Avalanche | 2.425676 |
BlockTrackertps
Updated 2025-05-14
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
34
35
36
›
⌄
SELECT
date,
'Base' as chain,
num_of_txns /DATEDIFF(second,min_block_timestamp,max_block_timestamp) as T_P_S
FROM (
SELECT
date_trunc('{{granularity}}', block_timestamp) as date,
count(DISTINCT tx_hash) as num_of_txns,
min(block_timestamp) as min_block_timestamp,
max(block_timestamp) as max_block_timestamp
FROM base.core.fact_transactions
GROUP BY 1
)
WHERE date >= dateadd(day, -{{past_days}}, current_date())
union all
SELECT
date,
'Avalanche' as chain,
num_of_txns /DATEDIFF(second,min_block_timestamp,max_block_timestamp) as T_P_S
FROM (
SELECT
date_trunc('{{granularity}}', block_timestamp) as date,
count(DISTINCT tx_hash) as num_of_txns,
min(block_timestamp) as min_block_timestamp,
max(block_timestamp) as max_block_timestamp
FROM avalanche.core.fact_transactions
GROUP BY 1
)
WHERE date >= dateadd(day, -{{past_days}}, current_date())
Last run: 28 days ago
...
182
8KB
44s