@lodestar/types 1.41.0-dev.f9a3a81538 → 1.41.0-rc.2

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.
@@ -60,10 +60,6 @@ export declare const SyncAggregate: ContainerType<{
60
60
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
61
61
  }>;
62
62
  export declare const BeaconBlockBody: ContainerType<{
63
- syncAggregate: ContainerType<{
64
- syncCommitteeBits: BitVectorType;
65
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
66
- }>;
67
63
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
68
64
  eth1Data: ContainerType<{
69
65
  depositRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -162,6 +158,10 @@ export declare const BeaconBlockBody: ContainerType<{
162
158
  }>;
163
159
  signature: import("@chainsafe/ssz").ByteVectorType;
164
160
  }>>;
161
+ syncAggregate: ContainerType<{
162
+ syncCommitteeBits: BitVectorType;
163
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
164
+ }>;
165
165
  }>;
166
166
  export declare const BeaconBlock: ContainerType<{
167
167
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -169,10 +169,6 @@ export declare const BeaconBlock: ContainerType<{
169
169
  parentRoot: import("@chainsafe/ssz").ByteVectorType;
170
170
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
171
171
  body: ContainerType<{
172
- syncAggregate: ContainerType<{
173
- syncCommitteeBits: BitVectorType;
174
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
175
- }>;
176
172
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
177
173
  eth1Data: ContainerType<{
178
174
  depositRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -271,6 +267,10 @@ export declare const BeaconBlock: ContainerType<{
271
267
  }>;
272
268
  signature: import("@chainsafe/ssz").ByteVectorType;
273
269
  }>>;
270
+ syncAggregate: ContainerType<{
271
+ syncCommitteeBits: BitVectorType;
272
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
273
+ }>;
274
274
  }>;
275
275
  }>;
276
276
  export declare const SignedBeaconBlock: ContainerType<{
@@ -280,10 +280,6 @@ export declare const SignedBeaconBlock: ContainerType<{
280
280
  parentRoot: import("@chainsafe/ssz").ByteVectorType;
281
281
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
282
282
  body: ContainerType<{
283
- syncAggregate: ContainerType<{
284
- syncCommitteeBits: BitVectorType;
285
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
286
- }>;
287
283
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
288
284
  eth1Data: ContainerType<{
289
285
  depositRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -382,6 +378,10 @@ export declare const SignedBeaconBlock: ContainerType<{
382
378
  }>;
383
379
  signature: import("@chainsafe/ssz").ByteVectorType;
384
380
  }>>;
381
+ syncAggregate: ContainerType<{
382
+ syncCommitteeBits: BitVectorType;
383
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
384
+ }>;
385
385
  }>;
386
386
  }>;
387
387
  signature: import("@chainsafe/ssz").ByteVectorType;
@@ -27,7 +27,6 @@ export declare const CommonExecutionPayloadType: ContainerType<{
27
27
  blockHash: ByteVectorType;
28
28
  }>;
29
29
  export declare const ExecutionPayload: ContainerType<{
30
- transactions: ListCompositeType<ByteListType>;
31
30
  parentHash: ByteVectorType;
32
31
  feeRecipient: import("../index.ts").ExecutionAddressType;
33
32
  stateRoot: ByteVectorType;
@@ -41,9 +40,9 @@ export declare const ExecutionPayload: ContainerType<{
41
40
  extraData: ByteListType;
42
41
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
43
42
  blockHash: ByteVectorType;
43
+ transactions: ListCompositeType<ByteListType>;
44
44
  }>;
45
45
  export declare const ExecutionPayloadHeader: ContainerType<{
46
- transactionsRoot: ByteVectorType;
47
46
  parentHash: ByteVectorType;
48
47
  feeRecipient: import("../index.ts").ExecutionAddressType;
49
48
  stateRoot: ByteVectorType;
@@ -57,28 +56,9 @@ export declare const ExecutionPayloadHeader: ContainerType<{
57
56
  extraData: ByteListType;
58
57
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
59
58
  blockHash: ByteVectorType;
59
+ transactionsRoot: ByteVectorType;
60
60
  }>;
61
61
  export declare const BeaconBlockBody: ContainerType<{
62
- executionPayload: ContainerType<{
63
- transactions: ListCompositeType<ByteListType>;
64
- parentHash: ByteVectorType;
65
- feeRecipient: import("../index.ts").ExecutionAddressType;
66
- stateRoot: ByteVectorType;
67
- receiptsRoot: ByteVectorType;
68
- logsBloom: ByteVectorType;
69
- prevRandao: ByteVectorType;
70
- blockNumber: import("@chainsafe/ssz").UintNumberType;
71
- gasLimit: import("@chainsafe/ssz").UintNumberType;
72
- gasUsed: import("@chainsafe/ssz").UintNumberType;
73
- timestamp: import("@chainsafe/ssz").UintNumberType;
74
- extraData: ByteListType;
75
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
76
- blockHash: ByteVectorType;
77
- }>;
78
- syncAggregate: ContainerType<{
79
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
80
- syncCommitteeSignature: ByteVectorType;
81
- }>;
82
62
  randaoReveal: ByteVectorType;
83
63
  eth1Data: ContainerType<{
84
64
  depositRoot: ByteVectorType;
@@ -177,6 +157,26 @@ export declare const BeaconBlockBody: ContainerType<{
177
157
  }>;
178
158
  signature: ByteVectorType;
179
159
  }>>;
160
+ syncAggregate: ContainerType<{
161
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
162
+ syncCommitteeSignature: ByteVectorType;
163
+ }>;
164
+ executionPayload: ContainerType<{
165
+ parentHash: ByteVectorType;
166
+ feeRecipient: import("../index.ts").ExecutionAddressType;
167
+ stateRoot: ByteVectorType;
168
+ receiptsRoot: ByteVectorType;
169
+ logsBloom: ByteVectorType;
170
+ prevRandao: ByteVectorType;
171
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
172
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
173
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
174
+ timestamp: import("@chainsafe/ssz").UintNumberType;
175
+ extraData: ByteListType;
176
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
177
+ blockHash: ByteVectorType;
178
+ transactions: ListCompositeType<ByteListType>;
179
+ }>;
180
180
  }>;
181
181
  export declare const BeaconBlock: ContainerType<{
182
182
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -184,26 +184,6 @@ export declare const BeaconBlock: ContainerType<{
184
184
  parentRoot: ByteVectorType;
185
185
  stateRoot: ByteVectorType;
186
186
  body: ContainerType<{
187
- executionPayload: ContainerType<{
188
- transactions: ListCompositeType<ByteListType>;
189
- parentHash: ByteVectorType;
190
- feeRecipient: import("../index.ts").ExecutionAddressType;
191
- stateRoot: ByteVectorType;
192
- receiptsRoot: ByteVectorType;
193
- logsBloom: ByteVectorType;
194
- prevRandao: ByteVectorType;
195
- blockNumber: import("@chainsafe/ssz").UintNumberType;
196
- gasLimit: import("@chainsafe/ssz").UintNumberType;
197
- gasUsed: import("@chainsafe/ssz").UintNumberType;
198
- timestamp: import("@chainsafe/ssz").UintNumberType;
199
- extraData: ByteListType;
200
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
201
- blockHash: ByteVectorType;
202
- }>;
203
- syncAggregate: ContainerType<{
204
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
205
- syncCommitteeSignature: ByteVectorType;
206
- }>;
207
187
  randaoReveal: ByteVectorType;
208
188
  eth1Data: ContainerType<{
209
189
  depositRoot: ByteVectorType;
@@ -302,6 +282,26 @@ export declare const BeaconBlock: ContainerType<{
302
282
  }>;
303
283
  signature: ByteVectorType;
304
284
  }>>;
285
+ syncAggregate: ContainerType<{
286
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
287
+ syncCommitteeSignature: ByteVectorType;
288
+ }>;
289
+ executionPayload: ContainerType<{
290
+ parentHash: ByteVectorType;
291
+ feeRecipient: import("../index.ts").ExecutionAddressType;
292
+ stateRoot: ByteVectorType;
293
+ receiptsRoot: ByteVectorType;
294
+ logsBloom: ByteVectorType;
295
+ prevRandao: ByteVectorType;
296
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
297
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
298
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
299
+ timestamp: import("@chainsafe/ssz").UintNumberType;
300
+ extraData: ByteListType;
301
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
302
+ blockHash: ByteVectorType;
303
+ transactions: ListCompositeType<ByteListType>;
304
+ }>;
305
305
  }>;
306
306
  }>;
307
307
  export declare const SignedBeaconBlock: ContainerType<{
@@ -311,26 +311,6 @@ export declare const SignedBeaconBlock: ContainerType<{
311
311
  parentRoot: ByteVectorType;
312
312
  stateRoot: ByteVectorType;
313
313
  body: ContainerType<{
314
- executionPayload: ContainerType<{
315
- transactions: ListCompositeType<ByteListType>;
316
- parentHash: ByteVectorType;
317
- feeRecipient: import("../index.ts").ExecutionAddressType;
318
- stateRoot: ByteVectorType;
319
- receiptsRoot: ByteVectorType;
320
- logsBloom: ByteVectorType;
321
- prevRandao: ByteVectorType;
322
- blockNumber: import("@chainsafe/ssz").UintNumberType;
323
- gasLimit: import("@chainsafe/ssz").UintNumberType;
324
- gasUsed: import("@chainsafe/ssz").UintNumberType;
325
- timestamp: import("@chainsafe/ssz").UintNumberType;
326
- extraData: ByteListType;
327
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
328
- blockHash: ByteVectorType;
329
- }>;
330
- syncAggregate: ContainerType<{
331
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
332
- syncCommitteeSignature: ByteVectorType;
333
- }>;
334
314
  randaoReveal: ByteVectorType;
335
315
  eth1Data: ContainerType<{
336
316
  depositRoot: ByteVectorType;
@@ -429,6 +409,26 @@ export declare const SignedBeaconBlock: ContainerType<{
429
409
  }>;
430
410
  signature: ByteVectorType;
431
411
  }>>;
412
+ syncAggregate: ContainerType<{
413
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
414
+ syncCommitteeSignature: ByteVectorType;
415
+ }>;
416
+ executionPayload: ContainerType<{
417
+ parentHash: ByteVectorType;
418
+ feeRecipient: import("../index.ts").ExecutionAddressType;
419
+ stateRoot: ByteVectorType;
420
+ receiptsRoot: ByteVectorType;
421
+ logsBloom: ByteVectorType;
422
+ prevRandao: ByteVectorType;
423
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
424
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
425
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
426
+ timestamp: import("@chainsafe/ssz").UintNumberType;
427
+ extraData: ByteListType;
428
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
429
+ blockHash: ByteVectorType;
430
+ transactions: ListCompositeType<ByteListType>;
431
+ }>;
432
432
  }>;
433
433
  }>;
434
434
  signature: ByteVectorType;
@@ -497,7 +497,6 @@ export declare const BeaconState: ContainerType<{
497
497
  aggregatePubkey: ByteVectorType;
498
498
  }>;
499
499
  latestExecutionPayloadHeader: ContainerType<{
500
- transactionsRoot: ByteVectorType;
501
500
  parentHash: ByteVectorType;
502
501
  feeRecipient: import("../index.ts").ExecutionAddressType;
503
502
  stateRoot: ByteVectorType;
@@ -511,29 +510,10 @@ export declare const BeaconState: ContainerType<{
511
510
  extraData: ByteListType;
512
511
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
513
512
  blockHash: ByteVectorType;
513
+ transactionsRoot: ByteVectorType;
514
514
  }>;
515
515
  }>;
516
516
  export declare const BlindedBeaconBlockBody: ContainerType<{
517
- executionPayloadHeader: ContainerType<{
518
- transactionsRoot: ByteVectorType;
519
- parentHash: ByteVectorType;
520
- feeRecipient: import("../index.ts").ExecutionAddressType;
521
- stateRoot: ByteVectorType;
522
- receiptsRoot: ByteVectorType;
523
- logsBloom: ByteVectorType;
524
- prevRandao: ByteVectorType;
525
- blockNumber: import("@chainsafe/ssz").UintNumberType;
526
- gasLimit: import("@chainsafe/ssz").UintNumberType;
527
- gasUsed: import("@chainsafe/ssz").UintNumberType;
528
- timestamp: import("@chainsafe/ssz").UintNumberType;
529
- extraData: ByteListType;
530
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
531
- blockHash: ByteVectorType;
532
- }>;
533
- syncAggregate: ContainerType<{
534
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
535
- syncCommitteeSignature: ByteVectorType;
536
- }>;
537
517
  randaoReveal: ByteVectorType;
538
518
  eth1Data: ContainerType<{
539
519
  depositRoot: ByteVectorType;
@@ -632,6 +612,26 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
632
612
  }>;
633
613
  signature: ByteVectorType;
634
614
  }>>;
615
+ syncAggregate: ContainerType<{
616
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
617
+ syncCommitteeSignature: ByteVectorType;
618
+ }>;
619
+ executionPayloadHeader: ContainerType<{
620
+ parentHash: ByteVectorType;
621
+ feeRecipient: import("../index.ts").ExecutionAddressType;
622
+ stateRoot: ByteVectorType;
623
+ receiptsRoot: ByteVectorType;
624
+ logsBloom: ByteVectorType;
625
+ prevRandao: ByteVectorType;
626
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
627
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
628
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
629
+ timestamp: import("@chainsafe/ssz").UintNumberType;
630
+ extraData: ByteListType;
631
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
632
+ blockHash: ByteVectorType;
633
+ transactionsRoot: ByteVectorType;
634
+ }>;
635
635
  }>;
636
636
  export declare const BlindedBeaconBlock: ContainerType<{
637
637
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -639,26 +639,6 @@ export declare const BlindedBeaconBlock: ContainerType<{
639
639
  parentRoot: ByteVectorType;
640
640
  stateRoot: ByteVectorType;
641
641
  body: ContainerType<{
642
- executionPayloadHeader: ContainerType<{
643
- transactionsRoot: ByteVectorType;
644
- parentHash: ByteVectorType;
645
- feeRecipient: import("../index.ts").ExecutionAddressType;
646
- stateRoot: ByteVectorType;
647
- receiptsRoot: ByteVectorType;
648
- logsBloom: ByteVectorType;
649
- prevRandao: ByteVectorType;
650
- blockNumber: import("@chainsafe/ssz").UintNumberType;
651
- gasLimit: import("@chainsafe/ssz").UintNumberType;
652
- gasUsed: import("@chainsafe/ssz").UintNumberType;
653
- timestamp: import("@chainsafe/ssz").UintNumberType;
654
- extraData: ByteListType;
655
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
656
- blockHash: ByteVectorType;
657
- }>;
658
- syncAggregate: ContainerType<{
659
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
660
- syncCommitteeSignature: ByteVectorType;
661
- }>;
662
642
  randaoReveal: ByteVectorType;
663
643
  eth1Data: ContainerType<{
664
644
  depositRoot: ByteVectorType;
@@ -757,6 +737,26 @@ export declare const BlindedBeaconBlock: ContainerType<{
757
737
  }>;
758
738
  signature: ByteVectorType;
759
739
  }>>;
740
+ syncAggregate: ContainerType<{
741
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
742
+ syncCommitteeSignature: ByteVectorType;
743
+ }>;
744
+ executionPayloadHeader: ContainerType<{
745
+ parentHash: ByteVectorType;
746
+ feeRecipient: import("../index.ts").ExecutionAddressType;
747
+ stateRoot: ByteVectorType;
748
+ receiptsRoot: ByteVectorType;
749
+ logsBloom: ByteVectorType;
750
+ prevRandao: ByteVectorType;
751
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
752
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
753
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
754
+ timestamp: import("@chainsafe/ssz").UintNumberType;
755
+ extraData: ByteListType;
756
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
757
+ blockHash: ByteVectorType;
758
+ transactionsRoot: ByteVectorType;
759
+ }>;
760
760
  }>;
761
761
  }>;
762
762
  export declare const SignedBlindedBeaconBlock: ContainerType<{
@@ -766,26 +766,6 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
766
766
  parentRoot: ByteVectorType;
767
767
  stateRoot: ByteVectorType;
768
768
  body: ContainerType<{
769
- executionPayloadHeader: ContainerType<{
770
- transactionsRoot: ByteVectorType;
771
- parentHash: ByteVectorType;
772
- feeRecipient: import("../index.ts").ExecutionAddressType;
773
- stateRoot: ByteVectorType;
774
- receiptsRoot: ByteVectorType;
775
- logsBloom: ByteVectorType;
776
- prevRandao: ByteVectorType;
777
- blockNumber: import("@chainsafe/ssz").UintNumberType;
778
- gasLimit: import("@chainsafe/ssz").UintNumberType;
779
- gasUsed: import("@chainsafe/ssz").UintNumberType;
780
- timestamp: import("@chainsafe/ssz").UintNumberType;
781
- extraData: ByteListType;
782
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
783
- blockHash: ByteVectorType;
784
- }>;
785
- syncAggregate: ContainerType<{
786
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
787
- syncCommitteeSignature: ByteVectorType;
788
- }>;
789
769
  randaoReveal: ByteVectorType;
790
770
  eth1Data: ContainerType<{
791
771
  depositRoot: ByteVectorType;
@@ -884,6 +864,26 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
884
864
  }>;
885
865
  signature: ByteVectorType;
886
866
  }>>;
867
+ syncAggregate: ContainerType<{
868
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
869
+ syncCommitteeSignature: ByteVectorType;
870
+ }>;
871
+ executionPayloadHeader: ContainerType<{
872
+ parentHash: ByteVectorType;
873
+ feeRecipient: import("../index.ts").ExecutionAddressType;
874
+ stateRoot: ByteVectorType;
875
+ receiptsRoot: ByteVectorType;
876
+ logsBloom: ByteVectorType;
877
+ prevRandao: ByteVectorType;
878
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
879
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
880
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
881
+ timestamp: import("@chainsafe/ssz").UintNumberType;
882
+ extraData: ByteListType;
883
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
884
+ blockHash: ByteVectorType;
885
+ transactionsRoot: ByteVectorType;
886
+ }>;
887
887
  }>;
888
888
  }>;
889
889
  signature: ByteVectorType;
@@ -905,7 +905,6 @@ export declare const SignedValidatorRegistrationV1: ContainerType<{
905
905
  }>;
906
906
  export declare const BuilderBid: ContainerType<{
907
907
  header: ContainerType<{
908
- transactionsRoot: ByteVectorType;
909
908
  parentHash: ByteVectorType;
910
909
  feeRecipient: import("../index.ts").ExecutionAddressType;
911
910
  stateRoot: ByteVectorType;
@@ -919,6 +918,7 @@ export declare const BuilderBid: ContainerType<{
919
918
  extraData: ByteListType;
920
919
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
921
920
  blockHash: ByteVectorType;
921
+ transactionsRoot: ByteVectorType;
922
922
  }>;
923
923
  value: import("@chainsafe/ssz").UintBigintType;
924
924
  pubkey: ByteVectorType;
@@ -926,7 +926,6 @@ export declare const BuilderBid: ContainerType<{
926
926
  export declare const SignedBuilderBid: ContainerType<{
927
927
  message: ContainerType<{
928
928
  header: ContainerType<{
929
- transactionsRoot: ByteVectorType;
930
929
  parentHash: ByteVectorType;
931
930
  feeRecipient: import("../index.ts").ExecutionAddressType;
932
931
  stateRoot: ByteVectorType;
@@ -940,6 +939,7 @@ export declare const SignedBuilderBid: ContainerType<{
940
939
  extraData: ByteListType;
941
940
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
942
941
  blockHash: ByteVectorType;
942
+ transactionsRoot: ByteVectorType;
943
943
  }>;
944
944
  value: import("@chainsafe/ssz").UintBigintType;
945
945
  pubkey: ByteVectorType;
@@ -959,15 +959,15 @@ export declare const SSEPayloadAttributesCommon: ContainerType<{
959
959
  parentBlockHash: ByteVectorType;
960
960
  }>;
961
961
  export declare const SSEPayloadAttributes: ContainerType<{
962
- payloadAttributes: ContainerType<{
963
- timestamp: import("@chainsafe/ssz").UintNumberType;
964
- prevRandao: ByteVectorType;
965
- suggestedFeeRecipient: import("../utils/stringType.js").StringType<string>;
966
- }>;
967
962
  proposerIndex: import("@chainsafe/ssz").UintNumberType;
968
963
  proposalSlot: import("@chainsafe/ssz").UintNumberType;
969
964
  parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
970
965
  parentBlockRoot: ByteVectorType;
971
966
  parentBlockHash: ByteVectorType;
967
+ payloadAttributes: ContainerType<{
968
+ timestamp: import("@chainsafe/ssz").UintNumberType;
969
+ prevRandao: ByteVectorType;
970
+ suggestedFeeRecipient: import("../utils/stringType.js").StringType<string>;
971
+ }>;
972
972
  }>;
973
973
  //# sourceMappingURL=sszTypes.d.ts.map