@lodestar/beacon-node 1.28.0-dev.2fc54906b3 → 1.28.0-dev.51efa3d604
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/network/gossip/topic.d.ts +18 -18
- package/package.json +24 -24
|
@@ -273,23 +273,6 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
273
273
|
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
274
274
|
}>;
|
|
275
275
|
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
276
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
294
277
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
295
278
|
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1877,7 +1860,24 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1877
1860
|
}>;
|
|
1878
1861
|
}>;
|
|
1879
1862
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1880
|
-
}>> | import("@chainsafe/ssz").
|
|
1863
|
+
}>> | import("@chainsafe/ssz").ContainerType<{
|
|
1864
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
1865
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1866
|
+
contribution: import("@chainsafe/ssz").ContainerType<{
|
|
1867
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1868
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1869
|
+
subcommitteeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1870
|
+
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
1871
|
+
signature: import(
|
|
1872
|
+
/**
|
|
1873
|
+
* Stringify a GossipTopic into a spec-ed formated partial topic string
|
|
1874
|
+
*/
|
|
1875
|
+
"@chainsafe/ssz").ByteVectorType;
|
|
1876
|
+
}>;
|
|
1877
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
1878
|
+
}>;
|
|
1879
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1880
|
+
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
1881
1881
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
1882
1882
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
1883
1883
|
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.28.0-dev.
|
|
14
|
+
"version": "1.28.0-dev.51efa3d604",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -78,18 +78,18 @@
|
|
|
78
78
|
"lint": "biome check src/ test/",
|
|
79
79
|
"lint:fix": "yarn run lint --write",
|
|
80
80
|
"test": "yarn test:unit && yarn test:e2e",
|
|
81
|
-
"test:unit:minimal": "LODESTAR_PRESET=minimal vitest
|
|
82
|
-
"test:unit:mainnet": "LODESTAR_PRESET=mainnet vitest
|
|
81
|
+
"test:unit:minimal": "LODESTAR_PRESET=minimal vitest run --dir test/unit/",
|
|
82
|
+
"test:unit:mainnet": "LODESTAR_PRESET=mainnet vitest run --dir test/unit-mainnet",
|
|
83
83
|
"test:unit": "wrapper() { yarn test:unit:minimal $@ && yarn test:unit:mainnet $@; }; wrapper",
|
|
84
|
-
"test:e2e": "LODESTAR_PRESET=minimal vitest
|
|
85
|
-
"test:sim": "vitest
|
|
86
|
-
"test:sim:mergemock": "vitest
|
|
87
|
-
"test:sim:blobs": "vitest
|
|
84
|
+
"test:e2e": "LODESTAR_PRESET=minimal vitest run --config vitest.e2e.config.ts --dir test/e2e",
|
|
85
|
+
"test:sim": "vitest run test/sim/**/*.test.ts",
|
|
86
|
+
"test:sim:mergemock": "vitest run test/sim/mergemock.test.ts",
|
|
87
|
+
"test:sim:blobs": "vitest run test/sim/4844-interop.test.ts",
|
|
88
88
|
"download-spec-tests": "node --loader=ts-node/esm test/spec/downloadTests.ts",
|
|
89
|
-
"test:spec:bls": "vitest
|
|
90
|
-
"test:spec:general": "vitest
|
|
91
|
-
"test:spec:minimal": "LODESTAR_PRESET=minimal vitest
|
|
92
|
-
"test:spec:mainnet": "LODESTAR_PRESET=mainnet vitest
|
|
89
|
+
"test:spec:bls": "vitest run --config vitest.spec.config.ts --dir test/spec/bls/",
|
|
90
|
+
"test:spec:general": "vitest run --config vitest.spec.config.ts --dir test/spec/general/",
|
|
91
|
+
"test:spec:minimal": "LODESTAR_PRESET=minimal vitest run --config vitest.spec.config.ts --dir test/spec/presets/",
|
|
92
|
+
"test:spec:mainnet": "LODESTAR_PRESET=mainnet vitest run --config vitest.spec.config.ts --dir test/spec/presets/",
|
|
93
93
|
"test:spec": "yarn test:spec:bls && yarn test:spec:general && yarn test:spec:minimal && yarn test:spec:mainnet",
|
|
94
94
|
"check-readme": "typescript-docs-verifier"
|
|
95
95
|
},
|
|
@@ -120,18 +120,18 @@
|
|
|
120
120
|
"@libp2p/peer-id-factory": "^4.1.0",
|
|
121
121
|
"@libp2p/prometheus-metrics": "^3.0.21",
|
|
122
122
|
"@libp2p/tcp": "9.0.23",
|
|
123
|
-
"@lodestar/api": "1.28.0-dev.
|
|
124
|
-
"@lodestar/config": "1.28.0-dev.
|
|
125
|
-
"@lodestar/db": "1.28.0-dev.
|
|
126
|
-
"@lodestar/fork-choice": "1.28.0-dev.
|
|
127
|
-
"@lodestar/light-client": "1.28.0-dev.
|
|
128
|
-
"@lodestar/logger": "1.28.0-dev.
|
|
129
|
-
"@lodestar/params": "1.28.0-dev.
|
|
130
|
-
"@lodestar/reqresp": "1.28.0-dev.
|
|
131
|
-
"@lodestar/state-transition": "1.28.0-dev.
|
|
132
|
-
"@lodestar/types": "1.28.0-dev.
|
|
133
|
-
"@lodestar/utils": "1.28.0-dev.
|
|
134
|
-
"@lodestar/validator": "1.28.0-dev.
|
|
123
|
+
"@lodestar/api": "1.28.0-dev.51efa3d604",
|
|
124
|
+
"@lodestar/config": "1.28.0-dev.51efa3d604",
|
|
125
|
+
"@lodestar/db": "1.28.0-dev.51efa3d604",
|
|
126
|
+
"@lodestar/fork-choice": "1.28.0-dev.51efa3d604",
|
|
127
|
+
"@lodestar/light-client": "1.28.0-dev.51efa3d604",
|
|
128
|
+
"@lodestar/logger": "1.28.0-dev.51efa3d604",
|
|
129
|
+
"@lodestar/params": "1.28.0-dev.51efa3d604",
|
|
130
|
+
"@lodestar/reqresp": "1.28.0-dev.51efa3d604",
|
|
131
|
+
"@lodestar/state-transition": "1.28.0-dev.51efa3d604",
|
|
132
|
+
"@lodestar/types": "1.28.0-dev.51efa3d604",
|
|
133
|
+
"@lodestar/utils": "1.28.0-dev.51efa3d604",
|
|
134
|
+
"@lodestar/validator": "1.28.0-dev.51efa3d604",
|
|
135
135
|
"@multiformats/multiaddr": "^12.1.3",
|
|
136
136
|
"c-kzg": "^2.1.2",
|
|
137
137
|
"datastore-core": "^9.1.1",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"beacon",
|
|
169
169
|
"blockchain"
|
|
170
170
|
],
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "916621c9542beadaac6e26776c4baf9fe2774ec7"
|
|
172
172
|
}
|