FatemeTheLadytime between blocks - AR
Updated 2023-02-18
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
›
⌄
with
base aS (
select
date_trunc('hour', a.block_timestamp) as day,
datediff(second, a.block_timestamp, b.block_timestamp) as time_between_blocks
from
arbitrum.core.fact_blocks a
join arbitrum.core.fact_blocks b on a.block_number = b.block_number - 1
where a.BLOCK_TIMESTAMP::date BETWEEN '2023-01-01' and '2023-02-10'
)
,
base2 aS (
select
date_trunc('hour', a.block_timestamp) as day,
datediff(second, a.block_timestamp, b.block_timestamp) as time_between_blocks
from
optimism.core.fact_blocks a
join optimism.core.fact_blocks b on a.block_number = b.block_number - 1
where a.BLOCK_TIMESTAMP::date BETWEEN '2023-01-01' and '2023-02-10'
)
select
'Arbitrum' as "blockchain",
avg(time_between_blocks) as "Avg Time Between Blocks",
max(time_between_blocks) as "Max Time Between Blocks",
min(time_between_blocks) as "Min Time Between Blocks"
from
base
UNION
select
'Optimism' as "blockchain",
avg(time_between_blocks) as "Avg Time Between Blocks",
max(time_between_blocks) as "Max Time Between Blocks",
Run a query to Download Data