Conversation
Contributor
Author
|
This stack of pull requests is managed by Graphite. Learn more about stacking. |
4c10e4c to
6c74c7e
Compare
a3aea03 to
c0f02e4
Compare
eip1559Paramseip1559Params
refcell
reviewed
Oct 1, 2024
refcell
approved these changes
Oct 1, 2024
Contributor
|
Although I think this is sound, I'm a bit concerned of using the nonce in case we need it down the road for something. Placing these in the L1 info feels more scalable to me and is a more consistent way of introducing modifications, though there is the aforementioned tradeoff that the basefee computation becomes invasive. |
This was referenced Oct 1, 2024
roberto-bayardo
approved these changes
Oct 1, 2024
Contributor
|
We should make sure that there is a getter for EIP1559 params on the |
sebastianst
approved these changes
Oct 1, 2024
This was referenced Oct 1, 2024
tynes
approved these changes
Oct 1, 2024
github-merge-queue bot
pushed a commit
to alloy-rs/op-alloy
that referenced
this pull request
Oct 1, 2024
## Overview Removes the `Holocene` variant of the L1 info transaction. The specification of the dynamic EIP-1559 parameters has changed to put this feature in the `PayloadAttributes` instead. ethereum-optimism/specs#404
github-merge-queue bot
pushed a commit
to alloy-rs/op-alloy
that referenced
this pull request
Oct 1, 2024
…utes` (#138) ## Overview Adds the `eip1559Params` field to the `OptimismPayloadAttributes, per ethereum-optimism/specs#404
docker-dragonmj9ol
added a commit
to docker-dragonmj9ol/op-alloy
that referenced
this pull request
Nov 6, 2025
## Overview Removes the `Holocene` variant of the L1 info transaction. The specification of the dynamic EIP-1559 parameters has changed to put this feature in the `PayloadAttributes` instead. ethereum-optimism/specs#404
docker-dragonmj9ol
added a commit
to docker-dragonmj9ol/op-alloy
that referenced
this pull request
Nov 6, 2025
…utes` (#138) ## Overview Adds the `eip1559Params` field to the `OptimismPayloadAttributes, per ethereum-optimism/specs#404
theochap
pushed a commit
to ethereum-optimism/optimism
that referenced
this pull request
Jan 21, 2026
…p-alloy#137) ## Overview Removes the `Holocene` variant of the L1 info transaction. The specification of the dynamic EIP-1559 parameters has changed to put this feature in the `PayloadAttributes` instead. ethereum-optimism/specs#404
theochap
pushed a commit
to ethereum-optimism/optimism
that referenced
this pull request
Jan 21, 2026
…utes` (alloy-rs/op-alloy#138) ## Overview Adds the `eip1559Params` field to the `OptimismPayloadAttributes, per ethereum-optimism/specs#404
refcell
pushed a commit
to base/base
that referenced
this pull request
Feb 18, 2026
## Overview Removes the `Holocene` variant of the L1 info transaction. The specification of the dynamic EIP-1559 parameters has changed to put this feature in the `PayloadAttributes` instead. ethereum-optimism/specs#404
refcell
pushed a commit
to base/base
that referenced
this pull request
Feb 18, 2026
…utes` (#138) ## Overview Adds the `eip1559Params` field to the `OptimismPayloadAttributes, per ethereum-optimism/specs#404
refcell
pushed a commit
to base/base
that referenced
this pull request
Feb 18, 2026
## Overview Removes the `Holocene` variant of the L1 info transaction. The specification of the dynamic EIP-1559 parameters has changed to put this feature in the `PayloadAttributes` instead. ethereum-optimism/specs#404
refcell
pushed a commit
to base/base
that referenced
this pull request
Feb 18, 2026
…utes` (#138) ## Overview Adds the `eip1559Params` field to the `OptimismPayloadAttributes, per ethereum-optimism/specs#404
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Overview
Simplifies the dynamic EIP-1559 params feature of Holocene by including the parameters within the
PayloadAttributesV3and the blockHeader.Rationale
Currently, the EIP-1559 parameters are included within the
L1Blockcontract. However, unlike other variables within the L1 info transaction:reth, for example, the base fee computation function is within a lower-level config type, without access to the state or transactions. Ultimately we lose database access several layers of abstraction higher up, warranting a refactor to make this change work. Ingeth, it's similar, but the change is a bit less invasive higher up with only 2 layers to pass the state handle through.There's precedent for
SystemConfigvariables that are needed at the beginning of a block, or that don't update frequently, to belong within thePayloadAttributes(Thegas_limit). The block builder additionally having access to control the EIP-1559 parameters is constrained by consensus rule, and similarly to thegasLimit, is specified to be referenced from theSystemConfigin the derivation pipeline's payload builder. This change would simplify this feature's implementation within execution clients and save us from needlessly posting the parameters in the L1 info transaction every 2 seconds as such.Why in the block header?
https://github.com/ethereum-optimism/specs/pull/404/files#diff-b93100978f12975e6b4ee660c7362c71d4f2a416ef7c9f0e76e17ca0062842efR144-R152