@@ -199,6 +199,8 @@ class DepositReceipt(Container):
199199
200200#### ` PendingBalanceDeposit `
201201
202+ * Note* : The container is new in EIP7251.
203+
202204``` python
203205class PendingBalanceDeposit (Container ):
204206 index: ValidatorIndex
@@ -207,6 +209,8 @@ class PendingBalanceDeposit(Container):
207209
208210#### ` PendingPartialWithdrawal `
209211
212+ * Note* : The container is new in EIP7251.
213+
210214``` python
211215class PendingPartialWithdrawal (Container ):
212216 index: ValidatorIndex
@@ -215,6 +219,8 @@ class PendingPartialWithdrawal(Container):
215219```
216220#### ` ExecutionLayerWithdrawalRequest `
217221
222+ * Note* : The container is new in EIP7251.
223+
218224``` python
219225class ExecutionLayerWithdrawalRequest (Container ):
220226 source_address: ExecutionAddress
@@ -224,6 +230,8 @@ class ExecutionLayerWithdrawalRequest(Container):
224230
225231#### ` Consolidation `
226232
233+ * Note* : The container is new in EIP7251.
234+
227235``` python
228236class Consolidation (Container ):
229237 source_index: ValidatorIndex
@@ -232,13 +240,19 @@ class Consolidation(Container):
232240```
233241
234242#### ` SignedConsolidation `
243+
244+ * Note* : The container is new in EIP7251.
245+
235246``` python
236247class SignedConsolidation (Container ):
237248 message: Consolidation
238249 signature: BLSSignature
239250```
240251
241252#### ` PendingConsolidation `
253+
254+ * Note* : The container is new in EIP7251.
255+
242256``` python
243257class PendingConsolidation (Container ):
244258 source_index: ValidatorIndex
0 commit comments