@lodestar/types 1.41.0-dev.702f7932c2 → 1.41.0-dev.85cdea6cc6

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.
Files changed (43) hide show
  1. package/lib/altair/sszTypes.d.ts +12 -12
  2. package/lib/bellatrix/sszTypes.d.ts +130 -130
  3. package/lib/capella/sszTypes.d.ts +243 -243
  4. package/lib/capella/types.d.ts +1 -0
  5. package/lib/capella/types.d.ts.map +1 -1
  6. package/lib/deneb/sszTypes.d.ts +408 -408
  7. package/lib/electra/sszTypes.d.ts +155 -155
  8. package/lib/fulu/sszTypes.d.ts +68 -68
  9. package/lib/gloas/sszTypes.d.ts +32 -36
  10. package/lib/gloas/sszTypes.d.ts.map +1 -1
  11. package/lib/gloas/sszTypes.js +2 -3
  12. package/lib/gloas/sszTypes.js.map +1 -1
  13. package/lib/phase0/validator.d.ts.map +1 -1
  14. package/lib/phase0/validator.js.map +1 -1
  15. package/lib/sszTypes.d.ts +13646 -13654
  16. package/lib/sszTypes.d.ts.map +1 -1
  17. package/lib/sszTypes.js.map +1 -1
  18. package/lib/types.d.ts +9 -1
  19. package/lib/types.d.ts.map +1 -1
  20. package/lib/types.js +3 -2
  21. package/lib/types.js.map +1 -1
  22. package/lib/utils/array.js.map +1 -1
  23. package/lib/utils/container.js.map +1 -1
  24. package/lib/utils/executionAddress.d.ts.map +1 -1
  25. package/lib/utils/executionAddress.js.map +1 -1
  26. package/lib/utils/rewards.d.ts +4 -4
  27. package/lib/utils/rewards.d.ts.map +1 -1
  28. package/lib/utils/stringType.d.ts.map +1 -1
  29. package/lib/utils/stringType.js.map +1 -1
  30. package/lib/utils/typeguards.d.ts +2 -1
  31. package/lib/utils/typeguards.d.ts.map +1 -1
  32. package/lib/utils/typeguards.js +3 -0
  33. package/lib/utils/typeguards.js.map +1 -1
  34. package/lib/utils/validatorStatus.d.ts +2 -0
  35. package/lib/utils/validatorStatus.d.ts.map +1 -1
  36. package/lib/utils/validatorStatus.js +19 -0
  37. package/lib/utils/validatorStatus.js.map +1 -1
  38. package/package.json +5 -5
  39. package/src/capella/types.ts +2 -0
  40. package/src/gloas/sszTypes.ts +2 -3
  41. package/src/types.ts +19 -1
  42. package/src/utils/typeguards.ts +5 -0
  43. package/src/utils/validatorStatus.ts +22 -0
@@ -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
  }>;
@@ -82,7 +82,7 @@ export declare const ExecutionPayloadBid: ContainerType<{
82
82
  slot: import("@chainsafe/ssz").UintNumberType;
83
83
  value: import("@chainsafe/ssz").UintNumberType;
84
84
  executionPayment: import("@chainsafe/ssz").UintNumberType;
85
- blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
85
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
86
86
  }>;
