@lodestar/types 1.34.0-dev.d5a4e7a09c → 1.34.0-dev.ee99d3fa20
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 +685 -3
- package/lib/fulu/sszTypes.js +33 -5
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts +14 -2
- package/lib/sszTypes.d.ts +10985 -10983
- package/lib/types.d.ts +12 -4
- package/package.json +3 -3
package/lib/types.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ type TypesByFork = {
|
|
|
49
49
|
BeaconState: phase0.BeaconState;
|
|
50
50
|
SignedBeaconBlock: phase0.SignedBeaconBlock;
|
|
51
51
|
Metadata: phase0.Metadata;
|
|
52
|
+
Status: phase0.Status;
|
|
52
53
|
SingleAttestation: phase0.Attestation;
|
|
53
54
|
Attestation: phase0.Attestation;
|
|
54
55
|
IndexedAttestation: phase0.IndexedAttestation;
|
|
@@ -65,6 +66,7 @@ type TypesByFork = {
|
|
|
65
66
|
BeaconState: altair.BeaconState;
|
|
66
67
|
SignedBeaconBlock: altair.SignedBeaconBlock;
|
|
67
68
|
Metadata: altair.Metadata;
|
|
69
|
+
Status: phase0.Status;
|
|
68
70
|
LightClientHeader: altair.LightClientHeader;
|
|
69
71
|
LightClientBootstrap: altair.LightClientBootstrap;
|
|
70
72
|
LightClientUpdate: altair.LightClientUpdate;
|
|
@@ -89,6 +91,7 @@ type TypesByFork = {
|
|
|
89
91
|
BeaconState: bellatrix.BeaconState;
|
|
90
92
|
SignedBeaconBlock: bellatrix.SignedBeaconBlock;
|
|
91
93
|
Metadata: altair.Metadata;
|
|
94
|
+
Status: phase0.Status;
|
|
92
95
|
LightClientHeader: altair.LightClientHeader;
|
|
93
96
|
LightClientBootstrap: altair.LightClientBootstrap;
|
|
94
97
|
LightClientUpdate: altair.LightClientUpdate;
|
|
@@ -121,6 +124,7 @@ type TypesByFork = {
|
|
|
121
124
|
BeaconState: capella.BeaconState;
|
|
122
125
|
SignedBeaconBlock: capella.SignedBeaconBlock;
|
|
123
126
|
Metadata: altair.Metadata;
|
|
127
|
+
Status: phase0.Status;
|
|
124
128
|
LightClientHeader: capella.LightClientHeader;
|
|
125
129
|
LightClientBootstrap: capella.LightClientBootstrap;
|
|
126
130
|
LightClientUpdate: capella.LightClientUpdate;
|
|
@@ -153,6 +157,7 @@ type TypesByFork = {
|
|
|
153
157
|
BeaconState: deneb.BeaconState;
|
|
154
158
|
SignedBeaconBlock: deneb.SignedBeaconBlock;
|
|
155
159
|
Metadata: altair.Metadata;
|
|
160
|
+
Status: phase0.Status;
|
|
156
161
|
LightClientHeader: deneb.LightClientHeader;
|
|
157
162
|
LightClientBootstrap: deneb.LightClientBootstrap;
|
|
158
163
|
LightClientUpdate: deneb.LightClientUpdate;
|
|
@@ -190,6 +195,7 @@ type TypesByFork = {
|
|
|
190
195
|
BeaconState: electra.BeaconState;
|
|
191
196
|
SignedBeaconBlock: electra.SignedBeaconBlock;
|
|
192
197
|
Metadata: altair.Metadata;
|
|
198
|
+
Status: phase0.Status;
|
|
193
199
|
LightClientHeader: deneb.LightClientHeader;
|
|
194
200
|
LightClientBootstrap: electra.LightClientBootstrap;
|
|
195
201
|
LightClientUpdate: electra.LightClientUpdate;
|
|
@@ -228,6 +234,7 @@ type TypesByFork = {
|
|
|
228
234
|
BeaconState: fulu.BeaconState;
|
|
229
235
|
SignedBeaconBlock: electra.SignedBeaconBlock;
|
|
230
236
|
Metadata: fulu.Metadata;
|
|
237
|
+
Status: fulu.Status;
|
|
231
238
|
LightClientHeader: deneb.LightClientHeader;
|
|
232
239
|
LightClientBootstrap: electra.LightClientBootstrap;
|
|
233
240
|
LightClientUpdate: electra.LightClientUpdate;
|
|
@@ -237,13 +244,13 @@ type TypesByFork = {
|
|
|
237
244
|
BlindedBeaconBlock: electra.BlindedBeaconBlock;
|
|
238
245
|
BlindedBeaconBlockBody: electra.BlindedBeaconBlockBody;
|
|
239
246
|
SignedBlindedBeaconBlock: electra.SignedBlindedBeaconBlock;
|
|
240
|
-
ExecutionPayload:
|
|
241
|
-
ExecutionPayloadHeader:
|
|
247
|
+
ExecutionPayload: deneb.ExecutionPayload;
|
|
248
|
+
ExecutionPayloadHeader: deneb.ExecutionPayloadHeader;
|
|
242
249
|
BuilderBid: electra.BuilderBid;
|
|
243
250
|
SignedBuilderBid: electra.SignedBuilderBid;
|
|
244
251
|
SSEPayloadAttributes: electra.SSEPayloadAttributes;
|
|
245
|
-
BlockContents:
|
|
246
|
-
SignedBlockContents:
|
|
252
|
+
BlockContents: fulu.BlockContents;
|
|
253
|
+
SignedBlockContents: fulu.SignedBlockContents;
|
|
247
254
|
ExecutionPayloadAndBlobsBundle: deneb.ExecutionPayloadAndBlobsBundle;
|
|
248
255
|
BlobsBundle: deneb.BlobsBundle;
|
|
249
256
|
Contents: deneb.Contents;
|
|
@@ -289,6 +296,7 @@ export type SyncCommittee<F extends ForkPostAltair = ForkPostAltair> = TypesByFo
|
|
|
289
296
|
export type SyncAggregate<F extends ForkPostAltair = ForkPostAltair> = TypesByFork[F]["SyncAggregate"];
|
|
290
297
|
export type BeaconState<F extends ForkName = ForkAll> = TypesByFork[F]["BeaconState"];
|
|
291
298
|
export type Metadata<F extends ForkName = ForkAll> = TypesByFork[F]["Metadata"];
|
|
299
|
+
export type Status<F extends ForkName = ForkAll> = TypesByFork[F]["Status"];
|
|
292
300
|
export type BuilderBid<F extends ForkPostBellatrix = ForkPostBellatrix> = TypesByFork[F]["BuilderBid"];
|
|
293
301
|
export type SignedBuilderBid<F extends ForkPostBellatrix = ForkPostBellatrix> = TypesByFork[F]["SignedBuilderBid"];
|
|
294
302
|
export type SSEPayloadAttributes<F extends ForkPostBellatrix = ForkPostBellatrix> = TypesByFork[F]["SSEPayloadAttributes"];
|
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.34.0-dev.
|
|
14
|
+
"version": "1.34.0-dev.ee99d3fa20",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"types": "lib/index.d.ts",
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@chainsafe/ssz": "^1.2.1",
|
|
72
|
-
"@lodestar/params": "1.34.0-dev.
|
|
72
|
+
"@lodestar/params": "1.34.0-dev.ee99d3fa20",
|
|
73
73
|
"ethereum-cryptography": "^2.0.0"
|
|
74
74
|
},
|
|
75
75
|
"keywords": [
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"beacon",
|
|
79
79
|
"blockchain"
|
|
80
80
|
],
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "6490bcb5695dc8a95d9c3410fd7eb45fba7b4f36"
|
|
82
82
|
}
|