v1.1.3
This patch release includes several important fixes for gas estimation, transaction pool eviction, and account abstraction transaction handling, along with improved peer discovery and installer reliability. We recommend all node operators upgrade.
What's Changed
- fix(chainspec): set explicit tx_gas_limit_cap for T0/Genesis to prevent EIP-7825 fallback by @gakonst in #2649:
eth_estimateGaswas broken on mainnet — returningintrinsic gas too highfor all calls without an explicit gas limit. The root cause was that T0/Genesis returnedNonefortx_gas_limit_cap(), causing revm to fall back to EIP-7825's protocol default of 2²⁴ (~16.7M), which capped the binary search and triggered validation failures. This fix sets an explicit gas limit cap for T0/Genesis.