@lodestar/types 1.34.0-dev.af1f74c2cd → 1.34.0-dev.b17b511121

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.
@@ -1,14 +1,26 @@
1
1
  import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType } from "@chainsafe/ssz";
2
+ export declare const KZGProof: ByteVectorType;
3
+ export declare const Blob: ByteVectorType;
2
4
  export declare const Metadata: ContainerType<{
3
5
  custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
4
6
  seqNumber: import("@chainsafe/ssz").UintBigintType;
5
7
  attnets: import("@chainsafe/ssz").BitVectorType;
6
8
  syncnets: import("@chainsafe/ssz").BitVectorType;
7
9
  }>;
10
+ export declare const Status: ContainerType<{
11
+ earliestAvailableSlot: import("@chainsafe/ssz").UintNumberType;
12
+ forkDigest: ByteVectorType;
13
+ finalizedRoot: ByteVectorType;
14
+ finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
15
+ headRoot: ByteVectorType;
16
+ headSlot: import("@chainsafe/ssz").UintNumberType;
17
+ }>;
8
18
  export declare const Cell: ByteVectorType;
9
19
  export declare const DataColumn: ListCompositeType<ByteVectorType>;
20
+ export declare const DataColumns: ListCompositeType<ListCompositeType<ByteVectorType>>;
10
21
  export declare const ExtendedMatrix: ListCompositeType<ByteVectorType>;
11
22
  export declare const KzgCommitmentsInclusionProof: VectorCompositeType<ByteVectorType>;
23
+ export declare const KZGProofs: ListCompositeType<ByteVectorType>;
12
24
  export declare const ProposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
