@lodestar/types 1.41.0-dev.afd446235e → 1.41.0-dev.b90dff673d
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/altair/sszTypes.d.ts +12 -12
- package/lib/bellatrix/sszTypes.d.ts +130 -130
- package/lib/capella/sszTypes.d.ts +243 -243
- package/lib/deneb/sszTypes.d.ts +408 -408
- package/lib/electra/sszTypes.d.ts +155 -155
- package/lib/fulu/sszTypes.d.ts +68 -68
- package/lib/gloas/sszTypes.d.ts +26 -26
- package/lib/phase0/validator.d.ts.map +1 -1
- package/lib/phase0/validator.js.map +1 -1
- package/lib/sszTypes.d.ts +13908 -13908
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.js +2 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/array.js.map +1 -1
- package/lib/utils/container.js.map +1 -1
- package/lib/utils/executionAddress.d.ts.map +1 -1
- package/lib/utils/executionAddress.js.map +1 -1
- package/lib/utils/rewards.d.ts +4 -4
- package/lib/utils/rewards.d.ts.map +1 -1
- package/lib/utils/stringType.d.ts.map +1 -1
- package/lib/utils/stringType.js.map +1 -1
- package/lib/utils/typeguards.js.map +1 -1
- package/lib/utils/validatorStatus.js.map +1 -1
- package/package.json +5 -5
package/lib/fulu/sszTypes.d.ts
CHANGED
|
@@ -2,18 +2,18 @@ import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, Vector
|
|
|
2
2
|
export declare const KZGProof: ByteVectorType;
|
|
3
3
|
export declare const Blob: ByteVectorType;
|
|
4
4
|
export declare const Metadata: ContainerType<{
|
|
5
|
-
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
6
5
|
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
7
6
|
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
8
7
|
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
8
|
+
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
9
9
|
}>;
|
|
10
10
|
export declare const Status: ContainerType<{
|
|
11
|
-
earliestAvailableSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12
11
|
forkDigest: ByteVectorType;
|
|
13
12
|
finalizedRoot: ByteVectorType;
|
|
14
13
|
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
15
14
|
headRoot: ByteVectorType;
|
|
16
15
|
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
16
|
+
earliestAvailableSlot: import("@chainsafe/ssz").UintNumberType;
|
|
17
17
|
}>;
|
|
18
18
|
export declare const Cell: ByteVectorType;
|
|
19
19
|
export declare const DataColumn: ListCompositeType<ByteVectorType>;
|
|
@@ -72,6 +72,10 @@ export declare const DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
|
72
72
|
columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
73
73
|
}>;
|
|
74
74
|
export declare const BeaconBlock: ContainerType<{
|
|
75
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
76
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
77
|
+
parentRoot: ByteVectorType;
|
|
78
|
+
stateRoot: ByteVectorType;
|
|
75
79
|
body: ContainerType<{
|
|
76
80
|
randaoReveal: ByteVectorType;
|
|
77
81
|
eth1Data: ContainerType<{
|
|
@@ -177,15 +181,6 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
177
181
|
syncCommitteeSignature: ByteVectorType;
|
|
178
182
|
}>;
|
|
179
183
|
executionPayload: ContainerType<{
|
|
180
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
181
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
182
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
183
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
184
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
185
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
186
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
187
|
-
}>>;
|
|
188
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
189
184
|
parentHash: ByteVectorType;
|
|
190
185
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
191
186
|
stateRoot: ByteVectorType;
|
|
@@ -199,6 +194,15 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
199
194
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
200
195
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
201
196
|
blockHash: ByteVectorType;
|
|
197
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
198
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
199
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
200
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
201
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
202
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
203
|
+
}>>;
|
|
204
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
205
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
202
206
|
}>;
|
|
203
207
|
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
204
208
|
message: ContainerType<{
|
|
@@ -229,13 +233,13 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
229
233
|
}>>;
|
|
230
234
|
}>;
|
|
231
235
|
}>;
|
|
232
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
233
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
234
|
-
parentRoot: ByteVectorType;
|
|
235
|
-
stateRoot: ByteVectorType;
|
|
236
236
|
}>;
|
|
237
237
|
export declare const SignedBeaconBlock: ContainerType<{
|
|
238
238
|
message: ContainerType<{
|
|
239
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
240
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
241
|
+
parentRoot: ByteVectorType;
|
|
242
|
+
stateRoot: ByteVectorType;
|
|
239
243
|
body: ContainerType<{
|
|
240
244
|
randaoReveal: ByteVectorType;
|
|
241
245
|
eth1Data: ContainerType<{
|
|
@@ -341,15 +345,6 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
341
345
|
syncCommitteeSignature: ByteVectorType;
|
|
342
346
|
}>;
|
|
343
347
|
executionPayload: ContainerType<{
|
|
344
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
345
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
346
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
347
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
348
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
349
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
350
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
351
|
-
}>>;
|
|
352
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
353
348
|
parentHash: ByteVectorType;
|
|
354
349
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
355
350
|
stateRoot: ByteVectorType;
|
|
@@ -363,6 +358,15 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
363
358
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
364
359
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
365
360
|
blockHash: ByteVectorType;
|
|
361
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
362
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
363
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
364
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
365
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
366
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
367
|
+
}>>;
|
|
368
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
369
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
366
370
|
}>;
|
|
367
371
|
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
368
372
|
message: ContainerType<{
|
|
@@ -393,10 +397,6 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
393
397
|
}>>;
|
|
394
398
|
}>;
|
|
395
399
|
}>;
|
|
396
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
397
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
398
|
-
parentRoot: ByteVectorType;
|
|
399
|
-
stateRoot: ByteVectorType;
|
|
400
400
|
}>;
|
|
401
401
|
signature: ByteVectorType;
|
|
402
402
|
}>;
|
|
@@ -407,15 +407,6 @@ export declare const BlobsBundle: ContainerType<{
|
|
|
407
407
|
}>;
|
|
408
408
|
export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
409
409
|
executionPayload: ContainerType<{
|
|
410
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
411
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
412
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
413
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
414
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
415
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
416
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
417
|
-
}>>;
|
|
418
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
419
410
|
parentHash: ByteVectorType;
|
|
420
411
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
421
412
|
stateRoot: ByteVectorType;
|
|
@@ -429,6 +420,15 @@ export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
|
429
420
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
430
421
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
431
422
|
blockHash: ByteVectorType;
|
|
423
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
424
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
425
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
426
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
427
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
428
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
429
|
+
}>>;
|
|
430
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
431
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
432
432
|
}>;
|
|
433
433
|
blobsBundle: ContainerType<{
|
|
434
434
|
commitments: ListCompositeType<ByteVectorType>;
|
|
@@ -437,7 +437,6 @@ export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
|
437
437
|
}>;
|
|
438
438
|
}>;
|
|
439
439
|
export declare const BeaconState: ContainerType<{
|
|
440
|
-
proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
441
440
|
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
442
441
|
genesisValidatorsRoot: ByteVectorType;
|
|
443
442
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -496,10 +495,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
496
495
|
aggregatePubkey: ByteVectorType;
|
|
497
496
|
}>;
|
|
498
497
|
latestExecutionPayloadHeader: ContainerType<{
|
|
499
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
500
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
501
|
-
withdrawalsRoot: ByteVectorType;
|
|
502
|
-
transactionsRoot: ByteVectorType;
|
|
503
498
|
parentHash: ByteVectorType;
|
|
504
499
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
505
500
|
stateRoot: ByteVectorType;
|
|
@@ -513,6 +508,10 @@ export declare const BeaconState: ContainerType<{
|
|
|
513
508
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
514
509
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
515
510
|
blockHash: ByteVectorType;
|
|
511
|
+
transactionsRoot: ByteVectorType;
|
|
512
|
+
withdrawalsRoot: ByteVectorType;
|
|
513
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
514
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
516
515
|
}>;
|
|
517
516
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
518
517
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -542,9 +541,14 @@ export declare const BeaconState: ContainerType<{
|
|
|
542
541
|
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
543
542
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
544
543
|
}>>;
|
|
544
|
+
proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
545
545
|
}>;
|
|
546
546
|
export declare const BlockContents: ContainerType<{
|
|
547
547
|
block: ContainerType<{
|
|
548
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
549
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
550
|
+
parentRoot: ByteVectorType;
|
|
551
|
+
stateRoot: ByteVectorType;
|
|
548
552
|
body: ContainerType<{
|
|
549
553
|
randaoReveal: ByteVectorType;
|
|
550
554
|
eth1Data: ContainerType<{
|
|
@@ -650,15 +654,6 @@ export declare const BlockContents: ContainerType<{
|
|
|
650
654
|
syncCommitteeSignature: ByteVectorType;
|
|
651
655
|
}>;
|
|
652
656
|
executionPayload: ContainerType<{
|
|
653
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
654
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
655
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
656
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
657
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
658
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
659
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
660
|
-
}>>;
|
|
661
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
662
657
|
parentHash: ByteVectorType;
|
|
663
658
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
664
659
|
stateRoot: ByteVectorType;
|
|
@@ -672,6 +667,15 @@ export declare const BlockContents: ContainerType<{
|
|
|
672
667
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
673
668
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
674
669
|
blockHash: ByteVectorType;
|
|
670
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
671
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
672
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
673
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
674
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
675
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
676
|
+
}>>;
|
|
677
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
678
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
675
679
|
}>;
|
|
676
680
|
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
677
681
|
message: ContainerType<{
|
|
@@ -702,10 +706,6 @@ export declare const BlockContents: ContainerType<{
|
|
|
702
706
|
}>>;
|
|
703
707
|
}>;
|
|
704
708
|
}>;
|
|
705
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
706
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
707
|
-
parentRoot: ByteVectorType;
|
|
708
|
-
stateRoot: ByteVectorType;
|
|
709
709
|
}>;
|
|
710
710
|
kzgProofs: ListCompositeType<ByteVectorType>;
|
|
711
711
|
blobs: ListCompositeType<ByteVectorType>;
|
|
@@ -713,6 +713,10 @@ export declare const BlockContents: ContainerType<{
|
|
|
713
713
|
export declare const SignedBlockContents: ContainerType<{
|
|
714
714
|
signedBlock: ContainerType<{
|
|
715
715
|
message: ContainerType<{
|
|
716
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
717
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
718
|
+
parentRoot: ByteVectorType;
|
|
719
|
+
stateRoot: ByteVectorType;
|
|
716
720
|
body: ContainerType<{
|
|
717
721
|
randaoReveal: ByteVectorType;
|
|
718
722
|
eth1Data: ContainerType<{
|
|
@@ -818,15 +822,6 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
818
822
|
syncCommitteeSignature: ByteVectorType;
|
|
819
823
|
}>;
|
|
820
824
|
executionPayload: ContainerType<{
|
|
821
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
822
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
823
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
824
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
825
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
826
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
827
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
828
|
-
}>>;
|
|
829
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
830
825
|
parentHash: ByteVectorType;
|
|
831
826
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
832
827
|
stateRoot: ByteVectorType;
|
|
@@ -840,6 +835,15 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
840
835
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
841
836
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
842
837
|
blockHash: ByteVectorType;
|
|
838
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
839
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
840
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
841
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
842
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
843
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
844
|
+
}>>;
|
|
845
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
846
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
843
847
|
}>;
|
|
844
848
|
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
845
849
|
message: ContainerType<{
|
|
@@ -870,10 +874,6 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
870
874
|
}>>;
|
|
871
875
|
}>;
|
|
872
876
|
}>;
|
|
873
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
874
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
875
|
-
parentRoot: ByteVectorType;
|
|
876
|
-
stateRoot: ByteVectorType;
|
|
877
877
|
}>;
|
|
878
878
|
signature: ByteVectorType;
|
|
879
879
|
}>;
|
package/lib/gloas/sszTypes.d.ts
CHANGED
|
@@ -102,15 +102,6 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
|
102
102
|
}>;
|
|
103
103
|
export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
104
104
|
payload: ContainerType<{
|
|
105
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
106
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
107
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
108
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
109
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
110
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
111
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
112
|
-
}>>;
|
|
113
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
114
105
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
115
106
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
116
107
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -124,6 +115,15 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
124
115
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
125
116
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
126
117
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
118
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
119
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
120
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
121
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
122
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
123
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
124
|
+
}>>;
|
|
125
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
126
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
127
127
|
}>;
|
|
128
128
|
executionRequests: ContainerType<{
|
|
129
129
|
deposits: ListCompositeType<ContainerType<{
|
|
@@ -152,15 +152,6 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
152
152
|
export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
153
153
|
message: ContainerType<{
|
|
154
154
|
payload: ContainerType<{
|
|
155
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
156
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
157
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
158
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
159
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
160
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
161
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
162
|
-
}>>;
|
|
163
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
164
155
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
165
156
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
166
157
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -174,6 +165,15 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
174
165
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
175
166
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
176
167
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
168
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
169
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
170
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
171
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
172
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
173
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
174
|
+
}>>;
|
|
175
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
176
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
177
177
|
}>;
|
|
178
178
|
executionRequests: ContainerType<{
|
|
179
179
|
deposits: ListCompositeType<ContainerType<{
|
|
@@ -341,6 +341,10 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
341
341
|
}>>;
|
|
342
342
|
}>;
|
|
343
343
|
export declare const BeaconBlock: ContainerType<{
|
|
344
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
345
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
346
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
347
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
344
348
|
body: ContainerType<{
|
|
345
349
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
346
350
|
eth1Data: ContainerType<{
|
|
@@ -480,13 +484,13 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
480
484
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
481
485
|
}>>;
|
|
482
486
|
}>;
|
|
483
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
484
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
485
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
486
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
487
487
|
}>;
|
|
488
488
|
export declare const SignedBeaconBlock: ContainerType<{
|
|
489
489
|
message: ContainerType<{
|
|
490
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
491
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
492
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
493
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
490
494
|
body: ContainerType<{
|
|
491
495
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
492
496
|
eth1Data: ContainerType<{
|
|
@@ -626,10 +630,6 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
626
630
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
627
631
|
}>>;
|
|
628
632
|
}>;
|
|
629
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
630
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
631
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
632
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
633
633
|
}>;
|
|
634
634
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
635
635
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/phase0/validator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,uBAAuB,EAAE,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAiBjF,eAAO,MAAM,aAAa;;;;;;;;;CASzB,CAAC;AAEF;;GAEG;AACH,qBAAa,uBAAwB,SAAQ,uBAAuB,CAAC,OAAO,aAAa,CAAC
|
|
1
|
+
{"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/phase0/validator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,uBAAuB,EAAE,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAiBjF,eAAO,MAAM,aAAa;;;;;;;;;CASzB,CAAC;AAEF;;GAEG;AACH,qBAAa,uBAAwB,SAAQ,uBAAuB,CAAC,OAAO,aAAa,CAAC;IACxF,cAEC;IAGD,sBAAsB,CACpB,EAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAC,EAAE,SAAS,EACzC,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,aAAa,CAAC,OAAO,aAAa,CAAC,GAC7C,MAAM,CAmBR;CACF;AAgBD,eAAO,MAAM,mBAAmB,yBAAgC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/phase0/validator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,uBAAuB,EAAgB,MAAM,gBAAgB,CAAC;AACjF,OAAO,KAAK,YAAY,MAAM,0BAA0B,CAAC;AAEzD,yGAAyG;AACzG,MAAM,EAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAC,GAAG,YAAY,CAAC;AAExE,mHAAmH;AACnH,MAAM,eAAe,GAAG,CAAC,IAAI,EAAE,CAAC;AAEhC;;GAEG;AACH,MAAM,WAAW,GAAG,CAAC,CAAC;AACtB,MAAM,WAAW,GAAG,EAAE,CAAC;AACvB,MAAM,2BAA2B,GAAG,EAAE,CAAC;AACvC,MAAM,YAAY,GAAG,CAAC,CAAC;AAEvB,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,MAAM,EAAE,SAAS;IACjB,qBAAqB,EAAE,OAAO;IAC9B,gBAAgB,EAAE,SAAS;IAC3B,OAAO,EAAE,OAAO;IAChB,0BAA0B,EAAE,QAAQ;IACpC,eAAe,EAAE,QAAQ;IACzB,SAAS,EAAE,QAAQ;IACnB,iBAAiB,EAAE,QAAQ;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,OAAO,uBAAwB,SAAQ,uBAA6C;IACxF;
|
|
1
|
+
{"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/phase0/validator.ts"],"names":[],"mappings":"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"}
|