@lodestar/types 1.34.0-dev.d5a4e7a09c → 1.34.0-dev.d9fc7bb103

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