peerbit 5.0.0 → 5.0.1-2d88223
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/dist/src/bootstrap.js +1 -1
- package/package.json +16 -16
- package/src/bootstrap.ts +1 -1
package/dist/src/bootstrap.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const resolveBootstrapAddresses = async (v = "
|
|
1
|
+
export const resolveBootstrapAddresses = async (v = "5") => {
|
|
2
2
|
// Bootstrap addresses for network
|
|
3
3
|
return (await (await fetch(`https://bootstrap.peerbit.org/bootstrap${v ? "-" + v : ""}.env`)).text())
|
|
4
4
|
.split(/\r?\n/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peerbit",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1-2d88223",
|
|
4
4
|
"description": "Peerbit client",
|
|
5
5
|
"author": "dao.xyz",
|
|
6
6
|
"license": "MIT",
|
|
@@ -73,6 +73,16 @@
|
|
|
73
73
|
"@libp2p/webrtc": "^6.0.3",
|
|
74
74
|
"@libp2p/websockets": "^10.1.0",
|
|
75
75
|
"@multiformats/multiaddr": "^13.0.1",
|
|
76
|
+
"@peerbit/any-store": "2.2.5-2d88223",
|
|
77
|
+
"@peerbit/any-store-opfs": "1.1.4-2d88223",
|
|
78
|
+
"@peerbit/crypto": "3.0.0-2d88223",
|
|
79
|
+
"@peerbit/indexer-interface": "3.0.0-2d88223",
|
|
80
|
+
"@peerbit/logger": "2.0.0-2d88223",
|
|
81
|
+
"@peerbit/time": "3.0.0-2d88223",
|
|
82
|
+
"@peerbit/build-assets": "1.1.0-2d88223",
|
|
83
|
+
"@peerbit/keychain": "1.2.5-2d88223",
|
|
84
|
+
"@peerbit/indexer-simple": "1.2.3-2d88223",
|
|
85
|
+
"@peerbit/indexer-sqlite3": "3.0.0-2d88223",
|
|
76
86
|
"@sqlite.org/sqlite-wasm": "^3.51.1-build1",
|
|
77
87
|
"@dao-xyz/datastore-level": "^11.2.0",
|
|
78
88
|
"@chainsafe/libp2p-yamux": "^8.0.0",
|
|
@@ -82,21 +92,11 @@
|
|
|
82
92
|
"libp2p": "^3.1.0",
|
|
83
93
|
"p-queue": "^8.0.1",
|
|
84
94
|
"uint8arrays": "^5.1.0",
|
|
85
|
-
"
|
|
86
|
-
"@peerbit/
|
|
87
|
-
"@peerbit/
|
|
88
|
-
"@peerbit/
|
|
89
|
-
"
|
|
90
|
-
"@peerbit/logger": "2.0.0",
|
|
91
|
-
"@peerbit/time": "3.0.0",
|
|
92
|
-
"@peerbit/build-assets": "1.1.0",
|
|
93
|
-
"@peerbit/keychain": "1.2.5",
|
|
94
|
-
"@peerbit/indexer-simple": "1.2.3",
|
|
95
|
-
"@peerbit/indexer-sqlite3": "3.0.0",
|
|
96
|
-
"@peerbit/program": "6.0.0",
|
|
97
|
-
"@peerbit/blocks": "4.0.0",
|
|
98
|
-
"@peerbit/pubsub": "5.0.0",
|
|
99
|
-
"@peerbit/stream-interface": "6.0.0"
|
|
95
|
+
"@peerbit/program": "6.0.0-2d88223",
|
|
96
|
+
"@peerbit/blocks": "4.0.0-2d88223",
|
|
97
|
+
"@peerbit/pubsub": "5.0.0-2d88223",
|
|
98
|
+
"@peerbit/stream-interface": "6.0.0-2d88223",
|
|
99
|
+
"libsodium-wrappers": "0.7.15"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@types/libsodium-wrappers": "^0.7.14",
|
package/src/bootstrap.ts
CHANGED