From affc3152dfb2edc3816d74e2f1ab48d01be83fba Mon Sep 17 00:00:00 2001 From: jacobkaufmann Date: Tue, 17 Sep 2024 14:44:04 -0600 Subject: [PATCH] add notes to accompany type changes --- specs/electra/builder.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/specs/electra/builder.md b/specs/electra/builder.md index 4f5c9f6..3b375c2 100644 --- a/specs/electra/builder.md +++ b/specs/electra/builder.md @@ -4,12 +4,16 @@ This is the modification of the builder specification accompanying the Electra upgrade. +The behavior defined by the specification is consistent with previous forks except for the changes to the types given below. + ## Containers ### New containers #### `ExecutionBundle` +The `ExecutionBundle` supersedes the [`ExecutionPayloadAndBlobsBundle`](execution-payload-and-blobs-bundle-deneb). + ```python class ExecutionBundle(Container): execution_payload: ExecutionPayload @@ -52,3 +56,5 @@ class BlindedBeaconBlockBody(Container): blob_kzg_commitments: List[KZGCommitment, MAX_BLOB_COMMITMENTS_PER_BLOCK] execution_requests_root: Root # [New in Electra] ``` + +[execution-payload-and-blobs-bundle-deneb]: ../deneb/builder.md#executionpayloadandblobsbundle