-
Notifications
You must be signed in to change notification settings - Fork 245
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
feat: Add parent beacon block root into ExecutionPayloadEnvelopeV3
#227
Conversation
b509f2a
to
57fff8b
Compare
Co-authored-by: DaniPopes <[email protected]>
/// Optimism-specific - Ecotone parent beacon block root | ||
#[serde(default, skip_serializing_if = "Option::is_none")] | ||
pub parent_beacon_block_root: Option<B256>, |
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.
I'm fine with that for now, if you create a new reth issue for better rpc execution payload customization
cc @Rjected
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.
is this fixed with the customized engine types in node builder?
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.
not yet paradigmxyz/reth#6871
@clabby to update reth please bump pinned alloy commit in paradigm/emv-inspectors first, then bump both on reth |
## Overview Updates `alloy-rpc-types` and `alloy-rpc-trace-types` to `76c70fb9d44ace661bbf33408c2527e3874c964e`, which contains alloy-rs/alloy#227
Overview
Adds the
parentBeaconBlockRoot
field to theExecutionPayloadEnvelopeV3
, required in theEcotone
hardfork.Reference: https://github.com/ethereum-optimism/op-geth/blob/70103aa6866c3d965f1f71154958cd9c1a7beb5b/beacon/engine/types.go#L102-L103