@lodestar/types 1.41.0-dev.f2caa915ab → 1.41.0-dev.f7a5f4ddda
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.
- package/lib/altair/sszTypes.d.ts +12 -12
- package/lib/bellatrix/sszTypes.d.ts +130 -130
- package/lib/capella/sszTypes.d.ts +243 -243
- package/lib/deneb/sszTypes.d.ts +408 -408
- package/lib/electra/sszTypes.d.ts +155 -155
- package/lib/fulu/sszTypes.d.ts +68 -68
- package/lib/gloas/sszTypes.d.ts +26 -26
- package/lib/phase0/validator.d.ts.map +1 -1
- package/lib/phase0/validator.js.map +1 -1
- package/lib/sszTypes.d.ts +13908 -13908
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.js +2 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/array.js.map +1 -1
- package/lib/utils/container.js.map +1 -1
- package/lib/utils/executionAddress.d.ts.map +1 -1
- package/lib/utils/executionAddress.js.map +1 -1
- package/lib/utils/rewards.d.ts +4 -4
- package/lib/utils/rewards.d.ts.map +1 -1
- package/lib/utils/stringType.d.ts.map +1 -1
- package/lib/utils/stringType.js.map +1 -1
- package/lib/utils/typeguards.js.map +1 -1
- package/lib/utils/validatorStatus.js.map +1 -1
- package/package.json +5 -5
package/lib/deneb/sszTypes.d.ts
CHANGED
|
@@ -20,15 +20,6 @@ export declare const BlobIdentifier: ContainerType<{
|
|
|
20
20
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const ExecutionPayload: ContainerType<{
|
|
23
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
24
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
26
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
27
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
29
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
30
|
-
}>>;
|
|
31
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
32
23
|
parentHash: ByteVectorType;
|
|
33
24
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
34
25
|
stateRoot: ByteVectorType;
|
|
@@ -42,12 +33,17 @@ export declare const ExecutionPayload: ContainerType<{
|
|
|
42
33
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
43
34
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
44
35
|
blockHash: ByteVectorType;
|
|
45
|
-
|
|
46
|
-
|
|
36
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
37
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
38
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
39
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
40
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
41
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
42
|
+
}>>;
|
|
47
43
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
48
44
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
49
|
-
|
|
50
|
-
|
|
45
|
+
}>;
|
|
46
|
+
export declare const ExecutionPayloadHeader: ContainerType<{
|
|
51
47
|
parentHash: ByteVectorType;
|
|
52
48
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
53
49
|
stateRoot: ByteVectorType;
|
|
@@ -61,45 +57,12 @@ export declare const ExecutionPayloadHeader: ContainerType<{
|
|
|
61
57
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
62
58
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
63
59
|
blockHash: ByteVectorType;
|
|
60
|
+
transactionsRoot: ByteVectorType;
|
|
61
|
+
withdrawalsRoot: ByteVectorType;
|
|
62
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
63
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
64
64
|
}>;
|
|
65
65
|
export declare const BeaconBlockBody: ContainerType<{
|
|
66
|
-
executionPayload: ContainerType<{
|
|
67
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
68
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
69
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
70
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
71
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
72
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
73
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
74
|
-
}>>;
|
|
75
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
76
|
-
parentHash: ByteVectorType;
|
|
77
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
78
|
-
stateRoot: ByteVectorType;
|
|
79
|
-
receiptsRoot: ByteVectorType;
|
|
80
|
-
logsBloom: ByteVectorType;
|
|
81
|
-
prevRandao: ByteVectorType;
|
|
82
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
83
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
84
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
85
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
86
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
87
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
88
|
-
blockHash: ByteVectorType;
|
|
89
|
-
}>;
|
|
90
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
91
|
-
message: ContainerType<{
|
|
92
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
93
|
-
fromBlsPubkey: ByteVectorType;
|
|
94
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
95
|
-
}>;
|
|
96
|
-
signature: ByteVectorType;
|
|
97
|
-
}>>;
|
|
98
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
99
|
-
syncAggregate: ContainerType<{
|
|
100
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
101
|
-
syncCommitteeSignature: ByteVectorType;
|
|
102
|
-
}>;
|
|
103
66
|
randaoReveal: ByteVectorType;
|
|
104
67
|
eth1Data: ContainerType<{
|
|
105
68
|
depositRoot: ByteVectorType;
|
|
@@ -198,46 +161,50 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
198
161
|
}>;
|
|
199
162
|
signature: ByteVectorType;
|
|
200
163
|
}>>;
|
|
164
|
+
syncAggregate: ContainerType<{
|
|
165
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
166
|
+
syncCommitteeSignature: ByteVectorType;
|
|
167
|
+
}>;
|
|
168
|
+
executionPayload: ContainerType<{
|
|
169
|
+
parentHash: ByteVectorType;
|
|
170
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
171
|
+
stateRoot: ByteVectorType;
|
|
172
|
+
receiptsRoot: ByteVectorType;
|
|
173
|
+
logsBloom: ByteVectorType;
|
|
174
|
+
prevRandao: ByteVectorType;
|
|
175
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
176
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
177
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
178
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
179
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
180
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
181
|
+
blockHash: ByteVectorType;
|
|
182
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
183
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
184
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
185
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
186
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
187
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
188
|
+
}>>;
|
|
189
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
190
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
191
|
+
}>;
|
|
192
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
193
|
+
message: ContainerType<{
|
|
194
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
195
|
+
fromBlsPubkey: ByteVectorType;
|
|
196
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
197
|
+
}>;
|
|
198
|
+
signature: ByteVectorType;
|
|
199
|
+
}>>;
|
|
200
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
201
201
|
}>;
|
|
202
202
|
export declare const BeaconBlock: ContainerType<{
|
|
203
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
204
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
205
|
+
parentRoot: ByteVectorType;
|
|
206
|
+
stateRoot: ByteVectorType;
|
|
203
207
|
body: ContainerType<{
|
|
204
|
-
executionPayload: ContainerType<{
|
|
205
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
206
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
207
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
208
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
209
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
210
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
211
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
212
|
-
}>>;
|
|
213
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
214
|
-
parentHash: ByteVectorType;
|
|
215
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
216
|
-
stateRoot: ByteVectorType;
|
|
217
|
-
receiptsRoot: ByteVectorType;
|
|
218
|
-
logsBloom: ByteVectorType;
|
|
219
|
-
prevRandao: ByteVectorType;
|
|
220
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
221
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
222
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
223
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
224
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
225
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
226
|
-
blockHash: ByteVectorType;
|
|
227
|
-
}>;
|
|
228
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
229
|
-
message: ContainerType<{
|
|
230
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
231
|
-
fromBlsPubkey: ByteVectorType;
|
|
232
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
233
|
-
}>;
|
|
234
|
-
signature: ByteVectorType;
|
|
235
|
-
}>>;
|
|
236
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
237
|
-
syncAggregate: ContainerType<{
|
|
238
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
239
|
-
syncCommitteeSignature: ByteVectorType;
|
|
240
|
-
}>;
|
|
241
208
|
randaoReveal: ByteVectorType;
|
|
242
209
|
eth1Data: ContainerType<{
|
|
243
210
|
depositRoot: ByteVectorType;
|
|
@@ -336,52 +303,52 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
336
303
|
}>;
|
|
337
304
|
signature: ByteVectorType;
|
|
338
305
|
}>>;
|
|
306
|
+
syncAggregate: ContainerType<{
|
|
307
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
308
|
+
syncCommitteeSignature: ByteVectorType;
|
|
309
|
+
}>;
|
|
310
|
+
executionPayload: ContainerType<{
|
|
311
|
+
parentHash: ByteVectorType;
|
|
312
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
313
|
+
stateRoot: ByteVectorType;
|
|
314
|
+
receiptsRoot: ByteVectorType;
|
|
315
|
+
logsBloom: ByteVectorType;
|
|
316
|
+
prevRandao: ByteVectorType;
|
|
317
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
318
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
319
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
320
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
321
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
322
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
323
|
+
blockHash: ByteVectorType;
|
|
324
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
325
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
326
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
327
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
328
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
329
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
330
|
+
}>>;
|
|
331
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
332
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
333
|
+
}>;
|
|
334
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
335
|
+
message: ContainerType<{
|
|
336
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
337
|
+
fromBlsPubkey: ByteVectorType;
|
|
338
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
339
|
+
}>;
|
|
340
|
+
signature: ByteVectorType;
|
|
341
|
+
}>>;
|
|
342
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
339
343
|
}>;
|
|
340
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
341
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
342
|
-
parentRoot: ByteVectorType;
|
|
343
|
-
stateRoot: ByteVectorType;
|
|
344
344
|
}>;
|
|
345
345
|
export declare const SignedBeaconBlock: ContainerType<{
|
|
346
346
|
message: ContainerType<{
|
|
347
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
348
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
349
|
+
parentRoot: ByteVectorType;
|
|
350
|
+
stateRoot: ByteVectorType;
|
|
347
351
|
body: ContainerType<{
|
|
348
|
-
executionPayload: ContainerType<{
|
|
349
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
350
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
351
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
352
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
353
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
354
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
355
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
356
|
-
}>>;
|
|
357
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
358
|
-
parentHash: ByteVectorType;
|
|
359
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
360
|
-
stateRoot: ByteVectorType;
|
|
361
|
-
receiptsRoot: ByteVectorType;
|
|
362
|
-
logsBloom: ByteVectorType;
|
|
363
|
-
prevRandao: ByteVectorType;
|
|
364
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
365
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
366
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
367
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
368
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
369
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
370
|
-
blockHash: ByteVectorType;
|
|
371
|
-
}>;
|
|
372
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
373
|
-
message: ContainerType<{
|
|
374
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
375
|
-
fromBlsPubkey: ByteVectorType;
|
|
376
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
377
|
-
}>;
|
|
378
|
-
signature: ByteVectorType;
|
|
379
|
-
}>>;
|
|
380
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
381
|
-
syncAggregate: ContainerType<{
|
|
382
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
383
|
-
syncCommitteeSignature: ByteVectorType;
|
|
384
|
-
}>;
|
|
385
352
|
randaoReveal: ByteVectorType;
|
|
386
353
|
eth1Data: ContainerType<{
|
|
387
354
|
depositRoot: ByteVectorType;
|
|
@@ -480,11 +447,44 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
480
447
|
}>;
|
|
481
448
|
signature: ByteVectorType;
|
|
482
449
|
}>>;
|
|
450
|
+
syncAggregate: ContainerType<{
|
|
451
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
452
|
+
syncCommitteeSignature: ByteVectorType;
|
|
453
|
+
}>;
|
|
454
|
+
executionPayload: ContainerType<{
|
|
455
|
+
parentHash: ByteVectorType;
|
|
456
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
457
|
+
stateRoot: ByteVectorType;
|
|
458
|
+
receiptsRoot: ByteVectorType;
|
|
459
|
+
logsBloom: ByteVectorType;
|
|
460
|
+
prevRandao: ByteVectorType;
|
|
461
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
462
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
463
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
464
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
465
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
466
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
467
|
+
blockHash: ByteVectorType;
|
|
468
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
469
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
470
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
471
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
472
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
473
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
474
|
+
}>>;
|
|
475
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
476
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
477
|
+
}>;
|
|
478
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
479
|
+
message: ContainerType<{
|
|
480
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
481
|
+
fromBlsPubkey: ByteVectorType;
|
|
482
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
483
|
+
}>;
|
|
484
|
+
signature: ByteVectorType;
|
|
485
|
+
}>>;
|
|
486
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
483
487
|
}>;
|
|
484
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
485
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
486
|
-
parentRoot: ByteVectorType;
|
|
487
|
-
stateRoot: ByteVectorType;
|
|
488
488
|
}>;
|
|
489
489
|
signature: ByteVectorType;
|
|
490
490
|
}>;
|
|
@@ -509,58 +509,26 @@ export declare const BlobSidecar: ContainerType<{
|
|
|
509
509
|
export declare const BlobSidecars: ListCompositeType<ContainerType<{
|
|
510
510
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
511
511
|
blob: ByteVectorType;
|
|
512
|
-
kzgCommitment: ByteVectorType;
|
|
513
|
-
kzgProof: ByteVectorType;
|
|
514
|
-
signedBlockHeader: ContainerType<{
|
|
515
|
-
message: ContainerType<{
|
|
516
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
517
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
518
|
-
parentRoot: ByteVectorType;
|
|
519
|
-
stateRoot: ByteVectorType;
|
|
520
|
-
bodyRoot: ByteVectorType;
|
|
521
|
-
}>;
|
|
522
|
-
signature: ByteVectorType;
|
|
523
|
-
}>;
|
|
524
|
-
kzgCommitmentInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
525
|
-
}>>;
|
|
526
|
-
export declare const BlobsBundle: ContainerType<{
|
|
527
|
-
commitments: ListCompositeType<ByteVectorType>;
|
|
528
|
-
proofs: ListCompositeType<ByteVectorType>;
|
|
529
|
-
blobs: ListCompositeType<ByteVectorType>;
|
|
530
|
-
}>;
|
|
531
|
-
export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
532
|
-
executionPayloadHeader: ContainerType<{
|
|
533
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
534
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
535
|
-
withdrawalsRoot: ByteVectorType;
|
|
536
|
-
transactionsRoot: ByteVectorType;
|
|
537
|
-
parentHash: ByteVectorType;
|
|
538
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
539
|
-
stateRoot: ByteVectorType;
|
|
540
|
-
receiptsRoot: ByteVectorType;
|
|
541
|
-
logsBloom: ByteVectorType;
|
|
542
|
-
prevRandao: ByteVectorType;
|
|
543
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
544
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
545
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
546
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
547
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
548
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
549
|
-
blockHash: ByteVectorType;
|
|
550
|
-
}>;
|
|
551
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
512
|
+
kzgCommitment: ByteVectorType;
|
|
513
|
+
kzgProof: ByteVectorType;
|
|
514
|
+
signedBlockHeader: ContainerType<{
|
|
552
515
|
message: ContainerType<{
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
516
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
517
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
518
|
+
parentRoot: ByteVectorType;
|
|
519
|
+
stateRoot: ByteVectorType;
|
|
520
|
+
bodyRoot: ByteVectorType;
|
|
556
521
|
}>;
|
|
557
522
|
signature: ByteVectorType;
|
|
558
|
-
}>>;
|
|
559
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
560
|
-
syncAggregate: ContainerType<{
|
|
561
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
562
|
-
syncCommitteeSignature: ByteVectorType;
|
|
563
523
|
}>;
|
|
524
|
+
kzgCommitmentInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
525
|
+
}>>;
|
|
526
|
+
export declare const BlobsBundle: ContainerType<{
|
|
527
|
+
commitments: ListCompositeType<ByteVectorType>;
|
|
528
|
+
proofs: ListCompositeType<ByteVectorType>;
|
|
529
|
+
blobs: ListCompositeType<ByteVectorType>;
|
|
530
|
+
}>;
|
|
531
|
+
export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
564
532
|
randaoReveal: ByteVectorType;
|
|
565
533
|
eth1Data: ContainerType<{
|
|
566
534
|
depositRoot: ByteVectorType;
|
|
@@ -659,41 +627,45 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
659
627
|
}>;
|
|
660
628
|
signature: ByteVectorType;
|
|
661
629
|
}>>;
|
|
630
|
+
syncAggregate: ContainerType<{
|
|
631
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
632
|
+
syncCommitteeSignature: ByteVectorType;
|
|
633
|
+
}>;
|
|
634
|
+
executionPayloadHeader: ContainerType<{
|
|
635
|
+
parentHash: ByteVectorType;
|
|
636
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
637
|
+
stateRoot: ByteVectorType;
|
|
638
|
+
receiptsRoot: ByteVectorType;
|
|
639
|
+
logsBloom: ByteVectorType;
|
|
640
|
+
prevRandao: ByteVectorType;
|
|
641
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
642
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
643
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
644
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
645
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
646
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
647
|
+
blockHash: ByteVectorType;
|
|
648
|
+
transactionsRoot: ByteVectorType;
|
|
649
|
+
withdrawalsRoot: ByteVectorType;
|
|
650
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
651
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
652
|
+
}>;
|
|
653
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
654
|
+
message: ContainerType<{
|
|
655
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
656
|
+
fromBlsPubkey: ByteVectorType;
|
|
657
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
658
|
+
}>;
|
|
659
|
+
signature: ByteVectorType;
|
|
660
|
+
}>>;
|
|
661
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
662
662
|
}>;
|
|
663
663
|
export declare const BlindedBeaconBlock: ContainerType<{
|
|
664
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
665
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
666
|
+
parentRoot: ByteVectorType;
|
|
667
|
+
stateRoot: ByteVectorType;
|
|
664
668
|
body: ContainerType<{
|
|
665
|
-
executionPayloadHeader: ContainerType<{
|
|
666
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
667
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
668
|
-
withdrawalsRoot: ByteVectorType;
|
|
669
|
-
transactionsRoot: ByteVectorType;
|
|
670
|
-
parentHash: ByteVectorType;
|
|
671
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
672
|
-
stateRoot: ByteVectorType;
|
|
673
|
-
receiptsRoot: ByteVectorType;
|
|
674
|
-
logsBloom: ByteVectorType;
|
|
675
|
-
prevRandao: ByteVectorType;
|
|
676
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
677
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
678
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
679
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
680
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
681
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
682
|
-
blockHash: ByteVectorType;
|
|
683
|
-
}>;
|
|
684
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
685
|
-
message: ContainerType<{
|
|
686
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
687
|
-
fromBlsPubkey: ByteVectorType;
|
|
688
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
689
|
-
}>;
|
|
690
|
-
signature: ByteVectorType;
|
|
691
|
-
}>>;
|
|
692
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
693
|
-
syncAggregate: ContainerType<{
|
|
694
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
695
|
-
syncCommitteeSignature: ByteVectorType;
|
|
696
|
-
}>;
|
|
697
669
|
randaoReveal: ByteVectorType;
|
|
698
670
|
eth1Data: ContainerType<{
|
|
699
671
|
depositRoot: ByteVectorType;
|
|
@@ -792,47 +764,47 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
792
764
|
}>;
|
|
793
765
|
signature: ByteVectorType;
|
|
794
766
|
}>>;
|
|
767
|
+
syncAggregate: ContainerType<{
|
|
768
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
769
|
+
syncCommitteeSignature: ByteVectorType;
|
|
770
|
+
}>;
|
|
771
|
+
executionPayloadHeader: ContainerType<{
|
|
772
|
+
parentHash: ByteVectorType;
|
|
773
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
774
|
+
stateRoot: ByteVectorType;
|
|
775
|
+
receiptsRoot: ByteVectorType;
|
|
776
|
+
logsBloom: ByteVectorType;
|
|
777
|
+
prevRandao: ByteVectorType;
|
|
778
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
779
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
780
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
781
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
782
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
783
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
784
|
+
blockHash: ByteVectorType;
|
|
785
|
+
transactionsRoot: ByteVectorType;
|
|
786
|
+
withdrawalsRoot: ByteVectorType;
|
|
787
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
788
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
789
|
+
}>;
|
|
790
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
791
|
+
message: ContainerType<{
|
|
792
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
793
|
+
fromBlsPubkey: ByteVectorType;
|
|
794
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
795
|
+
}>;
|
|
796
|
+
signature: ByteVectorType;
|
|
797
|
+
}>>;
|
|
798
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
795
799
|
}>;
|
|
796
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
797
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
798
|
-
parentRoot: ByteVectorType;
|
|
799
|
-
stateRoot: ByteVectorType;
|
|
800
800
|
}>;
|
|
801
801
|
export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
802
802
|
message: ContainerType<{
|
|
803
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
804
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
805
|
+
parentRoot: ByteVectorType;
|
|
806
|
+
stateRoot: ByteVectorType;
|
|
803
807
|
body: ContainerType<{
|
|
804
|
-
executionPayloadHeader: ContainerType<{
|
|
805
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
806
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
807
|
-
withdrawalsRoot: ByteVectorType;
|
|
808
|
-
transactionsRoot: ByteVectorType;
|
|
809
|
-
parentHash: ByteVectorType;
|
|
810
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
811
|
-
stateRoot: ByteVectorType;
|
|
812
|
-
receiptsRoot: ByteVectorType;
|
|
813
|
-
logsBloom: ByteVectorType;
|
|
814
|
-
prevRandao: ByteVectorType;
|
|
815
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
816
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
817
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
818
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
819
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
820
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
821
|
-
blockHash: ByteVectorType;
|
|
822
|
-
}>;
|
|
823
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
824
|
-
message: ContainerType<{
|
|
825
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
826
|
-
fromBlsPubkey: ByteVectorType;
|
|
827
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
828
|
-
}>;
|
|
829
|
-
signature: ByteVectorType;
|
|
830
|
-
}>>;
|
|
831
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
832
|
-
syncAggregate: ContainerType<{
|
|
833
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
834
|
-
syncCommitteeSignature: ByteVectorType;
|
|
835
|
-
}>;
|
|
836
808
|
randaoReveal: ByteVectorType;
|
|
837
809
|
eth1Data: ContainerType<{
|
|
838
810
|
depositRoot: ByteVectorType;
|
|
@@ -931,20 +903,44 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
931
903
|
}>;
|
|
932
904
|
signature: ByteVectorType;
|
|
933
905
|
}>>;
|
|
906
|
+
syncAggregate: ContainerType<{
|
|
907
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
908
|
+
syncCommitteeSignature: ByteVectorType;
|
|
909
|
+
}>;
|
|
910
|
+
executionPayloadHeader: ContainerType<{
|
|
911
|
+
parentHash: ByteVectorType;
|
|
912
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
913
|
+
stateRoot: ByteVectorType;
|
|
914
|
+
receiptsRoot: ByteVectorType;
|
|
915
|
+
logsBloom: ByteVectorType;
|
|
916
|
+
prevRandao: ByteVectorType;
|
|
917
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
918
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
919
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
920
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
921
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
922
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
923
|
+
blockHash: ByteVectorType;
|
|
924
|
+
transactionsRoot: ByteVectorType;
|
|
925
|
+
withdrawalsRoot: ByteVectorType;
|
|
926
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
927
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
928
|
+
}>;
|
|
929
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
930
|
+
message: ContainerType<{
|
|
931
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
932
|
+
fromBlsPubkey: ByteVectorType;
|
|
933
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
934
|
+
}>;
|
|
935
|
+
signature: ByteVectorType;
|
|
936
|
+
}>>;
|
|
937
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
934
938
|
}>;
|
|
935
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
936
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
937
|
-
parentRoot: ByteVectorType;
|
|
938
|
-
stateRoot: ByteVectorType;
|
|
939
939
|
}>;
|
|
940
940
|
signature: ByteVectorType;
|
|
941
941
|
}>;
|
|
942
942
|
export declare const BuilderBid: ContainerType<{
|
|
943
943
|
header: ContainerType<{
|
|
944
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
945
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
946
|
-
withdrawalsRoot: ByteVectorType;
|
|
947
|
-
transactionsRoot: ByteVectorType;
|
|
948
944
|
parentHash: ByteVectorType;
|
|
949
945
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
950
946
|
stateRoot: ByteVectorType;
|
|
@@ -958,6 +954,10 @@ export declare const BuilderBid: ContainerType<{
|
|
|
958
954
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
959
955
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
960
956
|
blockHash: ByteVectorType;
|
|
957
|
+
transactionsRoot: ByteVectorType;
|
|
958
|
+
withdrawalsRoot: ByteVectorType;
|
|
959
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
960
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
961
961
|
}>;
|
|
962
962
|
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
963
963
|
value: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -966,10 +966,6 @@ export declare const BuilderBid: ContainerType<{
|
|
|
966
966
|
export declare const SignedBuilderBid: ContainerType<{
|
|
967
967
|
message: ContainerType<{
|
|
968
968
|
header: ContainerType<{
|
|
969
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
970
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
971
|
-
withdrawalsRoot: ByteVectorType;
|
|
972
|
-
transactionsRoot: ByteVectorType;
|
|
973
969
|
parentHash: ByteVectorType;
|
|
974
970
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
975
971
|
stateRoot: ByteVectorType;
|
|
@@ -983,6 +979,10 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
983
979
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
984
980
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
985
981
|
blockHash: ByteVectorType;
|
|
982
|
+
transactionsRoot: ByteVectorType;
|
|
983
|
+
withdrawalsRoot: ByteVectorType;
|
|
984
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
985
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
986
986
|
}>;
|
|
987
987
|
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
988
988
|
value: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -992,15 +992,6 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
992
992
|
}>;
|
|
993
993
|
export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
994
994
|
executionPayload: ContainerType<{
|
|
995
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
996
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
997
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
998
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
999
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1000
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
1001
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1002
|
-
}>>;
|
|
1003
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1004
995
|
parentHash: ByteVectorType;
|
|
1005
996
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1006
997
|
stateRoot: ByteVectorType;
|
|
@@ -1014,6 +1005,15 @@ export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
|
1014
1005
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1015
1006
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1016
1007
|
blockHash: ByteVectorType;
|
|
1008
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1009
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1010
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1011
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1012
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1013
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1014
|
+
}>>;
|
|
1015
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1016
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1017
1017
|
}>;
|
|
1018
1018
|
blobsBundle: ContainerType<{
|
|
1019
1019
|
commitments: ListCompositeType<ByteVectorType>;
|
|
@@ -1080,10 +1080,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
1080
1080
|
aggregatePubkey: ByteVectorType;
|
|
1081
1081
|
}>;
|
|
1082
1082
|
latestExecutionPayloadHeader: ContainerType<{
|
|
1083
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1084
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1085
|
-
withdrawalsRoot: ByteVectorType;
|
|
1086
|
-
transactionsRoot: ByteVectorType;
|
|
1087
1083
|
parentHash: ByteVectorType;
|
|
1088
1084
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1089
1085
|
stateRoot: ByteVectorType;
|
|
@@ -1097,6 +1093,10 @@ export declare const BeaconState: ContainerType<{
|
|
|
1097
1093
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1098
1094
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1099
1095
|
blockHash: ByteVectorType;
|
|
1096
|
+
transactionsRoot: ByteVectorType;
|
|
1097
|
+
withdrawalsRoot: ByteVectorType;
|
|
1098
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1099
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1100
1100
|
}>;
|
|
1101
1101
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1102
1102
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1114,10 +1114,6 @@ export declare const LightClientHeader: ContainerType<{
|
|
|
1114
1114
|
bodyRoot: ByteVectorType;
|
|
1115
1115
|
}>;
|
|
1116
1116
|
execution: ContainerType<{
|
|
1117
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1118
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1119
|
-
withdrawalsRoot: ByteVectorType;
|
|
1120
|
-
transactionsRoot: ByteVectorType;
|
|
1121
1117
|
parentHash: ByteVectorType;
|
|
1122
1118
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1123
1119
|
stateRoot: ByteVectorType;
|
|
@@ -1131,6 +1127,10 @@ export declare const LightClientHeader: ContainerType<{
|
|
|
1131
1127
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1132
1128
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1133
1129
|
blockHash: ByteVectorType;
|
|
1130
|
+
transactionsRoot: ByteVectorType;
|
|
1131
|
+
withdrawalsRoot: ByteVectorType;
|
|
1132
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1133
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1134
1134
|
}>;
|
|
1135
1135
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1136
1136
|
}>;
|
|
@@ -1144,10 +1144,6 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1144
1144
|
bodyRoot: ByteVectorType;
|
|
1145
1145
|
}>;
|
|
1146
1146
|
execution: ContainerType<{
|
|
1147
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1148
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1149
|
-
withdrawalsRoot: ByteVectorType;
|
|
1150
|
-
transactionsRoot: ByteVectorType;
|
|
1151
1147
|
parentHash: ByteVectorType;
|
|
1152
1148
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1153
1149
|
stateRoot: ByteVectorType;
|
|
@@ -1161,6 +1157,10 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1161
1157
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1162
1158
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1163
1159
|
blockHash: ByteVectorType;
|
|
1160
|
+
transactionsRoot: ByteVectorType;
|
|
1161
|
+
withdrawalsRoot: ByteVectorType;
|
|
1162
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1163
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1164
1164
|
}>;
|
|
1165
1165
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1166
1166
|
}>;
|
|
@@ -1180,10 +1180,6 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1180
1180
|
bodyRoot: ByteVectorType;
|
|
1181
1181
|
}>;
|
|
1182
1182
|
execution: ContainerType<{
|
|
1183
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1184
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1185
|
-
withdrawalsRoot: ByteVectorType;
|
|
1186
|
-
transactionsRoot: ByteVectorType;
|
|
1187
1183
|
parentHash: ByteVectorType;
|
|
1188
1184
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1189
1185
|
stateRoot: ByteVectorType;
|
|
@@ -1197,6 +1193,10 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1197
1193
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1198
1194
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1199
1195
|
blockHash: ByteVectorType;
|
|
1196
|
+
transactionsRoot: ByteVectorType;
|
|
1197
|
+
withdrawalsRoot: ByteVectorType;
|
|
1198
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1199
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1200
1200
|
}>;
|
|
1201
1201
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1202
1202
|
}>;
|
|
@@ -1214,10 +1214,6 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1214
1214
|
bodyRoot: ByteVectorType;
|
|
1215
1215
|
}>;
|
|
1216
1216
|
execution: ContainerType<{
|
|
1217
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1218
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1219
|
-
withdrawalsRoot: ByteVectorType;
|
|
1220
|
-
transactionsRoot: ByteVectorType;
|
|
1221
1217
|
parentHash: ByteVectorType;
|
|
1222
1218
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1223
1219
|
stateRoot: ByteVectorType;
|
|
@@ -1231,6 +1227,10 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1231
1227
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1232
1228
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1233
1229
|
blockHash: ByteVectorType;
|
|
1230
|
+
transactionsRoot: ByteVectorType;
|
|
1231
|
+
withdrawalsRoot: ByteVectorType;
|
|
1232
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1233
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1234
1234
|
}>;
|
|
1235
1235
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1236
1236
|
}>;
|
|
@@ -1251,10 +1251,6 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1251
1251
|
bodyRoot: ByteVectorType;
|
|
1252
1252
|
}>;
|
|
1253
1253
|
execution: ContainerType<{
|
|
1254
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1255
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1256
|
-
withdrawalsRoot: ByteVectorType;
|
|
1257
|
-
transactionsRoot: ByteVectorType;
|
|
1258
1254
|
parentHash: ByteVectorType;
|
|
1259
1255
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1260
1256
|
stateRoot: ByteVectorType;
|
|
@@ -1268,6 +1264,10 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1268
1264
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1269
1265
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1270
1266
|
blockHash: ByteVectorType;
|
|
1267
|
+
transactionsRoot: ByteVectorType;
|
|
1268
|
+
withdrawalsRoot: ByteVectorType;
|
|
1269
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1270
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1271
1271
|
}>;
|
|
1272
1272
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1273
1273
|
}>;
|
|
@@ -1280,10 +1280,6 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1280
1280
|
bodyRoot: ByteVectorType;
|
|
1281
1281
|
}>;
|
|
1282
1282
|
execution: ContainerType<{
|
|
1283
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1284
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1285
|
-
withdrawalsRoot: ByteVectorType;
|
|
1286
|
-
transactionsRoot: ByteVectorType;
|
|
1287
1283
|
parentHash: ByteVectorType;
|
|
1288
1284
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1289
1285
|
stateRoot: ByteVectorType;
|
|
@@ -1297,6 +1293,10 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1297
1293
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1298
1294
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1299
1295
|
blockHash: ByteVectorType;
|
|
1296
|
+
transactionsRoot: ByteVectorType;
|
|
1297
|
+
withdrawalsRoot: ByteVectorType;
|
|
1298
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1299
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1300
1300
|
}>;
|
|
1301
1301
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1302
1302
|
}>;
|
|
@@ -1317,10 +1317,6 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1317
1317
|
bodyRoot: ByteVectorType;
|
|
1318
1318
|
}>;
|
|
1319
1319
|
execution: ContainerType<{
|
|
1320
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1321
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1322
|
-
withdrawalsRoot: ByteVectorType;
|
|
1323
|
-
transactionsRoot: ByteVectorType;
|
|
1324
1320
|
parentHash: ByteVectorType;
|
|
1325
1321
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1326
1322
|
stateRoot: ByteVectorType;
|
|
@@ -1334,6 +1330,10 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1334
1330
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1335
1331
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1336
1332
|
blockHash: ByteVectorType;
|
|
1333
|
+
transactionsRoot: ByteVectorType;
|
|
1334
|
+
withdrawalsRoot: ByteVectorType;
|
|
1335
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1336
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1337
1337
|
}>;
|
|
1338
1338
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1339
1339
|
}>;
|
|
@@ -1354,10 +1354,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1354
1354
|
bodyRoot: ByteVectorType;
|
|
1355
1355
|
}>;
|
|
1356
1356
|
execution: ContainerType<{
|
|
1357
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1358
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1359
|
-
withdrawalsRoot: ByteVectorType;
|
|
1360
|
-
transactionsRoot: ByteVectorType;
|
|
1361
1357
|
parentHash: ByteVectorType;
|
|
1362
1358
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1363
1359
|
stateRoot: ByteVectorType;
|
|
@@ -1371,6 +1367,10 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1371
1367
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1372
1368
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1373
1369
|
blockHash: ByteVectorType;
|
|
1370
|
+
transactionsRoot: ByteVectorType;
|
|
1371
|
+
withdrawalsRoot: ByteVectorType;
|
|
1372
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1373
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1374
1374
|
}>;
|
|
1375
1375
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1376
1376
|
}>;
|
|
@@ -1390,10 +1390,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1390
1390
|
bodyRoot: ByteVectorType;
|
|
1391
1391
|
}>;
|
|
1392
1392
|
execution: ContainerType<{
|
|
1393
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1394
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1395
|
-
withdrawalsRoot: ByteVectorType;
|
|
1396
|
-
transactionsRoot: ByteVectorType;
|
|
1397
1393
|
parentHash: ByteVectorType;
|
|
1398
1394
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1399
1395
|
stateRoot: ByteVectorType;
|
|
@@ -1407,6 +1403,10 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1407
1403
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1408
1404
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1409
1405
|
blockHash: ByteVectorType;
|
|
1406
|
+
transactionsRoot: ByteVectorType;
|
|
1407
|
+
withdrawalsRoot: ByteVectorType;
|
|
1408
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1409
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1410
1410
|
}>;
|
|
1411
1411
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1412
1412
|
}>;
|
|
@@ -1424,10 +1424,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1424
1424
|
bodyRoot: ByteVectorType;
|
|
1425
1425
|
}>;
|
|
1426
1426
|
execution: ContainerType<{
|
|
1427
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1428
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1429
|
-
withdrawalsRoot: ByteVectorType;
|
|
1430
|
-
transactionsRoot: ByteVectorType;
|
|
1431
1427
|
parentHash: ByteVectorType;
|
|
1432
1428
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1433
1429
|
stateRoot: ByteVectorType;
|
|
@@ -1441,6 +1437,10 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1441
1437
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1442
1438
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1443
1439
|
blockHash: ByteVectorType;
|
|
1440
|
+
transactionsRoot: ByteVectorType;
|
|
1441
|
+
withdrawalsRoot: ByteVectorType;
|
|
1442
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1443
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1444
1444
|
}>;
|
|
1445
1445
|
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1446
1446
|
}>;
|
|
@@ -1453,76 +1453,43 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1453
1453
|
}>>;
|
|
1454
1454
|
}>;
|
|
1455
1455
|
export declare const PayloadAttributes: ContainerType<{
|
|
1456
|
-
|
|
1456
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1457
|
+
prevRandao: ByteVectorType;
|
|
1458
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1457
1459
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1458
1460
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1459
1461
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1460
1462
|
address: import("../index.ts").ExecutionAddressType;
|
|
1461
1463
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1462
1464
|
}>>;
|
|
1463
|
-
|
|
1464
|
-
prevRandao: ByteVectorType;
|
|
1465
|
-
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1465
|
+
parentBeaconBlockRoot: ByteVectorType;
|
|
1466
1466
|
}>;
|
|
1467
1467
|
export declare const SSEPayloadAttributes: ContainerType<{
|
|
1468
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1469
|
+
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1470
|
+
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1471
|
+
parentBlockRoot: ByteVectorType;
|
|
1472
|
+
parentBlockHash: ByteVectorType;
|
|
1468
1473
|
payloadAttributes: ContainerType<{
|
|
1469
|
-
|
|
1474
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1475
|
+
prevRandao: ByteVectorType;
|
|
1476
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1470
1477
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1471
1478
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1472
1479
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1473
1480
|
address: import("../index.ts").ExecutionAddressType;
|
|
1474
1481
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1475
1482
|
}>>;
|
|
1476
|
-
|
|
1477
|
-
prevRandao: ByteVectorType;
|
|
1478
|
-
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1483
|
+
parentBeaconBlockRoot: ByteVectorType;
|
|
1479
1484
|
}>;
|
|
1480
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1481
|
-
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1482
|
-
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1483
|
-
parentBlockRoot: ByteVectorType;
|
|
1484
|
-
parentBlockHash: ByteVectorType;
|
|
1485
1485
|
}>;
|
|
1486
1486
|
export declare const BlockContents: ContainerType<{
|
|
1487
1487
|
block: ContainerType<{
|
|
1488
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1489
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1490
|
+
parentRoot: ByteVectorType;
|
|
1491
|
+
stateRoot: ByteVectorType;
|
|
1488
1492
|
body: ContainerType<{
|
|
1489
|
-
executionPayload: ContainerType<{
|
|
1490
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1491
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1492
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1493
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1494
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1495
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
1496
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1497
|
-
}>>;
|
|
1498
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1499
|
-
parentHash: ByteVectorType;
|
|
1500
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1501
|
-
stateRoot: ByteVectorType;
|
|
1502
|
-
receiptsRoot: ByteVectorType;
|
|
1503
|
-
logsBloom: ByteVectorType;
|
|
1504
|
-
prevRandao: ByteVectorType;
|
|
1505
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1506
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1507
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1508
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1509
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1510
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1511
|
-
blockHash: ByteVectorType;
|
|
1512
|
-
}>;
|
|
1513
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1514
|
-
message: ContainerType<{
|
|
1515
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1516
|
-
fromBlsPubkey: ByteVectorType;
|
|
1517
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1518
|
-
}>;
|
|
1519
|
-
signature: ByteVectorType;
|
|
1520
|
-
}>>;
|
|
1521
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1522
|
-
syncAggregate: ContainerType<{
|
|
1523
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1524
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1525
|
-
}>;
|
|
1526
1493
|
randaoReveal: ByteVectorType;
|
|
1527
1494
|
eth1Data: ContainerType<{
|
|
1528
1495
|
depositRoot: ByteVectorType;
|
|
@@ -1621,11 +1588,44 @@ export declare const BlockContents: ContainerType<{
|
|
|
1621
1588
|
}>;
|
|
1622
1589
|
signature: ByteVectorType;
|
|
1623
1590
|
}>>;
|
|
1591
|
+
syncAggregate: ContainerType<{
|
|
1592
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1593
|
+
syncCommitteeSignature: ByteVectorType;
|
|
1594
|
+
}>;
|
|
1595
|
+
executionPayload: ContainerType<{
|
|
1596
|
+
parentHash: ByteVectorType;
|
|
1597
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1598
|
+
stateRoot: ByteVectorType;
|
|
1599
|
+
receiptsRoot: ByteVectorType;
|
|
1600
|
+
logsBloom: ByteVectorType;
|
|
1601
|
+
prevRandao: ByteVectorType;
|
|
1602
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1603
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1604
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1605
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1606
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1607
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1608
|
+
blockHash: ByteVectorType;
|
|
1609
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1610
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1611
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1612
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1613
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1614
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1615
|
+
}>>;
|
|
1616
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1617
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1618
|
+
}>;
|
|
1619
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1620
|
+
message: ContainerType<{
|
|
1621
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1622
|
+
fromBlsPubkey: ByteVectorType;
|
|
1623
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1624
|
+
}>;
|
|
1625
|
+
signature: ByteVectorType;
|
|
1626
|
+
}>>;
|
|
1627
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1624
1628
|
}>;
|
|
1625
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1626
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1627
|
-
parentRoot: ByteVectorType;
|
|
1628
|
-
stateRoot: ByteVectorType;
|
|
1629
1629
|
}>;
|
|
1630
1630
|
kzgProofs: ListCompositeType<ByteVectorType>;
|
|
1631
1631
|
blobs: ListCompositeType<ByteVectorType>;
|
|
@@ -1633,44 +1633,11 @@ export declare const BlockContents: ContainerType<{
|
|
|
1633
1633
|
export declare const SignedBlockContents: ContainerType<{
|
|
1634
1634
|
signedBlock: ContainerType<{
|
|
1635
1635
|
message: ContainerType<{
|
|
1636
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1637
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1638
|
+
parentRoot: ByteVectorType;
|
|
1639
|
+
stateRoot: ByteVectorType;
|
|
1636
1640
|
body: ContainerType<{
|
|
1637
|
-
executionPayload: ContainerType<{
|
|
1638
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1639
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1640
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1641
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1642
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1643
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
1644
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1645
|
-
}>>;
|
|
1646
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1647
|
-
parentHash: ByteVectorType;
|
|
1648
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1649
|
-
stateRoot: ByteVectorType;
|
|
1650
|
-
receiptsRoot: ByteVectorType;
|
|
1651
|
-
logsBloom: ByteVectorType;
|
|
1652
|
-
prevRandao: ByteVectorType;
|
|
1653
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1654
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1655
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1656
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1657
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1658
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1659
|
-
blockHash: ByteVectorType;
|
|
1660
|
-
}>;
|
|
1661
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1662
|
-
message: ContainerType<{
|
|
1663
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1664
|
-
fromBlsPubkey: ByteVectorType;
|
|
1665
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1666
|
-
}>;
|
|
1667
|
-
signature: ByteVectorType;
|
|
1668
|
-
}>>;
|
|
1669
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1670
|
-
syncAggregate: ContainerType<{
|
|
1671
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1672
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1673
|
-
}>;
|
|
1674
1641
|
randaoReveal: ByteVectorType;
|
|
1675
1642
|
eth1Data: ContainerType<{
|
|
1676
1643
|
depositRoot: ByteVectorType;
|
|
@@ -1769,11 +1736,44 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
1769
1736
|
}>;
|
|
1770
1737
|
signature: ByteVectorType;
|
|
1771
1738
|
}>>;
|
|
1739
|
+
syncAggregate: ContainerType<{
|
|
1740
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1741
|
+
syncCommitteeSignature: ByteVectorType;
|
|
1742
|
+
}>;
|
|
1743
|
+
executionPayload: ContainerType<{
|
|
1744
|
+
parentHash: ByteVectorType;
|
|
1745
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1746
|
+
stateRoot: ByteVectorType;
|
|
1747
|
+
receiptsRoot: ByteVectorType;
|
|
1748
|
+
logsBloom: ByteVectorType;
|
|
1749
|
+
prevRandao: ByteVectorType;
|
|
1750
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1751
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1752
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1753
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1754
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1755
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1756
|
+
blockHash: ByteVectorType;
|
|
1757
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1758
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
1759
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1760
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1761
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1762
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1763
|
+
}>>;
|
|
1764
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1765
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1766
|
+
}>;
|
|
1767
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1768
|
+
message: ContainerType<{
|
|
1769
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1770
|
+
fromBlsPubkey: ByteVectorType;
|
|
1771
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1772
|
+
}>;
|
|
1773
|
+
signature: ByteVectorType;
|
|
1774
|
+
}>>;
|
|
1775
|
+
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1772
1776
|
}>;
|
|
1773
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1774
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1775
|
-
parentRoot: ByteVectorType;
|
|
1776
|
-
stateRoot: ByteVectorType;
|
|
1777
1777
|
}>;
|
|
1778
1778
|
signature: ByteVectorType;
|
|
1779
1779
|
}>;
|