@lodestar/types 1.32.0-dev.c64a95d522 → 1.32.0-peerDAS.0536c19e44

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