@lodestar/types 1.29.0-dev.f87bd54721 → 1.29.0-peerDAS.6f41bcbc95

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