MLDZMNpes3
Updated 2022-10-19
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_trunc('day', minute) as day,
'Optimism' as network,
avg (count_txn) as TPM_MAX
from (
select
date_trunc('minute', block_timestamp) as minute,
count(tx_hash) as count_txn
from optimism.core.fact_transactions
WHERE tx_hash is not null and block_timestamp>=CURRENT_DATE- {{Time_period}}
group by 1
)
group by 1
union all
select
date_trunc('day', minute) as day,
'Avalanche' as network,
avg (count_txn) as TPM_MAX
from (
select
date_trunc('minute', block_timestamp) as minute,
count(tx_hash) as count_txn
from Avalanche.core.fact_transactions
WHERE tx_hash is not null and block_timestamp>=CURRENT_DATE- {{Time_period}}
group by 1
)
group by 1
union all
select
date_trunc('day', minute) as day,
'Arbitrum' as network,
avg (count_txn) as TPM_MAX
from (
select
date_trunc('minute', block_timestamp) as minute,
count(tx_hash) as count_txn
Run a query to Download Data