13
25
  export declare const DataColumnSidecar: ContainerType<{
14
26
  index: import("@chainsafe/ssz").UintNumberType;
@@ -50,19 +62,353 @@ export declare const MatrixEntry: ContainerType<{
50
62
  columnIndex: import("@chainsafe/ssz").UintNumberType;
51
63
  rowIndex: import("@chainsafe/ssz").UintNumberType;
52
64
  }>;
53
- export declare const DataColumnIdentifier: ContainerType<{
65
+ export declare const DataColumnsByRootIdentifier: ContainerType<{
54
66
  blockRoot: ByteVectorType;
55
- index: import("@chainsafe/ssz").UintNumberType;
67
+ columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
56
68
  }>;
57
69
  export declare const DataColumnSidecarsByRootRequest: ListCompositeType<ContainerType<{
58
70
  blockRoot: ByteVectorType;
59
- index: import("@chainsafe/ssz").UintNumberType;
71
+ columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
60
72
  }>>;
61
73
  export declare const DataColumnSidecarsByRangeRequest: ContainerType<{
62
74
  startSlot: import("@chainsafe/ssz").UintNumberType;
63
75
  count: import("@chainsafe/ssz").UintNumberType;
64
76
  columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
65
77
  }>;
78
+ export declare const BeaconBlock: ContainerType<{
79
+ body: ContainerType<{
80
+ randaoReveal: ByteVectorType;
81
+ eth1Data: ContainerType<{
82
+ depositRoot: ByteVectorType;
83
+ depositCount: import("@chainsafe/ssz").UintNumberType;
84
+ blockHash: ByteVectorType;
85
+ }>;
86
+ graffiti: ByteVectorType;
87
+ proposerSlashings: ListCompositeType<ContainerType<{
88
+ signedHeader1: ContainerType<{
89
+ message: ContainerType<{
90
+ slot: import("@chainsafe/ssz").UintBigintType;
91
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
92
+ parentRoot: ByteVectorType;
93
+ stateRoot: ByteVectorType;
94
+ bodyRoot: ByteVectorType;
95
+ }>;
96
+ signature: ByteVectorType;
97
+ }>;
98
+ signedHeader2: ContainerType<{
99
+ message: ContainerType<{
100
+ slot: import("@chainsafe/ssz").UintBigintType;
101
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
102
+ parentRoot: ByteVectorType;
103
+ stateRoot: ByteVectorType;
104
+ bodyRoot: ByteVectorType;
105
+ }>;
106
+ signature: ByteVectorType;
107
+ }>;
108
+ }>>;
109
+ attesterSlashings: ListCompositeType<ContainerType<{
110
+ attestation1: ContainerType<{
111
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
112
+ data: ContainerType<{
113
+ slot: import("@chainsafe/ssz").UintBigintType;
114
+ index: import("@chainsafe/ssz").UintBigintType;
115
+ beaconBlockRoot: ByteVectorType;
116
+ source: ContainerType<{
117
+ epoch: import("@chainsafe/ssz").UintBigintType;
118
+ root: ByteVectorType;
119
+ }>;
120
+ target: ContainerType<{
121
+ epoch: import("@chainsafe/ssz").UintBigintType;
122
+ root: ByteVectorType;
123
+ }>;
124
+ }>;
125
+ signature: ByteVectorType;
126
+ }>;
127
+ attestation2: ContainerType<{
128
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
129
+ data: ContainerType<{
130
+ slot: import("@chainsafe/ssz").UintBigintType;
131
+ index: import("@chainsafe/ssz").UintBigintType;
132
+ beaconBlockRoot: ByteVectorType;
133
+ source: ContainerType<{
134
+ epoch: import("@chainsafe/ssz").UintBigintType;
135
+ root: ByteVectorType;
136
+ }>;
137
+ target: ContainerType<{
138
+ epoch: import("@chainsafe/ssz").UintBigintType;
139
+ root: ByteVectorType;
140
+ }>;
141
+ }>;
142
+ signature: ByteVectorType;
143
+ }>;
144
+ }>>;
145
+ attestations: ListCompositeType<ContainerType<{
146
+ aggregationBits: import("@chainsafe/ssz").BitListType;
147
+ data: ContainerType<{
148
+ slot: import("@chainsafe/ssz").UintNumberType;
149
+ index: import("@chainsafe/ssz").UintNumberType;
150
+ beaconBlockRoot: ByteVectorType;
151
+ source: ContainerType<{
152
+ epoch: import("@chainsafe/ssz").UintNumberType;
153
+ root: ByteVectorType;
154
+ }>;
155
+ target: ContainerType<{
156
+ epoch: import("@chainsafe/ssz").UintNumberType;
157
+ root: ByteVectorType;
158
+ }>;
159
+ }>;
160
+ signature: ByteVectorType;
161
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
162
+ }>>;
163
+ deposits: ListCompositeType<ContainerType<{
164
+ proof: VectorCompositeType<ByteVectorType>;
165
+ data: ContainerType<{
166
+ pubkey: ByteVectorType;
167
+ withdrawalCredentials: ByteVectorType;
168
+ amount: import("@chainsafe/ssz").UintNumberType;
169
+ signature: ByteVectorType;
170
+ }>;
171
+ }>>;
172
+ voluntaryExits: ListCompositeType<ContainerType<{
173
+ message: ContainerType<{
174
+ epoch: import("@chainsafe/ssz").UintNumberType;
175
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
176
+ }>;
177
+ signature: ByteVectorType;
178
+ }>>;
179
+ syncAggregate: ContainerType<{
180
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
181
+ syncCommitteeSignature: ByteVectorType;
182
+ }>;
183
+ executionPayload: ContainerType<{
184
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
185
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
186
+ withdrawals: ListCompositeType<ContainerType<{
187
+ index: import("@chainsafe/ssz").UintNumberType;
188
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
189
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
190
+ amount: import("@chainsafe/ssz").UintBigintType;
191
+ }>>;
192
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
193
+ parentHash: ByteVectorType;
194
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
195
+ stateRoot: ByteVectorType;
196
+ receiptsRoot: ByteVectorType;
197
+ logsBloom: ByteVectorType;
198
+ prevRandao: ByteVectorType;
199
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
200
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
201
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
202
+ timestamp: import("@chainsafe/ssz").UintNumberType;
203
+ extraData: import("@chainsafe/ssz").ByteListType;
204
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
205
+ blockHash: ByteVectorType;
206
+ }>;
207
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
208
+ message: ContainerType<{
209
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
210
+ fromBlsPubkey: ByteVectorType;
211
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
212
+ }>;
213
+ signature: ByteVectorType;
214
+ }>>;
215
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
216
+ executionRequests: ContainerType<{
217
+ deposits: ListCompositeType<ContainerType<{
218
+ pubkey: ByteVectorType;
219
+ withdrawalCredentials: ByteVectorType;
220
+ amount: import("@chainsafe/ssz").UintNumberType;
221
+ signature: ByteVectorType;
222
+ index: import("@chainsafe/ssz").UintBigintType;
223
+ }>>;
224
+ withdrawals: ListCompositeType<ContainerType<{
225
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
226
+ validatorPubkey: ByteVectorType;
227
+ amount: import("@chainsafe/ssz").UintBigintType;
228
+ }>>;
229
+ consolidations: ListCompositeType<ContainerType<{
230
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
231
+ sourcePubkey: ByteVectorType;
232
+ targetPubkey: ByteVectorType;
233
+ }>>;
234
+ }>;
235
+ }>;
236
+ slot: import("@chainsafe/ssz").UintNumberType;
237
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
238
+ parentRoot: ByteVectorType;
239
+ stateRoot: ByteVectorType;
240
+ }>;
241
+ export declare const SignedBeaconBlock: ContainerType<{
242
+ message: ContainerType<{
243
+ body: ContainerType<{
244
+ randaoReveal: ByteVectorType;
245
+ eth1Data: ContainerType<{
246
+ depositRoot: ByteVectorType;
247
+ depositCount: import("@chainsafe/ssz").UintNumberType;
248
+ blockHash: ByteVectorType;
249
+ }>;
250
+ graffiti: ByteVectorType;
251
+ proposerSlashings: ListCompositeType<ContainerType<{
252
+ signedHeader1: ContainerType<{
253
+ message: ContainerType<{
254
+ slot: import("@chainsafe/ssz").UintBigintType;
255
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
256
+ parentRoot: ByteVectorType;
257
+ stateRoot: ByteVectorType;
258
+ bodyRoot: ByteVectorType;
259
+ }>;
260
+ signature: ByteVectorType;
261
+ }>;
262
+ signedHeader2: ContainerType<{
263
+ message: ContainerType<{
264
+ slot: import("@chainsafe/ssz").UintBigintType;
265
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
266
+ parentRoot: ByteVectorType;
267
+ stateRoot: ByteVectorType;
268
+ bodyRoot: ByteVectorType;
269
+ }>;
270
+ signature: ByteVectorType;
271
+ }>;
272
+ }>>;
273
+ attesterSlashings: ListCompositeType<ContainerType<{
274
+ attestation1: ContainerType<{
275
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
276
+ data: ContainerType<{
277
+ slot: import("@chainsafe/ssz").UintBigintType;
278
+ index: import("@chainsafe/ssz").UintBigintType;
279
+ beaconBlockRoot: ByteVectorType;
280
+ source: ContainerType<{
281
+ epoch: import("@chainsafe/ssz").UintBigintType;
282
+ root: ByteVectorType;
283
+ }>;
284
+ target: ContainerType<{
285
+ epoch: import("@chainsafe/ssz").UintBigintType;
286
+ root: ByteVectorType;
287
+ }>;
288
+ }>;
289
+ signature: ByteVectorType;
290
+ }>;
291
+ attestation2: ContainerType<{
292
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
293
+ data: ContainerType<{
294
+ slot: import("@chainsafe/ssz").UintBigintType;
295
+ index: import("@chainsafe/ssz").UintBigintType;
296
+ beaconBlockRoot: ByteVectorType;
297
+ source: ContainerType<{
298
+ epoch: import("@chainsafe/ssz").UintBigintType;
299
+ root: ByteVectorType;
300
+ }>;
301
+ target: ContainerType<{
302
+ epoch: import("@chainsafe/ssz").UintBigintType;
303
+ root: ByteVectorType;
304
+ }>;
305
+ }>;
306
+ signature: ByteVectorType;
307
+ }>;
308
+ }>>;
309
+ attestations: ListCompositeType<ContainerType<{
310
+ aggregationBits: import("@chainsafe/ssz").BitListType;
311
+ data: ContainerType<{
312
+ slot: import("@chainsafe/ssz").UintNumberType;
313
+ index: import("@chainsafe/ssz").UintNumberType;
314
+ beaconBlockRoot: ByteVectorType;
315
+ source: ContainerType<{
316
+ epoch: import("@chainsafe/ssz").UintNumberType;
317
+ root: ByteVectorType;
318
+ }>;
319
+ target: ContainerType<{
320
+ epoch: import("@chainsafe/ssz").UintNumberType;
321
+ root: ByteVectorType;
322
+ }>;
323
+ }>;
324
+ signature: ByteVectorType;
325
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
326
+ }>>;
327
+ deposits: ListCompositeType<ContainerType<{
328
+ proof: VectorCompositeType<ByteVectorType>;
329
+ data: ContainerType<{
330
+ pubkey: ByteVectorType;
331
+ withdrawalCredentials: ByteVectorType;
332
+ amount: import("@chainsafe/ssz").UintNumberType;
333
+ signature: ByteVectorType;
334
+ }>;
335
+ }>>;
336
+ voluntaryExits: ListCompositeType<ContainerType<{
337
+ message: ContainerType<{
338
+ epoch: import("@chainsafe/ssz").UintNumberType;
339
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
340
+ }>;
341
+ signature: ByteVectorType;
342
+ }>>;
343
+ syncAggregate: ContainerType<{
344
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
345
+ syncCommitteeSignature: ByteVectorType;
346
+ }>;
347
+ executionPayload: ContainerType<{
348
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
349
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
350
+ withdrawals: ListCompositeType<ContainerType<{
351
+ index: import("@chainsafe/ssz").UintNumberType;
352
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
353
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
354
+ amount: import("@chainsafe/ssz").UintBigintType;
355
+ }>>;
356
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
357
+ parentHash: ByteVectorType;
358
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
359
+ stateRoot: ByteVectorType;
360
+ receiptsRoot: ByteVectorType;
361
+ logsBloom: ByteVectorType;
362
+ prevRandao: ByteVectorType;
363
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
364
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
365
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
366
+ timestamp: import("@chainsafe/ssz").UintNumberType;
367
+ extraData: import("@chainsafe/ssz").ByteListType;
368
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
369
+ blockHash: ByteVectorType;
370
+ }>;
371
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
372
+ message: ContainerType<{
373
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
374
+ fromBlsPubkey: ByteVectorType;
375
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
376
+ }>;
377
+ signature: ByteVectorType;
378
+ }>>;
379
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
380
+ executionRequests: ContainerType<{
381
+ deposits: ListCompositeType<ContainerType<{
382
+ pubkey: ByteVectorType;
383
+ withdrawalCredentials: ByteVectorType;
384
+ amount: import("@chainsafe/ssz").UintNumberType;
385
+ signature: ByteVectorType;
386
+ index: import("@chainsafe/ssz").UintBigintType;
387
+ }>>;
388
+ withdrawals: ListCompositeType<ContainerType<{
389
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
390
+ validatorPubkey: ByteVectorType;
391
+ amount: import("@chainsafe/ssz").UintBigintType;
392
+ }>>;
393
+ consolidations: ListCompositeType<ContainerType<{
394
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
395
+ sourcePubkey: ByteVectorType;
396
+ targetPubkey: ByteVectorType;
397
+ }>>;
398
+ }>;
399
+ }>;
400
+ slot: import("@chainsafe/ssz").UintNumberType;
401
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
402
+ parentRoot: ByteVectorType;
403
+ stateRoot: ByteVectorType;
404
+ }>;
405
+ signature: ByteVectorType;
406
+ }>;
407
+ export declare const BlobsBundle: ContainerType<{
408
+ commitments: ListCompositeType<ByteVectorType>;
409
+ proofs: ListCompositeType<ByteVectorType>;
410
+ blobs: ListCompositeType<ByteVectorType>;
411
+ }>;
66
412
  export declare const BeaconState: ContainerType<{
67
413
  proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
68
414
  genesisTime: import("@chainsafe/ssz").UintNumberType;
@@ -170,4 +516,341 @@ export declare const BeaconState: ContainerType<{
170
516
  targetIndex: import("@chainsafe/ssz").UintNumberType;
171
517
  }>>;
172
518
  }>;
