@lodestar/types 1.33.0-dev.f3e21c7679 → 1.33.0-peerDAS.00a7126d44

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,25 @@
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>;
10
20
  export declare const ExtendedMatrix: ListCompositeType<ByteVectorType>;
11
21
  export declare const KzgCommitmentsInclusionProof: VectorCompositeType<ByteVectorType>;
22
+ export declare const KZGProofs: ListCompositeType<ByteVectorType>;
12
23
  export declare const ProposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
13
24
  export declare const DataColumnSidecar: ContainerType<{
14
25
  index: import("@chainsafe/ssz").UintNumberType;
@@ -50,19 +61,1161 @@ export declare const MatrixEntry: ContainerType<{
50
61
  columnIndex: import("@chainsafe/ssz").UintNumberType;
51
62
  rowIndex: import("@chainsafe/ssz").UintNumberType;
52
63
  }>;
53
- export declare const DataColumnIdentifier: ContainerType<{
64
+ export declare const DataColumnsByRootIdentifier: ContainerType<{
54
65
  blockRoot: ByteVectorType;
55
- index: import("@chainsafe/ssz").UintNumberType;
66
+ columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
56
67
  }>;
57
68
  export declare const DataColumnSidecarsByRootRequest: ListCompositeType<ContainerType<{
58
69
  blockRoot: ByteVectorType;
59
- index: import("@chainsafe/ssz").UintNumberType;
70
+ columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
60
71
  }>>;
61
72
  export declare const DataColumnSidecarsByRangeRequest: ContainerType<{
62
73
  startSlot: import("@chainsafe/ssz").UintNumberType;
63
74
  count: import("@chainsafe/ssz").UintNumberType;
64
75
  columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
65
76
  }>;
77
+ export declare const ExecutionPayload: ContainerType<{
78
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
79
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
80
+ withdrawals: ListCompositeType<ContainerType<{
81
+ index: import("@chainsafe/ssz").UintNumberType;
82
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
83
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
84
+ amount: import("@chainsafe/ssz").UintBigintType;
85
+ }>>;
86
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
87
+ parentHash: ByteVectorType;
88
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
89
+ stateRoot: ByteVectorType;
90
+ receiptsRoot: ByteVectorType;
91
+ logsBloom: ByteVectorType;
92
+ prevRandao: ByteVectorType;
93
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
94
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
95
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
96
+ timestamp: import("@chainsafe/ssz").UintNumberType;
97
+ extraData: import("@chainsafe/ssz").ByteListType;
98
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
99
+ blockHash: ByteVectorType;
100
+ }>;
101
+ export declare const ExecutionPayloadHeader: ContainerType<{
102
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
103
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
104
+ withdrawalsRoot: ByteVectorType;
105
+ transactionsRoot: ByteVectorType;
106
+ parentHash: ByteVectorType;
107
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
108
+ stateRoot: ByteVectorType;
109
+ receiptsRoot: ByteVectorType;
110
+ logsBloom: ByteVectorType;
111
+ prevRandao: ByteVectorType;
112
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
113
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
114
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
115
+ timestamp: import("@chainsafe/ssz").UintNumberType;
116
+ extraData: import("@chainsafe/ssz").ByteListType;
117
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
118
+ blockHash: ByteVectorType;
119
+ }>;
120
+ export declare const BeaconBlockBody: ContainerType<{
121
+ randaoReveal: ByteVectorType;
122
+ eth1Data: ContainerType<{
123
+ depositRoot: ByteVectorType;
124
+ depositCount: import("@chainsafe/ssz").UintNumberType;
125
+ blockHash: ByteVectorType;
126
+ }>;
127
+ graffiti: ByteVectorType;
128
+ proposerSlashings: ListCompositeType<ContainerType<{
129
+ signedHeader1: ContainerType<{
130
+ message: ContainerType<{
131
+ slot: import("@chainsafe/ssz").UintBigintType;
132
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
133
+ parentRoot: ByteVectorType;
134
+ stateRoot: ByteVectorType;
135
+ bodyRoot: ByteVectorType;
136
+ }>;
137
+ signature: ByteVectorType;
138
+ }>;
139
+ signedHeader2: ContainerType<{
140
+ message: ContainerType<{
141
+ slot: import("@chainsafe/ssz").UintBigintType;
142
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
143
+ parentRoot: ByteVectorType;
144
+ stateRoot: ByteVectorType;
145
+ bodyRoot: ByteVectorType;
146
+ }>;
147
+ signature: ByteVectorType;
148
+ }>;
149
+ }>>;
150
+ attesterSlashings: ListCompositeType<ContainerType<{
151
+ attestation1: ContainerType<{
152
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
153
+ data: ContainerType<{
154
+ slot: import("@chainsafe/ssz").UintBigintType;
155
+ index: import("@chainsafe/ssz").UintBigintType;
156
+ beaconBlockRoot: ByteVectorType;
157
+ source: ContainerType<{
158
+ epoch: import("@chainsafe/ssz").UintBigintType;
159
+ root: ByteVectorType;
160
+ }>;
161
+ target: ContainerType<{
162
+ epoch: import("@chainsafe/ssz").UintBigintType;
163
+ root: ByteVectorType;
164
+ }>;
165
+ }>;
166
+ signature: ByteVectorType;
167
+ }>;
168
+ attestation2: ContainerType<{
169
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
170
+ data: ContainerType<{
171
+ slot: import("@chainsafe/ssz").UintBigintType;
172
+ index: import("@chainsafe/ssz").UintBigintType;
173
+ beaconBlockRoot: ByteVectorType;
174
+ source: ContainerType<{
175
+ epoch: import("@chainsafe/ssz").UintBigintType;
176
+ root: ByteVectorType;
177
+ }>;
178
+ target: ContainerType<{
179
+ epoch: import("@chainsafe/ssz").UintBigintType;
180
+ root: ByteVectorType;
181
+ }>;
182
+ }>;
183
+ signature: ByteVectorType;
184
+ }>;
185
+ }>>;
186
+ attestations: ListCompositeType<ContainerType<{
187
+ aggregationBits: import("@chainsafe/ssz").BitListType;
188
+ data: ContainerType<{
189
+ slot: import("@chainsafe/ssz").UintNumberType;
190
+ index: import("@chainsafe/ssz").UintNumberType;
191
+ beaconBlockRoot: ByteVectorType;
192
+ source: ContainerType<{
193
+ epoch: import("@chainsafe/ssz").UintNumberType;
194
+ root: ByteVectorType;
195
+ }>;
196
+ target: ContainerType<{
197
+ epoch: import("@chainsafe/ssz").UintNumberType;
198
+ root: ByteVectorType;
199
+ }>;
200
+ }>;
201
+ signature: ByteVectorType;
202
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
203
+ }>>;
204
+ deposits: ListCompositeType<ContainerType<{
205
+ proof: VectorCompositeType<ByteVectorType>;
206
+ data: ContainerType<{
207
+ pubkey: ByteVectorType;
208
+ withdrawalCredentials: ByteVectorType;
209
+ amount: import("@chainsafe/ssz").UintNumberType;
210
+ signature: ByteVectorType;
211
+ }>;
212
+ }>>;
213
+ voluntaryExits: ListCompositeType<ContainerType<{
214
+ message: ContainerType<{
215
+ epoch: import("@chainsafe/ssz").UintNumberType;
216
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
217
+ }>;
218
+ signature: ByteVectorType;
219
+ }>>;
220
+ syncAggregate: ContainerType<{
221
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
222
+ syncCommitteeSignature: ByteVectorType;
223
+ }>;
224
+ executionPayload: ContainerType<{
225
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
226
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
227
+ withdrawals: ListCompositeType<ContainerType<{
228
+ index: import("@chainsafe/ssz").UintNumberType;
229
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
230
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
231
+ amount: import("@chainsafe/ssz").UintBigintType;
232
+ }>>;
233
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
234
+ parentHash: ByteVectorType;
235
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
236
+ stateRoot: ByteVectorType;
237
+ receiptsRoot: ByteVectorType;
238
+ logsBloom: ByteVectorType;
239
+ prevRandao: ByteVectorType;
240
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
241
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
242
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
243
+ timestamp: import("@chainsafe/ssz").UintNumberType;
244
+ extraData: import("@chainsafe/ssz").ByteListType;
245
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
246
+ blockHash: ByteVectorType;
247
+ }>;
248
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
249
+ message: ContainerType<{
250
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
251
+ fromBlsPubkey: ByteVectorType;
252
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
253
+ }>;
254
+ signature: ByteVectorType;
255
+ }>>;
256
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
257
+ executionRequests: ContainerType<{
258
+ deposits: ListCompositeType<ContainerType<{
259
+ pubkey: ByteVectorType;
260
+ withdrawalCredentials: ByteVectorType;
261
+ amount: import("@chainsafe/ssz").UintNumberType;
262
+ signature: ByteVectorType;
263
+ index: import("@chainsafe/ssz").UintBigintType;
264
+ }>>;
265
+ withdrawals: ListCompositeType<ContainerType<{
266
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
267
+ validatorPubkey: ByteVectorType;
268
+ amount: import("@chainsafe/ssz").UintBigintType;
269
+ }>>;
270
+ consolidations: ListCompositeType<ContainerType<{
271
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
272
+ sourcePubkey: ByteVectorType;
273
+ targetPubkey: ByteVectorType;
274
+ }>>;
275
+ }>;
276
+ }>;
277
+ export declare const BeaconBlock: ContainerType<{
278
+ body: ContainerType<{
279
+ randaoReveal: ByteVectorType;
280
+ eth1Data: ContainerType<{
281
+ depositRoot: ByteVectorType;
282
+ depositCount: import("@chainsafe/ssz").UintNumberType;
283
+ blockHash: ByteVectorType;
284
+ }>;
285
+ graffiti: ByteVectorType;
286
+ proposerSlashings: ListCompositeType<ContainerType<{
287
+ signedHeader1: ContainerType<{
288
+ message: ContainerType<{
289
+ slot: import("@chainsafe/ssz").UintBigintType;
290
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
291
+ parentRoot: ByteVectorType;
292
+ stateRoot: ByteVectorType;
293
+ bodyRoot: ByteVectorType;
294
+ }>;
295
+ signature: ByteVectorType;
296
+ }>;
297
+ signedHeader2: ContainerType<{
298
+ message: ContainerType<{
299
+ slot: import("@chainsafe/ssz").UintBigintType;
300
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
301
+ parentRoot: ByteVectorType;
302
+ stateRoot: ByteVectorType;
303
+ bodyRoot: ByteVectorType;
304
+ }>;
305
+ signature: ByteVectorType;
306
+ }>;
307
+ }>>;
308
+ attesterSlashings: ListCompositeType<ContainerType<{
309
+ attestation1: ContainerType<{
310
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
311
+ data: ContainerType<{
312
+ slot: import("@chainsafe/ssz").UintBigintType;
313
+ index: import("@chainsafe/ssz").UintBigintType;
314
+ beaconBlockRoot: ByteVectorType;
315
+ source: ContainerType<{
316
+ epoch: import("@chainsafe/ssz").UintBigintType;
317
+ root: ByteVectorType;
318
+ }>;
319
+ target: ContainerType<{
320
+ epoch: import("@chainsafe/ssz").UintBigintType;
321
+ root: ByteVectorType;
322
+ }>;
323
+ }>;
324
+ signature: ByteVectorType;
325
+ }>;
326
+ attestation2: ContainerType<{
327
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
328
+ data: ContainerType<{
329
+ slot: import("@chainsafe/ssz").UintBigintType;
330
+ index: import("@chainsafe/ssz").UintBigintType;
331
+ beaconBlockRoot: ByteVectorType;
332
+ source: ContainerType<{
333
+ epoch: import("@chainsafe/ssz").UintBigintType;
334
+ root: ByteVectorType;
335
+ }>;
336
+ target: ContainerType<{
337
+ epoch: import("@chainsafe/ssz").UintBigintType;
338
+ root: ByteVectorType;
339
+ }>;
340
+ }>;
341
+ signature: ByteVectorType;
342
+ }>;
343
+ }>>;
344
+ attestations: ListCompositeType<ContainerType<{
345
+ aggregationBits: import("@chainsafe/ssz").BitListType;
346
+ data: ContainerType<{
347
+ slot: import("@chainsafe/ssz").UintNumberType;
348
+ index: import("@chainsafe/ssz").UintNumberType;
349
+ beaconBlockRoot: ByteVectorType;
350
+ source: ContainerType<{
351
+ epoch: import("@chainsafe/ssz").UintNumberType;
352
+ root: ByteVectorType;
353
+ }>;
354
+ target: ContainerType<{
355
+ epoch: import("@chainsafe/ssz").UintNumberType;
356
+ root: ByteVectorType;
357
+ }>;
358
+ }>;
359
+ signature: ByteVectorType;
360
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
361
+ }>>;
362
+ deposits: ListCompositeType<ContainerType<{
363
+ proof: VectorCompositeType<ByteVectorType>;
364
+ data: ContainerType<{
365
+ pubkey: ByteVectorType;
366
+ withdrawalCredentials: ByteVectorType;
367
+ amount: import("@chainsafe/ssz").UintNumberType;
368
+ signature: ByteVectorType;
369
+ }>;
370
+ }>>;
371
+ voluntaryExits: ListCompositeType<ContainerType<{
372
+ message: ContainerType<{
373
+ epoch: import("@chainsafe/ssz").UintNumberType;
374
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
375
+ }>;
376
+ signature: ByteVectorType;
377
+ }>>;
378
+ syncAggregate: ContainerType<{
379
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
380
+ syncCommitteeSignature: ByteVectorType;
381
+ }>;
382
+ executionPayload: ContainerType<{
383
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
384
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
385
+ withdrawals: ListCompositeType<ContainerType<{
386
+ index: import("@chainsafe/ssz").UintNumberType;
387
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
388
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
389
+ amount: import("@chainsafe/ssz").UintBigintType;
390
+ }>>;
391
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
392
+ parentHash: ByteVectorType;
393
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
394
+ stateRoot: ByteVectorType;
395
+ receiptsRoot: ByteVectorType;
396
+ logsBloom: ByteVectorType;
397
+ prevRandao: ByteVectorType;
398
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
399
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
400
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
401
+ timestamp: import("@chainsafe/ssz").UintNumberType;
402
+ extraData: import("@chainsafe/ssz").ByteListType;
403
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
404
+ blockHash: ByteVectorType;
405
+ }>;
406
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
407
+ message: ContainerType<{
408
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
409
+ fromBlsPubkey: ByteVectorType;
410
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
411
+ }>;
412
+ signature: ByteVectorType;
413
+ }>>;
414
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
415
+ executionRequests: ContainerType<{
416
+ deposits: ListCompositeType<ContainerType<{
417
+ pubkey: ByteVectorType;
418
+ withdrawalCredentials: ByteVectorType;
419
+ amount: import("@chainsafe/ssz").UintNumberType;
420
+ signature: ByteVectorType;
421
+ index: import("@chainsafe/ssz").UintBigintType;
422
+ }>>;
423
+ withdrawals: ListCompositeType<ContainerType<{
424
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
425
+ validatorPubkey: ByteVectorType;
426
+ amount: import("@chainsafe/ssz").UintBigintType;
427
+ }>>;
428
+ consolidations: ListCompositeType<ContainerType<{
429
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
430
+ sourcePubkey: ByteVectorType;
431
+ targetPubkey: ByteVectorType;
432
+ }>>;
433
+ }>;
434
+ }>;
435
+ slot: import("@chainsafe/ssz").UintNumberType;
436
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
437
+ parentRoot: ByteVectorType;
438
+ stateRoot: ByteVectorType;
439
+ }>;
440
+ export declare const SignedBeaconBlock: ContainerType<{
441
+ message: ContainerType<{
442
+ body: ContainerType<{
443
+ randaoReveal: ByteVectorType;
444
+ eth1Data: ContainerType<{
445
+ depositRoot: ByteVectorType;
446
+ depositCount: import("@chainsafe/ssz").UintNumberType;
447
+ blockHash: ByteVectorType;
448
+ }>;
449
+ graffiti: ByteVectorType;
450
+ proposerSlashings: ListCompositeType<ContainerType<{
451
+ signedHeader1: ContainerType<{
452
+ message: ContainerType<{
453
+ slot: import("@chainsafe/ssz").UintBigintType;
454
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
455
+ parentRoot: ByteVectorType;
456
+ stateRoot: ByteVectorType;
457
+ bodyRoot: ByteVectorType;
458
+ }>;
459
+ signature: ByteVectorType;
460
+ }>;
461
+ signedHeader2: ContainerType<{
462
+ message: ContainerType<{
463
+ slot: import("@chainsafe/ssz").UintBigintType;
464
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
465
+ parentRoot: ByteVectorType;
466
+ stateRoot: ByteVectorType;
467
+ bodyRoot: ByteVectorType;
468
+ }>;
469
+ signature: ByteVectorType;
470
+ }>;
471
+ }>>;
472
+ attesterSlashings: ListCompositeType<ContainerType<{
473
+ attestation1: ContainerType<{
474
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
475
+ data: ContainerType<{
476
+ slot: import("@chainsafe/ssz").UintBigintType;
477
+ index: import("@chainsafe/ssz").UintBigintType;
478
+ beaconBlockRoot: ByteVectorType;
479
+ source: ContainerType<{
480
+ epoch: import("@chainsafe/ssz").UintBigintType;
481
+ root: ByteVectorType;
482
+ }>;
483
+ target: ContainerType<{
484
+ epoch: import("@chainsafe/ssz").UintBigintType;
485
+ root: ByteVectorType;
486
+ }>;
487
+ }>;
488
+ signature: ByteVectorType;
489
+ }>;
490
+ attestation2: ContainerType<{
491
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
492
+ data: ContainerType<{
493
+ slot: import("@chainsafe/ssz").UintBigintType;
494
+ index: import("@chainsafe/ssz").UintBigintType;
495
+ beaconBlockRoot: ByteVectorType;
496
+ source: ContainerType<{
497
+ epoch: import("@chainsafe/ssz").UintBigintType;
498
+ root: ByteVectorType;
499
+ }>;
500
+ target: ContainerType<{
501
+ epoch: import("@chainsafe/ssz").UintBigintType;
502
+ root: ByteVectorType;
503
+ }>;
504
+ }>;
505
+ signature: ByteVectorType;
506
+ }>;
507
+ }>>;
508
+ attestations: ListCompositeType<ContainerType<{
509
+ aggregationBits: import("@chainsafe/ssz").BitListType;
510
+ data: ContainerType<{
511
+ slot: import("@chainsafe/ssz").UintNumberType;
512
+ index: import("@chainsafe/ssz").UintNumberType;
513
+ beaconBlockRoot: ByteVectorType;
514
+ source: ContainerType<{
515
+ epoch: import("@chainsafe/ssz").UintNumberType;
516
+ root: ByteVectorType;
517
+ }>;
518
+ target: ContainerType<{
519
+ epoch: import("@chainsafe/ssz").UintNumberType;
520
+ root: ByteVectorType;
521
+ }>;
522
+ }>;
523
+ signature: ByteVectorType;
524
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
525
+ }>>;
526
+ deposits: ListCompositeType<ContainerType<{
527
+ proof: VectorCompositeType<ByteVectorType>;
528
+ data: ContainerType<{
529
+ pubkey: ByteVectorType;
530
+ withdrawalCredentials: ByteVectorType;
531
+ amount: import("@chainsafe/ssz").UintNumberType;
532
+ signature: ByteVectorType;
533
+ }>;
534
+ }>>;
535
+ voluntaryExits: ListCompositeType<ContainerType<{
536
+ message: ContainerType<{
537
+ epoch: import("@chainsafe/ssz").UintNumberType;
538
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
539
+ }>;
540
+ signature: ByteVectorType;
541
+ }>>;
542
+ syncAggregate: ContainerType<{
543
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
544
+ syncCommitteeSignature: ByteVectorType;
545
+ }>;
546
+ executionPayload: ContainerType<{
547
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
548
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
549
+ withdrawals: ListCompositeType<ContainerType<{
550
+ index: import("@chainsafe/ssz").UintNumberType;
551
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
552
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
553
+ amount: import("@chainsafe/ssz").UintBigintType;
554
+ }>>;
555
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
556
+ parentHash: ByteVectorType;
557
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
558
+ stateRoot: ByteVectorType;
559
+ receiptsRoot: ByteVectorType;
560
+ logsBloom: ByteVectorType;
561
+ prevRandao: ByteVectorType;
562
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
563
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
564
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
565
+ timestamp: import("@chainsafe/ssz").UintNumberType;
566
+ extraData: import("@chainsafe/ssz").ByteListType;
567
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
568
+ blockHash: ByteVectorType;
569
+ }>;
570
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
571
+ message: ContainerType<{
572
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
573
+ fromBlsPubkey: ByteVectorType;
574
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
575
+ }>;
576
+ signature: ByteVectorType;
577
+ }>>;
578
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
579
+ executionRequests: ContainerType<{
580
+ deposits: ListCompositeType<ContainerType<{
581
+ pubkey: ByteVectorType;
582
+ withdrawalCredentials: ByteVectorType;
583
+ amount: import("@chainsafe/ssz").UintNumberType;
584
+ signature: ByteVectorType;
585
+ index: import("@chainsafe/ssz").UintBigintType;
586
+ }>>;
587
+ withdrawals: ListCompositeType<ContainerType<{
588
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
589
+ validatorPubkey: ByteVectorType;
590
+ amount: import("@chainsafe/ssz").UintBigintType;
591
+ }>>;
592
+ consolidations: ListCompositeType<ContainerType<{
593
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
594
+ sourcePubkey: ByteVectorType;
595
+ targetPubkey: ByteVectorType;
596
+ }>>;
597
+ }>;
598
+ }>;
599
+ slot: import("@chainsafe/ssz").UintNumberType;
600
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
601
+ parentRoot: ByteVectorType;
602
+ stateRoot: ByteVectorType;
603
+ }>;
604
+ signature: ByteVectorType;
605
+ }>;
606
+ export declare const BlobSidecar: ContainerType<{
607
+ index: import("@chainsafe/ssz").UintNumberType;
608
+ blob: ByteVectorType;
609
+ kzgCommitment: ByteVectorType;
610
+ kzgProof: ByteVectorType;
611
+ signedBlockHeader: ContainerType<{
612
+ message: ContainerType<{
613
+ slot: import("@chainsafe/ssz").UintNumberType;
614
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
615
+ parentRoot: ByteVectorType;
616
+ stateRoot: ByteVectorType;
617
+ bodyRoot: ByteVectorType;
618
+ }>;
619
+ signature: ByteVectorType;
620
+ }>;
621
+ kzgCommitmentInclusionProof: VectorCompositeType<ByteVectorType>;
622
+ }>;
623
+ export declare const BlobsBundle: ContainerType<{
624
+ commitments: ListCompositeType<ByteVectorType>;
625
+ proofs: ListCompositeType<ByteVectorType>;
626
+ blobs: ListCompositeType<ByteVectorType>;
627
+ }>;
628
+ export declare const BlindedBeaconBlockBody: ContainerType<{
629
+ randaoReveal: ByteVectorType;
630
+ eth1Data: ContainerType<{
631
+ depositRoot: ByteVectorType;
632
+ depositCount: import("@chainsafe/ssz").UintNumberType;
633
+ blockHash: ByteVectorType;
634
+ }>;
635
+ graffiti: ByteVectorType;
636
+ proposerSlashings: ListCompositeType<ContainerType<{
637
+ signedHeader1: ContainerType<{
638
+ message: ContainerType<{
639
+ slot: import("@chainsafe/ssz").UintBigintType;
640
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
641
+ parentRoot: ByteVectorType;
642
+ stateRoot: ByteVectorType;
643
+ bodyRoot: ByteVectorType;
644
+ }>;
645
+ signature: ByteVectorType;
646
+ }>;
647
+ signedHeader2: ContainerType<{
648
+ message: ContainerType<{
649
+ slot: import("@chainsafe/ssz").UintBigintType;
650
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
651
+ parentRoot: ByteVectorType;
652
+ stateRoot: ByteVectorType;
653
+ bodyRoot: ByteVectorType;
654
+ }>;
655
+ signature: ByteVectorType;
656
+ }>;
657
+ }>>;
658
+ attesterSlashings: ListCompositeType<ContainerType<{
659
+ attestation1: ContainerType<{
660
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
661
+ data: ContainerType<{
662
+ slot: import("@chainsafe/ssz").UintBigintType;
663
+ index: import("@chainsafe/ssz").UintBigintType;
664
+ beaconBlockRoot: ByteVectorType;
665
+ source: ContainerType<{
666
+ epoch: import("@chainsafe/ssz").UintBigintType;
667
+ root: ByteVectorType;
668
+ }>;
669
+ target: ContainerType<{
670
+ epoch: import("@chainsafe/ssz").UintBigintType;
671
+ root: ByteVectorType;
672
+ }>;
673
+ }>;
674
+ signature: ByteVectorType;
675
+ }>;
676
+ attestation2: ContainerType<{
677
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
678
+ data: ContainerType<{
679
+ slot: import("@chainsafe/ssz").UintBigintType;
680
+ index: import("@chainsafe/ssz").UintBigintType;
681
+ beaconBlockRoot: ByteVectorType;
682
+ source: ContainerType<{
683
+ epoch: import("@chainsafe/ssz").UintBigintType;
684
+ root: ByteVectorType;
685
+ }>;
686
+ target: ContainerType<{
687
+ epoch: import("@chainsafe/ssz").UintBigintType;
688
+ root: ByteVectorType;
689
+ }>;
690
+ }>;
691
+ signature: ByteVectorType;
692
+ }>;
693
+ }>>;
694
+ attestations: ListCompositeType<ContainerType<{
695
+ aggregationBits: import("@chainsafe/ssz").BitListType;
696
+ data: ContainerType<{
697
+ slot: import("@chainsafe/ssz").UintNumberType;
698
+ index: import("@chainsafe/ssz").UintNumberType;
699
+ beaconBlockRoot: ByteVectorType;
700
+ source: ContainerType<{
701
+ epoch: import("@chainsafe/ssz").UintNumberType;
702
+ root: ByteVectorType;
703
+ }>;
704
+ target: ContainerType<{
705
+ epoch: import("@chainsafe/ssz").UintNumberType;
706
+ root: ByteVectorType;
707
+ }>;
708
+ }>;
709
+ signature: ByteVectorType;
710
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
711
+ }>>;
712
+ deposits: ListCompositeType<ContainerType<{
713
+ proof: VectorCompositeType<ByteVectorType>;
714
+ data: ContainerType<{
715
+ pubkey: ByteVectorType;
716
+ withdrawalCredentials: ByteVectorType;
717
+ amount: import("@chainsafe/ssz").UintNumberType;
718
+ signature: ByteVectorType;
719
+ }>;
720
+ }>>;
721
+ voluntaryExits: ListCompositeType<ContainerType<{
722
+ message: ContainerType<{
723
+ epoch: import("@chainsafe/ssz").UintNumberType;
724
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
725
+ }>;
726
+ signature: ByteVectorType;
727
+ }>>;
728
+ syncAggregate: ContainerType<{
729
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
730
+ syncCommitteeSignature: ByteVectorType;
731
+ }>;
732
+ executionPayloadHeader: ContainerType<{
733
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
734
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
735
+ withdrawalsRoot: ByteVectorType;
736
+ transactionsRoot: ByteVectorType;
737
+ parentHash: ByteVectorType;
738
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
739
+ stateRoot: ByteVectorType;
740
+ receiptsRoot: ByteVectorType;
741
+ logsBloom: ByteVectorType;
742
+ prevRandao: ByteVectorType;
743
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
744
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
745
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
746
+ timestamp: import("@chainsafe/ssz").UintNumberType;
747
+ extraData: import("@chainsafe/ssz").ByteListType;
748
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
749
+ blockHash: ByteVectorType;
750
+ }>;
751
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
752
+ message: ContainerType<{
753
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
754
+ fromBlsPubkey: ByteVectorType;
755
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
756
+ }>;
757
+ signature: ByteVectorType;
758
+ }>>;
759
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
760
+ executionRequests: ContainerType<{
761
+ deposits: ListCompositeType<ContainerType<{
762
+ pubkey: ByteVectorType;
763
+ withdrawalCredentials: ByteVectorType;
764
+ amount: import("@chainsafe/ssz").UintNumberType;
765
+ signature: ByteVectorType;
766
+ index: import("@chainsafe/ssz").UintBigintType;
767
+ }>>;
768
+ withdrawals: ListCompositeType<ContainerType<{
769
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
770
+ validatorPubkey: ByteVectorType;
771
+ amount: import("@chainsafe/ssz").UintBigintType;
772
+ }>>;
773
+ consolidations: ListCompositeType<ContainerType<{
774
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
775
+ sourcePubkey: ByteVectorType;
776
+ targetPubkey: ByteVectorType;
777
+ }>>;
778
+ }>;
779
+ }>;
780
+ export declare const BlindedBeaconBlock: ContainerType<{
781
+ body: ContainerType<{
782
+ randaoReveal: ByteVectorType;
783
+ eth1Data: ContainerType<{
784
+ depositRoot: ByteVectorType;
785
+ depositCount: import("@chainsafe/ssz").UintNumberType;
786
+ blockHash: ByteVectorType;
787
+ }>;
788
+ graffiti: ByteVectorType;
789
+ proposerSlashings: ListCompositeType<ContainerType<{
790
+ signedHeader1: ContainerType<{
791
+ message: ContainerType<{
792
+ slot: import("@chainsafe/ssz").UintBigintType;
793
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
794
+ parentRoot: ByteVectorType;
795
+ stateRoot: ByteVectorType;
796
+ bodyRoot: ByteVectorType;
797
+ }>;
798
+ signature: ByteVectorType;
799
+ }>;
800
+ signedHeader2: ContainerType<{
801
+ message: ContainerType<{
802
+ slot: import("@chainsafe/ssz").UintBigintType;
803
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
804
+ parentRoot: ByteVectorType;
805
+ stateRoot: ByteVectorType;
806
+ bodyRoot: ByteVectorType;
807
+ }>;
808
+ signature: ByteVectorType;
809
+ }>;
810
+ }>>;
811
+ attesterSlashings: ListCompositeType<ContainerType<{
812
+ attestation1: ContainerType<{
813
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
814
+ data: ContainerType<{
815
+ slot: import("@chainsafe/ssz").UintBigintType;
816
+ index: import("@chainsafe/ssz").UintBigintType;
817
+ beaconBlockRoot: ByteVectorType;
818
+ source: ContainerType<{
819
+ epoch: import("@chainsafe/ssz").UintBigintType;
820
+ root: ByteVectorType;
821
+ }>;
822
+ target: ContainerType<{
823
+ epoch: import("@chainsafe/ssz").UintBigintType;
824
+ root: ByteVectorType;
825
+ }>;
826
+ }>;
827
+ signature: ByteVectorType;
828
+ }>;
829
+ attestation2: ContainerType<{
830
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
831
+ data: ContainerType<{
832
+ slot: import("@chainsafe/ssz").UintBigintType;
833
+ index: import("@chainsafe/ssz").UintBigintType;
834
+ beaconBlockRoot: ByteVectorType;
835
+ source: ContainerType<{
836
+ epoch: import("@chainsafe/ssz").UintBigintType;
837
+ root: ByteVectorType;
838
+ }>;
839
+ target: ContainerType<{
840
+ epoch: import("@chainsafe/ssz").UintBigintType;
841
+ root: ByteVectorType;
842
+ }>;
843
+ }>;
844
+ signature: ByteVectorType;
845
+ }>;
846
+ }>>;
847
+ attestations: ListCompositeType<ContainerType<{
848
+ aggregationBits: import("@chainsafe/ssz").BitListType;
849
+ data: ContainerType<{
850
+ slot: import("@chainsafe/ssz").UintNumberType;
851
+ index: import("@chainsafe/ssz").UintNumberType;
852
+ beaconBlockRoot: ByteVectorType;
853
+ source: ContainerType<{
854
+ epoch: import("@chainsafe/ssz").UintNumberType;
855
+ root: ByteVectorType;
856
+ }>;
857
+ target: ContainerType<{
858
+ epoch: import("@chainsafe/ssz").UintNumberType;
859
+ root: ByteVectorType;
860
+ }>;
861
+ }>;
862
+ signature: ByteVectorType;
863
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
864
+ }>>;
865
+ deposits: ListCompositeType<ContainerType<{
866
+ proof: VectorCompositeType<ByteVectorType>;
867
+ data: ContainerType<{
868
+ pubkey: ByteVectorType;
869
+ withdrawalCredentials: ByteVectorType;
870
+ amount: import("@chainsafe/ssz").UintNumberType;
871
+ signature: ByteVectorType;
872
+ }>;
873
+ }>>;
874
+ voluntaryExits: ListCompositeType<ContainerType<{
875
+ message: ContainerType<{
876
+ epoch: import("@chainsafe/ssz").UintNumberType;
877
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
878
+ }>;
879
+ signature: ByteVectorType;
880
+ }>>;
881
+ syncAggregate: ContainerType<{
882
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
883
+ syncCommitteeSignature: ByteVectorType;
884
+ }>;
885
+ executionPayloadHeader: ContainerType<{
886
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
887
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
888
+ withdrawalsRoot: ByteVectorType;
889
+ transactionsRoot: ByteVectorType;
890
+ parentHash: ByteVectorType;
891
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
892
+ stateRoot: ByteVectorType;
893
+ receiptsRoot: ByteVectorType;
894
+ logsBloom: ByteVectorType;
895
+ prevRandao: ByteVectorType;
896
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
897
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
898
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
899
+ timestamp: import("@chainsafe/ssz").UintNumberType;
900
+ extraData: import("@chainsafe/ssz").ByteListType;
901
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
902
+ blockHash: ByteVectorType;
903
+ }>;
904
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
905
+ message: ContainerType<{
906
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
907
+ fromBlsPubkey: ByteVectorType;
908
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
909
+ }>;
910
+ signature: ByteVectorType;
911
+ }>>;
912
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
913
+ executionRequests: ContainerType<{
914
+ deposits: ListCompositeType<ContainerType<{
915
+ pubkey: ByteVectorType;
916
+ withdrawalCredentials: ByteVectorType;
917
+ amount: import("@chainsafe/ssz").UintNumberType;
918
+ signature: ByteVectorType;
919
+ index: import("@chainsafe/ssz").UintBigintType;
920
+ }>>;
921
+ withdrawals: ListCompositeType<ContainerType<{
922
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
923
+ validatorPubkey: ByteVectorType;
924
+ amount: import("@chainsafe/ssz").UintBigintType;
925
+ }>>;
926
+ consolidations: ListCompositeType<ContainerType<{
927
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
928
+ sourcePubkey: ByteVectorType;
929
+ targetPubkey: ByteVectorType;
930
+ }>>;
931
+ }>;
932
+ }>;
933
+ slot: import("@chainsafe/ssz").UintNumberType;
934
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
935
+ parentRoot: ByteVectorType;
936
+ stateRoot: ByteVectorType;
937
+ }>;
938
+ export declare const SignedBlindedBeaconBlock: ContainerType<{
939
+ message: ContainerType<{
940
+ body: ContainerType<{
941
+ randaoReveal: ByteVectorType;
942
+ eth1Data: ContainerType<{
943
+ depositRoot: ByteVectorType;
944
+ depositCount: import("@chainsafe/ssz").UintNumberType;
945
+ blockHash: ByteVectorType;
946
+ }>;
947
+ graffiti: ByteVectorType;
948
+ proposerSlashings: ListCompositeType<ContainerType<{
949
+ signedHeader1: ContainerType<{
950
+ message: ContainerType<{
951
+ slot: import("@chainsafe/ssz").UintBigintType;
952
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
953
+ parentRoot: ByteVectorType;
954
+ stateRoot: ByteVectorType;
955
+ bodyRoot: ByteVectorType;
956
+ }>;
957
+ signature: ByteVectorType;
958
+ }>;
959
+ signedHeader2: ContainerType<{
960
+ message: ContainerType<{
961
+ slot: import("@chainsafe/ssz").UintBigintType;
962
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
963
+ parentRoot: ByteVectorType;
964
+ stateRoot: ByteVectorType;
965
+ bodyRoot: ByteVectorType;
966
+ }>;
967
+ signature: ByteVectorType;
968
+ }>;
969
+ }>>;
970
+ attesterSlashings: ListCompositeType<ContainerType<{
971
+ attestation1: ContainerType<{
972
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
973
+ data: ContainerType<{
974
+ slot: import("@chainsafe/ssz").UintBigintType;
975
+ index: import("@chainsafe/ssz").UintBigintType;
976
+ beaconBlockRoot: ByteVectorType;
977
+ source: ContainerType<{
978
+ epoch: import("@chainsafe/ssz").UintBigintType;
979
+ root: ByteVectorType;
980
+ }>;
981
+ target: ContainerType<{
982
+ epoch: import("@chainsafe/ssz").UintBigintType;
983
+ root: ByteVectorType;
984
+ }>;
985
+ }>;
986
+ signature: ByteVectorType;
987
+ }>;
988
+ attestation2: ContainerType<{
989
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
990
+ data: ContainerType<{
991
+ slot: import("@chainsafe/ssz").UintBigintType;
992
+ index: import("@chainsafe/ssz").UintBigintType;
993
+ beaconBlockRoot: ByteVectorType;
994
+ source: ContainerType<{
995
+ epoch: import("@chainsafe/ssz").UintBigintType;
996
+ root: ByteVectorType;
997
+ }>;
998
+ target: ContainerType<{
999
+ epoch: import("@chainsafe/ssz").UintBigintType;
1000
+ root: ByteVectorType;
1001
+ }>;
1002
+ }>;
1003
+ signature: ByteVectorType;
1004
+ }>;
1005
+ }>>;
1006
+ attestations: ListCompositeType<ContainerType<{
1007
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1008
+ data: ContainerType<{
1009
+ slot: import("@chainsafe/ssz").UintNumberType;
1010
+ index: import("@chainsafe/ssz").UintNumberType;
1011
+ beaconBlockRoot: ByteVectorType;
1012
+ source: ContainerType<{
1013
+ epoch: import("@chainsafe/ssz").UintNumberType;
1014
+ root: ByteVectorType;
1015
+ }>;
1016
+ target: ContainerType<{
1017
+ epoch: import("@chainsafe/ssz").UintNumberType;
1018
+ root: ByteVectorType;
1019
+ }>;
1020
+ }>;
1021
+ signature: ByteVectorType;
1022
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1023
+ }>>;
1024
+ deposits: ListCompositeType<ContainerType<{
1025
+ proof: VectorCompositeType<ByteVectorType>;
1026
+ data: ContainerType<{
1027
+ pubkey: ByteVectorType;
1028
+ withdrawalCredentials: ByteVectorType;
1029
+ amount: import("@chainsafe/ssz").UintNumberType;
1030
+ signature: ByteVectorType;
1031
+ }>;
1032
+ }>>;
1033
+ voluntaryExits: ListCompositeType<ContainerType<{
1034
+ message: ContainerType<{
1035
+ epoch: import("@chainsafe/ssz").UintNumberType;
1036
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1037
+ }>;
1038
+ signature: ByteVectorType;
1039
+ }>>;
1040
+ syncAggregate: ContainerType<{
1041
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1042
+ syncCommitteeSignature: ByteVectorType;
1043
+ }>;
1044
+ executionPayloadHeader: ContainerType<{
1045
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1046
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1047
+ withdrawalsRoot: ByteVectorType;
1048
+ transactionsRoot: ByteVectorType;
1049
+ parentHash: ByteVectorType;
1050
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1051
+ stateRoot: ByteVectorType;
1052
+ receiptsRoot: ByteVectorType;
1053
+ logsBloom: ByteVectorType;
1054
+ prevRandao: ByteVectorType;
1055
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1056
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1057
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1058
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1059
+ extraData: import("@chainsafe/ssz").ByteListType;
1060
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1061
+ blockHash: ByteVectorType;
1062
+ }>;
1063
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
1064
+ message: ContainerType<{
1065
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1066
+ fromBlsPubkey: ByteVectorType;
1067
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1068
+ }>;
1069
+ signature: ByteVectorType;
1070
+ }>>;
1071
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
1072
+ executionRequests: ContainerType<{
1073
+ deposits: ListCompositeType<ContainerType<{
1074
+ pubkey: ByteVectorType;
1075
+ withdrawalCredentials: ByteVectorType;
1076
+ amount: import("@chainsafe/ssz").UintNumberType;
1077
+ signature: ByteVectorType;
1078
+ index: import("@chainsafe/ssz").UintBigintType;
1079
+ }>>;
1080
+ withdrawals: ListCompositeType<ContainerType<{
1081
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1082
+ validatorPubkey: ByteVectorType;
1083
+ amount: import("@chainsafe/ssz").UintBigintType;
1084
+ }>>;
1085
+ consolidations: ListCompositeType<ContainerType<{
1086
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1087
+ sourcePubkey: ByteVectorType;
1088
+ targetPubkey: ByteVectorType;
1089
+ }>>;
1090
+ }>;
1091
+ }>;
1092
+ slot: import("@chainsafe/ssz").UintNumberType;
1093
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1094
+ parentRoot: ByteVectorType;
1095
+ stateRoot: ByteVectorType;
1096
+ }>;
1097
+ signature: ByteVectorType;
1098
+ }>;
1099
+ export declare const BuilderBid: ContainerType<{
1100
+ header: ContainerType<{
1101
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1102
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1103
+ withdrawalsRoot: ByteVectorType;
1104
+ transactionsRoot: ByteVectorType;
1105
+ parentHash: ByteVectorType;
1106
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1107
+ stateRoot: ByteVectorType;
1108
+ receiptsRoot: ByteVectorType;
1109
+ logsBloom: ByteVectorType;
1110
+ prevRandao: ByteVectorType;
1111
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1112
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1113
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1114
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1115
+ extraData: import("@chainsafe/ssz").ByteListType;
1116
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1117
+ blockHash: ByteVectorType;
1118
+ }>;
1119
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
1120
+ executionRequests: ContainerType<{
1121
+ deposits: ListCompositeType<ContainerType<{
1122
+ pubkey: ByteVectorType;
1123
+ withdrawalCredentials: ByteVectorType;
1124
+ amount: import("@chainsafe/ssz").UintNumberType;
1125
+ signature: ByteVectorType;
1126
+ index: import("@chainsafe/ssz").UintBigintType;
1127
+ }>>;
1128
+ withdrawals: ListCompositeType<ContainerType<{
1129
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1130
+ validatorPubkey: ByteVectorType;
1131
+ amount: import("@chainsafe/ssz").UintBigintType;
1132
+ }>>;
1133
+ consolidations: ListCompositeType<ContainerType<{
1134
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1135
+ sourcePubkey: ByteVectorType;
1136
+ targetPubkey: ByteVectorType;
1137
+ }>>;
1138
+ }>;
1139
+ value: import("@chainsafe/ssz").UintBigintType;
1140
+ pubkey: ByteVectorType;
1141
+ }>;
1142
+ export declare const SignedBuilderBid: ContainerType<{
1143
+ message: ContainerType<{
1144
+ header: ContainerType<{
1145
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1146
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1147
+ withdrawalsRoot: ByteVectorType;
1148
+ transactionsRoot: ByteVectorType;
1149
+ parentHash: ByteVectorType;
1150
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1151
+ stateRoot: ByteVectorType;
1152
+ receiptsRoot: ByteVectorType;
1153
+ logsBloom: ByteVectorType;
1154
+ prevRandao: ByteVectorType;
1155
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1156
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1157
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1158
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1159
+ extraData: import("@chainsafe/ssz").ByteListType;
1160
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1161
+ blockHash: ByteVectorType;
1162
+ }>;
1163
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
1164
+ executionRequests: ContainerType<{
1165
+ deposits: ListCompositeType<ContainerType<{
1166
+ pubkey: ByteVectorType;
1167
+ withdrawalCredentials: ByteVectorType;
1168
+ amount: import("@chainsafe/ssz").UintNumberType;
1169
+ signature: ByteVectorType;
1170
+ index: import("@chainsafe/ssz").UintBigintType;
1171
+ }>>;
1172
+ withdrawals: ListCompositeType<ContainerType<{
1173
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1174
+ validatorPubkey: ByteVectorType;
1175
+ amount: import("@chainsafe/ssz").UintBigintType;
1176
+ }>>;
1177
+ consolidations: ListCompositeType<ContainerType<{
1178
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1179
+ sourcePubkey: ByteVectorType;
1180
+ targetPubkey: ByteVectorType;
1181
+ }>>;
1182
+ }>;
1183
+ value: import("@chainsafe/ssz").UintBigintType;
1184
+ pubkey: ByteVectorType;
1185
+ }>;
1186
+ signature: ByteVectorType;
1187
+ }>;
1188
+ export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
1189
+ executionPayload: ContainerType<{
1190
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1191
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1192
+ withdrawals: ListCompositeType<ContainerType<{
1193
+ index: import("@chainsafe/ssz").UintNumberType;
1194
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1195
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
1196
+ amount: import("@chainsafe/ssz").UintBigintType;
1197
+ }>>;
1198
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
1199
+ parentHash: ByteVectorType;
1200
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1201
+ stateRoot: ByteVectorType;
1202
+ receiptsRoot: ByteVectorType;
1203
+ logsBloom: ByteVectorType;
1204
+ prevRandao: ByteVectorType;
1205
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1206
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1207
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1208
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1209
+ extraData: import("@chainsafe/ssz").ByteListType;
1210
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1211
+ blockHash: ByteVectorType;
1212
+ }>;
1213
+ blobsBundle: ContainerType<{
1214
+ commitments: ListCompositeType<ByteVectorType>;
1215
+ proofs: ListCompositeType<ByteVectorType>;
1216
+ blobs: ListCompositeType<ByteVectorType>;
1217
+ }>;
1218
+ }>;
66
1219
  export declare const BeaconState: ContainerType<{
67
1220
  proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
68
1221
  genesisTime: import("@chainsafe/ssz").UintNumberType;
@@ -170,4 +1323,707 @@ export declare const BeaconState: ContainerType<{
170
1323
  targetIndex: import("@chainsafe/ssz").UintNumberType;
171
1324
  }>>;
172
1325
  }>;
