@libp2p/peer-store 10.0.10 → 10.0.11
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 +17 -0
- package/package.json +13 -12
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# @libp2p/peer-store
|
|
2
|
+
|
|
1
3
|
[](http://libp2p.io/)
|
|
2
4
|
[](https://discuss.libp2p.io)
|
|
3
5
|
[](https://codecov.io/gh/libp2p/js-libp2p)
|
|
@@ -7,6 +9,21 @@
|
|
|
7
9
|
|
|
8
10
|
# About
|
|
9
11
|
|
|
12
|
+
<!--
|
|
13
|
+
|
|
14
|
+
!IMPORTANT!
|
|
15
|
+
|
|
16
|
+
Everything in this README between "# About" and "# Install" is automatically
|
|
17
|
+
generated and will be overwritten the next time the doc generator is run.
|
|
18
|
+
|
|
19
|
+
To make changes to this section, please update the @packageDocumentation section
|
|
20
|
+
of src/index.js or src/index.ts
|
|
21
|
+
|
|
22
|
+
To experiment with formatting, please run "npm run docs" from the root of this
|
|
23
|
+
repo and examine the changes made.
|
|
24
|
+
|
|
25
|
+
-->
|
|
26
|
+
|
|
10
27
|
The peer store is where libp2p stores data about the peers it has encountered on the network.
|
|
11
28
|
|
|
12
29
|
# Install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/peer-store",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.11",
|
|
4
4
|
"description": "Stores information about peers libp2p knows on the network",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/peer-store#readme",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"clean": "aegir clean",
|
|
48
48
|
"lint": "aegir lint",
|
|
49
49
|
"dep-check": "aegir dep-check",
|
|
50
|
+
"doc-check": "aegir doc-check",
|
|
50
51
|
"generate": "protons src/pb/*.proto",
|
|
51
52
|
"build": "aegir build",
|
|
52
53
|
"test": "aegir test",
|
|
@@ -58,25 +59,25 @@
|
|
|
58
59
|
"test:electron-main": "aegir test -t electron-main"
|
|
59
60
|
},
|
|
60
61
|
"dependencies": {
|
|
61
|
-
"@libp2p/interface": "^1.1.
|
|
62
|
-
"@libp2p/peer-collections": "^5.1.
|
|
63
|
-
"@libp2p/peer-id": "^4.0.
|
|
64
|
-
"@libp2p/peer-record": "^7.0.
|
|
62
|
+
"@libp2p/interface": "^1.1.4",
|
|
63
|
+
"@libp2p/peer-collections": "^5.1.7",
|
|
64
|
+
"@libp2p/peer-id": "^4.0.7",
|
|
65
|
+
"@libp2p/peer-record": "^7.0.10",
|
|
65
66
|
"@multiformats/multiaddr": "^12.1.14",
|
|
66
|
-
"interface-datastore": "^8.2.
|
|
67
|
+
"interface-datastore": "^8.2.11",
|
|
67
68
|
"it-all": "^3.0.4",
|
|
68
69
|
"mortice": "^3.0.4",
|
|
69
|
-
"multiformats": "^13.0
|
|
70
|
+
"multiformats": "^13.1.0",
|
|
70
71
|
"protons-runtime": "^5.4.0",
|
|
71
72
|
"uint8arraylist": "^2.4.8",
|
|
72
|
-
"uint8arrays": "^5.0.
|
|
73
|
+
"uint8arrays": "^5.0.2"
|
|
73
74
|
},
|
|
74
75
|
"devDependencies": {
|
|
75
|
-
"@libp2p/logger": "^4.0.
|
|
76
|
-
"@libp2p/peer-id-factory": "^4.0.
|
|
76
|
+
"@libp2p/logger": "^4.0.7",
|
|
77
|
+
"@libp2p/peer-id-factory": "^4.0.7",
|
|
77
78
|
"@types/sinon": "^17.0.3",
|
|
78
|
-
"aegir": "^42.2.
|
|
79
|
-
"datastore-core": "^9.2.
|
|
79
|
+
"aegir": "^42.2.4",
|
|
80
|
+
"datastore-core": "^9.2.8",
|
|
80
81
|
"delay": "^6.0.0",
|
|
81
82
|
"p-defer": "^4.0.0",
|
|
82
83
|
"p-event": "^6.0.0",
|