519
+ export declare const BlockContents: ContainerType<{
520
+ block: ContainerType<{
521
+ body: ContainerType<{
522
+ randaoReveal: ByteVectorType;
523
+ eth1Data: ContainerType<{
524
+ depositRoot: ByteVectorType;
525
+ depositCount: import("@chainsafe/ssz").UintNumberType;
526
+ blockHash: ByteVectorType;
527
+ }>;
528
+ graffiti: ByteVectorType;
529
+ proposerSlashings: ListCompositeType<ContainerType<{
530
+ signedHeader1: ContainerType<{
531
+ message: ContainerType<{
532
+ slot: import("@chainsafe/ssz").UintBigintType;
533
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
534
+ parentRoot: ByteVectorType;
535
+ stateRoot: ByteVectorType;
536
+ bodyRoot: ByteVectorType;
537
+ }>;
538
+ signature: ByteVectorType;
539
+ }>;
540
+ signedHeader2: ContainerType<{
541
+ message: ContainerType<{
542
+ slot: import("@chainsafe/ssz").UintBigintType;
543
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
544
+ parentRoot: ByteVectorType;
545
+ stateRoot: ByteVectorType;
546
+ bodyRoot: ByteVectorType;
547
+ }>;
548
+ signature: ByteVectorType;
549
+ }>;
550
+ }>>;
551
+ attesterSlashings: ListCompositeType<ContainerType<{
552
+ attestation1: ContainerType<{
553
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
554
+ data: ContainerType<{
555
+ slot: import("@chainsafe/ssz").UintBigintType;
556
+ index: import("@chainsafe/ssz").UintBigintType;
557
+ beaconBlockRoot: ByteVectorType;
558
+ source: ContainerType<{
559
+ epoch: import("@chainsafe/ssz").UintBigintType;
560
+ root: ByteVectorType;
561
+ }>;
562
+ target: ContainerType<{
563
+ epoch: import("@chainsafe/ssz").UintBigintType;
564
+ root: ByteVectorType;
565
+ }>;
566
+ }>;
567
+ signature: ByteVectorType;
568
+ }>;
569
+ attestation2: ContainerType<{
570
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
571
+ data: ContainerType<{
572
+ slot: import("@chainsafe/ssz").UintBigintType;
573
+ index: import("@chainsafe/ssz").UintBigintType;
574
+ beaconBlockRoot: ByteVectorType;
575
+ source: ContainerType<{
576
+ epoch: import("@chainsafe/ssz").UintBigintType;
577
+ root: ByteVectorType;
578
+ }>;
579
+ target: ContainerType<{
580
+ epoch: import("@chainsafe/ssz").UintBigintType;
581
+ root: ByteVectorType;
582
+ }>;
583
+ }>;
584
+ signature: ByteVectorType;
585
+ }>;
586
+ }>>;
587
+ attestations: ListCompositeType<ContainerType<{
588
+ aggregationBits: import("@chainsafe/ssz").BitListType;
589
+ data: ContainerType<{
590
+ slot: import("@chainsafe/ssz").UintNumberType;
591
+ index: import("@chainsafe/ssz").UintNumberType;
592
+ beaconBlockRoot: ByteVectorType;
593
+ source: ContainerType<{
594
+ epoch: import("@chainsafe/ssz").UintNumberType;
595
+ root: ByteVectorType;
596
+ }>;
597
+ target: ContainerType<{
598
+ epoch: import("@chainsafe/ssz").UintNumberType;
599
+ root: ByteVectorType;
600
+ }>;
601
+ }>;
602
+ signature: ByteVectorType;
603
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
604
+ }>>;
605
+ deposits: ListCompositeType<ContainerType<{
606
+ proof: VectorCompositeType<ByteVectorType>;
607
+ data: ContainerType<{
608
+ pubkey: ByteVectorType;
609
+ withdrawalCredentials: ByteVectorType;
610
+ amount: import("@chainsafe/ssz").UintNumberType;
611
+ signature: ByteVectorType;
612
+ }>;
613
+ }>>;
614
+ voluntaryExits: ListCompositeType<ContainerType<{
615
+ message: ContainerType<{
616
+ epoch: import("@chainsafe/ssz").UintNumberType;
617
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
618
+ }>;
619
+ signature: ByteVectorType;
620
+ }>>;
621
+ syncAggregate: ContainerType<{
622
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
623
+ syncCommitteeSignature: ByteVectorType;
624
+ }>;
625
+ executionPayload: ContainerType<{
626
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
627
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
628
+ withdrawals: ListCompositeType<ContainerType<{
629
+ index: import("@chainsafe/ssz").UintNumberType;
630
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
631
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
632
+ amount: import("@chainsafe/ssz").UintBigintType;
633
+ }>>;
634
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
635
+ parentHash: ByteVectorType;
636
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
637
+ stateRoot: ByteVectorType;
638
+ receiptsRoot: ByteVectorType;
639
+ logsBloom: ByteVectorType;
640
+ prevRandao: ByteVectorType;
641
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
642
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
643
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
644
+ timestamp: import("@chainsafe/ssz").UintNumberType;
645
+ extraData: import("@chainsafe/ssz").ByteListType;
646
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
647
+ blockHash: ByteVectorType;
648
+ }>;
649
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
650
+ message: ContainerType<{
651
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
652
+ fromBlsPubkey: ByteVectorType;
653
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
654
+ }>;
655
+ signature: ByteVectorType;
656
+ }>>;
657
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
658
+ executionRequests: ContainerType<{
659
+ deposits: ListCompositeType<ContainerType<{
660
+ pubkey: ByteVectorType;
661
+ withdrawalCredentials: ByteVectorType;
662
+ amount: import("@chainsafe/ssz").UintNumberType;
663
+ signature: ByteVectorType;
664
+ index: import("@chainsafe/ssz").UintBigintType;
665
+ }>>;
666
+ withdrawals: ListCompositeType<ContainerType<{
667
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
668
+ validatorPubkey: ByteVectorType;
669
+ amount: import("@chainsafe/ssz").UintBigintType;
670
+ }>>;
671
+ consolidations: ListCompositeType<ContainerType<{
672
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
673
+ sourcePubkey: ByteVectorType;
674
+ targetPubkey: ByteVectorType;
675
+ }>>;
676
+ }>;
677
+ }>;
678
+ slot: import("@chainsafe/ssz").UintNumberType;
679
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
680
+ parentRoot: ByteVectorType;
681
+ stateRoot: ByteVectorType;
682
+ }>;
683
+ kzgProofs: ListCompositeType<ByteVectorType>;
684
+ blobs: ListCompositeType<ByteVectorType>;
685
+ }>;
686
+ export declare const SignedBlockContents: ContainerType<{
687
+ signedBlock: ContainerType<{
688
+ message: ContainerType<{
689
+ body: ContainerType<{
690
+ randaoReveal: ByteVectorType;
691
+ eth1Data: ContainerType<{
692
+ depositRoot: ByteVectorType;
693
+ depositCount: import("@chainsafe/ssz").UintNumberType;
694
+ blockHash: ByteVectorType;
695
+ }>;
696
+ graffiti: ByteVectorType;
697
+ proposerSlashings: ListCompositeType<ContainerType<{
698
+ signedHeader1: ContainerType<{
699
+ message: ContainerType<{
700
+ slot: import("@chainsafe/ssz").UintBigintType;
701
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
702
+ parentRoot: ByteVectorType;
703
+ stateRoot: ByteVectorType;
704
+ bodyRoot: ByteVectorType;
705
+ }>;
706
+ signature: ByteVectorType;
707
+ }>;
708
+ signedHeader2: ContainerType<{
709
+ message: ContainerType<{
710
+ slot: import("@chainsafe/ssz").UintBigintType;
711
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
712
+ parentRoot: ByteVectorType;
713
+ stateRoot: ByteVectorType;
714
+ bodyRoot: ByteVectorType;
715
+ }>;
716
+ signature: ByteVectorType;
717
+ }>;
718
+ }>>;
719
+ attesterSlashings: ListCompositeType<ContainerType<{
720
+ attestation1: ContainerType<{
721
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
722
+ data: ContainerType<{
723
+ slot: import("@chainsafe/ssz").UintBigintType;
724
+ index: import("@chainsafe/ssz").UintBigintType;
725
+ beaconBlockRoot: ByteVectorType;
726
+ source: ContainerType<{
727
+ epoch: import("@chainsafe/ssz").UintBigintType;
728
+ root: ByteVectorType;
729
+ }>;
730
+ target: ContainerType<{
731
+ epoch: import("@chainsafe/ssz").UintBigintType;
732
+ root: ByteVectorType;
733
+ }>;
734
+ }>;
735
+ signature: ByteVectorType;
736
+ }>;
737
+ attestation2: ContainerType<{
738
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
739
+ data: ContainerType<{
740
+ slot: import("@chainsafe/ssz").UintBigintType;
741
+ index: import("@chainsafe/ssz").UintBigintType;
742
+ beaconBlockRoot: ByteVectorType;
743
+ source: ContainerType<{
744
+ epoch: import("@chainsafe/ssz").UintBigintType;
745
+ root: ByteVectorType;
746
+ }>;
747
+ target: ContainerType<{
748
+ epoch: import("@chainsafe/ssz").UintBigintType;
749
+ root: ByteVectorType;
750
+ }>;
751
+ }>;
752
+ signature: ByteVectorType;
753
+ }>;
754
+ }>>;
755
+ attestations: ListCompositeType<ContainerType<{
756
+ aggregationBits: import("@chainsafe/ssz").BitListType;
757
+ data: ContainerType<{
758
+ slot: import("@chainsafe/ssz").UintNumberType;
759
+ index: import("@chainsafe/ssz").UintNumberType;
760
+ beaconBlockRoot: ByteVectorType;
761
+ source: ContainerType<{
762
+ epoch: import("@chainsafe/ssz").UintNumberType;
763
+ root: ByteVectorType;
764
+ }>;
765
+ target: ContainerType<{
766
+ epoch: import("@chainsafe/ssz").UintNumberType;
767
+ root: ByteVectorType;
768
+ }>;
769
+ }>;
770
+ signature: ByteVectorType;
771
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
772
+ }>>;
773
+ deposits: ListCompositeType<ContainerType<{
774
+ proof: VectorCompositeType<ByteVectorType>;
775
+ data: ContainerType<{
776
+ pubkey: ByteVectorType;
777
+ withdrawalCredentials: ByteVectorType;
778
+ amount: import("@chainsafe/ssz").UintNumberType;
779
+ signature: ByteVectorType;
780
+ }>;
781
+ }>>;
782
+ voluntaryExits: ListCompositeType<ContainerType<{
783
+ message: ContainerType<{
784
+ epoch: import("@chainsafe/ssz").UintNumberType;
785
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
786
+ }>;
787
+ signature: ByteVectorType;
788
+ }>>;
789
+ syncAggregate: ContainerType<{
790
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
791
+ syncCommitteeSignature: ByteVectorType;
792
+ }>;
793
+ executionPayload: ContainerType<{
794
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
795
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
796
+ withdrawals: ListCompositeType<ContainerType<{
797
+ index: import("@chainsafe/ssz").UintNumberType;
798
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
799
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
800
+ amount: import("@chainsafe/ssz").UintBigintType;
801
+ }>>;
802
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
803
+ parentHash: ByteVectorType;
804
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
805
+ stateRoot: ByteVectorType;
806
+ receiptsRoot: ByteVectorType;
807
+ logsBloom: ByteVectorType;
808
+ prevRandao: ByteVectorType;
809
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
810
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
811
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
812
+ timestamp: import("@chainsafe/ssz").UintNumberType;
813
+ extraData: import("@chainsafe/ssz").ByteListType;
814
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
815
+ blockHash: ByteVectorType;
816
+ }>;
817
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
818
+ message: ContainerType<{
819
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
820
+ fromBlsPubkey: ByteVectorType;
821
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
822
+ }>;
823
+ signature: ByteVectorType;
824
+ }>>;
825
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
826
+ executionRequests: ContainerType<{
827
+ deposits: ListCompositeType<ContainerType<{
828
+ pubkey: ByteVectorType;
829
+ withdrawalCredentials: ByteVectorType;
830
+ amount: import("@chainsafe/ssz").UintNumberType;
831
+ signature: ByteVectorType;
832
+ index: import("@chainsafe/ssz").UintBigintType;
833
+ }>>;
834
+ withdrawals: ListCompositeType<ContainerType<{
835
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
836
+ validatorPubkey: ByteVectorType;
837
+ amount: import("@chainsafe/ssz").UintBigintType;
838
+ }>>;
839
+ consolidations: ListCompositeType<ContainerType<{
840
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
841
+ sourcePubkey: ByteVectorType;
842
+ targetPubkey: ByteVectorType;
843
+ }>>;
844
+ }>;
845
+ }>;
846
+ slot: import("@chainsafe/ssz").UintNumberType;
847
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
848
+ parentRoot: ByteVectorType;
849
+ stateRoot: ByteVectorType;
850
+ }>;
851
+ signature: ByteVectorType;
852
+ }>;
853
+ kzgProofs: ListCompositeType<ByteVectorType>;
854
+ blobs: ListCompositeType<ByteVectorType>;
855
+ }>;
173
856
  //# sourceMappingURL=sszTypes.d.ts.map