@libp2p/plaintext 1.1.6-a142bb642 → 1.1.6-c010d575c

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 CHANGED
@@ -36,7 +36,7 @@ import { plaintext } from '@libp2p/plaintext'
36
36
 
37
37
  const node = await createLibp2p({
38
38
  // ...other options
39
- connectionEncryption: [
39
+ connectionEncrypters: [
40
40
  plaintext()
41
41
  ]
42
42
  })
@@ -13,7 +13,7 @@
13
13
  *
14
14
  * const node = await createLibp2p({
15
15
  * // ...other options
16
- * connectionEncryption: [
16
+ * connectionEncrypters: [
17
17
  * plaintext()
18
18
  * ]
19
19
  * })
package/dist/src/index.js CHANGED
@@ -13,7 +13,7 @@
13
13
  *
14
14
  * const node = await createLibp2p({
15
15
  * // ...other options
16
- * connectionEncryption: [
16
+ * connectionEncrypters: [
17
17
  * plaintext()
18
18
  * ]
19
19
  * })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/plaintext",
3
- "version": "1.1.6-a142bb642",
3
+ "version": "1.1.6-c010d575c",
4
4
  "description": "An insecure connection encrypter",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/connection-encrypter-plaintext#readme",
@@ -52,9 +52,9 @@
52
52
  "doc-check": "aegir doc-check"
53
53
  },
54
54
  "dependencies": {
55
- "@libp2p/crypto": "4.1.9-a142bb642",
56
- "@libp2p/interface": "1.7.0-a142bb642",
57
- "@libp2p/peer-id": "4.2.4-a142bb642",
55
+ "@libp2p/crypto": "4.1.9-c010d575c",
56
+ "@libp2p/interface": "1.7.0-c010d575c",
57
+ "@libp2p/peer-id": "4.2.4-c010d575c",
58
58
  "it-protobuf-stream": "^1.1.3",
59
59
  "it-stream-types": "^2.0.1",
60
60
  "protons-runtime": "^5.4.0",
@@ -62,9 +62,9 @@
62
62
  "uint8arrays": "^5.1.0"
63
63
  },
64
64
  "devDependencies": {
65
- "@libp2p/crypto": "4.1.9-a142bb642",
66
- "@libp2p/interface-compliance-tests": "5.4.12-a142bb642",
67
- "@libp2p/logger": "4.0.20-a142bb642",
65
+ "@libp2p/crypto": "4.1.9-c010d575c",
66
+ "@libp2p/interface-compliance-tests": "5.4.12-c010d575c",
67
+ "@libp2p/logger": "4.0.20-c010d575c",
68
68
  "@multiformats/multiaddr": "^12.2.3",
69
69
  "aegir": "^44.0.1",
70
70
  "protons": "^7.5.0",
package/src/index.ts CHANGED
@@ -13,7 +13,7 @@
13
13
  *
14
14
  * const node = await createLibp2p({
15
15
  * // ...other options
16
- * connectionEncryption: [
16
+ * connectionEncrypters: [
17
17
  * plaintext()
18
18
  * ]
19
19
  * })