@lodestar/types 1.23.0-dev.404f13abfd → 1.23.0-dev.489accbc90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/electra/sszTypes.d.ts +111 -227
- package/lib/electra/sszTypes.js +22 -34
- package/lib/electra/sszTypes.js.map +1 -1
- package/lib/electra/types.d.ts +1 -3
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/sszTypes.d.ts +171 -227
- package/lib/types.d.ts +6 -4
- package/lib/types.js +1 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/typeguards.js +3 -2
- package/lib/utils/typeguards.js.map +1 -1
- package/lib/utils/validatorStatus.d.ts +8 -0
- package/lib/utils/validatorStatus.js +35 -0
- package/lib/utils/validatorStatus.js.map +1 -0
- package/package.json +3 -3
|
@@ -172,33 +172,30 @@ export declare const ConsolidationRequests: ListCompositeType<ContainerType<{
|
|
|
172
172
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
173
173
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
174
174
|
}>>;
|
|
175
|
-
export declare const
|
|
176
|
-
|
|
175
|
+
export declare const ExecutionRequests: ContainerType<{
|
|
176
|
+
deposits: ListCompositeType<ContainerType<{
|
|
177
177
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
178
178
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
179
179
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
180
180
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
181
181
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
182
182
|
}>>;
|
|
183
|
-
|
|
183
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
184
184
|
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
185
185
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
186
186
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
187
187
|
}>>;
|
|
188
|
-
|
|
188
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
189
189
|
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
190
190
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
191
191
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
192
192
|
}>>;
|
|
193
|
+
}>;
|
|
194
|
+
export declare const ExecutionPayloadHeader: ContainerType<{
|
|
193
195
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
194
196
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
198
|
-
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
199
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
200
|
-
}>>;
|
|
201
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
197
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
198
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
202
199
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
203
200
|
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
204
201
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -213,14 +210,16 @@ export declare const ExecutionPayload: ContainerType<{
|
|
|
213
210
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
214
211
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
215
212
|
}>;
|
|
216
|
-
export declare const
|
|
217
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
218
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
219
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
213
|
+
export declare const ExecutionPayload: ContainerType<{
|
|
220
214
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
221
215
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
222
|
-
|
|
223
|
-
|
|
216
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
217
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
218
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
219
|
+
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
220
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
221
|
+
}>>;
|
|
222
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
224
223
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
225
224
|
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
226
225
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -340,23 +339,6 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
340
339
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
341
340
|
}>;
|
|
342
341
|
executionPayload: ContainerType<{
|
|
343
|
-
depositRequests: ListCompositeType<ContainerType<{
|
|
344
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
345
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
346
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
347
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
348
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
349
|
-
}>>;
|
|
350
|
-
withdrawalRequests: ListCompositeType<ContainerType<{
|
|
351
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
352
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
353
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
354
|
-
}>>;
|
|
355
|
-
consolidationRequests: ListCompositeType<ContainerType<{
|
|
356
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
357
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
358
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
359
|
-
}>>;
|
|
360
342
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
361
343
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
362
344
|
withdrawals: ListCompositeType<ContainerType<{
|
|
@@ -389,6 +371,25 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
389
371
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
390
372
|
}>>;
|
|
391
373
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
374
|
+
executionRequests: ContainerType<{
|
|
375
|
+
deposits: ListCompositeType<ContainerType<{
|
|
376
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
377
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
378
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
379
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
380
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
381
|
+
}>>;
|
|
382
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
383
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
384
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
385
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
386
|
+
}>>;
|
|
387
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
388
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
389
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
390
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
391
|
+
}>>;
|
|
392
|
+
}>;
|
|
392
393
|
}>;
|
|
393
394
|
export declare const BeaconBlock: ContainerType<{
|
|
394
395
|
body: ContainerType<{
|
|
@@ -496,23 +497,6 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
496
497
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
497
498
|
}>;
|
|
498
499
|
executionPayload: ContainerType<{
|
|
499
|
-
depositRequests: ListCompositeType<ContainerType<{
|
|
500
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
501
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
502
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
503
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
504
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
505
|
-
}>>;
|
|
506
|
-
withdrawalRequests: ListCompositeType<ContainerType<{
|
|
507
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
508
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
509
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
510
|
-
}>>;
|
|
511
|
-
consolidationRequests: ListCompositeType<ContainerType<{
|
|
512
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
513
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
514
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
515
|
-
}>>;
|
|
516
500
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
517
501
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
518
502
|
withdrawals: ListCompositeType<ContainerType<{
|
|
@@ -545,6 +529,25 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
545
529
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
546
530
|
}>>;
|
|
547
531
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
532
|
+
executionRequests: ContainerType<{
|
|
533
|
+
deposits: ListCompositeType<ContainerType<{
|
|
534
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
535
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
536
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
537
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
538
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
539
|
+
}>>;
|
|
540
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
541
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
542
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
543
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
544
|
+
}>>;
|
|
545
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
546
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
547
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
548
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
549
|
+
}>>;
|
|
550
|
+
}>;
|
|
548
551
|
}>;
|
|
549
552
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
550
553
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -658,23 +661,6 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
658
661
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
659
662
|
}>;
|
|
660
663
|
executionPayload: ContainerType<{
|
|
661
|
-
depositRequests: ListCompositeType<ContainerType<{
|
|
662
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
663
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
664
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
665
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
666
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
667
|
-
}>>;
|
|
668
|
-
withdrawalRequests: ListCompositeType<ContainerType<{
|
|
669
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
670
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
671
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
672
|
-
}>>;
|
|
673
|
-
consolidationRequests: ListCompositeType<ContainerType<{
|
|
674
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
675
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
676
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
677
|
-
}>>;
|
|
678
664
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
679
665
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
680
666
|
withdrawals: ListCompositeType<ContainerType<{
|
|
@@ -707,6 +693,25 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
707
693
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
708
694
|
}>>;
|
|
709
695
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
696
|
+
executionRequests: ContainerType<{
|
|
697
|
+
deposits: ListCompositeType<ContainerType<{
|
|
698
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
699
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
700
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
701
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
702
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
703
|
+
}>>;
|
|
704
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
705
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
706
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
707
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
708
|
+
}>>;
|
|
709
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
710
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
711
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
712
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
713
|
+
}>>;
|
|
714
|
+
}>;
|
|
710
715
|
}>;
|
|
711
716
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
712
717
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -820,9 +825,6 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
820
825
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
821
826
|
}>;
|
|
822
827
|
executionPayloadHeader: ContainerType<{
|
|
823
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
824
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
825
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
826
828
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
827
829
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
828
830
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -957,9 +959,6 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
957
959
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
958
960
|
}>;
|
|
959
961
|
executionPayloadHeader: ContainerType<{
|
|
960
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
961
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
962
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
963
962
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
964
963
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
965
964
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1100,9 +1099,6 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1100
1099
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
1101
1100
|
}>;
|
|
1102
1101
|
executionPayloadHeader: ContainerType<{
|
|
1103
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1104
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1105
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1106
1102
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1107
1103
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1108
1104
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1140,9 +1136,6 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1140
1136
|
}>;
|
|
1141
1137
|
export declare const BuilderBid: ContainerType<{
|
|
1142
1138
|
header: ContainerType<{
|
|
1143
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1144
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1145
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1146
1139
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1147
1140
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1148
1141
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1168,9 +1161,6 @@ export declare const BuilderBid: ContainerType<{
|
|
|
1168
1161
|
export declare const SignedBuilderBid: ContainerType<{
|
|
1169
1162
|
message: ContainerType<{
|
|
1170
1163
|
header: ContainerType<{
|
|
1171
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1172
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1173
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1174
1164
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1175
1165
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1176
1166
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1195,54 +1185,6 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
1195
1185
|
}>;
|
|
1196
1186
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1197
1187
|
}>;
|
|
1198
|
-
export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
1199
|
-
executionPayload: ContainerType<{
|
|
1200
|
-
depositRequests: ListCompositeType<ContainerType<{
|
|
1201
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1202
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1203
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1204
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1205
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1206
|
-
}>>;
|
|
1207
|
-
withdrawalRequests: ListCompositeType<ContainerType<{
|
|
1208
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1209
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1210
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1211
|
-
}>>;
|
|
1212
|
-
consolidationRequests: ListCompositeType<ContainerType<{
|
|
1213
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1214
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1215
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1216
|
-
}>>;
|
|
1217
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1218
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1219
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1220
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1221
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1222
|
-
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1223
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1224
|
-
}>>;
|
|
1225
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1226
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1227
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1228
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1229
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1230
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1231
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1232
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1233
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1234
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1235
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1236
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1237
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1238
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1239
|
-
}>;
|
|
1240
|
-
blobsBundle: ContainerType<{
|
|
1241
|
-
commitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1242
|
-
proofs: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1243
|
-
blobs: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1244
|
-
}>;
|
|
1245
|
-
}>;
|
|
1246
1188
|
export declare const PendingBalanceDeposit: ContainerType<{
|
|
1247
1189
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1248
1190
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -1319,9 +1261,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
1319
1261
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1320
1262
|
}>;
|
|
1321
1263
|
latestExecutionPayloadHeader: ContainerType<{
|
|
1322
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1323
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1324
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1325
1264
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1326
1265
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1327
1266
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1366,38 +1305,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
1366
1305
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1367
1306
|
}>>;
|
|
1368
1307
|
}>;
|
|
1369
|
-
export declare const LightClientHeader: ContainerType<{
|
|
1370
|
-
beacon: ContainerType<{
|
|
1371
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1372
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1373
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1374
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1375
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1376
|
-
}>;
|
|
1377
|
-
execution: ContainerType<{
|
|
1378
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1379
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1380
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1381
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1382
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1383
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1384
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1385
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1386
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1387
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1388
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1389
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1390
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1391
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1392
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1393
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1394
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1395
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1396
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1397
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1398
|
-
}>;
|
|
1399
|
-
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1400
|
-
}>;
|
|
1401
1308
|
export declare const LightClientBootstrap: ContainerType<{
|
|
1402
1309
|
header: ContainerType<{
|
|
1403
1310
|
beacon: ContainerType<{
|
|
@@ -1408,9 +1315,6 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1408
1315
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1409
1316
|
}>;
|
|
1410
1317
|
execution: ContainerType<{
|
|
1411
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1412
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1413
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1414
1318
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1415
1319
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1416
1320
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1447,9 +1351,6 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1447
1351
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1448
1352
|
}>;
|
|
1449
1353
|
execution: ContainerType<{
|
|
1450
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1451
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1452
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1453
1354
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1454
1355
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1455
1356
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1484,9 +1385,6 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1484
1385
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1485
1386
|
}>;
|
|
1486
1387
|
execution: ContainerType<{
|
|
1487
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1488
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1489
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1490
1388
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1491
1389
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1492
1390
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1524,9 +1422,6 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1524
1422
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1525
1423
|
}>;
|
|
1526
1424
|
execution: ContainerType<{
|
|
1527
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1528
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1529
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1530
1425
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1531
1426
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1532
1427
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1556,9 +1451,6 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1556
1451
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1557
1452
|
}>;
|
|
1558
1453
|
execution: ContainerType<{
|
|
1559
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1560
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1561
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1562
1454
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1563
1455
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1564
1456
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1596,9 +1488,6 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1596
1488
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1597
1489
|
}>;
|
|
1598
1490
|
execution: ContainerType<{
|
|
1599
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1600
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1601
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1602
1491
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1603
1492
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1604
1493
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1636,9 +1525,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1636
1525
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1637
1526
|
}>;
|
|
1638
1527
|
execution: ContainerType<{
|
|
1639
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1640
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1641
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1642
1528
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1643
1529
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1644
1530
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1675,9 +1561,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1675
1561
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1676
1562
|
}>;
|
|
1677
1563
|
execution: ContainerType<{
|
|
1678
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1679
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1680
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1681
1564
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1682
1565
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1683
1566
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1712,9 +1595,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1712
1595
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1713
1596
|
}>;
|
|
1714
1597
|
execution: ContainerType<{
|
|
1715
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1716
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1717
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1718
1598
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1719
1599
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1720
1600
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1881,23 +1761,6 @@ export declare const BlockContents: ContainerType<{
|
|
|
1881
1761
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
1882
1762
|
}>;
|
|
1883
1763
|
executionPayload: ContainerType<{
|
|
1884
|
-
depositRequests: ListCompositeType<ContainerType<{
|
|
1885
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1886
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1887
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1888
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1889
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1890
|
-
}>>;
|
|
1891
|
-
withdrawalRequests: ListCompositeType<ContainerType<{
|
|
1892
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1893
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1894
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1895
|
-
}>>;
|
|
1896
|
-
consolidationRequests: ListCompositeType<ContainerType<{
|
|
1897
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1898
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1899
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1900
|
-
}>>;
|
|
1901
1764
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1902
1765
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1903
1766
|
withdrawals: ListCompositeType<ContainerType<{
|
|
@@ -1930,6 +1793,25 @@ export declare const BlockContents: ContainerType<{
|
|
|
1930
1793
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1931
1794
|
}>>;
|
|
1932
1795
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1796
|
+
executionRequests: ContainerType<{
|
|
1797
|
+
deposits: ListCompositeType<ContainerType<{
|
|
1798
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1799
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1800
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1801
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1802
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1803
|
+
}>>;
|
|
1804
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1805
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1806
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1807
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1808
|
+
}>>;
|
|
1809
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
1810
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1811
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1812
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1813
|
+
}>>;
|
|
1814
|
+
}>;
|
|
1933
1815
|
}>;
|
|
1934
1816
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1935
1817
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -2047,23 +1929,6 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
2047
1929
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2048
1930
|
}>;
|
|
2049
1931
|
executionPayload: ContainerType<{
|
|
2050
|
-
depositRequests: ListCompositeType<ContainerType<{
|
|
2051
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2052
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
2053
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
2054
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2055
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
2056
|
-
}>>;
|
|
2057
|
-
withdrawalRequests: ListCompositeType<ContainerType<{
|
|
2058
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
2059
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2060
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
2061
|
-
}>>;
|
|
2062
|
-
consolidationRequests: ListCompositeType<ContainerType<{
|
|
2063
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
2064
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2065
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2066
|
-
}>>;
|
|
2067
1932
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2068
1933
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2069
1934
|
withdrawals: ListCompositeType<ContainerType<{
|
|
@@ -2096,6 +1961,25 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
2096
1961
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2097
1962
|
}>>;
|
|
2098
1963
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1964
|
+
executionRequests: ContainerType<{
|
|
1965
|
+
deposits: ListCompositeType<ContainerType<{
|
|
1966
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1967
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1968
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1969
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1970
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1971
|
+
}>>;
|
|
1972
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1973
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1974
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1975
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1976
|
+
}>>;
|
|
1977
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
1978
|
+
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1979
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1980
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1981
|
+
}>>;
|
|
1982
|
+
}>;
|
|
2099
1983
|
}>;
|
|
2100
1984
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2101
1985
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|