@lodestar/reqresp 1.12.0-dev.b79e9baf30 → 1.12.0-dev.bf5d92b132
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/README.md +1 -1
- package/lib/index.d.ts +4 -2
- package/lib/index.js.map +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ async function getReqResp(libp2p: Libp2p, logger: Logger): Promise<void> {
|
|
|
48
48
|
|
|
49
49
|
## What you need
|
|
50
50
|
|
|
51
|
-
You will need to go over the [specification](https://github.com/ethereum/beacon-apis).
|
|
51
|
+
You will need to go over the [specification](https://github.com/ethereum/beacon-apis).
|
|
52
52
|
|
|
53
53
|
## Getting started
|
|
54
54
|
|
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
export { ReqResp
|
|
2
|
-
export {
|
|
1
|
+
export { ReqResp } from "./ReqResp.js";
|
|
2
|
+
export type { ReqRespOpts } from "./ReqResp.js";
|
|
3
|
+
export { getMetrics } from "./metrics.js";
|
|
4
|
+
export type { Metrics, MetricsRegister } from "./metrics.js";
|
|
3
5
|
export { Encoding as ReqRespEncoding } from "./types.js";
|
|
4
6
|
export * from "./types.js";
|
|
5
7
|
export * from "./interface.js";
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,cAAc,CAAC;AAErC,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,OAAO,EAAC,QAAQ,IAAI,eAAe,EAAC,MAAM,YAAY,CAAC,CAAC,uBAAuB;AAC/E,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,OAAO,EAAC,eAAe,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,eAAe,EAAC,MAAM,kBAAkB,CAAC"}
|
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.12.0-dev.
|
|
14
|
+
"version": "1.12.0-dev.bf5d92b132",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -49,16 +49,16 @@
|
|
|
49
49
|
"lint": "eslint --color --ext .ts src/ test/",
|
|
50
50
|
"lint:fix": "yarn run lint --fix",
|
|
51
51
|
"pretest": "yarn run check-types",
|
|
52
|
-
"test": "yarn test:unit
|
|
52
|
+
"test": "yarn test:unit",
|
|
53
53
|
"test:unit": "nyc --cache-dir .nyc_output/.cache -e .ts mocha 'test/unit/**/*.test.ts'",
|
|
54
54
|
"check-readme": "typescript-docs-verifier"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@chainsafe/fast-crc32c": "^4.1.1",
|
|
58
|
-
"@libp2p/interface": "^0.1.
|
|
59
|
-
"@lodestar/config": "1.12.0-dev.
|
|
60
|
-
"@lodestar/params": "1.12.0-dev.
|
|
61
|
-
"@lodestar/utils": "1.12.0-dev.
|
|
58
|
+
"@libp2p/interface": "^0.1.2",
|
|
59
|
+
"@lodestar/config": "1.12.0-dev.bf5d92b132",
|
|
60
|
+
"@lodestar/params": "1.12.0-dev.bf5d92b132",
|
|
61
|
+
"@lodestar/utils": "1.12.0-dev.bf5d92b132",
|
|
62
62
|
"it-all": "^3.0.2",
|
|
63
63
|
"it-pipe": "^3.0.1",
|
|
64
64
|
"snappy": "^7.2.2",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"uint8arraylist": "^2.4.3"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@lodestar/logger": "1.12.0-dev.
|
|
71
|
-
"@lodestar/types": "1.12.0-dev.
|
|
72
|
-
"libp2p": "0.46.
|
|
70
|
+
"@lodestar/logger": "1.12.0-dev.bf5d92b132",
|
|
71
|
+
"@lodestar/types": "1.12.0-dev.bf5d92b132",
|
|
72
|
+
"libp2p": "0.46.12"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"libp2p": "~0.46.
|
|
75
|
+
"libp2p": "~0.46.12"
|
|
76
76
|
},
|
|
77
77
|
"keywords": [
|
|
78
78
|
"ethereum",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"reqresp",
|
|
83
83
|
"blockchain"
|
|
84
84
|
],
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "5dcfef989b0a953da9834ef0e6296a5af59abedb"
|
|
86
86
|
}
|