@@ -112,18 +112,18 @@ export const SignedAggregateAndProof = new ContainerType(
112
112
{ typeName : "SignedAggregateAndProof" , jsonCase : "eth2" }
113
113
) ;
114
114
115
- export const DepositReceipt = new ContainerType (
115
+ export const DepositRequest = new ContainerType (
116
116
{
117
117
pubkey : BLSPubkey ,
118
118
withdrawalCredentials : Bytes32 ,
119
119
amount : UintNum64 ,
120
120
signature : BLSSignature ,
121
121
index : DepositIndex ,
122
122
} ,
123
- { typeName : "DepositReceipt " , jsonCase : "eth2" }
123
+ { typeName : "DepositRequest " , jsonCase : "eth2" }
124
124
) ;
125
125
126
- export const DepositReceipts = new ListCompositeType ( DepositReceipt , MAX_DEPOSIT_RECEIPTS_PER_PAYLOAD ) ;
126
+ export const DepositRequests = new ListCompositeType ( DepositRequest , MAX_DEPOSIT_RECEIPTS_PER_PAYLOAD ) ;
127
127
128
128
export const ExecutionLayerWithdrawalRequest = new ContainerType (
129
129
{
@@ -141,7 +141,7 @@ export const ExecutionLayerWithdrawalRequests = new ListCompositeType(
141
141
export const ExecutionPayload = new ContainerType (
142
142
{
143
143
...denebSsz . ExecutionPayload . fields ,
144
- depositReceipts : DepositReceipts , // New in ELECTRA
144
+ depositRequests : DepositRequests , // New in ELECTRA
145
145
withdrawalRequests : ExecutionLayerWithdrawalRequests , // New in ELECTRA
146
146
} ,
147
147
{ typeName : "ExecutionPayload" , jsonCase : "eth2" }
@@ -150,7 +150,7 @@ export const ExecutionPayload = new ContainerType(
150
150
export const ExecutionPayloadHeader = new ContainerType (
151
151
{
152
152
...denebSsz . ExecutionPayloadHeader . fields ,
153
- depositReceiptsRoot : Root , // New in ELECTRA
153
+ depositRequestsRoot : Root , // New in ELECTRA
154
154
withdrawalRequestsRoot : Root , // New in ELECTRA
155
155
} ,
156
156
{ typeName : "ExecutionPayloadHeader" , jsonCase : "eth2" }
@@ -340,7 +340,7 @@ export const BeaconState = new ContainerType(
340
340
nextWithdrawalValidatorIndex : capellaSsz . BeaconState . fields . nextWithdrawalValidatorIndex ,
341
341
// Deep history valid from Capella onwards
342
342
historicalSummaries : capellaSsz . BeaconState . fields . historicalSummaries ,
343
- depositReceiptsStartIndex : UintBn64 , // New in ELECTRA:EIP6110
343
+ depositRequestsStartIndex : UintBn64 , // New in ELECTRA:EIP6110
344
344
depositBalanceToConsume : Gwei , // New in Electra:EIP7251
345
345
exitBalanceToConsume : Gwei , // New in Electra:EIP7251
346
346
earliestExitEpoch : Epoch , // New in Electra:EIP7251
0 commit comments