mlharb, trx per block1
Updated 2022-09-08Copy 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
select avg(trxs) as "Transaction per Block",
'Average TX per Block' as "Min, Avg and Max",
'before Nitro' as type
from (select block_number,
count(distinct(tx_hash)) as trxs
from arbitrum.core.fact_transactions
where block_timestamp >= '2022-08-26'
and block_timestamp < '2022-08-31'
group by 1
)
group by 3
union
select max(trxs),
'Max TX per Block',
'before Nitro' as type
from (select block_number,
count(distinct(tx_hash)) as trxs
from arbitrum.core.fact_transactions
where block_timestamp >= '2022-08-26'
and block_timestamp < '2022-08-31'
group by 1
)
group by 3
union
select min(trxs),
'Min TX per Block',
'before Nitro' as type
from (select block_number,
count(distinct(tx_hash)) as trxs
from arbitrum.core.fact_transactions
where block_timestamp >= '2022-08-26'
and block_timestamp < '2022-08-31'
group by 1
Run a query to Download Data