@lodestar/types 1.41.0-dev.bb33751bfd → 1.41.0-dev.c11b797bd6
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
|
@@ -26,13 +26,6 @@ export declare const Withdrawals: ListCompositeType<ContainerType<{
|
|
|
26
26
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
27
27
|
}>>;
|
|
28
28
|
export declare const ExecutionPayload: ContainerType<{
|
|
29
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
30
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
31
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
32
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
33
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
34
|
-
}>>;
|
|
35
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
36
29
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
37
30
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
38
31
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -46,10 +39,15 @@ export declare const ExecutionPayload: ContainerType<{
|
|
|
46
39
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
47
40
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
48
41
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
42
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
43
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
44
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
45
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
46
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
47
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
48
|
+
}>>;
|
|
49
49
|
}>;
|
|
50
50
|
export declare const ExecutionPayloadHeader: ContainerType<{
|
|
51
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
52
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
53
51
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
54
52
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
55
53
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -63,6 +61,8 @@ export declare const ExecutionPayloadHeader: ContainerType<{
|
|
|
63
61
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
64
62
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
65
63
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
64
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
65
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
66
66
|
}>;
|
|
67
67
|
export declare const BLSToExecutionChanges: ListCompositeType<ContainerType<{
|
|
68
68
|
message: ContainerType<{
|
|
@@ -73,40 +73,6 @@ export declare const BLSToExecutionChanges: ListCompositeType<ContainerType<{
|
|
|
73
73
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
74
74
|
}>>;
|
|
75
75
|
export declare const BeaconBlockBody: ContainerType<{
|
|
76
|
-
executionPayload: ContainerType<{
|
|
77
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
78
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
79
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
80
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
81
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
82
|
-
}>>;
|
|
83
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
84
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
85
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
86
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
87
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
88
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
89
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
90
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
91
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
92
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
93
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
94
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
95
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
96
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
97
|
-
}>;
|
|
98
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
99
|
-
message: ContainerType<{
|
|
100
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
101
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
102
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
103
|
-
}>;
|
|
104
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
105
|
-
}>>;
|
|
106
|
-
syncAggregate: ContainerType<{
|
|
107
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
108
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
109
|
-
}>;
|
|
110
76
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
111
77
|
eth1Data: ContainerType<{
|
|
112
78
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -205,6 +171,40 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
205
171
|
}>;
|
|
206
172
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
207
173
|
}>>;
|
|
174
|
+
syncAggregate: ContainerType<{
|
|
175
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
176
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
177
|
+
}>;
|
|
178
|
+
executionPayload: ContainerType<{
|
|
179
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
180
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
181
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
182
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
183
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
184
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
185
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
186
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
187
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
188
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
189
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
190
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
191
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
192
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
193
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
194
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
195
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
196
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
197
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
198
|
+
}>>;
|
|
199
|
+
}>;
|
|
200
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
201
|
+
message: ContainerType<{
|
|
202
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
203
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
204
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
205
|
+
}>;
|
|
206
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
207
|
+
}>>;
|
|
208
208
|
}>;
|
|
209
209
|
export declare const BeaconBlock: ContainerType<{
|
|
210
210
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -212,40 +212,6 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
212
212
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
213
213
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
214
214
|
body: ContainerType<{
|
|
215
|
-
executionPayload: ContainerType<{
|
|
216
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
217
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
218
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
219
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
220
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
221
|
-
}>>;
|
|
222
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
223
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
224
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
225
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
226
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
227
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
228
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
229
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
230
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
231
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
232
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
233
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
234
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
235
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
236
|
-
}>;
|
|
237
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
238
|
-
message: ContainerType<{
|
|
239
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
240
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
241
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
242
|
-
}>;
|
|
243
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
244
|
-
}>>;
|
|
245
|
-
syncAggregate: ContainerType<{
|
|
246
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
247
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
248
|
-
}>;
|
|
249
215
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
250
216
|
eth1Data: ContainerType<{
|
|
251
217
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -344,6 +310,40 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
344
310
|
}>;
|
|
345
311
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
346
312
|
}>>;
|
|
313
|
+
syncAggregate: ContainerType<{
|
|
314
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
315
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
316
|
+
}>;
|
|
317
|
+
executionPayload: ContainerType<{
|
|
318
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
319
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
320
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
321
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
322
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
323
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
324
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
325
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
326
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
327
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
328
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
329
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
330
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
331
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
332
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
333
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
334
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
335
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
336
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
337
|
+
}>>;
|
|
338
|
+
}>;
|
|
339
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
340
|
+
message: ContainerType<{
|
|
341
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
342
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
343
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
344
|
+
}>;
|
|
345
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
346
|
+
}>>;
|
|
347
347
|
}>;
|
|
348
348
|
}>;
|
|
349
349
|
export declare const SignedBeaconBlock: ContainerType<{
|
|
@@ -353,40 +353,6 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
353
353
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
354
354
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
355
355
|
body: ContainerType<{
|
|
356
|
-
executionPayload: ContainerType<{
|
|
357
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
358
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
359
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
360
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
361
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
362
|
-
}>>;
|
|
363
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
364
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
365
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
366
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
367
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
368
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
369
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
370
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
371
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
372
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
373
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
374
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
375
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
376
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
377
|
-
}>;
|
|
378
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
379
|
-
message: ContainerType<{
|
|
380
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
381
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
382
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
383
|
-
}>;
|
|
384
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
385
|
-
}>>;
|
|
386
|
-
syncAggregate: ContainerType<{
|
|
387
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
388
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
389
|
-
}>;
|
|
390
356
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
391
357
|
eth1Data: ContainerType<{
|
|
392
358
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -485,14 +451,46 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
485
451
|
}>;
|
|
486
452
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
487
453
|
}>>;
|
|
454
|
+
syncAggregate: ContainerType<{
|
|
455
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
456
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
457
|
+
}>;
|
|
458
|
+
executionPayload: ContainerType<{
|
|
459
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
460
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
461
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
462
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
463
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
464
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
465
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
466
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
467
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
468
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
469
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
470
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
471
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
472
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
473
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
474
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
475
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
476
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
477
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
478
|
+
}>>;
|
|
479
|
+
}>;
|
|
480
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
481
|
+
message: ContainerType<{
|
|
482
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
483
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
484
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
485
|
+
}>;
|
|
486
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
487
|
+
}>>;
|
|
488
488
|
}>;
|
|
489
489
|
}>;
|
|
490
490
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
491
491
|
}>;
|
|
492
492
|
export declare const BuilderBid: ContainerType<{
|
|
493
493
|
header: ContainerType<{
|
|
494
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
495
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
496
494
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
497
495
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
498
496
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -506,6 +504,8 @@ export declare const BuilderBid: ContainerType<{
|
|
|
506
504
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
507
505
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
508
506
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
507
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
508
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
509
509
|
}>;
|
|
510
510
|
value: import("@chainsafe/ssz").UintBigintType;
|
|
511
511
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -513,8 +513,6 @@ export declare const BuilderBid: ContainerType<{
|
|
|
513
513
|
export declare const SignedBuilderBid: ContainerType<{
|
|
514
514
|
message: ContainerType<{
|
|
515
515
|
header: ContainerType<{
|
|
516
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
517
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
518
516
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
519
517
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
520
518
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -528,6 +526,8 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
528
526
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
529
527
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
530
528
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
529
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
530
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
531
531
|
}>;
|
|
532
532
|
value: import("@chainsafe/ssz").UintBigintType;
|
|
533
533
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -601,8 +601,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
601
601
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
602
602
|
}>;
|
|
603
603
|
latestExecutionPayloadHeader: ContainerType<{
|
|
604
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
605
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
606
604
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
607
605
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
608
606
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -616,6 +614,8 @@ export declare const BeaconState: ContainerType<{
|
|
|
616
614
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
617
615
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
618
616
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
617
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
618
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
619
619
|
}>;
|
|
620
620
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
621
621
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -625,35 +625,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
625
625
|
}>>;
|
|
626
626
|
}>;
|
|
627
627
|
export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
628
|
-
executionPayloadHeader: ContainerType<{
|
|
629
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
630
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
631
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
632
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
633
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
634
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
635
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
636
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
637
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
638
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
639
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
640
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
641
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
642
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
643
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
644
|
-
}>;
|
|
645
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
646
|
-
message: ContainerType<{
|
|
647
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
648
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
649
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
650
|
-
}>;
|
|
651
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
652
|
-
}>>;
|
|
653
|
-
syncAggregate: ContainerType<{
|
|
654
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
655
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
656
|
-
}>;
|
|
657
628
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
658
629
|
eth1Data: ContainerType<{
|
|
659
630
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -752,38 +723,42 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
752
723
|
}>;
|
|
753
724
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
754
725
|
}>>;
|
|
726
|
+
syncAggregate: ContainerType<{
|
|
727
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
728
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
729
|
+
}>;
|
|
730
|
+
executionPayloadHeader: ContainerType<{
|
|
731
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
732
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
733
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
734
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
735
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
736
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
737
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
738
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
739
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
740
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
741
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
742
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
743
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
744
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
745
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
746
|
+
}>;
|
|
747
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
748
|
+
message: ContainerType<{
|
|
749
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
750
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
751
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
752
|
+
}>;
|
|
753
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
754
|
+
}>>;
|
|
755
755
|
}>;
|
|
756
756
|
export declare const BlindedBeaconBlock: ContainerType<{
|
|
757
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
758
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
759
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
760
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
757
761
|
body: ContainerType<{
|
|
758
|
-
executionPayloadHeader: ContainerType<{
|
|
759
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
760
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
761
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
762
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
763
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
764
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
765
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
766
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
767
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
768
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
769
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
770
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
771
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
772
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
773
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
774
|
-
}>;
|
|
775
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
776
|
-
message: ContainerType<{
|
|
777
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
778
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
779
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
780
|
-
}>;
|
|
781
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
782
|
-
}>>;
|
|
783
|
-
syncAggregate: ContainerType<{
|
|
784
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
785
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
786
|
-
}>;
|
|
787
762
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
788
763
|
eth1Data: ContainerType<{
|
|
789
764
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -882,44 +857,44 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
882
857
|
}>;
|
|
883
858
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
884
859
|
}>>;
|
|
860
|
+
syncAggregate: ContainerType<{
|
|
861
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
862
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
863
|
+
}>;
|
|
864
|
+
executionPayloadHeader: ContainerType<{
|
|
865
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
866
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
867
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
868
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
869
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
870
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
871
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
872
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
873
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
874
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
875
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
876
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
877
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
878
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
879
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
880
|
+
}>;
|
|
881
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
882
|
+
message: ContainerType<{
|
|
883
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
884
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
885
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
886
|
+
}>;
|
|
887
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
888
|
+
}>>;
|
|
885
889
|
}>;
|
|
886
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
887
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
888
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
889
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
890
890
|
}>;
|
|
891
891
|
export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
892
892
|
message: ContainerType<{
|
|
893
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
894
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
895
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
896
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
893
897
|
body: ContainerType<{
|
|
894
|
-
executionPayloadHeader: ContainerType<{
|
|
895
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
896
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
897
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
898
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
899
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
900
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
901
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
902
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
903
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
904
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
905
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
906
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
907
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
908
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
909
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
910
|
-
}>;
|
|
911
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
912
|
-
message: ContainerType<{
|
|
913
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
914
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
915
|
-
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
916
|
-
}>;
|
|
917
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
918
|
-
}>>;
|
|
919
|
-
syncAggregate: ContainerType<{
|
|
920
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
921
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
922
|
-
}>;
|
|
923
898
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
924
899
|
eth1Data: ContainerType<{
|
|
925
900
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1018,11 +993,36 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1018
993
|
}>;
|
|
1019
994
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1020
995
|
}>>;
|
|
996
|
+
syncAggregate: ContainerType<{
|
|
997
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
998
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
999
|
+
}>;
|
|
1000
|
+
executionPayloadHeader: ContainerType<{
|
|
1001
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1002
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1003
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1004
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1005
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1006
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1007
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1008
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1009
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1010
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1011
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1012
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1013
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1014
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1015
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1016
|
+
}>;
|
|
1017
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1018
|
+
message: ContainerType<{
|
|
1019
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1020
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1021
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1022
|
+
}>;
|
|
1023
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1024
|
+
}>>;
|
|
1021
1025
|
}>;
|
|
1022
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1023
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1024
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1025
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1026
1026
|
}>;
|
|
1027
1027
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1028
1028
|
}>;
|
|
@@ -1035,8 +1035,6 @@ export declare const LightClientHeader: ContainerType<{
|
|
|
1035
1035
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1036
1036
|
}>;
|
|
1037
1037
|
execution: ContainerType<{
|
|
1038
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1039
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1040
1038
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1041
1039
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1042
1040
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1050,6 +1048,8 @@ export declare const LightClientHeader: ContainerType<{
|
|
|
1050
1048
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1051
1049
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1052
1050
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1051
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1052
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1053
1053
|
}>;
|
|
1054
1054
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1055
1055
|
}>;
|
|
@@ -1063,8 +1063,6 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1063
1063
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1064
1064
|
}>;
|
|
1065
1065
|
execution: ContainerType<{
|
|
1066
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1067
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1068
1066
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1069
1067
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1070
1068
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1078,6 +1076,8 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1078
1076
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1079
1077
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1080
1078
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1079
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1080
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1081
1081
|
}>;
|
|
1082
1082
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1083
1083
|
}>;
|
|
@@ -1097,8 +1097,6 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1097
1097
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1098
1098
|
}>;
|
|
1099
1099
|
execution: ContainerType<{
|
|
1100
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1101
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1102
1100
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1103
1101
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1104
1102
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1112,6 +1110,8 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1112
1110
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1113
1111
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1114
1112
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1113
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1114
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1115
1115
|
}>;
|
|
1116
1116
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1117
1117
|
}>;
|
|
@@ -1129,8 +1129,6 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1129
1129
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1130
1130
|
}>;
|
|
1131
1131
|
execution: ContainerType<{
|
|
1132
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1133
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1134
1132
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1135
1133
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1136
1134
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1144,6 +1142,8 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1144
1142
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1145
1143
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1146
1144
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1145
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1146
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1147
1147
|
}>;
|
|
1148
1148
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1149
1149
|
}>;
|
|
@@ -1164,8 +1164,6 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1164
1164
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1165
1165
|
}>;
|
|
1166
1166
|
execution: ContainerType<{
|
|
1167
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1168
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1169
1167
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1170
1168
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1171
1169
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1179,6 +1177,8 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1179
1177
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1180
1178
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1181
1179
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1180
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1181
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1182
1182
|
}>;
|
|
1183
1183
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1184
1184
|
}>;
|
|
@@ -1191,8 +1191,6 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1191
1191
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1192
1192
|
}>;
|
|
1193
1193
|
execution: ContainerType<{
|
|
1194
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1195
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1196
1194
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1197
1195
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1198
1196
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1206,6 +1204,8 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1206
1204
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1207
1205
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1208
1206
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1207
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1208
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1209
1209
|
}>;
|
|
1210
1210
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1211
1211
|
}>;
|
|
@@ -1226,8 +1226,6 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1226
1226
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1227
1227
|
}>;
|
|
1228
1228
|
execution: ContainerType<{
|
|
1229
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1230
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1231
1229
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1232
1230
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1233
1231
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1241,6 +1239,8 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1241
1239
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1242
1240
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1243
1241
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1242
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1243
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1244
1244
|
}>;
|
|
1245
1245
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1246
1246
|
}>;
|
|
@@ -1261,8 +1261,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1261
1261
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1262
1262
|
}>;
|
|
1263
1263
|
execution: ContainerType<{
|
|
1264
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1265
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1266
1264
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1267
1265
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1268
1266
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1276,6 +1274,8 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1276
1274
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1277
1275
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1278
1276
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1277
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1278
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1279
1279
|
}>;
|
|
1280
1280
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1281
1281
|
}>;
|
|
@@ -1295,8 +1295,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1295
1295
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1296
1296
|
}>;
|
|
1297
1297
|
execution: ContainerType<{
|
|
1298
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1299
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1300
1298
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1301
1299
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1302
1300
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1310,6 +1308,8 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1310
1308
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1311
1309
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1312
1310
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1311
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1312
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1313
1313
|
}>;
|
|
1314
1314
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1315
1315
|
}>;
|
|
@@ -1327,8 +1327,6 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1327
1327
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1328
1328
|
}>;
|
|
1329
1329
|
execution: ContainerType<{
|
|
1330
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1331
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1332
1330
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1333
1331
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1334
1332
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1342,6 +1340,8 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1342
1340
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1343
1341
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1344
1342
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1343
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1344
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1345
1345
|
}>;
|
|
1346
1346
|
executionBranch: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1347
1347
|
}>;
|
|
@@ -1354,32 +1354,32 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1354
1354
|
}>>;
|
|
1355
1355
|
}>;
|
|
1356
1356
|
export declare const PayloadAttributes: ContainerType<{
|
|
1357
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1358
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1359
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1357
1360
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1358
1361
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1359
1362
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1360
1363
|
address: import("../index.ts").ExecutionAddressType;
|
|
1361
1364
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1362
1365
|
}>>;
|
|
1363
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1364
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1365
|
-
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1366
1366
|
}>;
|
|
1367
1367
|
export declare const SSEPayloadAttributes: ContainerType<{
|
|
1368
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1369
|
+
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1370
|
+
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1371
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1372
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1368
1373
|
payloadAttributes: ContainerType<{
|
|
1374
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1375
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1376
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1369
1377
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1370
1378
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1371
1379
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1372
1380
|
address: import("../index.ts").ExecutionAddressType;
|
|
1373
1381
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1374
1382
|
}>>;
|
|
1375
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1376
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1377
|
-
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1378
1383
|
}>;
|
|
1379
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1380
|
-
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1381
|
-
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1382
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1383
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1384
1384
|
}>;
|
|
1385
1385
|
//# sourceMappingURL=sszTypes.d.ts.map
|