87
87
  export declare const SignedExecutionPayloadBid: ContainerType<{
88
88
  message: ContainerType<{
@@ -96,21 +96,12 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
96
96
  slot: import("@chainsafe/ssz").UintNumberType;
97
97
  value: import("@chainsafe/ssz").UintNumberType;
98
98
  executionPayment: import("@chainsafe/ssz").UintNumberType;
99
- blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
99
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
100
100
  }>;
101
101
  signature: import("@chainsafe/ssz").ByteVectorType;
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<{
@@ -147,21 +147,11 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
147
147
  builderIndex: import("@chainsafe/ssz").UintNumberType;
148
148
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
149
149
  slot: import("@chainsafe/ssz").UintNumberType;
150
- blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
151
150
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
152
151
  }>;
153
152
  export declare const SignedExecutionPayloadEnvelope: ContainerType<{
154
153
  message: ContainerType<{
155
154
  payload: ContainerType<{
156
- blobGasUsed: import("@chainsafe/ssz").UintBigintType;
157
- excessBlobGas: import("@chainsafe/ssz").UintBigintType;
158
- withdrawals: ListCompositeType<ContainerType<{
159
- index: import("@chainsafe/ssz").UintNumberType;
160
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
161
- address: import("../index.ts").ExecutionAddressType;
162
- amount: import("@chainsafe/ssz").UintBigintType;
163
- }>>;
164
- transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
165
155
  parentHash: import("@chainsafe/ssz").ByteVectorType;
166
156
  feeRecipient: import("../index.ts").ExecutionAddressType;
167
157
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -175,6 +165,15 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
175
165
  extraData: import("@chainsafe/ssz").ByteListType;
176
166
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
177
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;
178
177
  }>;
179
178
  executionRequests: ContainerType<{
180
179
  deposits: ListCompositeType<ContainerType<{
@@ -198,7 +197,6 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
198
197
  builderIndex: import("@chainsafe/ssz").UintNumberType;
199
198
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
200
199
  slot: import("@chainsafe/ssz").UintNumberType;
201
- blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
202
200
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
203
201
  }>;
204
202
  signature: import("@chainsafe/ssz").ByteVectorType;
@@ -327,7 +325,7 @@ export declare const BeaconBlockBody: ContainerType<{
327
325
  slot: import("@chainsafe/ssz").UintNumberType;
328
326
  value: import("@chainsafe/ssz").UintNumberType;
329
327
  executionPayment: import("@chainsafe/ssz").UintNumberType;
330
- blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
328
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
331
329
  }>;
332
330
  signature: import("@chainsafe/ssz").ByteVectorType;
333
331
  }>;
@@ -343,6 +341,10 @@ export declare const BeaconBlockBody: ContainerType<{
343
341
  }>>;
344
342
  }>;
345
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;
346
348
  body: ContainerType<{
347
349
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
348
350
  eth1Data: ContainerType<{
@@ -467,7 +469,7 @@ export declare const BeaconBlock: ContainerType<{
467
469
  slot: import("@chainsafe/ssz").UintNumberType;
468
470
  value: import("@chainsafe/ssz").UintNumberType;
469
471
  executionPayment: import("@chainsafe/ssz").UintNumberType;
470
- blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
472
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
471
473
  }>;
472
474
  signature: import("@chainsafe/ssz").ByteVectorType;
473
475
  }>;
@@ -482,13 +484,13 @@ export declare const BeaconBlock: ContainerType<{
482
484
  signature: import("@chainsafe/ssz").ByteVectorType;
483
485
  }>>;
484
486
  }>;
485
- slot: import("@chainsafe/ssz").UintNumberType;
486
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
487
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
488
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
489
487
  }>;
490
488
  export declare const SignedBeaconBlock: ContainerType<{
491
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;
492
494
  body: ContainerType<{
493
495
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
494
496
  eth1Data: ContainerType<{
@@ -613,7 +615,7 @@ export declare const SignedBeaconBlock: ContainerType<{
613
615
  slot: import("@chainsafe/ssz").UintNumberType;
614
616
  value: import("@chainsafe/ssz").UintNumberType;
615
617
  executionPayment: import("@chainsafe/ssz").UintNumberType;
616
- blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
618
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
617
619
  }>;
618
620
  signature: import("@chainsafe/ssz").ByteVectorType;
619
621
  }>;
@@ -628,10 +630,6 @@ export declare const SignedBeaconBlock: ContainerType<{
628
630
  signature: import("@chainsafe/ssz").ByteVectorType;
629
631
  }>>;
630
632
  }>;
631
- slot: import("@chainsafe/ssz").UintNumberType;
632
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
633
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
634
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
635
633
  }>;
636
634
  signature: import("@chainsafe/ssz").ByteVectorType;
637
635
  }>;
