From 0252e12d734fbe23c61f4869902047ac9b39c8ac Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Tue, 16 Apr 2024 19:57:23 +0800 Subject: [PATCH] Add notes --- specs/electra/beacon-chain.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/specs/electra/beacon-chain.md b/specs/electra/beacon-chain.md index e38ca3647..985f41fe6 100644 --- a/specs/electra/beacon-chain.md +++ b/specs/electra/beacon-chain.md @@ -199,6 +199,8 @@ class DepositReceipt(Container): #### `PendingBalanceDeposit` +*Note*: The container is new in EIP7251. + ```python class PendingBalanceDeposit(Container): index: ValidatorIndex @@ -207,6 +209,8 @@ class PendingBalanceDeposit(Container): #### `PendingPartialWithdrawal` +*Note*: The container is new in EIP7251. + ```python class PendingPartialWithdrawal(Container): index: ValidatorIndex @@ -215,6 +219,8 @@ class PendingPartialWithdrawal(Container): ``` #### `ExecutionLayerWithdrawalRequest` +*Note*: The container is new in EIP7251. + ```python class ExecutionLayerWithdrawalRequest(Container): source_address: ExecutionAddress @@ -224,6 +230,8 @@ class ExecutionLayerWithdrawalRequest(Container): #### `Consolidation` +*Note*: The container is new in EIP7251. + ```python class Consolidation(Container): source_index: ValidatorIndex @@ -232,6 +240,9 @@ class Consolidation(Container): ``` #### `SignedConsolidation` + +*Note*: The container is new in EIP7251. + ```python class SignedConsolidation(Container): message: Consolidation @@ -239,6 +250,9 @@ class SignedConsolidation(Container): ``` #### `PendingConsolidation` + +*Note*: The container is new in EIP7251. + ```python class PendingConsolidation(Container): source_index: ValidatorIndex