@lodestar/types 1.46.0-dev.e00bf67333 → 1.46.0-dev.e6f04acd82
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 +5 -5
- package/lib/bellatrix/sszTypes.d.ts +8 -8
- package/lib/capella/sszTypes.d.ts +8 -8
- package/lib/deneb/sszTypes.d.ts +10 -10
- package/lib/electra/sszTypes.d.ts +10 -10
- package/lib/fulu/sszTypes.d.ts +6 -6
- package/lib/gloas/sszTypes.d.ts +24 -24
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +12 -4
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/heze/index.d.ts +5 -0
- package/lib/heze/index.d.ts.map +1 -0
- package/lib/heze/index.js +5 -0
- package/lib/heze/index.js.map +1 -0
- package/lib/heze/sszTypes.d.ts +1007 -0
- package/lib/heze/sszTypes.d.ts.map +1 -0
- package/lib/heze/sszTypes.js +67 -0
- package/lib/heze/sszTypes.js.map +1 -0
- package/lib/heze/types.d.ts +15 -0
- package/lib/heze/types.d.ts.map +1 -0
- package/lib/heze/types.js +2 -0
- package/lib/heze/types.js.map +1 -0
- package/lib/phase0/sszTypes.d.ts +7 -7
- package/lib/phase0/sszTypes.d.ts.map +1 -1
- package/lib/phase0/sszTypes.js +2 -1
- package/lib/phase0/sszTypes.js.map +1 -1
- package/lib/phase0/validator.d.ts.map +1 -1
- package/lib/phase0/validator.js.map +1 -1
- package/lib/sszTypes.d.ts +10501 -4233
- package/lib/sszTypes.d.ts.map +1 -1
- package/lib/sszTypes.js +13 -0
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.d.ts +43 -0
- package/lib/types.d.ts.map +1 -1
- package/lib/types.js +2 -2
- 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.js.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/src/gloas/sszTypes.ts +12 -4
- package/src/heze/index.ts +5 -0
- package/src/heze/sszTypes.ts +128 -0
- package/src/heze/types.ts +17 -0
- package/src/phase0/sszTypes.ts +2 -1
- package/src/sszTypes.ts +13 -0
- package/src/types.ts +43 -0
package/lib/altair/sszTypes.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
63
63
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
64
64
|
eth1Data: ContainerType<{
|
|
65
65
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
66
|
-
depositCount: import("@chainsafe/ssz").
|
|
66
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
67
67
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
68
68
|
}>;
|
|
69
69
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -172,7 +172,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
172
172
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
173
173
|
eth1Data: ContainerType<{
|
|
174
174
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
175
|
-
depositCount: import("@chainsafe/ssz").
|
|
175
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
176
176
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
177
177
|
}>;
|
|
178
178
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -283,7 +283,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
283
283
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
284
284
|
eth1Data: ContainerType<{
|
|
285
285
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
286
|
-
depositCount: import("@chainsafe/ssz").
|
|
286
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
287
287
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
288
288
|
}>;
|
|
289
289
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -409,12 +409,12 @@ export declare const BeaconState: ContainerType<{
|
|
|
409
409
|
historicalRoots: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
410
410
|
eth1Data: ContainerType<{
|
|
411
411
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
412
|
-
depositCount: import("@chainsafe/ssz").
|
|
412
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
413
413
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
414
414
|
}>;
|
|
415
415
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
416
416
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
417
|
-
depositCount: import("@chainsafe/ssz").
|
|
417
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
418
418
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
419
419
|
}>>;
|
|
420
420
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -62,7 +62,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
62
62
|
randaoReveal: ByteVectorType;
|
|
63
63
|
eth1Data: ContainerType<{
|
|
64
64
|
depositRoot: ByteVectorType;
|
|
65
|
-
depositCount: import("@chainsafe/ssz").
|
|
65
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
66
66
|
blockHash: ByteVectorType;
|
|
67
67
|
}>;
|
|
68
68
|
graffiti: ByteVectorType;
|
|
@@ -187,7 +187,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
187
187
|
randaoReveal: ByteVectorType;
|
|
188
188
|
eth1Data: ContainerType<{
|
|
189
189
|
depositRoot: ByteVectorType;
|
|
190
|
-
depositCount: import("@chainsafe/ssz").
|
|
190
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
191
191
|
blockHash: ByteVectorType;
|
|
192
192
|
}>;
|
|
193
193
|
graffiti: ByteVectorType;
|
|
@@ -314,7 +314,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
314
314
|
randaoReveal: ByteVectorType;
|
|
315
315
|
eth1Data: ContainerType<{
|
|
316
316
|
depositRoot: ByteVectorType;
|
|
317
|
-
depositCount: import("@chainsafe/ssz").
|
|
317
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
318
318
|
blockHash: ByteVectorType;
|
|
319
319
|
}>;
|
|
320
320
|
graffiti: ByteVectorType;
|
|
@@ -459,12 +459,12 @@ export declare const BeaconState: ContainerType<{
|
|
|
459
459
|
historicalRoots: ListCompositeType<ByteVectorType>;
|
|
460
460
|
eth1Data: ContainerType<{
|
|
461
461
|
depositRoot: ByteVectorType;
|
|
462
|
-
depositCount: import("@chainsafe/ssz").
|
|
462
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
463
463
|
blockHash: ByteVectorType;
|
|
464
464
|
}>;
|
|
465
465
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
466
466
|
depositRoot: ByteVectorType;
|
|
467
|
-
depositCount: import("@chainsafe/ssz").
|
|
467
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
468
468
|
blockHash: ByteVectorType;
|
|
469
469
|
}>>;
|
|
470
470
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -517,7 +517,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
517
517
|
randaoReveal: ByteVectorType;
|
|
518
518
|
eth1Data: ContainerType<{
|
|
519
519
|
depositRoot: ByteVectorType;
|
|
520
|
-
depositCount: import("@chainsafe/ssz").
|
|
520
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
521
521
|
blockHash: ByteVectorType;
|
|
522
522
|
}>;
|
|
523
523
|
graffiti: ByteVectorType;
|
|
@@ -642,7 +642,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
642
642
|
randaoReveal: ByteVectorType;
|
|
643
643
|
eth1Data: ContainerType<{
|
|
644
644
|
depositRoot: ByteVectorType;
|
|
645
|
-
depositCount: import("@chainsafe/ssz").
|
|
645
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
646
646
|
blockHash: ByteVectorType;
|
|
647
647
|
}>;
|
|
648
648
|
graffiti: ByteVectorType;
|
|
@@ -769,7 +769,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
769
769
|
randaoReveal: ByteVectorType;
|
|
770
770
|
eth1Data: ContainerType<{
|
|
771
771
|
depositRoot: ByteVectorType;
|
|
772
|
-
depositCount: import("@chainsafe/ssz").
|
|
772
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
773
773
|
blockHash: ByteVectorType;
|
|
774
774
|
}>;
|
|
775
775
|
graffiti: ByteVectorType;
|
|
@@ -76,7 +76,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
76
76
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
77
77
|
eth1Data: ContainerType<{
|
|
78
78
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
79
|
-
depositCount: import("@chainsafe/ssz").
|
|
79
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
80
80
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
81
81
|
}>;
|
|
82
82
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -215,7 +215,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
215
215
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
216
216
|
eth1Data: ContainerType<{
|
|
217
217
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
218
|
-
depositCount: import("@chainsafe/ssz").
|
|
218
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
219
219
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
220
220
|
}>;
|
|
221
221
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -356,7 +356,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
356
356
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
357
357
|
eth1Data: ContainerType<{
|
|
358
358
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
359
|
-
depositCount: import("@chainsafe/ssz").
|
|
359
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
360
360
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
361
361
|
}>;
|
|
362
362
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -563,12 +563,12 @@ export declare const BeaconState: ContainerType<{
|
|
|
563
563
|
historicalRoots: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
564
564
|
eth1Data: ContainerType<{
|
|
565
565
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
566
|
-
depositCount: import("@chainsafe/ssz").
|
|
566
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
567
567
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
568
568
|
}>;
|
|
569
569
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
570
570
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
571
|
-
depositCount: import("@chainsafe/ssz").
|
|
571
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
572
572
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
573
573
|
}>>;
|
|
574
574
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -628,7 +628,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
628
628
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
629
629
|
eth1Data: ContainerType<{
|
|
630
630
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
631
|
-
depositCount: import("@chainsafe/ssz").
|
|
631
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
632
632
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
633
633
|
}>;
|
|
634
634
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -762,7 +762,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
762
762
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
763
763
|
eth1Data: ContainerType<{
|
|
764
764
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
765
|
-
depositCount: import("@chainsafe/ssz").
|
|
765
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
766
766
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
767
767
|
}>;
|
|
768
768
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -898,7 +898,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
898
898
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
899
899
|
eth1Data: ContainerType<{
|
|
900
900
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
901
|
-
depositCount: import("@chainsafe/ssz").
|
|
901
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
902
902
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
903
903
|
}>;
|
|
904
904
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
package/lib/deneb/sszTypes.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
66
66
|
randaoReveal: ByteVectorType;
|
|
67
67
|
eth1Data: ContainerType<{
|
|
68
68
|
depositRoot: ByteVectorType;
|
|
69
|
-
depositCount: import("@chainsafe/ssz").
|
|
69
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
70
70
|
blockHash: ByteVectorType;
|
|
71
71
|
}>;
|
|
72
72
|
graffiti: ByteVectorType;
|
|
@@ -208,7 +208,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
208
208
|
randaoReveal: ByteVectorType;
|
|
209
209
|
eth1Data: ContainerType<{
|
|
210
210
|
depositRoot: ByteVectorType;
|
|
211
|
-
depositCount: import("@chainsafe/ssz").
|
|
211
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
212
212
|
blockHash: ByteVectorType;
|
|
213
213
|
}>;
|
|
214
214
|
graffiti: ByteVectorType;
|
|
@@ -352,7 +352,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
352
352
|
randaoReveal: ByteVectorType;
|
|
353
353
|
eth1Data: ContainerType<{
|
|
354
354
|
depositRoot: ByteVectorType;
|
|
355
|
-
depositCount: import("@chainsafe/ssz").
|
|
355
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
356
356
|
blockHash: ByteVectorType;
|
|
357
357
|
}>;
|
|
358
358
|
graffiti: ByteVectorType;
|
|
@@ -532,7 +532,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
532
532
|
randaoReveal: ByteVectorType;
|
|
533
533
|
eth1Data: ContainerType<{
|
|
534
534
|
depositRoot: ByteVectorType;
|
|
535
|
-
depositCount: import("@chainsafe/ssz").
|
|
535
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
536
536
|
blockHash: ByteVectorType;
|
|
537
537
|
}>;
|
|
538
538
|
graffiti: ByteVectorType;
|
|
@@ -669,7 +669,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
669
669
|
randaoReveal: ByteVectorType;
|
|
670
670
|
eth1Data: ContainerType<{
|
|
671
671
|
depositRoot: ByteVectorType;
|
|
672
|
-
depositCount: import("@chainsafe/ssz").
|
|
672
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
673
673
|
blockHash: ByteVectorType;
|
|
674
674
|
}>;
|
|
675
675
|
graffiti: ByteVectorType;
|
|
@@ -808,7 +808,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
808
808
|
randaoReveal: ByteVectorType;
|
|
809
809
|
eth1Data: ContainerType<{
|
|
810
810
|
depositRoot: ByteVectorType;
|
|
811
|
-
depositCount: import("@chainsafe/ssz").
|
|
811
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
812
812
|
blockHash: ByteVectorType;
|
|
813
813
|
}>;
|
|
814
814
|
graffiti: ByteVectorType;
|
|
@@ -1042,12 +1042,12 @@ export declare const BeaconState: ContainerType<{
|
|
|
1042
1042
|
historicalRoots: ListCompositeType<ByteVectorType>;
|
|
1043
1043
|
eth1Data: ContainerType<{
|
|
1044
1044
|
depositRoot: ByteVectorType;
|
|
1045
|
-
depositCount: import("@chainsafe/ssz").
|
|
1045
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1046
1046
|
blockHash: ByteVectorType;
|
|
1047
1047
|
}>;
|
|
1048
1048
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
1049
1049
|
depositRoot: ByteVectorType;
|
|
1050
|
-
depositCount: import("@chainsafe/ssz").
|
|
1050
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1051
1051
|
blockHash: ByteVectorType;
|
|
1052
1052
|
}>>;
|
|
1053
1053
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1493,7 +1493,7 @@ export declare const BlockContents: ContainerType<{
|
|
|
1493
1493
|
randaoReveal: ByteVectorType;
|
|
1494
1494
|
eth1Data: ContainerType<{
|
|
1495
1495
|
depositRoot: ByteVectorType;
|
|
1496
|
-
depositCount: import("@chainsafe/ssz").
|
|
1496
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1497
1497
|
blockHash: ByteVectorType;
|
|
1498
1498
|
}>;
|
|
1499
1499
|
graffiti: ByteVectorType;
|
|
@@ -1641,7 +1641,7 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
1641
1641
|
randaoReveal: ByteVectorType;
|
|
1642
1642
|
eth1Data: ContainerType<{
|
|
1643
1643
|
depositRoot: ByteVectorType;
|
|
1644
|
-
depositCount: import("@chainsafe/ssz").
|
|
1644
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1645
1645
|
blockHash: ByteVectorType;
|
|
1646
1646
|
}>;
|
|
1647
1647
|
graffiti: ByteVectorType;
|
|
@@ -259,7 +259,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
259
259
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
260
260
|
eth1Data: ContainerType<{
|
|
261
261
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
262
|
-
depositCount: import("@chainsafe/ssz").
|
|
262
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
263
263
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
264
264
|
}>;
|
|
265
265
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -421,7 +421,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
421
421
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
422
422
|
eth1Data: ContainerType<{
|
|
423
423
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
424
|
-
depositCount: import("@chainsafe/ssz").
|
|
424
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
425
425
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
426
426
|
}>;
|
|
427
427
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -585,7 +585,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
585
585
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
586
586
|
eth1Data: ContainerType<{
|
|
587
587
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
588
|
-
depositCount: import("@chainsafe/ssz").
|
|
588
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
589
589
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
590
590
|
}>;
|
|
591
591
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -745,7 +745,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
745
745
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
746
746
|
eth1Data: ContainerType<{
|
|
747
747
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
748
|
-
depositCount: import("@chainsafe/ssz").
|
|
748
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
749
749
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
750
750
|
}>;
|
|
751
751
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -902,7 +902,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
902
902
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
903
903
|
eth1Data: ContainerType<{
|
|
904
904
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
905
|
-
depositCount: import("@chainsafe/ssz").
|
|
905
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
906
906
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
907
907
|
}>;
|
|
908
908
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1061,7 +1061,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1061
1061
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1062
1062
|
eth1Data: ContainerType<{
|
|
1063
1063
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1064
|
-
depositCount: import("@chainsafe/ssz").
|
|
1064
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1065
1065
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1066
1066
|
}>;
|
|
1067
1067
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1354,12 +1354,12 @@ export declare const BeaconState: ContainerType<{
|
|
|
1354
1354
|
historicalRoots: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1355
1355
|
eth1Data: ContainerType<{
|
|
1356
1356
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1357
|
-
depositCount: import("@chainsafe/ssz").
|
|
1357
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1358
1358
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1359
1359
|
}>;
|
|
1360
1360
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
1361
1361
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1362
|
-
depositCount: import("@chainsafe/ssz").
|
|
1362
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1363
1363
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1364
1364
|
}>>;
|
|
1365
1365
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1798,7 +1798,7 @@ export declare const BlockContents: ContainerType<{
|
|
|
1798
1798
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1799
1799
|
eth1Data: ContainerType<{
|
|
1800
1800
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1801
|
-
depositCount: import("@chainsafe/ssz").
|
|
1801
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1802
1802
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1803
1803
|
}>;
|
|
1804
1804
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1966,7 +1966,7 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
1966
1966
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1967
1967
|
eth1Data: ContainerType<{
|
|
1968
1968
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1969
|
-
depositCount: import("@chainsafe/ssz").
|
|
1969
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1970
1970
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1971
1971
|
}>;
|
|
1972
1972
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
package/lib/fulu/sszTypes.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
84
84
|
randaoReveal: ByteVectorType;
|
|
85
85
|
eth1Data: ContainerType<{
|
|
86
86
|
depositRoot: ByteVectorType;
|
|
87
|
-
depositCount: import("@chainsafe/ssz").
|
|
87
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
88
88
|
blockHash: ByteVectorType;
|
|
89
89
|
}>;
|
|
90
90
|
graffiti: ByteVectorType;
|
|
@@ -248,7 +248,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
248
248
|
randaoReveal: ByteVectorType;
|
|
249
249
|
eth1Data: ContainerType<{
|
|
250
250
|
depositRoot: ByteVectorType;
|
|
251
|
-
depositCount: import("@chainsafe/ssz").
|
|
251
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
252
252
|
blockHash: ByteVectorType;
|
|
253
253
|
}>;
|
|
254
254
|
graffiti: ByteVectorType;
|
|
@@ -461,12 +461,12 @@ export declare const BeaconState: ContainerType<{
|
|
|
461
461
|
historicalRoots: ListCompositeType<ByteVectorType>;
|
|
462
462
|
eth1Data: ContainerType<{
|
|
463
463
|
depositRoot: ByteVectorType;
|
|
464
|
-
depositCount: import("@chainsafe/ssz").
|
|
464
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
465
465
|
blockHash: ByteVectorType;
|
|
466
466
|
}>;
|
|
467
467
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
468
468
|
depositRoot: ByteVectorType;
|
|
469
|
-
depositCount: import("@chainsafe/ssz").
|
|
469
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
470
470
|
blockHash: ByteVectorType;
|
|
471
471
|
}>>;
|
|
472
472
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -557,7 +557,7 @@ export declare const BlockContents: ContainerType<{
|
|
|
557
557
|
randaoReveal: ByteVectorType;
|
|
558
558
|
eth1Data: ContainerType<{
|
|
559
559
|
depositRoot: ByteVectorType;
|
|
560
|
-
depositCount: import("@chainsafe/ssz").
|
|
560
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
561
561
|
blockHash: ByteVectorType;
|
|
562
562
|
}>;
|
|
563
563
|
graffiti: ByteVectorType;
|
|
@@ -725,7 +725,7 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
725
725
|
randaoReveal: ByteVectorType;
|
|
726
726
|
eth1Data: ContainerType<{
|
|
727
727
|
depositRoot: ByteVectorType;
|
|
728
|
-
depositCount: import("@chainsafe/ssz").
|
|
728
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
729
729
|
blockHash: ByteVectorType;
|
|
730
730
|
}>;
|
|
731
731
|
graffiti: ByteVectorType;
|
package/lib/gloas/sszTypes.d.ts
CHANGED
|
@@ -443,7 +443,7 @@ export declare const ProposerPreferences: ContainerType<{
|
|
|
443
443
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
444
444
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
445
445
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
446
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
446
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
447
447
|
}>;
|
|
448
448
|
export declare const SignedProposerPreferences: ContainerType<{
|
|
449
449
|
message: ContainerType<{
|
|
@@ -451,7 +451,7 @@ export declare const SignedProposerPreferences: ContainerType<{
|
|
|
451
451
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
452
452
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
453
453
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
454
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
454
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
455
455
|
}>;
|
|
456
456
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
457
457
|
}>;
|
|
@@ -461,11 +461,11 @@ export declare const ExecutionPayloadBid: ProgressiveContainerType<{
|
|
|
461
461
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
462
462
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
463
463
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
464
|
-
gasLimit: import("@chainsafe/ssz").
|
|
464
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
465
465
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
466
466
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
467
467
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
468
|
-
executionPayment: import("@chainsafe/ssz").
|
|
468
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
469
469
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
470
470
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
471
471
|
}>;
|
|
@@ -476,11 +476,11 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
|
476
476
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
477
477
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
478
478
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
479
|
-
gasLimit: import("@chainsafe/ssz").
|
|
479
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
480
480
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
481
481
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
482
482
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
483
|
-
executionPayment: import("@chainsafe/ssz").
|
|
483
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
484
484
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
485
485
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
486
486
|
}>;
|
|
@@ -707,7 +707,7 @@ export declare const BeaconBlockBody: ProgressiveContainerType<{
|
|
|
707
707
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
708
708
|
eth1Data: ContainerType<{
|
|
709
709
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
710
|
-
depositCount: import("@chainsafe/ssz").
|
|
710
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
711
711
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
712
712
|
}>;
|
|
713
713
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -822,11 +822,11 @@ export declare const BeaconBlockBody: ProgressiveContainerType<{
|
|
|
822
822
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
823
823
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
824
824
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
825
|
-
gasLimit: import("@chainsafe/ssz").
|
|
825
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
826
826
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
827
827
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
828
828
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
829
|
-
executionPayment: import("@chainsafe/ssz").
|
|
829
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
830
830
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
831
831
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
832
832
|
}>;
|
|
@@ -881,7 +881,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
881
881
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
882
882
|
eth1Data: ContainerType<{
|
|
883
883
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
884
|
-
depositCount: import("@chainsafe/ssz").
|
|
884
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
885
885
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
886
886
|
}>;
|
|
887
887
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -996,11 +996,11 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
996
996
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
997
997
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
998
998
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
999
|
-
gasLimit: import("@chainsafe/ssz").
|
|
999
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
1000
1000
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1001
1001
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1002
1002
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
1003
|
-
executionPayment: import("@chainsafe/ssz").
|
|
1003
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
1004
1004
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1005
1005
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1006
1006
|
}>;
|
|
@@ -1057,7 +1057,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
1057
1057
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1058
1058
|
eth1Data: ContainerType<{
|
|
1059
1059
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1060
|
-
depositCount: import("@chainsafe/ssz").
|
|
1060
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1061
1061
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1062
1062
|
}>;
|
|
1063
1063
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1172,11 +1172,11 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
1172
1172
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1173
1173
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1174
1174
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1175
|
-
gasLimit: import("@chainsafe/ssz").
|
|
1175
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
1176
1176
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1177
1177
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1178
1178
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
1179
|
-
executionPayment: import("@chainsafe/ssz").
|
|
1179
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
1180
1180
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1181
1181
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1182
1182
|
}>;
|
|
@@ -1235,7 +1235,7 @@ export declare const BlockContents: ContainerType<{
|
|
|
1235
1235
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
1236
1236
|
eth1Data: ContainerType<{
|
|
1237
1237
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1238
|
-
depositCount: import("@chainsafe/ssz").
|
|
1238
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1239
1239
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1240
1240
|
}>;
|
|
1241
1241
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1350,11 +1350,11 @@ export declare const BlockContents: ContainerType<{
|
|
|
1350
1350
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1351
1351
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1352
1352
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1353
|
-
gasLimit: import("@chainsafe/ssz").
|
|
1353
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
1354
1354
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1355
1355
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1356
1356
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
1357
|
-
executionPayment: import("@chainsafe/ssz").
|
|
1357
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
1358
1358
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1359
1359
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1360
1360
|
}>;
|
|
@@ -1652,12 +1652,12 @@ export declare const BeaconState: ProgressiveContainerType<{
|
|
|
1652
1652
|
historicalRoots: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1653
1653
|
eth1Data: ContainerType<{
|
|
1654
1654
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1655
|
-
depositCount: import("@chainsafe/ssz").
|
|
1655
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1656
1656
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1657
1657
|
}>;
|
|
1658
1658
|
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
1659
1659
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1660
|
-
depositCount: import("@chainsafe/ssz").
|
|
1660
|
+
depositCount: import("@chainsafe/ssz").UintBigintType;
|
|
1661
1661
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1662
1662
|
}>>;
|
|
1663
1663
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1749,11 +1749,11 @@ export declare const BeaconState: ProgressiveContainerType<{
|
|
|
1749
1749
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1750
1750
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1751
1751
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1752
|
-
gasLimit: import("@chainsafe/ssz").
|
|
1752
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
1753
1753
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1754
1754
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1755
1755
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
1756
|
-
executionPayment: import("@chainsafe/ssz").
|
|
1756
|
+
executionPayment: import("@chainsafe/ssz").UintBigintType;
|
|
1757
1757
|
blobKzgCommitments: ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1758
1758
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1759
1759
|
}>;
|
|
@@ -1795,7 +1795,7 @@ export declare const PayloadAttributes: ContainerType<{
|
|
|
1795
1795
|
}>>;
|
|
1796
1796
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1797
1797
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1798
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
1798
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
1799
1799
|
}>;
|
|
1800
1800
|
export declare const SSEPayloadAttributes: ContainerType<{
|
|
1801
1801
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1814,7 +1814,7 @@ export declare const SSEPayloadAttributes: ContainerType<{
|
|
|
1814
1814
|
}>>;
|
|
1815
1815
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1816
1816
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1817
|
-
targetGasLimit: import("@chainsafe/ssz").
|
|
1817
|
+
targetGasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
1818
1818
|
}>;
|
|
1819
1819
|
}>;
|
|
1820
1820
|
//# sourceMappingURL=sszTypes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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"}
|