m0rt3zaAlgorand tx/block stats
Updated 2022-06-30
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
WITH blocks AS (
SELECT block_id, block_timestamp, COUNT(tx_id) AS tx_count
FROM flipside_prod_db.algorand.application_call_transaction
WHERE block_timestamp > '2021-07-01'
GROUP BY block_id, block_timestamp
)
SELECT avg(tx_count) as "Average tx/block",
CASE WHEN block_timestamp < '2022-01-01' THEN 'Last 6 months of 2021'
ELSE 'First 6 months of 2022' END AS grp
FROM blocks
GROUP BY grp
Run a query to Download Data