CryptoIcicleAlgo-Algorand Blockchain Block Performance - # of txns
Updated 2022-01-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
-- Let's take a deeper dive into Algorand's blockchain performance! First, let's look at block times:
-- What’s the average time between block and how has this changed over time
-- What’s the max recorded time between two blocks?
-- What’s the minimum recorded time between blocks?
-- Next, let's look at block size:
-- How many transactions did the biggest block have? And what was the make up of this block(i.e. what type of transactions did it contain?)?
-- Has the number of transactions per block increased as network adoption increased(Chart the number of transactions per block over time)?"
-- Payout 35.97 ALGO
-- Grand Prize 107.91 ALGO
-- Difficulty Beginner
select date, max(n_txns) as max_n_txns, avg(n_txns) as avg_n_txns from (
select
date_trunc('day',b.block_timestamp) as date,
b.block_id as b_id,
count(distinct(t.tx_id)) as n_txns
from algorand.transactions t
join algorand.block b on t.block_id = b.block_id
group by date, b_id
) group by date
Run a query to Download Data