ML6Daily Average transactions done in a block on Networks
Updated 2022-07-25Copy 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
›
⌄
select '1.Average transactions done in a block on Polygon : ' as lbl, sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
from polygon.core.fact_blocks
where year(block_timestamp)=2022 and month(block_timestamp) > 4
group by 3
UNION
select '2.Average transactions done in a block on Solana : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
from solana.core.fact_blocks
where year(block_timestamp)=2022 and month(block_timestamp) > 4
group by 3
UNION
select '3.Average transactions done in a block on Flow : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
from flow.core.fact_blocks
where year(block_timestamp)=2022 and month(block_timestamp) > 4
group by 3
UNION
select '4.Average transactions done in a block on Ethereum : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
from ethereum.core.fact_blocks
where year(block_timestamp)=2022 and month(block_timestamp) > 4
group by 3
UNION
select '5.Average transactions done in a block on Optimism : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
from optimism.core.fact_blocks
where year(block_timestamp)=2022 and month(block_timestamp) > 4
group by 3
UNION
select '6.Average time between blocks on Arbitrum : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
from arbitrum.core.fact_blocks
where year(block_timestamp)=2022 and month(block_timestamp) > 4
group by 3
Run a query to Download Data