-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add eip1559 params to executable payload #1480
Add eip1559 params to executable payload #1480
Conversation
/// Array of hex[`u64`] representing the EIP-1559 parameters, enabled with V3 | ||
pub eip_1559_params: B64, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how will this be rolled out, will this just be a default value until this is activated?
/// Array of hex[`u64`] representing the EIP-1559 parameters, enabled with V3 | ||
pub eip_1559_params: B64, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can't do this, this is an op specific change.
this would break existing engine API because this field doesn't exist.
looks like we need to roll an op specific v3 type
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I just realized as well, I should add this in op-alloy
I believe this should also be optional |
closing per ethereum-optimism/specs#428 (comment) |
Motivation
Required for Holocene EL changes
ethereum-optimism/specs#428
Solution
PR Checklist