flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
What was the average gas efficiency (gas used vs gas limit) in September?
maymoth55
What was the average gas efficiency (gas used vs gas limit) in September?
Updated 2024-10-03
Copy Reference
Fork
9
1
2
3
4
5
6
7
›
⌄
SELECT
BLOCK_NUMBER
,
(
GAS_USED
*
100.0
/
GAS_LIMIT
)
AS
gas_efficiency_percentage
FROM
polygon
.
core
.
fact_blocks
WHERE
BLOCK_TIMESTAMP
>=
'2023-09-01'
AND
BLOCK_TIMESTAMP
<
'2023-10-01'
ORDER
BY
gas_efficiency_percentage
DESC
;
Results
QueryRunArchived: QueryRun has been archived