@lodestar/types 1.33.0-peerDAS.00a7126d44 → 1.33.0-peerDAS.0ebfec4475
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/fulu/sszTypes.d.ts +70 -1244
- package/lib/fulu/sszTypes.js +7 -64
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts +0 -16
- package/lib/sszTypes.d.ts +4802 -4802
- package/lib/types.d.ts +17 -17
- package/package.json +3 -3
package/lib/fulu/sszTypes.d.ts
CHANGED
|
@@ -74,206 +74,6 @@ export declare const DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
|
74
74
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
75
75
|
columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
76
76
|
}>;
|
|
77
|
-
export declare const ExecutionPayload: ContainerType<{
|
|
78
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
79
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
80
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
81
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
82
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
83
|
-
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
84
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
85
|
-
}>>;
|
|
86
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
87
|
-
parentHash: ByteVectorType;
|
|
88
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
89
|
-
stateRoot: ByteVectorType;
|
|
90
|
-
receiptsRoot: ByteVectorType;
|
|
91
|
-
logsBloom: ByteVectorType;
|
|
92
|
-
prevRandao: ByteVectorType;
|
|
93
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
94
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
95
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
96
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
97
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
98
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
99
|
-
blockHash: ByteVectorType;
|
|
100
|
-
}>;
|
|
101
|
-
export declare const ExecutionPayloadHeader: ContainerType<{
|
|
102
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
103
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
104
|
-
withdrawalsRoot: ByteVectorType;
|
|
105
|
-
transactionsRoot: ByteVectorType;
|
|
106
|
-
parentHash: ByteVectorType;
|
|
107
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
108
|
-
stateRoot: ByteVectorType;
|
|
109
|
-
receiptsRoot: ByteVectorType;
|
|
110
|
-
logsBloom: ByteVectorType;
|
|
111
|
-
prevRandao: ByteVectorType;
|
|
112
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
113
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
114
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
115
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
116
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
117
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
118
|
-
blockHash: ByteVectorType;
|
|
119
|
-
}>;
|
|
120
|
-
export declare const BeaconBlockBody: ContainerType<{
|
|
121
|
-
randaoReveal: ByteVectorType;
|
|
122
|
-
eth1Data: ContainerType<{
|
|
123
|
-
depositRoot: ByteVectorType;
|
|
124
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
125
|
-
blockHash: ByteVectorType;
|
|
126
|
-
}>;
|
|
127
|
-
graffiti: ByteVectorType;
|
|
128
|
-
proposerSlashings: ListCompositeType<ContainerType<{
|
|
129
|
-
signedHeader1: ContainerType<{
|
|
130
|
-
message: ContainerType<{
|
|
131
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
132
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
133
|
-
parentRoot: ByteVectorType;
|
|
134
|
-
stateRoot: ByteVectorType;
|
|
135
|
-
bodyRoot: ByteVectorType;
|
|
136
|
-
}>;
|
|
137
|
-
signature: ByteVectorType;
|
|
138
|
-
}>;
|
|
139
|
-
signedHeader2: ContainerType<{
|
|
140
|
-
message: ContainerType<{
|
|
141
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
142
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
143
|
-
parentRoot: ByteVectorType;
|
|
144
|
-
stateRoot: ByteVectorType;
|
|
145
|
-
bodyRoot: ByteVectorType;
|
|
146
|
-
}>;
|
|
147
|
-
signature: ByteVectorType;
|
|
148
|
-
}>;
|
|
149
|
-
}>>;
|
|
150
|
-
attesterSlashings: ListCompositeType<ContainerType<{
|
|
151
|
-
attestation1: ContainerType<{
|
|
152
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
153
|
-
data: ContainerType<{
|
|
154
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
155
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
156
|
-
beaconBlockRoot: ByteVectorType;
|
|
157
|
-
source: ContainerType<{
|
|
158
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
159
|
-
root: ByteVectorType;
|
|
160
|
-
}>;
|
|
161
|
-
target: ContainerType<{
|
|
162
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
163
|
-
root: ByteVectorType;
|
|
164
|
-
}>;
|
|
165
|
-
}>;
|
|
166
|
-
signature: ByteVectorType;
|
|
167
|
-
}>;
|
|
168
|
-
attestation2: ContainerType<{
|
|
169
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
170
|
-
data: ContainerType<{
|
|
171
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
172
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
173
|
-
beaconBlockRoot: ByteVectorType;
|
|
174
|
-
source: ContainerType<{
|
|
175
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
176
|
-
root: ByteVectorType;
|
|
177
|
-
}>;
|
|
178
|
-
target: ContainerType<{
|
|
179
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
180
|
-
root: ByteVectorType;
|
|
181
|
-
}>;
|
|
182
|
-
}>;
|
|
183
|
-
signature: ByteVectorType;
|
|
184
|
-
}>;
|
|
185
|
-
}>>;
|
|
186
|
-
attestations: ListCompositeType<ContainerType<{
|
|
187
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
188
|
-
data: ContainerType<{
|
|
189
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
190
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
191
|
-
beaconBlockRoot: ByteVectorType;
|
|
192
|
-
source: ContainerType<{
|
|
193
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
194
|
-
root: ByteVectorType;
|
|
195
|
-
}>;
|
|
196
|
-
target: ContainerType<{
|
|
197
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
198
|
-
root: ByteVectorType;
|
|
199
|
-
}>;
|
|
200
|
-
}>;
|
|
201
|
-
signature: ByteVectorType;
|
|
202
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
203
|
-
}>>;
|
|
204
|
-
deposits: ListCompositeType<ContainerType<{
|
|
205
|
-
proof: VectorCompositeType<ByteVectorType>;
|
|
206
|
-
data: ContainerType<{
|
|
207
|
-
pubkey: ByteVectorType;
|
|
208
|
-
withdrawalCredentials: ByteVectorType;
|
|
209
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
210
|
-
signature: ByteVectorType;
|
|
211
|
-
}>;
|
|
212
|
-
}>>;
|
|
213
|
-
voluntaryExits: ListCompositeType<ContainerType<{
|
|
214
|
-
message: ContainerType<{
|
|
215
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
216
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
217
|
-
}>;
|
|
218
|
-
signature: ByteVectorType;
|
|
219
|
-
}>>;
|
|
220
|
-
syncAggregate: ContainerType<{
|
|
221
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
222
|
-
syncCommitteeSignature: ByteVectorType;
|
|
223
|
-
}>;
|
|
224
|
-
executionPayload: ContainerType<{
|
|
225
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
226
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
227
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
228
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
229
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
230
|
-
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
231
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
232
|
-
}>>;
|
|
233
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
234
|
-
parentHash: ByteVectorType;
|
|
235
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
236
|
-
stateRoot: ByteVectorType;
|
|
237
|
-
receiptsRoot: ByteVectorType;
|
|
238
|
-
logsBloom: ByteVectorType;
|
|
239
|
-
prevRandao: ByteVectorType;
|
|
240
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
241
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
242
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
243
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
244
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
245
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
246
|
-
blockHash: ByteVectorType;
|
|
247
|
-
}>;
|
|
248
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
249
|
-
message: ContainerType<{
|
|
250
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
251
|
-
fromBlsPubkey: ByteVectorType;
|
|
252
|
-
toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
253
|
-
}>;
|
|
254
|
-
signature: ByteVectorType;
|
|
255
|
-
}>>;
|
|
256
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
257
|
-
executionRequests: ContainerType<{
|
|
258
|
-
deposits: ListCompositeType<ContainerType<{
|
|
259
|
-
pubkey: ByteVectorType;
|
|
260
|
-
withdrawalCredentials: ByteVectorType;
|
|
261
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
262
|
-
signature: ByteVectorType;
|
|
263
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
264
|
-
}>>;
|
|
265
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
266
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
267
|
-
validatorPubkey: ByteVectorType;
|
|
268
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
269
|
-
}>>;
|
|
270
|
-
consolidations: ListCompositeType<ContainerType<{
|
|
271
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
272
|
-
sourcePubkey: ByteVectorType;
|
|
273
|
-
targetPubkey: ByteVectorType;
|
|
274
|
-
}>>;
|
|
275
|
-
}>;
|
|
276
|
-
}>;
|
|
277
77
|
export declare const BeaconBlock: ContainerType<{
|
|
278
78
|
body: ContainerType<{
|
|
279
79
|
randaoReveal: ByteVectorType;
|
|
@@ -603,133 +403,71 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
603
403
|
}>;
|
|
604
404
|
signature: ByteVectorType;
|
|
605
405
|
}>;
|
|
606
|
-
export declare const BlobSidecar: ContainerType<{
|
|
607
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
608
|
-
blob: ByteVectorType;
|
|
609
|
-
kzgCommitment: ByteVectorType;
|
|
610
|
-
kzgProof: ByteVectorType;
|
|
611
|
-
signedBlockHeader: ContainerType<{
|
|
612
|
-
message: ContainerType<{
|
|
613
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
614
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
615
|
-
parentRoot: ByteVectorType;
|
|
616
|
-
stateRoot: ByteVectorType;
|
|
617
|
-
bodyRoot: ByteVectorType;
|
|
618
|
-
}>;
|
|
619
|
-
signature: ByteVectorType;
|
|
620
|
-
}>;
|
|
621
|
-
kzgCommitmentInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
622
|
-
}>;
|
|
623
406
|
export declare const BlobsBundle: ContainerType<{
|
|
624
407
|
commitments: ListCompositeType<ByteVectorType>;
|
|
625
408
|
proofs: ListCompositeType<ByteVectorType>;
|
|
626
409
|
blobs: ListCompositeType<ByteVectorType>;
|
|
627
410
|
}>;
|
|
628
|
-
export declare const
|
|
629
|
-
|
|
411
|
+
export declare const BeaconState: ContainerType<{
|
|
412
|
+
proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
413
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
414
|
+
genesisValidatorsRoot: ByteVectorType;
|
|
415
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
416
|
+
fork: ContainerType<{
|
|
417
|
+
previousVersion: ByteVectorType;
|
|
418
|
+
currentVersion: ByteVectorType;
|
|
419
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
420
|
+
}>;
|
|
421
|
+
latestBlockHeader: ContainerType<{
|
|
422
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
423
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
424
|
+
parentRoot: ByteVectorType;
|
|
425
|
+
stateRoot: ByteVectorType;
|
|
426
|
+
bodyRoot: ByteVectorType;
|
|
427
|
+
}>;
|
|
428
|
+
blockRoots: VectorCompositeType<ByteVectorType>;
|
|
429
|
+
stateRoots: VectorCompositeType<ByteVectorType>;
|
|
430
|
+
historicalRoots: ListCompositeType<ByteVectorType>;
|
|
630
431
|
eth1Data: ContainerType<{
|
|
631
432
|
depositRoot: ByteVectorType;
|
|
632
433
|
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
633
434
|
blockHash: ByteVectorType;
|
|
634
435
|
}>;
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
640
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
641
|
-
parentRoot: ByteVectorType;
|
|
642
|
-
stateRoot: ByteVectorType;
|
|
643
|
-
bodyRoot: ByteVectorType;
|
|
644
|
-
}>;
|
|
645
|
-
signature: ByteVectorType;
|
|
646
|
-
}>;
|
|
647
|
-
signedHeader2: ContainerType<{
|
|
648
|
-
message: ContainerType<{
|
|
649
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
650
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
651
|
-
parentRoot: ByteVectorType;
|
|
652
|
-
stateRoot: ByteVectorType;
|
|
653
|
-
bodyRoot: ByteVectorType;
|
|
654
|
-
}>;
|
|
655
|
-
signature: ByteVectorType;
|
|
656
|
-
}>;
|
|
657
|
-
}>>;
|
|
658
|
-
attesterSlashings: ListCompositeType<ContainerType<{
|
|
659
|
-
attestation1: ContainerType<{
|
|
660
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
661
|
-
data: ContainerType<{
|
|
662
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
663
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
664
|
-
beaconBlockRoot: ByteVectorType;
|
|
665
|
-
source: ContainerType<{
|
|
666
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
667
|
-
root: ByteVectorType;
|
|
668
|
-
}>;
|
|
669
|
-
target: ContainerType<{
|
|
670
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
671
|
-
root: ByteVectorType;
|
|
672
|
-
}>;
|
|
673
|
-
}>;
|
|
674
|
-
signature: ByteVectorType;
|
|
675
|
-
}>;
|
|
676
|
-
attestation2: ContainerType<{
|
|
677
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
678
|
-
data: ContainerType<{
|
|
679
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
680
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
681
|
-
beaconBlockRoot: ByteVectorType;
|
|
682
|
-
source: ContainerType<{
|
|
683
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
684
|
-
root: ByteVectorType;
|
|
685
|
-
}>;
|
|
686
|
-
target: ContainerType<{
|
|
687
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
688
|
-
root: ByteVectorType;
|
|
689
|
-
}>;
|
|
690
|
-
}>;
|
|
691
|
-
signature: ByteVectorType;
|
|
692
|
-
}>;
|
|
693
|
-
}>>;
|
|
694
|
-
attestations: ListCompositeType<ContainerType<{
|
|
695
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
696
|
-
data: ContainerType<{
|
|
697
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
698
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
699
|
-
beaconBlockRoot: ByteVectorType;
|
|
700
|
-
source: ContainerType<{
|
|
701
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
702
|
-
root: ByteVectorType;
|
|
703
|
-
}>;
|
|
704
|
-
target: ContainerType<{
|
|
705
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
706
|
-
root: ByteVectorType;
|
|
707
|
-
}>;
|
|
708
|
-
}>;
|
|
709
|
-
signature: ByteVectorType;
|
|
710
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
711
|
-
}>>;
|
|
712
|
-
deposits: ListCompositeType<ContainerType<{
|
|
713
|
-
proof: VectorCompositeType<ByteVectorType>;
|
|
714
|
-
data: ContainerType<{
|
|
715
|
-
pubkey: ByteVectorType;
|
|
716
|
-
withdrawalCredentials: ByteVectorType;
|
|
717
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
718
|
-
signature: ByteVectorType;
|
|
719
|
-
}>;
|
|
720
|
-
}>>;
|
|
721
|
-
voluntaryExits: ListCompositeType<ContainerType<{
|
|
722
|
-
message: ContainerType<{
|
|
723
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
724
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
725
|
-
}>;
|
|
726
|
-
signature: ByteVectorType;
|
|
436
|
+
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
437
|
+
depositRoot: ByteVectorType;
|
|
438
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
439
|
+
blockHash: ByteVectorType;
|
|
727
440
|
}>>;
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
441
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
442
|
+
validators: ListCompositeType<import("../phase0/validator.js").ValidatorNodeStructType>;
|
|
443
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
444
|
+
randaoMixes: VectorCompositeType<ByteVectorType>;
|
|
445
|
+
slashings: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
446
|
+
previousEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
447
|
+
currentEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
448
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
449
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
450
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
451
|
+
root: ByteVectorType;
|
|
452
|
+
}>;
|
|
453
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
454
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
455
|
+
root: ByteVectorType;
|
|
456
|
+
}>;
|
|
457
|
+
finalizedCheckpoint: ContainerType<{
|
|
458
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
459
|
+
root: ByteVectorType;
|
|
460
|
+
}>;
|
|
461
|
+
inactivityScores: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
462
|
+
currentSyncCommittee: ContainerType<{
|
|
463
|
+
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
464
|
+
aggregatePubkey: ByteVectorType;
|
|
465
|
+
}>;
|
|
466
|
+
nextSyncCommittee: ContainerType<{
|
|
467
|
+
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
468
|
+
aggregatePubkey: ByteVectorType;
|
|
731
469
|
}>;
|
|
732
|
-
|
|
470
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
733
471
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
734
472
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
735
473
|
withdrawalsRoot: ByteVectorType;
|
|
@@ -748,570 +486,24 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
748
486
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
749
487
|
blockHash: ByteVectorType;
|
|
750
488
|
}>;
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
489
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
490
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
491
|
+
historicalSummaries: ListCompositeType<ContainerType<{
|
|
492
|
+
blockSummaryRoot: ByteVectorType;
|
|
493
|
+
stateSummaryRoot: ByteVectorType;
|
|
494
|
+
}>>;
|
|
495
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
496
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
497
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
498
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
499
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
500
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
501
|
+
pendingDeposits: ListCompositeType<ContainerType<{
|
|
502
|
+
pubkey: ByteVectorType;
|
|
503
|
+
withdrawalCredentials: ByteVectorType;
|
|
504
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
757
505
|
signature: ByteVectorType;
|
|
758
|
-
|
|
759
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
760
|
-
executionRequests: ContainerType<{
|
|
761
|
-
deposits: ListCompositeType<ContainerType<{
|
|
762
|
-
pubkey: ByteVectorType;
|
|
763
|
-
withdrawalCredentials: ByteVectorType;
|
|
764
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
765
|
-
signature: ByteVectorType;
|
|
766
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
767
|
-
}>>;
|
|
768
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
769
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
770
|
-
validatorPubkey: ByteVectorType;
|
|
771
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
772
|
-
}>>;
|
|
773
|
-
consolidations: ListCompositeType<ContainerType<{
|
|
774
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
775
|
-
sourcePubkey: ByteVectorType;
|
|
776
|
-
targetPubkey: ByteVectorType;
|
|
777
|
-
}>>;
|
|
778
|
-
}>;
|
|
779
|
-
}>;
|
|
780
|
-
export declare const BlindedBeaconBlock: ContainerType<{
|
|
781
|
-
body: ContainerType<{
|
|
782
|
-
randaoReveal: ByteVectorType;
|
|
783
|
-
eth1Data: ContainerType<{
|
|
784
|
-
depositRoot: ByteVectorType;
|
|
785
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
786
|
-
blockHash: ByteVectorType;
|
|
787
|
-
}>;
|
|
788
|
-
graffiti: ByteVectorType;
|
|
789
|
-
proposerSlashings: ListCompositeType<ContainerType<{
|
|
790
|
-
signedHeader1: ContainerType<{
|
|
791
|
-
message: ContainerType<{
|
|
792
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
793
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
794
|
-
parentRoot: ByteVectorType;
|
|
795
|
-
stateRoot: ByteVectorType;
|
|
796
|
-
bodyRoot: ByteVectorType;
|
|
797
|
-
}>;
|
|
798
|
-
signature: ByteVectorType;
|
|
799
|
-
}>;
|
|
800
|
-
signedHeader2: ContainerType<{
|
|
801
|
-
message: ContainerType<{
|
|
802
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
803
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
804
|
-
parentRoot: ByteVectorType;
|
|
805
|
-
stateRoot: ByteVectorType;
|
|
806
|
-
bodyRoot: ByteVectorType;
|
|
807
|
-
}>;
|
|
808
|
-
signature: ByteVectorType;
|
|
809
|
-
}>;
|
|
810
|
-
}>>;
|
|
811
|
-
attesterSlashings: ListCompositeType<ContainerType<{
|
|
812
|
-
attestation1: ContainerType<{
|
|
813
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
814
|
-
data: ContainerType<{
|
|
815
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
816
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
817
|
-
beaconBlockRoot: ByteVectorType;
|
|
818
|
-
source: ContainerType<{
|
|
819
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
820
|
-
root: ByteVectorType;
|
|
821
|
-
}>;
|
|
822
|
-
target: ContainerType<{
|
|
823
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
824
|
-
root: ByteVectorType;
|
|
825
|
-
}>;
|
|
826
|
-
}>;
|
|
827
|
-
signature: ByteVectorType;
|
|
828
|
-
}>;
|
|
829
|
-
attestation2: ContainerType<{
|
|
830
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
831
|
-
data: ContainerType<{
|
|
832
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
833
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
834
|
-
beaconBlockRoot: ByteVectorType;
|
|
835
|
-
source: ContainerType<{
|
|
836
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
837
|
-
root: ByteVectorType;
|
|
838
|
-
}>;
|
|
839
|
-
target: ContainerType<{
|
|
840
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
841
|
-
root: ByteVectorType;
|
|
842
|
-
}>;
|
|
843
|
-
}>;
|
|
844
|
-
signature: ByteVectorType;
|
|
845
|
-
}>;
|
|
846
|
-
}>>;
|
|
847
|
-
attestations: ListCompositeType<ContainerType<{
|
|
848
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
849
|
-
data: ContainerType<{
|
|
850
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
851
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
852
|
-
beaconBlockRoot: ByteVectorType;
|
|
853
|
-
source: ContainerType<{
|
|
854
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
855
|
-
root: ByteVectorType;
|
|
856
|
-
}>;
|
|
857
|
-
target: ContainerType<{
|
|
858
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
859
|
-
root: ByteVectorType;
|
|
860
|
-
}>;
|
|
861
|
-
}>;
|
|
862
|
-
signature: ByteVectorType;
|
|
863
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
864
|
-
}>>;
|
|
865
|
-
deposits: ListCompositeType<ContainerType<{
|
|
866
|
-
proof: VectorCompositeType<ByteVectorType>;
|
|
867
|
-
data: ContainerType<{
|
|
868
|
-
pubkey: ByteVectorType;
|
|
869
|
-
withdrawalCredentials: ByteVectorType;
|
|
870
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
871
|
-
signature: ByteVectorType;
|
|
872
|
-
}>;
|
|
873
|
-
}>>;
|
|
874
|
-
voluntaryExits: ListCompositeType<ContainerType<{
|
|
875
|
-
message: ContainerType<{
|
|
876
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
877
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
878
|
-
}>;
|
|
879
|
-
signature: ByteVectorType;
|
|
880
|
-
}>>;
|
|
881
|
-
syncAggregate: ContainerType<{
|
|
882
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
883
|
-
syncCommitteeSignature: ByteVectorType;
|
|
884
|
-
}>;
|
|
885
|
-
executionPayloadHeader: ContainerType<{
|
|
886
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
887
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
888
|
-
withdrawalsRoot: ByteVectorType;
|
|
889
|
-
transactionsRoot: ByteVectorType;
|
|
890
|
-
parentHash: ByteVectorType;
|
|
891
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
892
|
-
stateRoot: ByteVectorType;
|
|
893
|
-
receiptsRoot: ByteVectorType;
|
|
894
|
-
logsBloom: ByteVectorType;
|
|
895
|
-
prevRandao: ByteVectorType;
|
|
896
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
897
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
898
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
899
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
900
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
901
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
902
|
-
blockHash: ByteVectorType;
|
|
903
|
-
}>;
|
|
904
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
905
|
-
message: ContainerType<{
|
|
906
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
907
|
-
fromBlsPubkey: ByteVectorType;
|
|
908
|
-
toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
909
|
-
}>;
|
|
910
|
-
signature: ByteVectorType;
|
|
911
|
-
}>>;
|
|
912
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
913
|
-
executionRequests: ContainerType<{
|
|
914
|
-
deposits: ListCompositeType<ContainerType<{
|
|
915
|
-
pubkey: ByteVectorType;
|
|
916
|
-
withdrawalCredentials: ByteVectorType;
|
|
917
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
918
|
-
signature: ByteVectorType;
|
|
919
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
920
|
-
}>>;
|
|
921
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
922
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
923
|
-
validatorPubkey: ByteVectorType;
|
|
924
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
925
|
-
}>>;
|
|
926
|
-
consolidations: ListCompositeType<ContainerType<{
|
|
927
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
928
|
-
sourcePubkey: ByteVectorType;
|
|
929
|
-
targetPubkey: ByteVectorType;
|
|
930
|
-
}>>;
|
|
931
|
-
}>;
|
|
932
|
-
}>;
|
|
933
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
934
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
935
|
-
parentRoot: ByteVectorType;
|
|
936
|
-
stateRoot: ByteVectorType;
|
|
937
|
-
}>;
|
|
938
|
-
export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
939
|
-
message: ContainerType<{
|
|
940
|
-
body: ContainerType<{
|
|
941
|
-
randaoReveal: ByteVectorType;
|
|
942
|
-
eth1Data: ContainerType<{
|
|
943
|
-
depositRoot: ByteVectorType;
|
|
944
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
945
|
-
blockHash: ByteVectorType;
|
|
946
|
-
}>;
|
|
947
|
-
graffiti: ByteVectorType;
|
|
948
|
-
proposerSlashings: ListCompositeType<ContainerType<{
|
|
949
|
-
signedHeader1: ContainerType<{
|
|
950
|
-
message: ContainerType<{
|
|
951
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
952
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
953
|
-
parentRoot: ByteVectorType;
|
|
954
|
-
stateRoot: ByteVectorType;
|
|
955
|
-
bodyRoot: ByteVectorType;
|
|
956
|
-
}>;
|
|
957
|
-
signature: ByteVectorType;
|
|
958
|
-
}>;
|
|
959
|
-
signedHeader2: ContainerType<{
|
|
960
|
-
message: ContainerType<{
|
|
961
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
962
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
963
|
-
parentRoot: ByteVectorType;
|
|
964
|
-
stateRoot: ByteVectorType;
|
|
965
|
-
bodyRoot: ByteVectorType;
|
|
966
|
-
}>;
|
|
967
|
-
signature: ByteVectorType;
|
|
968
|
-
}>;
|
|
969
|
-
}>>;
|
|
970
|
-
attesterSlashings: ListCompositeType<ContainerType<{
|
|
971
|
-
attestation1: ContainerType<{
|
|
972
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
973
|
-
data: ContainerType<{
|
|
974
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
975
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
976
|
-
beaconBlockRoot: ByteVectorType;
|
|
977
|
-
source: ContainerType<{
|
|
978
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
979
|
-
root: ByteVectorType;
|
|
980
|
-
}>;
|
|
981
|
-
target: ContainerType<{
|
|
982
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
983
|
-
root: ByteVectorType;
|
|
984
|
-
}>;
|
|
985
|
-
}>;
|
|
986
|
-
signature: ByteVectorType;
|
|
987
|
-
}>;
|
|
988
|
-
attestation2: ContainerType<{
|
|
989
|
-
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
990
|
-
data: ContainerType<{
|
|
991
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
992
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
993
|
-
beaconBlockRoot: ByteVectorType;
|
|
994
|
-
source: ContainerType<{
|
|
995
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
996
|
-
root: ByteVectorType;
|
|
997
|
-
}>;
|
|
998
|
-
target: ContainerType<{
|
|
999
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1000
|
-
root: ByteVectorType;
|
|
1001
|
-
}>;
|
|
1002
|
-
}>;
|
|
1003
|
-
signature: ByteVectorType;
|
|
1004
|
-
}>;
|
|
1005
|
-
}>>;
|
|
1006
|
-
attestations: ListCompositeType<ContainerType<{
|
|
1007
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
1008
|
-
data: ContainerType<{
|
|
1009
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1010
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1011
|
-
beaconBlockRoot: ByteVectorType;
|
|
1012
|
-
source: ContainerType<{
|
|
1013
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1014
|
-
root: ByteVectorType;
|
|
1015
|
-
}>;
|
|
1016
|
-
target: ContainerType<{
|
|
1017
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1018
|
-
root: ByteVectorType;
|
|
1019
|
-
}>;
|
|
1020
|
-
}>;
|
|
1021
|
-
signature: ByteVectorType;
|
|
1022
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1023
|
-
}>>;
|
|
1024
|
-
deposits: ListCompositeType<ContainerType<{
|
|
1025
|
-
proof: VectorCompositeType<ByteVectorType>;
|
|
1026
|
-
data: ContainerType<{
|
|
1027
|
-
pubkey: ByteVectorType;
|
|
1028
|
-
withdrawalCredentials: ByteVectorType;
|
|
1029
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1030
|
-
signature: ByteVectorType;
|
|
1031
|
-
}>;
|
|
1032
|
-
}>>;
|
|
1033
|
-
voluntaryExits: ListCompositeType<ContainerType<{
|
|
1034
|
-
message: ContainerType<{
|
|
1035
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1036
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1037
|
-
}>;
|
|
1038
|
-
signature: ByteVectorType;
|
|
1039
|
-
}>>;
|
|
1040
|
-
syncAggregate: ContainerType<{
|
|
1041
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1042
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1043
|
-
}>;
|
|
1044
|
-
executionPayloadHeader: ContainerType<{
|
|
1045
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1046
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1047
|
-
withdrawalsRoot: ByteVectorType;
|
|
1048
|
-
transactionsRoot: ByteVectorType;
|
|
1049
|
-
parentHash: ByteVectorType;
|
|
1050
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1051
|
-
stateRoot: ByteVectorType;
|
|
1052
|
-
receiptsRoot: ByteVectorType;
|
|
1053
|
-
logsBloom: ByteVectorType;
|
|
1054
|
-
prevRandao: ByteVectorType;
|
|
1055
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1056
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1057
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1058
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1059
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1060
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1061
|
-
blockHash: ByteVectorType;
|
|
1062
|
-
}>;
|
|
1063
|
-
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
1064
|
-
message: ContainerType<{
|
|
1065
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1066
|
-
fromBlsPubkey: ByteVectorType;
|
|
1067
|
-
toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1068
|
-
}>;
|
|
1069
|
-
signature: ByteVectorType;
|
|
1070
|
-
}>>;
|
|
1071
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1072
|
-
executionRequests: ContainerType<{
|
|
1073
|
-
deposits: ListCompositeType<ContainerType<{
|
|
1074
|
-
pubkey: ByteVectorType;
|
|
1075
|
-
withdrawalCredentials: ByteVectorType;
|
|
1076
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1077
|
-
signature: ByteVectorType;
|
|
1078
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
1079
|
-
}>>;
|
|
1080
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1081
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1082
|
-
validatorPubkey: ByteVectorType;
|
|
1083
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1084
|
-
}>>;
|
|
1085
|
-
consolidations: ListCompositeType<ContainerType<{
|
|
1086
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1087
|
-
sourcePubkey: ByteVectorType;
|
|
1088
|
-
targetPubkey: ByteVectorType;
|
|
1089
|
-
}>>;
|
|
1090
|
-
}>;
|
|
1091
|
-
}>;
|
|
1092
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1093
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1094
|
-
parentRoot: ByteVectorType;
|
|
1095
|
-
stateRoot: ByteVectorType;
|
|
1096
|
-
}>;
|
|
1097
|
-
signature: ByteVectorType;
|
|
1098
|
-
}>;
|
|
1099
|
-
export declare const BuilderBid: ContainerType<{
|
|
1100
|
-
header: ContainerType<{
|
|
1101
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1102
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1103
|
-
withdrawalsRoot: ByteVectorType;
|
|
1104
|
-
transactionsRoot: ByteVectorType;
|
|
1105
|
-
parentHash: ByteVectorType;
|
|
1106
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1107
|
-
stateRoot: ByteVectorType;
|
|
1108
|
-
receiptsRoot: ByteVectorType;
|
|
1109
|
-
logsBloom: ByteVectorType;
|
|
1110
|
-
prevRandao: ByteVectorType;
|
|
1111
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1112
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1113
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1114
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1115
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1116
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1117
|
-
blockHash: ByteVectorType;
|
|
1118
|
-
}>;
|
|
1119
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1120
|
-
executionRequests: ContainerType<{
|
|
1121
|
-
deposits: ListCompositeType<ContainerType<{
|
|
1122
|
-
pubkey: ByteVectorType;
|
|
1123
|
-
withdrawalCredentials: ByteVectorType;
|
|
1124
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1125
|
-
signature: ByteVectorType;
|
|
1126
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
1127
|
-
}>>;
|
|
1128
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1129
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1130
|
-
validatorPubkey: ByteVectorType;
|
|
1131
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1132
|
-
}>>;
|
|
1133
|
-
consolidations: ListCompositeType<ContainerType<{
|
|
1134
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1135
|
-
sourcePubkey: ByteVectorType;
|
|
1136
|
-
targetPubkey: ByteVectorType;
|
|
1137
|
-
}>>;
|
|
1138
|
-
}>;
|
|
1139
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
1140
|
-
pubkey: ByteVectorType;
|
|
1141
|
-
}>;
|
|
1142
|
-
export declare const SignedBuilderBid: ContainerType<{
|
|
1143
|
-
message: ContainerType<{
|
|
1144
|
-
header: ContainerType<{
|
|
1145
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1146
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1147
|
-
withdrawalsRoot: ByteVectorType;
|
|
1148
|
-
transactionsRoot: ByteVectorType;
|
|
1149
|
-
parentHash: ByteVectorType;
|
|
1150
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1151
|
-
stateRoot: ByteVectorType;
|
|
1152
|
-
receiptsRoot: ByteVectorType;
|
|
1153
|
-
logsBloom: ByteVectorType;
|
|
1154
|
-
prevRandao: ByteVectorType;
|
|
1155
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1156
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1157
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1158
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1159
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1160
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1161
|
-
blockHash: ByteVectorType;
|
|
1162
|
-
}>;
|
|
1163
|
-
blobKzgCommitments: ListCompositeType<ByteVectorType>;
|
|
1164
|
-
executionRequests: ContainerType<{
|
|
1165
|
-
deposits: ListCompositeType<ContainerType<{
|
|
1166
|
-
pubkey: ByteVectorType;
|
|
1167
|
-
withdrawalCredentials: ByteVectorType;
|
|
1168
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1169
|
-
signature: ByteVectorType;
|
|
1170
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
1171
|
-
}>>;
|
|
1172
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1173
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1174
|
-
validatorPubkey: ByteVectorType;
|
|
1175
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1176
|
-
}>>;
|
|
1177
|
-
consolidations: ListCompositeType<ContainerType<{
|
|
1178
|
-
sourceAddress: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1179
|
-
sourcePubkey: ByteVectorType;
|
|
1180
|
-
targetPubkey: ByteVectorType;
|
|
1181
|
-
}>>;
|
|
1182
|
-
}>;
|
|
1183
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
1184
|
-
pubkey: ByteVectorType;
|
|
1185
|
-
}>;
|
|
1186
|
-
signature: ByteVectorType;
|
|
1187
|
-
}>;
|
|
1188
|
-
export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
1189
|
-
executionPayload: ContainerType<{
|
|
1190
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1191
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1192
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1193
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1194
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1195
|
-
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1196
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1197
|
-
}>>;
|
|
1198
|
-
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1199
|
-
parentHash: ByteVectorType;
|
|
1200
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1201
|
-
stateRoot: ByteVectorType;
|
|
1202
|
-
receiptsRoot: ByteVectorType;
|
|
1203
|
-
logsBloom: ByteVectorType;
|
|
1204
|
-
prevRandao: ByteVectorType;
|
|
1205
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1206
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1207
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1208
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1209
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1210
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1211
|
-
blockHash: ByteVectorType;
|
|
1212
|
-
}>;
|
|
1213
|
-
blobsBundle: ContainerType<{
|
|
1214
|
-
commitments: ListCompositeType<ByteVectorType>;
|
|
1215
|
-
proofs: ListCompositeType<ByteVectorType>;
|
|
1216
|
-
blobs: ListCompositeType<ByteVectorType>;
|
|
1217
|
-
}>;
|
|
1218
|
-
}>;
|
|
1219
|
-
export declare const BeaconState: ContainerType<{
|
|
1220
|
-
proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1221
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
1222
|
-
genesisValidatorsRoot: ByteVectorType;
|
|
1223
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1224
|
-
fork: ContainerType<{
|
|
1225
|
-
previousVersion: ByteVectorType;
|
|
1226
|
-
currentVersion: ByteVectorType;
|
|
1227
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1228
|
-
}>;
|
|
1229
|
-
latestBlockHeader: ContainerType<{
|
|
1230
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1231
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1232
|
-
parentRoot: ByteVectorType;
|
|
1233
|
-
stateRoot: ByteVectorType;
|
|
1234
|
-
bodyRoot: ByteVectorType;
|
|
1235
|
-
}>;
|
|
1236
|
-
blockRoots: VectorCompositeType<ByteVectorType>;
|
|
1237
|
-
stateRoots: VectorCompositeType<ByteVectorType>;
|
|
1238
|
-
historicalRoots: ListCompositeType<ByteVectorType>;
|
|
1239
|
-
eth1Data: ContainerType<{
|
|
1240
|
-
depositRoot: ByteVectorType;
|
|
1241
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
1242
|
-
blockHash: ByteVectorType;
|
|
1243
|
-
}>;
|
|
1244
|
-
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
1245
|
-
depositRoot: ByteVectorType;
|
|
1246
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
1247
|
-
blockHash: ByteVectorType;
|
|
1248
|
-
}>>;
|
|
1249
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1250
|
-
validators: ListCompositeType<import("../phase0/validator.js").ValidatorNodeStructType>;
|
|
1251
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
1252
|
-
randaoMixes: VectorCompositeType<ByteVectorType>;
|
|
1253
|
-
slashings: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1254
|
-
previousEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1255
|
-
currentEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1256
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
1257
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
1258
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1259
|
-
root: ByteVectorType;
|
|
1260
|
-
}>;
|
|
1261
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
1262
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1263
|
-
root: ByteVectorType;
|
|
1264
|
-
}>;
|
|
1265
|
-
finalizedCheckpoint: ContainerType<{
|
|
1266
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1267
|
-
root: ByteVectorType;
|
|
1268
|
-
}>;
|
|
1269
|
-
inactivityScores: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1270
|
-
currentSyncCommittee: ContainerType<{
|
|
1271
|
-
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
1272
|
-
aggregatePubkey: ByteVectorType;
|
|
1273
|
-
}>;
|
|
1274
|
-
nextSyncCommittee: ContainerType<{
|
|
1275
|
-
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
1276
|
-
aggregatePubkey: ByteVectorType;
|
|
1277
|
-
}>;
|
|
1278
|
-
latestExecutionPayloadHeader: ContainerType<{
|
|
1279
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1280
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1281
|
-
withdrawalsRoot: ByteVectorType;
|
|
1282
|
-
transactionsRoot: ByteVectorType;
|
|
1283
|
-
parentHash: ByteVectorType;
|
|
1284
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1285
|
-
stateRoot: ByteVectorType;
|
|
1286
|
-
receiptsRoot: ByteVectorType;
|
|
1287
|
-
logsBloom: ByteVectorType;
|
|
1288
|
-
prevRandao: ByteVectorType;
|
|
1289
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1290
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1291
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1292
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1293
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1294
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1295
|
-
blockHash: ByteVectorType;
|
|
1296
|
-
}>;
|
|
1297
|
-
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1298
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1299
|
-
historicalSummaries: ListCompositeType<ContainerType<{
|
|
1300
|
-
blockSummaryRoot: ByteVectorType;
|
|
1301
|
-
stateSummaryRoot: ByteVectorType;
|
|
1302
|
-
}>>;
|
|
1303
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
1304
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
1305
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
1306
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
1307
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
1308
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
1309
|
-
pendingDeposits: ListCompositeType<ContainerType<{
|
|
1310
|
-
pubkey: ByteVectorType;
|
|
1311
|
-
withdrawalCredentials: ByteVectorType;
|
|
1312
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1313
|
-
signature: ByteVectorType;
|
|
1314
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
506
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1315
507
|
}>>;
|
|
1316
508
|
pendingPartialWithdrawals: ListCompositeType<ContainerType<{
|
|
1317
509
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1323,372 +515,6 @@ export declare const BeaconState: ContainerType<{
|
|
|
1323
515
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1324
516
|
}>>;
|
|
1325
517
|
}>;
|
|
1326
|
-
export declare const LightClientHeader: ContainerType<{
|
|
1327
|
-
beacon: ContainerType<{
|
|
1328
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1329
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1330
|
-
parentRoot: ByteVectorType;
|
|
1331
|
-
stateRoot: ByteVectorType;
|
|
1332
|
-
bodyRoot: ByteVectorType;
|
|
1333
|
-
}>;
|
|
1334
|
-
execution: ContainerType<{
|
|
1335
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1336
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1337
|
-
withdrawalsRoot: ByteVectorType;
|
|
1338
|
-
transactionsRoot: ByteVectorType;
|
|
1339
|
-
parentHash: ByteVectorType;
|
|
1340
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1341
|
-
stateRoot: ByteVectorType;
|
|
1342
|
-
receiptsRoot: ByteVectorType;
|
|
1343
|
-
logsBloom: ByteVectorType;
|
|
1344
|
-
prevRandao: ByteVectorType;
|
|
1345
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1346
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1347
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1348
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1349
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1350
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1351
|
-
blockHash: ByteVectorType;
|
|
1352
|
-
}>;
|
|
1353
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1354
|
-
}>;
|
|
1355
|
-
export declare const LightClientBootstrap: ContainerType<{
|
|
1356
|
-
header: ContainerType<{
|
|
1357
|
-
beacon: ContainerType<{
|
|
1358
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1359
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1360
|
-
parentRoot: ByteVectorType;
|
|
1361
|
-
stateRoot: ByteVectorType;
|
|
1362
|
-
bodyRoot: ByteVectorType;
|
|
1363
|
-
}>;
|
|
1364
|
-
execution: ContainerType<{
|
|
1365
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1366
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1367
|
-
withdrawalsRoot: ByteVectorType;
|
|
1368
|
-
transactionsRoot: ByteVectorType;
|
|
1369
|
-
parentHash: ByteVectorType;
|
|
1370
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1371
|
-
stateRoot: ByteVectorType;
|
|
1372
|
-
receiptsRoot: ByteVectorType;
|
|
1373
|
-
logsBloom: ByteVectorType;
|
|
1374
|
-
prevRandao: ByteVectorType;
|
|
1375
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1376
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1377
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1378
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1379
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1380
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1381
|
-
blockHash: ByteVectorType;
|
|
1382
|
-
}>;
|
|
1383
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1384
|
-
}>;
|
|
1385
|
-
currentSyncCommittee: ContainerType<{
|
|
1386
|
-
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
1387
|
-
aggregatePubkey: ByteVectorType;
|
|
1388
|
-
}>;
|
|
1389
|
-
currentSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
|
|
1390
|
-
}>;
|
|
1391
|
-
export declare const LightClientUpdate: ContainerType<{
|
|
1392
|
-
attestedHeader: ContainerType<{
|
|
1393
|
-
beacon: ContainerType<{
|
|
1394
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1395
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1396
|
-
parentRoot: ByteVectorType;
|
|
1397
|
-
stateRoot: ByteVectorType;
|
|
1398
|
-
bodyRoot: ByteVectorType;
|
|
1399
|
-
}>;
|
|
1400
|
-
execution: ContainerType<{
|
|
1401
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1402
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1403
|
-
withdrawalsRoot: ByteVectorType;
|
|
1404
|
-
transactionsRoot: ByteVectorType;
|
|
1405
|
-
parentHash: ByteVectorType;
|
|
1406
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1407
|
-
stateRoot: ByteVectorType;
|
|
1408
|
-
receiptsRoot: ByteVectorType;
|
|
1409
|
-
logsBloom: ByteVectorType;
|
|
1410
|
-
prevRandao: ByteVectorType;
|
|
1411
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1412
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1413
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1414
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1415
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1416
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1417
|
-
blockHash: ByteVectorType;
|
|
1418
|
-
}>;
|
|
1419
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1420
|
-
}>;
|
|
1421
|
-
nextSyncCommittee: ContainerType<{
|
|
1422
|
-
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
1423
|
-
aggregatePubkey: ByteVectorType;
|
|
1424
|
-
}>;
|
|
1425
|
-
nextSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
|
|
1426
|
-
finalizedHeader: ContainerType<{
|
|
1427
|
-
beacon: ContainerType<{
|
|
1428
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1429
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1430
|
-
parentRoot: ByteVectorType;
|
|
1431
|
-
stateRoot: ByteVectorType;
|
|
1432
|
-
bodyRoot: ByteVectorType;
|
|
1433
|
-
}>;
|
|
1434
|
-
execution: ContainerType<{
|
|
1435
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1436
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1437
|
-
withdrawalsRoot: ByteVectorType;
|
|
1438
|
-
transactionsRoot: ByteVectorType;
|
|
1439
|
-
parentHash: ByteVectorType;
|
|
1440
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1441
|
-
stateRoot: ByteVectorType;
|
|
1442
|
-
receiptsRoot: ByteVectorType;
|
|
1443
|
-
logsBloom: ByteVectorType;
|
|
1444
|
-
prevRandao: ByteVectorType;
|
|
1445
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1446
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1447
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1448
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1449
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1450
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1451
|
-
blockHash: ByteVectorType;
|
|
1452
|
-
}>;
|
|
1453
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1454
|
-
}>;
|
|
1455
|
-
finalityBranch: VectorCompositeType<ByteVectorType>;
|
|
1456
|
-
syncAggregate: ContainerType<{
|
|
1457
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1458
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1459
|
-
}>;
|
|
1460
|
-
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1461
|
-
}>;
|
|
1462
|
-
export declare const LightClientFinalityUpdate: ContainerType<{
|
|
1463
|
-
attestedHeader: ContainerType<{
|
|
1464
|
-
beacon: ContainerType<{
|
|
1465
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1466
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1467
|
-
parentRoot: ByteVectorType;
|
|
1468
|
-
stateRoot: ByteVectorType;
|
|
1469
|
-
bodyRoot: ByteVectorType;
|
|
1470
|
-
}>;
|
|
1471
|
-
execution: ContainerType<{
|
|
1472
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1473
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1474
|
-
withdrawalsRoot: ByteVectorType;
|
|
1475
|
-
transactionsRoot: ByteVectorType;
|
|
1476
|
-
parentHash: ByteVectorType;
|
|
1477
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1478
|
-
stateRoot: ByteVectorType;
|
|
1479
|
-
receiptsRoot: ByteVectorType;
|
|
1480
|
-
logsBloom: ByteVectorType;
|
|
1481
|
-
prevRandao: ByteVectorType;
|
|
1482
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1483
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1484
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1485
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1486
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1487
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1488
|
-
blockHash: ByteVectorType;
|
|
1489
|
-
}>;
|
|
1490
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1491
|
-
}>;
|
|
1492
|
-
finalizedHeader: ContainerType<{
|
|
1493
|
-
beacon: ContainerType<{
|
|
1494
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1495
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1496
|
-
parentRoot: ByteVectorType;
|
|
1497
|
-
stateRoot: ByteVectorType;
|
|
1498
|
-
bodyRoot: ByteVectorType;
|
|
1499
|
-
}>;
|
|
1500
|
-
execution: ContainerType<{
|
|
1501
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1502
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1503
|
-
withdrawalsRoot: ByteVectorType;
|
|
1504
|
-
transactionsRoot: ByteVectorType;
|
|
1505
|
-
parentHash: ByteVectorType;
|
|
1506
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1507
|
-
stateRoot: ByteVectorType;
|
|
1508
|
-
receiptsRoot: ByteVectorType;
|
|
1509
|
-
logsBloom: ByteVectorType;
|
|
1510
|
-
prevRandao: ByteVectorType;
|
|
1511
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1512
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1513
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1514
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1515
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1516
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1517
|
-
blockHash: ByteVectorType;
|
|
1518
|
-
}>;
|
|
1519
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1520
|
-
}>;
|
|
1521
|
-
finalityBranch: VectorCompositeType<ByteVectorType>;
|
|
1522
|
-
syncAggregate: ContainerType<{
|
|
1523
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1524
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1525
|
-
}>;
|
|
1526
|
-
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1527
|
-
}>;
|
|
1528
|
-
export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
1529
|
-
attestedHeader: ContainerType<{
|
|
1530
|
-
beacon: ContainerType<{
|
|
1531
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1532
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1533
|
-
parentRoot: ByteVectorType;
|
|
1534
|
-
stateRoot: ByteVectorType;
|
|
1535
|
-
bodyRoot: ByteVectorType;
|
|
1536
|
-
}>;
|
|
1537
|
-
execution: ContainerType<{
|
|
1538
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1539
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1540
|
-
withdrawalsRoot: ByteVectorType;
|
|
1541
|
-
transactionsRoot: ByteVectorType;
|
|
1542
|
-
parentHash: ByteVectorType;
|
|
1543
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1544
|
-
stateRoot: ByteVectorType;
|
|
1545
|
-
receiptsRoot: ByteVectorType;
|
|
1546
|
-
logsBloom: ByteVectorType;
|
|
1547
|
-
prevRandao: ByteVectorType;
|
|
1548
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1549
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1550
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1551
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1552
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1553
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1554
|
-
blockHash: ByteVectorType;
|
|
1555
|
-
}>;
|
|
1556
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1557
|
-
}>;
|
|
1558
|
-
syncAggregate: ContainerType<{
|
|
1559
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1560
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1561
|
-
}>;
|
|
1562
|
-
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1563
|
-
}>;
|
|
1564
|
-
export declare const LightClientStore: ContainerType<{
|
|
1565
|
-
snapshot: ContainerType<{
|
|
1566
|
-
header: ContainerType<{
|
|
1567
|
-
beacon: ContainerType<{
|
|
1568
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1569
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1570
|
-
parentRoot: ByteVectorType;
|
|
1571
|
-
stateRoot: ByteVectorType;
|
|
1572
|
-
bodyRoot: ByteVectorType;
|
|
1573
|
-
}>;
|
|
1574
|
-
execution: ContainerType<{
|
|
1575
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1576
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1577
|
-
withdrawalsRoot: ByteVectorType;
|
|
1578
|
-
transactionsRoot: ByteVectorType;
|
|
1579
|
-
parentHash: ByteVectorType;
|
|
1580
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1581
|
-
stateRoot: ByteVectorType;
|
|
1582
|
-
receiptsRoot: ByteVectorType;
|
|
1583
|
-
logsBloom: ByteVectorType;
|
|
1584
|
-
prevRandao: ByteVectorType;
|
|
1585
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1586
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1587
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1588
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1589
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1590
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1591
|
-
blockHash: ByteVectorType;
|
|
1592
|
-
}>;
|
|
1593
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1594
|
-
}>;
|
|
1595
|
-
currentSyncCommittee: ContainerType<{
|
|
1596
|
-
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
1597
|
-
aggregatePubkey: ByteVectorType;
|
|
1598
|
-
}>;
|
|
1599
|
-
currentSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
|
|
1600
|
-
}>;
|
|
1601
|
-
validUpdates: ListCompositeType<ContainerType<{
|
|
1602
|
-
attestedHeader: ContainerType<{
|
|
1603
|
-
beacon: ContainerType<{
|
|
1604
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1605
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1606
|
-
parentRoot: ByteVectorType;
|
|
1607
|
-
stateRoot: ByteVectorType;
|
|
1608
|
-
bodyRoot: ByteVectorType;
|
|
1609
|
-
}>;
|
|
1610
|
-
execution: ContainerType<{
|
|
1611
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1612
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1613
|
-
withdrawalsRoot: ByteVectorType;
|
|
1614
|
-
transactionsRoot: ByteVectorType;
|
|
1615
|
-
parentHash: ByteVectorType;
|
|
1616
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1617
|
-
stateRoot: ByteVectorType;
|
|
1618
|
-
receiptsRoot: ByteVectorType;
|
|
1619
|
-
logsBloom: ByteVectorType;
|
|
1620
|
-
prevRandao: ByteVectorType;
|
|
1621
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1622
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1623
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1624
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1625
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1626
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1627
|
-
blockHash: ByteVectorType;
|
|
1628
|
-
}>;
|
|
1629
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1630
|
-
}>;
|
|
1631
|
-
nextSyncCommittee: ContainerType<{
|
|
1632
|
-
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
1633
|
-
aggregatePubkey: ByteVectorType;
|
|
1634
|
-
}>;
|
|
1635
|
-
nextSyncCommitteeBranch: VectorCompositeType<ByteVectorType>;
|
|
1636
|
-
finalizedHeader: ContainerType<{
|
|
1637
|
-
beacon: ContainerType<{
|
|
1638
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1639
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1640
|
-
parentRoot: ByteVectorType;
|
|
1641
|
-
stateRoot: ByteVectorType;
|
|
1642
|
-
bodyRoot: ByteVectorType;
|
|
1643
|
-
}>;
|
|
1644
|
-
execution: ContainerType<{
|
|
1645
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1646
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1647
|
-
withdrawalsRoot: ByteVectorType;
|
|
1648
|
-
transactionsRoot: ByteVectorType;
|
|
1649
|
-
parentHash: ByteVectorType;
|
|
1650
|
-
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1651
|
-
stateRoot: ByteVectorType;
|
|
1652
|
-
receiptsRoot: ByteVectorType;
|
|
1653
|
-
logsBloom: ByteVectorType;
|
|
1654
|
-
prevRandao: ByteVectorType;
|
|
1655
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1656
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1657
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1658
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1659
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1660
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1661
|
-
blockHash: ByteVectorType;
|
|
1662
|
-
}>;
|
|
1663
|
-
executionBranch: VectorCompositeType<ByteVectorType>;
|
|
1664
|
-
}>;
|
|
1665
|
-
finalityBranch: VectorCompositeType<ByteVectorType>;
|
|
1666
|
-
syncAggregate: ContainerType<{
|
|
1667
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1668
|
-
syncCommitteeSignature: ByteVectorType;
|
|
1669
|
-
}>;
|
|
1670
|
-
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1671
|
-
}>>;
|
|
1672
|
-
}>;
|
|
1673
|
-
export declare const SSEPayloadAttributes: ContainerType<{
|
|
1674
|
-
payloadAttributes: ContainerType<{
|
|
1675
|
-
parentBeaconBlockRoot: ByteVectorType;
|
|
1676
|
-
withdrawals: ListCompositeType<ContainerType<{
|
|
1677
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
1678
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1679
|
-
address: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
1680
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1681
|
-
}>>;
|
|
1682
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1683
|
-
prevRandao: ByteVectorType;
|
|
1684
|
-
suggestedFeeRecipient: import("../index.js").StringType<string>;
|
|
1685
|
-
}>;
|
|
1686
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1687
|
-
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
1688
|
-
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1689
|
-
parentBlockRoot: ByteVectorType;
|
|
1690
|
-
parentBlockHash: ByteVectorType;
|
|
1691
|
-
}>;
|
|
1692
518
|
export declare const BlockContents: ContainerType<{
|
|
1693
519
|
block: ContainerType<{
|
|
1694
520
|
body: ContainerType<{
|