Block Count | Transaction Count | Total Gas Used | Average Transactions per Block | Average Block Utilization (%) | |
---|---|---|---|---|---|
1 | 4706308 | 5165217 | 261626933211 | 1.097509 | 0.0926570573 |
Mrftiprinted-amaranth
Updated 13 hours ago
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: about 13 hours agoAuto-refreshes every 12 hours
1
54B
2s