1326
+ export declare const LightClientHeader: ContainerType<{
1327
+ beacon: ContainerType<{
1328
+ slot: import("@chainsafe/ssz").UintNumberType;
1329
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1330
+ parentRoot: ByteVectorType;
1331
+ stateRoot: ByteVectorType;
1332
+ bodyRoot: ByteVectorType;
1333
+ }>;
1334
+ execution: ContainerType<{
1335
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1336
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1337
+ withdrawalsRoot: ByteVectorType;
1338
+ transactionsRoot: ByteVectorType;
1339
+ parentHash: ByteVectorType;
1340
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1341
+ stateRoot: ByteVectorType;
1342
+ receiptsRoot: ByteVectorType;
1343
+ logsBloom: ByteVectorType;
1344
+ prevRandao: ByteVectorType;
1345
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1346
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1347
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1348
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1349
+ extraData: import("@chainsafe/ssz").ByteListType;
1350
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1351
+ blockHash: ByteVectorType;
1352
+ }>;
1353
+ executionBranch: VectorCompositeType<ByteVectorType>;
1354
+ }>;
1355
+ export declare const LightClientBootstrap: ContainerType<{
1356
+ header: ContainerType<{
1357
+ beacon: ContainerType<{
1358
+ slot: import("@chainsafe/ssz").UintNumberType;
1359
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1360
+ parentRoot: ByteVectorType;
1361
+ stateRoot: ByteVectorType;
1362
+ bodyRoot: ByteVectorType;
1363
+ }>;
1364
+ execution: ContainerType<{
1365
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1366
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1367
+ withdrawalsRoot: ByteVectorType;
1368
+ transactionsRoot: ByteVectorType;
1369
+ parentHash: ByteVectorType;
1370
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1371
+ stateRoot: ByteVectorType;
1372
+ receiptsRoot: ByteVectorType;
1373
+ logsBloom: ByteVectorType;
1374
+ prevRandao: ByteVectorType;
1375
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1376
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1377
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1378
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1379
+ extraData: import("@chainsafe/ssz").ByteListType;
1380
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1381
+ blockHash: ByteVectorType;
1382
+ }>;
1383
+ executionBranch: VectorCompositeType<ByteVectorType>;
1384
+ }>;
1385
+ currentSyncCommittee: ContainerType<{
1386
+ pubkeys: VectorCompositeType<ByteVectorType>;
1387
+ aggregatePubkey: ByteVectorType;
1388
+ }>;
1389
+ currentSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
1390
+ }>;
1391
+ export declare const LightClientUpdate: ContainerType<{
1392
+ attestedHeader: ContainerType<{
1393
+ beacon: ContainerType<{
1394
+ slot: import("@chainsafe/ssz").UintNumberType;
1395
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1396
+ parentRoot: ByteVectorType;
1397
+ stateRoot: ByteVectorType;
1398
+ bodyRoot: ByteVectorType;
1399
+ }>;
1400
+ execution: ContainerType<{
1401
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1402
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1403
+ withdrawalsRoot: ByteVectorType;
1404
+ transactionsRoot: ByteVectorType;
1405
+ parentHash: ByteVectorType;
1406
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1407
+ stateRoot: ByteVectorType;
1408
+ receiptsRoot: ByteVectorType;
1409
+ logsBloom: ByteVectorType;
1410
+ prevRandao: ByteVectorType;
1411
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1412
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1413
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1414
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1415
+ extraData: import("@chainsafe/ssz").ByteListType;
1416
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1417
+ blockHash: ByteVectorType;
1418
+ }>;
1419
+ executionBranch: VectorCompositeType<ByteVectorType>;
1420
+ }>;
1421
+ nextSyncCommittee: ContainerType<{
1422
+ pubkeys: VectorCompositeType<ByteVectorType>;
1423
+ aggregatePubkey: ByteVectorType;
1424
+ }>;
1425
+ nextSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
1426
+ finalizedHeader: ContainerType<{
1427
+ beacon: ContainerType<{
1428
+ slot: import("@chainsafe/ssz").UintNumberType;
1429
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1430
+ parentRoot: ByteVectorType;
1431
+ stateRoot: ByteVectorType;
1432
+ bodyRoot: ByteVectorType;
1433
+ }>;
1434
+ execution: ContainerType<{
1435
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1436
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1437
+ withdrawalsRoot: ByteVectorType;
1438
+ transactionsRoot: ByteVectorType;
1439
+ parentHash: ByteVectorType;
1440
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1441
+ stateRoot: ByteVectorType;
1442
+ receiptsRoot: ByteVectorType;
1443
+ logsBloom: ByteVectorType;
1444
+ prevRandao: ByteVectorType;
1445
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1446
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1447
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1448
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1449
+ extraData: import("@chainsafe/ssz").ByteListType;
1450
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1451
+ blockHash: ByteVectorType;
1452
+ }>;
1453
+ executionBranch: VectorCompositeType<ByteVectorType>;
1454
+ }>;
1455
+ finalityBranch: VectorCompositeType<ByteVectorType>;
1456
+ syncAggregate: ContainerType<{
1457
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1458
+ syncCommitteeSignature: ByteVectorType;
1459
+ }>;
1460
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
1461
+ }>;
1462
+ export declare const LightClientFinalityUpdate: ContainerType<{
1463
+ attestedHeader: ContainerType<{
1464
+ beacon: ContainerType<{
1465
+ slot: import("@chainsafe/ssz").UintNumberType;
1466
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1467
+ parentRoot: ByteVectorType;
1468
+ stateRoot: ByteVectorType;
1469
+ bodyRoot: ByteVectorType;
1470
+ }>;
1471
+ execution: ContainerType<{
1472
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1473
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1474
+ withdrawalsRoot: ByteVectorType;
1475
+ transactionsRoot: ByteVectorType;
1476
+ parentHash: ByteVectorType;
1477
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1478
+ stateRoot: ByteVectorType;
1479
+ receiptsRoot: ByteVectorType;
1480
+ logsBloom: ByteVectorType;
1481
+ prevRandao: ByteVectorType;
1482
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1483
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1484
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1485
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1486
+ extraData: import("@chainsafe/ssz").ByteListType;
1487
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1488
+ blockHash: ByteVectorType;
1489
+ }>;
1490
+ executionBranch: VectorCompositeType<ByteVectorType>;
1491
+ }>;
1492
+ finalizedHeader: ContainerType<{
1493
+ beacon: ContainerType<{
1494
+ slot: import("@chainsafe/ssz").UintNumberType;
1495
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1496
+ parentRoot: ByteVectorType;
1497
+ stateRoot: ByteVectorType;
1498
+ bodyRoot: ByteVectorType;
1499
+ }>;
1500
+ execution: ContainerType<{
1501
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1502
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1503
+ withdrawalsRoot: ByteVectorType;
1504
+ transactionsRoot: ByteVectorType;
1505
+ parentHash: ByteVectorType;
1506
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1507
+ stateRoot: ByteVectorType;
1508
+ receiptsRoot: ByteVectorType;
1509
+ logsBloom: ByteVectorType;
1510
+ prevRandao: ByteVectorType;
1511
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1512
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1513
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1514
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1515
+ extraData: import("@chainsafe/ssz").ByteListType;
1516
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1517
+ blockHash: ByteVectorType;
1518
+ }>;
1519
+ executionBranch: VectorCompositeType<ByteVectorType>;
1520
+ }>;
1521
+ finalityBranch: VectorCompositeType<ByteVectorType>;
1522
+ syncAggregate: ContainerType<{
1523
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1524
+ syncCommitteeSignature: ByteVectorType;
1525
+ }>;
1526
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
1527
+ }>;
1528
+ export declare const LightClientOptimisticUpdate: ContainerType<{
1529
+ attestedHeader: ContainerType<{
1530
+ beacon: ContainerType<{
1531
+ slot: import("@chainsafe/ssz").UintNumberType;
1532
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1533
+ parentRoot: ByteVectorType;
1534
+ stateRoot: ByteVectorType;
1535
+ bodyRoot: ByteVectorType;
1536
+ }>;
1537
+ execution: ContainerType<{
1538
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1539
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1540
+ withdrawalsRoot: ByteVectorType;
1541
+ transactionsRoot: ByteVectorType;
1542
+ parentHash: ByteVectorType;
1543
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1544
+ stateRoot: ByteVectorType;
1545
+ receiptsRoot: ByteVectorType;
1546
+ logsBloom: ByteVectorType;
1547
+ prevRandao: ByteVectorType;
1548
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1549
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1550
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1551
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1552
+ extraData: import("@chainsafe/ssz").ByteListType;
1553
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1554
+ blockHash: ByteVectorType;
1555
+ }>;
1556
+ executionBranch: VectorCompositeType<ByteVectorType>;
1557
+ }>;
1558
+ syncAggregate: ContainerType<{
1559
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1560
+ syncCommitteeSignature: ByteVectorType;
1561
+ }>;
1562
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
1563
+ }>;
1564
+ export declare const LightClientStore: ContainerType<{
1565
+ snapshot: ContainerType<{
1566
+ header: ContainerType<{
1567
+ beacon: ContainerType<{
1568
+ slot: import("@chainsafe/ssz").UintNumberType;
1569
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1570
+ parentRoot: ByteVectorType;
1571
+ stateRoot: ByteVectorType;
1572
+ bodyRoot: ByteVectorType;
1573
+ }>;
1574
+ execution: ContainerType<{
1575
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1576
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1577
+ withdrawalsRoot: ByteVectorType;
1578
+ transactionsRoot: ByteVectorType;
1579
+ parentHash: ByteVectorType;
1580
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1581
+ stateRoot: ByteVectorType;
1582
+ receiptsRoot: ByteVectorType;
1583
+ logsBloom: ByteVectorType;
1584
+ prevRandao: ByteVectorType;
1585
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1586
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1587
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1588
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1589
+ extraData: import("@chainsafe/ssz").ByteListType;
1590
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1591
+ blockHash: ByteVectorType;
1592
+ }>;
1593
+ executionBranch: VectorCompositeType<ByteVectorType>;
1594
+ }>;
1595
+ currentSyncCommittee: ContainerType<{
1596
+ pubkeys: VectorCompositeType<ByteVectorType>;
1597
+ aggregatePubkey: ByteVectorType;
1598
+ }>;
1599
+ currentSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
1600
+ }>;
1601
+ validUpdates: ListCompositeType<ContainerType<{
1602
+ attestedHeader: ContainerType<{
1603
+ beacon: ContainerType<{
1604
+ slot: import("@chainsafe/ssz").UintNumberType;
1605
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1606
+ parentRoot: ByteVectorType;
1607
+ stateRoot: ByteVectorType;
1608
+ bodyRoot: ByteVectorType;
1609
+ }>;
1610
+ execution: ContainerType<{
1611
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1612
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1613
+ withdrawalsRoot: ByteVectorType;
1614
+ transactionsRoot: ByteVectorType;
1615
+ parentHash: ByteVectorType;
1616
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1617
+ stateRoot: ByteVectorType;
1618
+ receiptsRoot: ByteVectorType;
1619
+ logsBloom: ByteVectorType;
1620
+ prevRandao: ByteVectorType;
1621
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1622
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1623
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1624
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1625
+ extraData: import("@chainsafe/ssz").ByteListType;
1626
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1627
+ blockHash: ByteVectorType;
1628
+ }>;
1629
+ executionBranch: VectorCompositeType<ByteVectorType>;
1630
+ }>;
1631
+ nextSyncCommittee: ContainerType<{
1632
+ pubkeys: VectorCompositeType<ByteVectorType>;
1633
+ aggregatePubkey: ByteVectorType;
1634
+ }>;
1635
+ nextSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
1636
+ finalizedHeader: ContainerType<{
1637
+ beacon: ContainerType<{
1638
+ slot: import("@chainsafe/ssz").UintNumberType;
1639
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1640
+ parentRoot: ByteVectorType;
1641
+ stateRoot: ByteVectorType;
1642
+ bodyRoot: ByteVectorType;
1643
+ }>;
1644
+ execution: ContainerType<{
1645
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1646
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1647
+ withdrawalsRoot: ByteVectorType;
1648
+ transactionsRoot: ByteVectorType;
1649
+ parentHash: ByteVectorType;
1650
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1651
+ stateRoot: ByteVectorType;
1652
+ receiptsRoot: ByteVectorType;
1653
+ logsBloom: ByteVectorType;
1654
+ prevRandao: ByteVectorType;
1655
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1656
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1657
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1658
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1659
+ extraData: import("@chainsafe/ssz").ByteListType;
1660
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1661
+ blockHash: ByteVectorType;
1662
+ }>;
1663
+ executionBranch: VectorCompositeType<ByteVectorType>;
1664
+ }>;
1665
+ finalityBranch: VectorCompositeType<ByteVectorType>;
1666
+ syncAggregate: ContainerType<{
1667
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1668
+ syncCommitteeSignature: ByteVectorType;
1669
+ }>;
1670
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
1671
+ }>>;
1672
+ }>;
1673
+ export declare const SSEPayloadAttributes: ContainerType<{
1674
+ payloadAttributes: ContainerType<{
1675
+ parentBeaconBlockRoot: ByteVectorType;
1676
+ withdrawals: ListCompositeType<ContainerType<{
1677
+ index: import("@chainsafe/ssz").UintNumberType;
1678
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1679
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
1680
+ amount: import("@chainsafe/ssz").UintBigintType;
1681
+ }>>;
1682
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1683
+ prevRandao: ByteVectorType;
1684
+ suggestedFeeRecipient: import("../index.js").StringType<string>;
1685
+ }>;
1686
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1687
+ proposalSlot: import("@chainsafe/ssz").UintNumberType;
1688
+ parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
1689
+ parentBlockRoot: ByteVectorType;
1690
+ parentBlockHash: ByteVectorType;
1691
+ }>;
1692
+ export declare const BlockContents: ContainerType<{
1693
+ block: ContainerType<{
1694
+ body: ContainerType<{
1695
+ randaoReveal: ByteVectorType;
1696
+ eth1Data: ContainerType<{
1697
+ depositRoot: ByteVectorType;
1698
+ depositCount: import("@chainsafe/ssz").UintNumberType;
1699
+ blockHash: ByteVectorType;
1700
+ }>;
1701
+ graffiti: ByteVectorType;
1702
+ proposerSlashings: ListCompositeType<ContainerType<{
1703
+ signedHeader1: ContainerType<{
1704
+ message: ContainerType<{
1705
+ slot: import("@chainsafe/ssz").UintBigintType;
1706
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1707
+ parentRoot: ByteVectorType;
1708
+ stateRoot: ByteVectorType;
1709
+ bodyRoot: ByteVectorType;
1710
+ }>;
1711
+ signature: ByteVectorType;
1712
+ }>;
1713
+ signedHeader2: ContainerType<{
1714
+ message: ContainerType<{
1715
+ slot: import("@chainsafe/ssz").UintBigintType;
1716
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1717
+ parentRoot: ByteVectorType;
1718
+ stateRoot: ByteVectorType;
1719
+ bodyRoot: ByteVectorType;
1720
+ }>;
1721
+ signature: ByteVectorType;
1722
+ }>;
1723
+ }>>;
1724
+ attesterSlashings: ListCompositeType<ContainerType<{
1725
+ attestation1: ContainerType<{
1726
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1727
+ data: ContainerType<{
1728
+ slot: import("@chainsafe/ssz").UintBigintType;
1729
+ index: import("@chainsafe/ssz").UintBigintType;
1730
+ beaconBlockRoot: ByteVectorType;
1731
+ source: ContainerType<{
1732
+ epoch: import("@chainsafe/ssz").UintBigintType;
1733
+ root: ByteVectorType;
1734
+ }>;
1735
+ target: ContainerType<{
1736
+ epoch: import("@chainsafe/ssz").UintBigintType;
1737
+ root: ByteVectorType;
1738
+ }>;
1739
+ }>;
1740
+ signature: ByteVectorType;
1741
+ }>;
1742
+ attestation2: ContainerType<{
1743
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1744
+ data: ContainerType<{
1745
+ slot: import("@chainsafe/ssz").UintBigintType;
1746
+ index: import("@chainsafe/ssz").UintBigintType;
1747
+ beaconBlockRoot: ByteVectorType;
1748
+ source: ContainerType<{
1749
+ epoch: import("@chainsafe/ssz").UintBigintType;
1750
+ root: ByteVectorType;
1751
+ }>;
1752
+ target: ContainerType<{
1753
+ epoch: import("@chainsafe/ssz").UintBigintType;
1754
+ root: ByteVectorType;
1755
+ }>;
1756
+ }>;
1757
+ signature: ByteVectorType;
1758
+ }>;
1759
+ }>>;
1760
+ attestations: ListCompositeType<ContainerType<{
1761
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1762
+ data: ContainerType<{
1763
+ slot: import("@chainsafe/ssz").UintNumberType;
1764
+ index: import("@chainsafe/ssz").UintNumberType;
1765
+ beaconBlockRoot: ByteVectorType;
1766
+ source: ContainerType<{
1767
+ epoch: import("@chainsafe/ssz").UintNumberType;
1768
+ root: ByteVectorType;
1769
+ }>;
1770
+ target: ContainerType<{
1771
+ epoch: import("@chainsafe/ssz").UintNumberType;
1772
+ root: ByteVectorType;
1773
+ }>;
1774
+ }>;
1775
+ signature: ByteVectorType;
1776
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1777
+ }>>;
1778
+ deposits: ListCompositeType<ContainerType<{
1779
+ proof: VectorCompositeType<ByteVectorType>;
1780
+ data: ContainerType<{
1781
+ pubkey: ByteVectorType;
1782
+ withdrawalCredentials: ByteVectorType;
1783
+ amount: import("@chainsafe/ssz").UintNumberType;
1784
+ signature: ByteVectorType;
1785
+ }>;
1786
+ }>>;
1787
+ voluntaryExits: ListCompositeType<ContainerType<{
1788
+ message: ContainerType<{
1789
+ epoch: import("@chainsafe/ssz").UintNumberType;
1790
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1791
+ }>;
1792
+ signature: ByteVectorType;
1793
+ }>>;
1794
+ syncAggregate: ContainerType<{
1795
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1796
+ syncCommitteeSignature: ByteVectorType;
1797
+ }>;
1798
+ executionPayload: ContainerType<{
1799
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1800
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1801
+ withdrawals: ListCompositeType<ContainerType<{
1802
+ index: import("@chainsafe/ssz").UintNumberType;
1803
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1804
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
1805
+ amount: import("@chainsafe/ssz").UintBigintType;
1806
+ }>>;
1807
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
1808
+ parentHash: ByteVectorType;
1809
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1810
+ stateRoot: ByteVectorType;
1811
+ receiptsRoot: ByteVectorType;
1812
+ logsBloom: ByteVectorType;
1813
+ prevRandao: ByteVectorType;
1814
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1815
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1816
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1817
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1818
+ extraData: import("@chainsafe/ssz").ByteListType;
1819
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1820
+ blockHash: ByteVectorType;
1821
+ }>;
1822
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
1823
+ message: ContainerType<{
1824
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1825
+ fromBlsPubkey: ByteVectorType;
1826
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1827
+ }>;
1828
+ signature: ByteVectorType;
1829
+ }>>;
1830
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
1831
+ executionRequests: ContainerType<{
1832
+ deposits: ListCompositeType<ContainerType<{
1833
+ pubkey: ByteVectorType;
1834
+ withdrawalCredentials: ByteVectorType;
1835
+ amount: import("@chainsafe/ssz").UintNumberType;
1836
+ signature: ByteVectorType;
1837
+ index: import("@chainsafe/ssz").UintBigintType;
1838
+ }>>;
1839
+ withdrawals: ListCompositeType<ContainerType<{
1840
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1841
+ validatorPubkey: ByteVectorType;
1842
+ amount: import("@chainsafe/ssz").UintBigintType;
1843
+ }>>;
1844
+ consolidations: ListCompositeType<ContainerType<{
1845
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1846
+ sourcePubkey: ByteVectorType;
1847
+ targetPubkey: ByteVectorType;
1848
+ }>>;
1849
+ }>;
1850
+ }>;
1851
+ slot: import("@chainsafe/ssz").UintNumberType;
1852
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1853
+ parentRoot: ByteVectorType;
1854
+ stateRoot: ByteVectorType;
1855
+ }>;
1856
+ kzgProofs: ListCompositeType<ByteVectorType>;
1857
+ blobs: ListCompositeType<ByteVectorType>;
1858
+ }>;
1859
+ export declare const SignedBlockContents: ContainerType<{
1860
+ signedBlock: ContainerType<{
1861
+ message: ContainerType<{
1862
+ body: ContainerType<{
1863
+ randaoReveal: ByteVectorType;
1864
+ eth1Data: ContainerType<{
1865
+ depositRoot: ByteVectorType;
1866
+ depositCount: import("@chainsafe/ssz").UintNumberType;
1867
+ blockHash: ByteVectorType;
1868
+ }>;
1869
+ graffiti: ByteVectorType;
1870
+ proposerSlashings: ListCompositeType<ContainerType<{
1871
+ signedHeader1: ContainerType<{
1872
+ message: ContainerType<{
1873
+ slot: import("@chainsafe/ssz").UintBigintType;
1874
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1875
+ parentRoot: ByteVectorType;
1876
+ stateRoot: ByteVectorType;
1877
+ bodyRoot: ByteVectorType;
1878
+ }>;
1879
+ signature: ByteVectorType;
1880
+ }>;
1881
+ signedHeader2: ContainerType<{
1882
+ message: ContainerType<{
1883
+ slot: import("@chainsafe/ssz").UintBigintType;
1884
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
1885
+ parentRoot: ByteVectorType;
1886
+ stateRoot: ByteVectorType;
1887
+ bodyRoot: ByteVectorType;
1888
+ }>;
1889
+ signature: ByteVectorType;
1890
+ }>;
1891
+ }>>;
1892
+ attesterSlashings: ListCompositeType<ContainerType<{
1893
+ attestation1: ContainerType<{
1894
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1895
+ data: ContainerType<{
1896
+ slot: import("@chainsafe/ssz").UintBigintType;
1897
+ index: import("@chainsafe/ssz").UintBigintType;
1898
+ beaconBlockRoot: ByteVectorType;
1899
+ source: ContainerType<{
1900
+ epoch: import("@chainsafe/ssz").UintBigintType;
1901
+ root: ByteVectorType;
1902
+ }>;
1903
+ target: ContainerType<{
1904
+ epoch: import("@chainsafe/ssz").UintBigintType;
1905
+ root: ByteVectorType;
1906
+ }>;
1907
+ }>;
1908
+ signature: ByteVectorType;
1909
+ }>;
1910
+ attestation2: ContainerType<{
1911
+ attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1912
+ data: ContainerType<{
1913
+ slot: import("@chainsafe/ssz").UintBigintType;
1914
+ index: import("@chainsafe/ssz").UintBigintType;
1915
+ beaconBlockRoot: ByteVectorType;
1916
+ source: ContainerType<{
1917
+ epoch: import("@chainsafe/ssz").UintBigintType;
1918
+ root: ByteVectorType;
1919
+ }>;
1920
+ target: ContainerType<{
1921
+ epoch: import("@chainsafe/ssz").UintBigintType;
1922
+ root: ByteVectorType;
1923
+ }>;
1924
+ }>;
1925
+ signature: ByteVectorType;
1926
+ }>;
1927
+ }>>;
1928
+ attestations: ListCompositeType<ContainerType<{
1929
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1930
+ data: ContainerType<{
1931
+ slot: import("@chainsafe/ssz").UintNumberType;
1932
+ index: import("@chainsafe/ssz").UintNumberType;
1933
+ beaconBlockRoot: ByteVectorType;
1934
+ source: ContainerType<{
1935
+ epoch: import("@chainsafe/ssz").UintNumberType;
1936
+ root: ByteVectorType;
1937
+ }>;
1938
+ target: ContainerType<{
1939
+ epoch: import("@chainsafe/ssz").UintNumberType;
1940
+ root: ByteVectorType;
1941
+ }>;
1942
+ }>;
1943
+ signature: ByteVectorType;
1944
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1945
+ }>>;
1946
+ deposits: ListCompositeType<ContainerType<{
1947
+ proof: VectorCompositeType<ByteVectorType>;
1948
+ data: ContainerType<{
1949
+ pubkey: ByteVectorType;
1950
+ withdrawalCredentials: ByteVectorType;
1951
+ amount: import("@chainsafe/ssz").UintNumberType;
1952
+ signature: ByteVectorType;
1953
+ }>;
1954
+ }>>;
1955
+ voluntaryExits: ListCompositeType<ContainerType<{
1956
+ message: ContainerType<{
1957
+ epoch: import("@chainsafe/ssz").UintNumberType;
1958
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1959
+ }>;
1960
+ signature: ByteVectorType;
1961
+ }>>;
1962
+ syncAggregate: ContainerType<{
1963
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1964
+ syncCommitteeSignature: ByteVectorType;
1965
+ }>;
1966
+ executionPayload: ContainerType<{
1967
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
1968
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
1969
+ withdrawals: ListCompositeType<ContainerType<{
1970
+ index: import("@chainsafe/ssz").UintNumberType;
1971
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1972
+ address: import("../utils/executionAddress.js").ExecutionAddressType;
1973
+ amount: import("@chainsafe/ssz").UintBigintType;
1974
+ }>>;
1975
+ transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
1976
+ parentHash: ByteVectorType;
1977
+ feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1978
+ stateRoot: ByteVectorType;
1979
+ receiptsRoot: ByteVectorType;
1980
+ logsBloom: ByteVectorType;
1981
+ prevRandao: ByteVectorType;
1982
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
1983
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
1984
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
1985
+ timestamp: import("@chainsafe/ssz").UintNumberType;
1986
+ extraData: import("@chainsafe/ssz").ByteListType;
1987
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
1988
+ blockHash: ByteVectorType;
1989
+ }>;
1990
+ blsToExecutionChanges: ListCompositeType<ContainerType<{
1991
+ message: ContainerType<{
1992
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
1993
+ fromBlsPubkey: ByteVectorType;
1994
+ toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1995
+ }>;
1996
+ signature: ByteVectorType;
1997
+ }>>;
1998
+ blobKzgCommitments: ListCompositeType<ByteVectorType>;
1999
+ executionRequests: ContainerType<{
2000
+ deposits: ListCompositeType<ContainerType<{
2001
+ pubkey: ByteVectorType;
2002
+ withdrawalCredentials: ByteVectorType;
2003
+ amount: import("@chainsafe/ssz").UintNumberType;
2004
+ signature: ByteVectorType;
2005
+ index: import("@chainsafe/ssz").UintBigintType;
2006
+ }>>;
2007
+ withdrawals: ListCompositeType<ContainerType<{
2008
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
2009
+ validatorPubkey: ByteVectorType;
2010
+ amount: import("@chainsafe/ssz").UintBigintType;
2011
+ }>>;
2012
+ consolidations: ListCompositeType<ContainerType<{
2013
+ sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
2014
+ sourcePubkey: ByteVectorType;
2015
+ targetPubkey: ByteVectorType;
2016
+ }>>;
2017
+ }>;
2018
+ }>;
2019
+ slot: import("@chainsafe/ssz").UintNumberType;
2020
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2021
+ parentRoot: ByteVectorType;
2022
+ stateRoot: ByteVectorType;
2023
+ }>;
2024
+ signature: ByteVectorType;
2025
+ }>;
2026
+ kzgProofs: ListCompositeType<ByteVectorType>;
2027
+ blobs: ListCompositeType<ByteVectorType>;
2028
+ }>;
173
2029
  //# sourceMappingURL=sszTypes.d.ts.map