@lodestar/beacon-node 1.30.0-dev.ca57e6c9b2 → 1.30.0-dev.d85e73aa12
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/chain/chain.d.ts +23 -0
- package/lib/network/gossip/topic.d.ts +181 -152
- package/package.json +15 -15
package/lib/chain/chain.d.ts
CHANGED
|
@@ -139,6 +139,29 @@ export declare class BeaconChain implements IBeaconChain {
|
|
|
139
139
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
140
140
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
141
141
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
142
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
143
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
144
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
145
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
146
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
147
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
148
|
+
address: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
149
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
150
|
+
}>>;
|
|
151
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
152
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
153
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
154
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
155
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
156
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
157
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
158
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
159
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
160
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
161
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
162
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
163
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
164
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
142
165
|
}> | null>;
|
|
143
166
|
readonly producedBlindedBlockRoot: Set<string>;
|
|
144
167
|
readonly blacklistedBlocks: Map<RootHex, Slot | null>;
|
|
@@ -127,118 +127,6 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
127
127
|
}>;
|
|
128
128
|
}>;
|
|
129
129
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
130
|
-
}> | import("@chainsafe/ssz").ContainerType<{
|
|
131
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
132
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
133
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
134
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
135
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
136
|
-
body: import("@chainsafe/ssz").ContainerType<{
|
|
137
|
-
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
138
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
139
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
140
|
-
}>;
|
|
141
|
-
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
142
|
-
eth1Data: import("@chainsafe/ssz").ContainerType<{
|
|
143
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
144
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
145
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
146
|
-
}>;
|
|
147
|
-
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
148
|
-
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
149
|
-
signedHeader1: import("@chainsafe/ssz").ContainerType<{
|
|
150
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
151
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
152
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
153
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
154
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
155
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
156
|
-
}>;
|
|
157
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
158
|
-
}>;
|
|
159
|
-
signedHeader2: import("@chainsafe/ssz").ContainerType<{
|
|
160
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
161
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
162
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
163
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
164
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
165
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
166
|
-
}>;
|
|
167
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
168
|
-
}>;
|
|
169
|
-
}>>;
|
|
170
|
-
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
171
|
-
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
172
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
173
|
-
data: import("@chainsafe/ssz").ContainerType<{
|
|
174
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
175
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
176
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
177
|
-
source: import("@chainsafe/ssz").ContainerType<{
|
|
178
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
179
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
180
|
-
}>;
|
|
181
|
-
target: import("@chainsafe/ssz").ContainerType<{
|
|
182
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
183
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
184
|
-
}>;
|
|
185
|
-
}>;
|
|
186
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
187
|
-
}>;
|
|
188
|
-
attestation2: import("@chainsafe/ssz").ContainerType<{
|
|
189
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
190
|
-
data: import("@chainsafe/ssz").ContainerType<{
|
|
191
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
192
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
193
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
194
|
-
source: import("@chainsafe/ssz").ContainerType<{
|
|
195
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
196
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
197
|
-
}>;
|
|
198
|
-
target: import("@chainsafe/ssz").ContainerType<{
|
|
199
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
200
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
201
|
-
}>;
|
|
202
|
-
}>;
|
|
203
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
204
|
-
}>;
|
|
205
|
-
}>>;
|
|
206
|
-
attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
207
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
208
|
-
data: import("@chainsafe/ssz").ContainerType<{
|
|
209
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
210
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
211
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
212
|
-
source: import("@chainsafe/ssz").ContainerType<{
|
|
213
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
214
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
215
|
-
}>;
|
|
216
|
-
target: import("@chainsafe/ssz").ContainerType<{
|
|
217
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
218
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
219
|
-
}>;
|
|
220
|
-
}>;
|
|
221
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
222
|
-
}>>;
|
|
223
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
224
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
225
|
-
data: import("@chainsafe/ssz").ContainerType<{
|
|
226
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
227
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
228
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
229
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
230
|
-
}>;
|
|
231
|
-
}>>;
|
|
232
|
-
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
233
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
234
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
235
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
236
|
-
}>;
|
|
237
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
238
|
-
}>>;
|
|
239
|
-
}>;
|
|
240
|
-
}>;
|
|
241
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
242
130
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
243
131
|
signedHeader1: import("@chainsafe/ssz").ContainerType<{
|
|
244
132
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -273,44 +161,6 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
273
161
|
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
274
162
|
}>;
|
|
275
163
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
276
|
-
}> | import("@chainsafe/ssz").ContainerType<{
|
|
277
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
278
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
279
|
-
contribution: import("@chainsafe/ssz").ContainerType<{
|
|
280
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
281
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
282
|
-
subcommitteeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
283
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
284
|
-
signature: import(
|
|
285
|
-
/**
|
|
286
|
-
* Stringify a GossipTopic into a spec-ed formated partial topic string
|
|
287
|
-
*/
|
|
288
|
-
"@chainsafe/ssz").ByteVectorType;
|
|
289
|
-
}>;
|
|
290
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
291
|
-
}>;
|
|
292
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
293
|
-
}> | import("@chainsafe/ssz").ContainerType<{
|
|
294
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
295
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
296
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
297
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
298
|
-
signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
|
|
299
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
300
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
301
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
302
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
303
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
304
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
305
|
-
}>;
|
|
306
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
307
|
-
}>;
|
|
308
|
-
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
309
|
-
}> | import("@chainsafe/ssz").ContainerType<{
|
|
310
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
311
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
312
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
313
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
314
164
|
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
315
165
|
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
316
166
|
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -1046,7 +896,168 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1046
896
|
}>;
|
|
1047
897
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1048
898
|
}>;
|
|
1049
|
-
}>> | import("@chainsafe/ssz").
|
|
899
|
+
}>> | import("@chainsafe/ssz").ContainerType<{
|
|
900
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
901
|
+
body: import("@chainsafe/ssz").ContainerType<{
|
|
902
|
+
executionPayload: import("@chainsafe/ssz").ContainerType<{
|
|
903
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
904
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
905
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
906
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
907
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
908
|
+
address: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
909
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
910
|
+
}>>;
|
|
911
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
912
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
913
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
914
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
915
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
916
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
917
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
918
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
919
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
920
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
921
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
922
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
923
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
924
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
925
|
+
}>;
|
|
926
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
927
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
928
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
929
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
930
|
+
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
931
|
+
}>;
|
|
932
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
933
|
+
}>>;
|
|
934
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
935
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
936
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
937
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
938
|
+
}>;
|
|
939
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
940
|
+
eth1Data: import("@chainsafe/ssz").ContainerType<{
|
|
941
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
942
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
943
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
944
|
+
}>;
|
|
945
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
946
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
947
|
+
signedHeader1: import("@chainsafe/ssz").ContainerType<{
|
|
948
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
949
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
950
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
951
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
952
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
953
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
954
|
+
}>;
|
|
955
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
956
|
+
}>;
|
|
957
|
+
signedHeader2: import("@chainsafe/ssz").ContainerType<{
|
|
958
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
959
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
960
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
961
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
962
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
963
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
964
|
+
}>;
|
|
965
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
966
|
+
}>;
|
|
967
|
+
}>>;
|
|
968
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
969
|
+
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
970
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
971
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
972
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
973
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
974
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
975
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
976
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
977
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
978
|
+
}>;
|
|
979
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
980
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
981
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
982
|
+
}>;
|
|
983
|
+
}>;
|
|
984
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
985
|
+
}>;
|
|
986
|
+
attestation2: import("@chainsafe/ssz").ContainerType<{
|
|
987
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
988
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
989
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
990
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
991
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
992
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
993
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
994
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
995
|
+
}>;
|
|
996
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
997
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
998
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
999
|
+
}>;
|
|
1000
|
+
}>;
|
|
1001
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1002
|
+
}>;
|
|
1003
|
+
}>>;
|
|
1004
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1005
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
1006
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1007
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1008
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1009
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1010
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1011
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1012
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1013
|
+
}>;
|
|
1014
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1015
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1016
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1017
|
+
}>;
|
|
1018
|
+
}>;
|
|
1019
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1020
|
+
}>>;
|
|
1021
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1022
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1023
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1024
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1025
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1026
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1027
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1028
|
+
}>;
|
|
1029
|
+
}>>;
|
|
1030
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1031
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
1032
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1033
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1034
|
+
}>;
|
|
1035
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1036
|
+
}>>;
|
|
1037
|
+
}>;
|
|
1038
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1039
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1040
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1041
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1042
|
+
}>;
|
|
1043
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1044
|
+
}> | import("@chainsafe/ssz").ContainerType<{
|
|
1045
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1046
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
1047
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
1048
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
1049
|
+
signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
|
|
1050
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
1051
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1052
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1053
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1054
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1055
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1056
|
+
}>;
|
|
1057
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1058
|
+
}>;
|
|
1059
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1060
|
+
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
1050
1061
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
1051
1062
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1052
1063
|
aggregate: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1877,7 +1888,25 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1877
1888
|
}>;
|
|
1878
1889
|
}>;
|
|
1879
1890
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1880
|
-
}>> | import("@chainsafe/ssz").
|
|
1891
|
+
}>> | import("@chainsafe/ssz").ContainerType<{
|
|
1892
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
1893
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1894
|
+
contribution: import("@chainsafe/ssz").ContainerType<{
|
|
1895
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1896
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1897
|
+
subcommitteeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1898
|
+
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
1899
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1900
|
+
}>;
|
|
1901
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
1902
|
+
}>;
|
|
1903
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1904
|
+
}> | import("@chainsafe/ssz").ContainerType<{
|
|
1905
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1906
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1907
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1908
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1909
|
+
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
1881
1910
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
1882
1911
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
1883
1912
|
slot: import("@chainsafe/ssz").UintNumberType;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/ChainSafe/lodestar/issues"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.30.0-dev.
|
|
14
|
+
"version": "1.30.0-dev.d85e73aa12",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"@chainsafe/libp2p-noise": "^16.1.0",
|
|
101
101
|
"@chainsafe/persistent-merkle-tree": "^1.1.0",
|
|
102
102
|
"@chainsafe/prometheus-gc-stats": "^1.0.0",
|
|
103
|
-
"@chainsafe/pubkey-index-map": "
|
|
103
|
+
"@chainsafe/pubkey-index-map": "^3.0.0",
|
|
104
104
|
"@chainsafe/ssz": "^1.2.0",
|
|
105
105
|
"@chainsafe/threads": "^1.11.1",
|
|
106
106
|
"@ethersproject/abi": "^5.7.0",
|
|
@@ -117,18 +117,18 @@
|
|
|
117
117
|
"@libp2p/peer-id": "^5.1.0",
|
|
118
118
|
"@libp2p/prometheus-metrics": "^4.3.15",
|
|
119
119
|
"@libp2p/tcp": "^10.1.8",
|
|
120
|
-
"@lodestar/api": "1.30.0-dev.
|
|
121
|
-
"@lodestar/config": "1.30.0-dev.
|
|
122
|
-
"@lodestar/db": "1.30.0-dev.
|
|
123
|
-
"@lodestar/fork-choice": "1.30.0-dev.
|
|
124
|
-
"@lodestar/light-client": "1.30.0-dev.
|
|
125
|
-
"@lodestar/logger": "1.30.0-dev.
|
|
126
|
-
"@lodestar/params": "1.30.0-dev.
|
|
127
|
-
"@lodestar/reqresp": "1.30.0-dev.
|
|
128
|
-
"@lodestar/state-transition": "1.30.0-dev.
|
|
129
|
-
"@lodestar/types": "1.30.0-dev.
|
|
130
|
-
"@lodestar/utils": "1.30.0-dev.
|
|
131
|
-
"@lodestar/validator": "1.30.0-dev.
|
|
120
|
+
"@lodestar/api": "1.30.0-dev.d85e73aa12",
|
|
121
|
+
"@lodestar/config": "1.30.0-dev.d85e73aa12",
|
|
122
|
+
"@lodestar/db": "1.30.0-dev.d85e73aa12",
|
|
123
|
+
"@lodestar/fork-choice": "1.30.0-dev.d85e73aa12",
|
|
124
|
+
"@lodestar/light-client": "1.30.0-dev.d85e73aa12",
|
|
125
|
+
"@lodestar/logger": "1.30.0-dev.d85e73aa12",
|
|
126
|
+
"@lodestar/params": "1.30.0-dev.d85e73aa12",
|
|
127
|
+
"@lodestar/reqresp": "1.30.0-dev.d85e73aa12",
|
|
128
|
+
"@lodestar/state-transition": "1.30.0-dev.d85e73aa12",
|
|
129
|
+
"@lodestar/types": "1.30.0-dev.d85e73aa12",
|
|
130
|
+
"@lodestar/utils": "1.30.0-dev.d85e73aa12",
|
|
131
|
+
"@lodestar/validator": "1.30.0-dev.d85e73aa12",
|
|
132
132
|
"@multiformats/multiaddr": "^12.1.3",
|
|
133
133
|
"c-kzg": "^2.1.2",
|
|
134
134
|
"datastore-core": "^10.0.2",
|
|
@@ -165,5 +165,5 @@
|
|
|
165
165
|
"beacon",
|
|
166
166
|
"blockchain"
|
|
167
167
|
],
|
|
168
|
-
"gitHead": "
|
|
168
|
+
"gitHead": "9fdde7b824f52d85f7c18fa244d22a1446a12482"
|
|
169
169
|
}
|