@@ -704,7 +702,7 @@ export declare const BeaconState: ContainerType<{
704
702
  slot: import("@chainsafe/ssz").UintNumberType;
705
703
  value: import("@chainsafe/ssz").UintNumberType;
706
704
  executionPayment: import("@chainsafe/ssz").UintNumberType;
707
- blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
705
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
708
706
  }>;
709
707
  nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
710
708
  nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -769,7 +767,6 @@ export declare const BeaconState: ContainerType<{
769
767
  export declare const DataColumnSidecar: ContainerType<{
770
768
  index: import("@chainsafe/ssz").UintNumberType;
771
769
  column: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
772
- kzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
773
770
  kzgProofs: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
774
771
  slot: import("@chainsafe/ssz").UintNumberType;
775
772
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -777,7 +774,6 @@ export declare const DataColumnSidecar: ContainerType<{
777
774
  export declare const DataColumnSidecars: ListCompositeType<ContainerType<{
778
775
  index: import("@chainsafe/ssz").UintNumberType;
779
776
  column: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
780
- kzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
781
777
  kzgProofs: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
782
778
  slot: import("@chainsafe/ssz").UintNumberType;
783
779
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -1 +1 @@
1
- {"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AAuCnH,eAAO,MAAM,OAAO;;;;;;;EAUnB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;EAOpC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;EAMjC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;EAQlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;EAO9B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;EAQ/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAe/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWpC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1C,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8DvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;EAY7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;GAA8D,CAAC"}
1
+ {"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AAuCnH,eAAO,MAAM,OAAO;;;;;;;EAUnB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;EAOpC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;EAMjC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;EAQlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;EAO9B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;EAQ/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAe/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1C,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8DvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;EAY7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;GAA8D,CAAC"}
@@ -69,7 +69,7 @@ export const ExecutionPayloadBid = new ContainerType({
69
69
  slot: Slot,
70
70
  value: UintNum64,
71
71
  executionPayment: UintNum64,
72
- blobKzgCommitmentsRoot: Root,
72
+ blobKzgCommitments: denebSsz.BlobKzgCommitments,
73
73
  }, { typeName: "ExecutionPayloadBid", jsonCase: "eth2" });
74
74
  export const SignedExecutionPayloadBid = new ContainerType({
75
75
  message: ExecutionPayloadBid,
@@ -81,7 +81,6 @@ export const ExecutionPayloadEnvelope = new ContainerType({
81
81
  builderIndex: BuilderIndex,
82
82
  beaconBlockRoot: Root,
83
83
  slot: Slot,
84
- blobKzgCommitments: denebSsz.BlobKzgCommitments,
85
84
  stateRoot: Root,
86
85
  }, { typeName: "ExecutionPayloadEnvelope", jsonCase: "eth2" });
87
86
  export const SignedExecutionPayloadEnvelope = new ContainerType({
@@ -176,7 +175,7 @@ export const BeaconState = new ContainerType({
176
175
  export const DataColumnSidecar = new ContainerType({
177
176
  index: fuluSsz.DataColumnSidecar.fields.index,
178
177
  column: fuluSsz.DataColumnSidecar.fields.column,
179
- kzgCommitments: fuluSsz.DataColumnSidecar.fields.kzgCommitments,
178
+ // kzgCommitments: denebSsz.BlobKzgCommitments, // Removed in GLOAS:EIP7732
180
179
  kzgProofs: fuluSsz.DataColumnSidecar.fields.kzgProofs,
181
180
  // signedBlockHeader: phase0Ssz.SignedBeaconBlockHeader, // Removed in GLOAS:EIP7732
182
181
  // kzgCommitmentsInclusionProof: KzgCommitmentsInclusionProof, // Removed in GLOAS:EIP7732
@@ -1 +1 @@
1
- {"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AACnH,OAAO,EACL,iCAAiC,EACjC,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,EACxB,iBAAiB,EACjB,QAAQ,EACR,eAAe,EACf,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAC,GAAG,IAAI,SAAS,EAAC,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAC,GAAG,IAAI,UAAU,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,GAAG,IAAI,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,GAAG,IAAI,UAAU,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,GAAG,IAAI,OAAO,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,GAAG,IAAI,SAAS,EAAC,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAC,GAAG,IAAI,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAE1D,yGAAyG;AACzG,MAAM,EAAC,OAAO,EAAC,GAAG,YAAY,CAAC;AAE/B,MAAM,EACJ,IAAI,EACJ,gBAAgB,EAChB,cAAc,EACd,KAAK,EACL,YAAY,EACZ,OAAO,EACP,IAAI,EACJ,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,SAAS,EACT,KAAK,EACL,YAAY,EACZ,QAAQ,GACT,GAAG,YAAY,CAAC;AAEjB,MAAM,CAAC,MAAM,OAAO,GAAG,IAAI,aAAa,CACtC;IACE,MAAM,EAAE,SAAS;IACjB,OAAO,EAAE,KAAK;IACd,gBAAgB,EAAE,gBAAgB;IAClC,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,QAAQ;IACtB,iBAAiB,EAAE,QAAQ;CAC5B,EACD,EAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,EAAC,CACxC,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,aAAa,CACvD;IACE,YAAY,EAAE,gBAAgB;IAC9B,MAAM,EAAE,SAAS;IACjB,YAAY,EAAE,YAAY;CAC3B,EACD,EAAC,QAAQ,EAAE,0BAA0B,EAAE,QAAQ,EAAE,MAAM,EAAC,CACzD,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,aAAa,CACpD;IACE,MAAM,EAAE,SAAS;IACjB,UAAU,EAAE,wBAAwB;CACrC,EACD,EAAC,QAAQ,EAAE,uBAAuB,EAAE,QAAQ,EAAE,MAAM,EAAC,CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,IAAI,aAAa,CACrD;IACE,eAAe,EAAE,IAAI;IACrB,IAAI,EAAE,IAAI;IACV,cAAc,EAAE,OAAO;IACvB,iBAAiB,EAAE,OAAO;CAC3B,EACD,EAAC,QAAQ,EAAE,wBAAwB,EAAE,QAAQ,EAAE,MAAM,EAAC,CACvD,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,IAAI,aAAa,CACjD;IACE,eAAe,EAAE,IAAI,aAAa,CAAC,QAAQ,CAAC;IAC5C,IAAI,EAAE,sBAAsB;IAC5B,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,oBAAoB,EAAE,QAAQ,EAAE,MAAM,EAAC,CACnD,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,aAAa,CACxD;IACE,cAAc,EAAE,cAAc;IAC9B,IAAI,EAAE,sBAAsB;IAC5B,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,2BAA2B,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC1D,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,aAAa,CACxD;IACE,gBAAgB,EAAE,IAAI,aAAa,CAAC,cAAc,EAAE,QAAQ,CAAC;IAC7D,IAAI,EAAE,sBAAsB;IAC5B,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,2BAA2B,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC1D,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,IAAI,aAAa,CAClD;IACE,YAAY,EAAE,IAAI;IAClB,cAAc,EAAE,cAAc;IAC9B,YAAY,EAAE,gBAAgB;IAC9B,QAAQ,EAAE,SAAS;CACpB,EACD,EAAC,QAAQ,EAAE,qBAAqB,EAAE,QAAQ,EAAE,MAAM,EAAC,CACpD,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,aAAa,CACxD;IACE,OAAO,EAAE,mBAAmB;IAC5B,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,2BAA2B,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC1D,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,IAAI,aAAa,CAClD;IACE,eAAe,EAAE,OAAO;IACxB,eAAe,EAAE,IAAI;IACrB,SAAS,EAAE,OAAO;IAClB,UAAU,EAAE,OAAO;IACnB,YAAY,EAAE,gBAAgB;IAC9B,QAAQ,EAAE,QAAQ;IAClB,YAAY,EAAE,YAAY;IAC1B,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,SAAS;IAChB,gBAAgB,EAAE,SAAS;IAC3B,sBAAsB,EAAE,IAAI;CAC7B,EACD,EAAC,QAAQ,EAAE,qBAAqB,EAAE,QAAQ,EAAE,MAAM,EAAC,CACpD,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,aAAa,CACxD;IACE,OAAO,EAAE,mBAAmB;IAC5B,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,2BAA2B,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC1D,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,aAAa,CACvD;IACE,OAAO,EAAE,UAAU,CAAC,gBAAgB;IACpC,iBAAiB,EAAE,UAAU,CAAC,iBAAiB;IAC/C,YAAY,EAAE,YAAY;IAC1B,eAAe,EAAE,IAAI;IACrB,IAAI,EAAE,IAAI;IACV,kBAAkB,EAAE,QAAQ,CAAC,kBAAkB;IAC/C,SAAS,EAAE,IAAI;CAChB,EACD,EAAC,QAAQ,EAAE,0BAA0B,EAAE,QAAQ,EAAE,MAAM,EAAC,CACzD,CAAC;AAEF,MAAM,CAAC,MAAM,8BAA8B,GAAG,IAAI,aAAa,CAC7D;IACE,OAAO,EAAE,wBAAwB;IACjC,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,gCAAgC,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC/D,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,IAAI,aAAa,CAC9C;IACE,YAAY,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY;IAC3D,QAAQ,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ;IACnD,QAAQ,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ;IACnD,iBAAiB,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,iBAAiB;IACrE,iBAAiB,EAAE,UAAU,CAAC,eAAe,CAAC,MAAM,CAAC,iBAAiB;IACtE,YAAY,EAAE,UAAU,CAAC,eAAe,CAAC,MAAM,CAAC,YAAY;IAC5D,QAAQ,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ;IACnD,cAAc,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,cAAc;IAC/D,aAAa,EAAE,SAAS,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa;IAC7D,kEAAkE;IAClE,qBAAqB,EAAE,UAAU,CAAC,eAAe,CAAC,MAAM,CAAC,qBAAqB;IAC9E,sGAAsG;IACtG,oEAAoE;IACpE,yBAAyB,EAAE,yBAAyB,EAAE,uBAAuB;IAC7E,mBAAmB,EAAE,IAAI,iBAAiB,CAAC,kBAAkB,EAAE,wBAAwB,CAAC,EAAE,uBAAuB;CAClH,EACD,EAAC,QAAQ,EAAE,iBAAiB,EAAE,QAAQ,EAAE,MAAM,EAAE,wBAAwB,EAAE,IAAI,EAAC,CAChF,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,aAAa,CAC1C;IACE,GAAG,OAAO,CAAC,WAAW,CAAC,MAAM;IAC7B,IAAI,EAAE,eAAe,EAAE,oBAAoB;CAC5C,EACD,EAAC,QAAQ,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,EAAE,wBAAwB,EAAE,IAAI,EAAC,CAC5E,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAG,IAAI,aAAa,CAChD;IACE,OAAO,EAAE,WAAW,EAAE,oBAAoB;IAC1C,SAAS,EAAE,YAAY;CACxB,EACD,EAAC,QAAQ,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,EAAC,CAClD,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,aAAa,CAC1C;IACE,WAAW,EAAE,SAAS;IACtB,qBAAqB,EAAE,IAAI;IAC3B,IAAI,EAAE,YAAY,CAAC,IAAI;IACvB,IAAI,EAAE,SAAS,CAAC,IAAI;IACpB,UAAU;IACV,iBAAiB,EAAE,SAAS,CAAC,iBAAiB;IAC9C,UAAU,EAAE,SAAS,CAAC,oBAAoB;IAC1C,UAAU,EAAE,SAAS,CAAC,oBAAoB;IAC1C,uEAAuE;IACvE,eAAe,EAAE,IAAI,iBAAiB,CAAC,IAAI,EAAE,sBAAsB,CAAC;IACpE,OAAO;IACP,QAAQ,EAAE,SAAS,CAAC,QAAQ;IAC5B,aAAa,EAAE,SAAS,CAAC,aAAa;IACtC,gBAAgB,EAAE,SAAS;IAC3B,WAAW;IACX,UAAU,EAAE,SAAS,CAAC,UAAU;IAChC,QAAQ,EAAE,SAAS,CAAC,QAAQ;IAC5B,WAAW,EAAE,SAAS,CAAC,WAAW;IAClC,YAAY;IACZ,SAAS,EAAE,SAAS,CAAC,SAAS;IAC9B,gBAAgB;IAChB,0BAA0B,EAAE,SAAS,CAAC,kBAAkB;IACxD,yBAAyB,EAAE,SAAS,CAAC,kBAAkB;IACvD,WAAW;IACX,iBAAiB,EAAE,SAAS,CAAC,iBAAiB;IAC9C,2BAA2B,EAAE,SAAS,CAAC,UAAU;IACjD,0BAA0B,EAAE,SAAS,CAAC,UAAU;IAChD,mBAAmB,EAAE,SAAS,CAAC,UAAU;IACzC,aAAa;IACb,gBAAgB,EAAE,SAAS,CAAC,gBAAgB;IAC5C,OAAO;IACP,oBAAoB,EAAE,SAAS,CAAC,aAAa;IAC7C,iBAAiB,EAAE,SAAS,CAAC,aAAa;IAC1C,YAAY;IACZ,oFAAoF;IACpF,yBAAyB,EAAE,mBAAmB,EAAE,uBAAuB;IACvE,cAAc;IACd,mBAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,mBAAmB;IACtE,4BAA4B,EAAE,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,4BAA4B;IACxF,0CAA0C;IAC1C,mBAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,mBAAmB;IACtE,yBAAyB,EAAE,QAAQ;IACnC,uBAAuB,EAAE,IAAI;IAC7B,oBAAoB,EAAE,IAAI;IAC1B,iBAAiB,EAAE,KAAK;IACxB,6BAA6B,EAAE,IAAI;IACnC,0BAA0B,EAAE,KAAK;IACjC,eAAe,EAAE,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,eAAe;IAC9D,yBAAyB,EAAE,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,yBAAyB;IAClF,qBAAqB,EAAE,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,qBAAqB;IAC1E,iBAAiB,EAAE,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB;IAC/D,QAAQ,EAAE,IAAI,iBAAiB,CAAC,OAAO,EAAE,sBAAsB,CAAC,EAAE,uBAAuB;IACzF,0BAA0B,EAAE,YAAY,EAAE,uBAAuB;IACjE,4BAA4B,EAAE,IAAI,aAAa,CAAC,yBAAyB,CAAC,EAAE,uBAAuB;IACnG,sBAAsB,EAAE,IAAI,mBAAmB,CAAC,qBAAqB,EAAE,CAAC,GAAG,eAAe,CAAC,EAAE,uBAAuB;IACpH,yBAAyB,EAAE,IAAI,iBAAiB,CAAC,wBAAwB,EAAE,iCAAiC,CAAC,EAAE,uBAAuB;IACtI,eAAe,EAAE,OAAO,EAAE,uBAAuB;IACjD,0BAA0B,EAAE,UAAU,CAAC,WAAW,EAAE,uBAAuB;CAC5E,EACD,EAAC,QAAQ,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,EAAC,CAC5C,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAG,IAAI,aAAa,CAChD;IACE,KAAK,EAAE,OAAO,CAAC,iBAAiB,CAAC,MAAM,CAAC,KAAK;IAC7C,MAAM,EAAE,OAAO,CAAC,iBAAiB,CAAC,MAAM,CAAC,MAAM;IAC/C,cAAc,EAAE,OAAO,CAAC,iBAAiB,CAAC,MAAM,CAAC,cAAc;IAC/D,SAAS,EAAE,OAAO,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS;IACrD,oFAAoF;IACpF,0FAA0F;IAC1F,IAAI,EAAE,IAAI,EAAE,uBAAuB;IACnC,eAAe,EAAE,IAAI,EAAE,uBAAuB;CAC/C,EACD,EAAC,QAAQ,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,EAAC,CAClD,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,IAAI,iBAAiB,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,CAAC"}
1
+ {"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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"}
@@ -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;;IAMxF,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;CAoBV;AAgBD,eAAO,MAAM,mBAAmB,yBAAgC,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":"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"}
1
+ {"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/phase0/validator.ts"],"names":[],"mappings":"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"}