Block Count | Transaction Count | Total Gas Used | Average Transactions per Block | Average Block Utilization (%) | |
---|---|---|---|---|---|
1 | 8984016 | 15501868 | 3694783230736 | 1.725494 | 0.6854446381 |
Mrftiprinted-amaranth
Updated 2025-06-23Copy Reference Fork
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
COUNT(DISTINCT block_number) AS "Block Count",
SUM(tx_count) AS "Transaction Count",
SUM(GAS_USED) AS "Total Gas Used",
"Transaction Count" / "Block Count" AS "Average Transactions per Block",
AVG(GAS_USED / NULLIF(GAS_LIMIT, 0)) * 100 AS "Average Block Utilization (%)"
FROM
swell.core.fact_blocks
Last run: 3 months ago
1
56B
4s