peerbit 4.0.24-30333b6 → 4.0.24-c679a0d
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/dist/src/bootstrap.js.map +1 -1
- package/package.json +14 -14
- package/src/bootstrap.ts +1 -1
package/dist/src/bootstrap.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const resolveBootstrapAddresses = async (v = "4") => {
|
|
2
2
|
// Bootstrap addresses for network
|
|
3
|
-
return (await (await fetch(`https://bootstrap.
|
|
3
|
+
return (await (await fetch(`https://bootstrap.peerbit.org/bootstrap${v ? "-" + v : ""}.env`)).text())
|
|
4
4
|
.split(/\r?\n/)
|
|
5
5
|
.filter((x) => x.length > 0);
|
|
6
6
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bootstrap.js","sourceRoot":"","sources":["../../src/bootstrap.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,yBAAyB,GAAG,KAAK,EAC7C,IAAY,GAAG,EACK,EAAE;IACtB,kCAAkC;IAClC,OAAO,CACN,MAAM,CACL,MAAM,KAAK,CACV,
|
|
1
|
+
{"version":3,"file":"bootstrap.js","sourceRoot":"","sources":["../../src/bootstrap.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,yBAAyB,GAAG,KAAK,EAC7C,IAAY,GAAG,EACK,EAAE;IACtB,kCAAkC;IAClC,OAAO,CACN,MAAM,CACL,MAAM,KAAK,CACV,0CAA0C,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAChE,CACD,CAAC,IAAI,EAAE,CACR;SACC,KAAK,CAAC,OAAO,CAAC;SACd,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;AAC/B,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peerbit",
|
|
3
|
-
"version": "4.0.24-
|
|
3
|
+
"version": "4.0.24-c679a0d",
|
|
4
4
|
"description": "Peerbit client",
|
|
5
5
|
"author": "dao.xyz",
|
|
6
6
|
"license": "MIT",
|
|
@@ -63,21 +63,21 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@dao-xyz/borsh": "^5.2.3",
|
|
66
|
-
"@peerbit/any-store": "2.1.2-
|
|
67
|
-
"@peerbit/crypto": "2.3.2-
|
|
68
|
-
"@peerbit/logger": "1.0.3-
|
|
69
|
-
"@peerbit/program": "5.0.7-
|
|
70
|
-
"@peerbit/pubsub": "3.0.12-
|
|
71
|
-
"@peerbit/blocks": "2.1.7-
|
|
72
|
-
"@peerbit/indexer-simple": "1.1.1-
|
|
73
|
-
"@peerbit/indexer-sqlite3": "1.1.2-
|
|
66
|
+
"@peerbit/any-store": "2.1.2-c679a0d",
|
|
67
|
+
"@peerbit/crypto": "2.3.2-c679a0d",
|
|
68
|
+
"@peerbit/logger": "1.0.3-c679a0d",
|
|
69
|
+
"@peerbit/program": "5.0.7-c679a0d",
|
|
70
|
+
"@peerbit/pubsub": "3.0.12-c679a0d",
|
|
71
|
+
"@peerbit/blocks": "2.1.7-c679a0d",
|
|
72
|
+
"@peerbit/indexer-simple": "1.1.1-c679a0d",
|
|
73
|
+
"@peerbit/indexer-sqlite3": "1.1.2-c679a0d",
|
|
74
74
|
"datastore-level": "^11.0.1",
|
|
75
75
|
"@chainsafe/libp2p-yamux": "^7.0.1",
|
|
76
|
-
"@libp2p/webrtc": "^5.0.
|
|
77
|
-
"@libp2p/websockets": "^9.0.
|
|
78
|
-
"@libp2p/identify": "^3.0.
|
|
79
|
-
"@libp2p/circuit-relay-v2": "^3.
|
|
80
|
-
"@libp2p/tcp": "^10.0.
|
|
76
|
+
"@libp2p/webrtc": "^5.0.16",
|
|
77
|
+
"@libp2p/websockets": "^9.0.11",
|
|
78
|
+
"@libp2p/identify": "^3.0.10",
|
|
79
|
+
"@libp2p/circuit-relay-v2": "^3.1.0",
|
|
80
|
+
"@libp2p/tcp": "^10.0.11",
|
|
81
81
|
"level": "^8.0.1",
|
|
82
82
|
"memory-level": "^1.0.0",
|
|
83
83
|
"path-browserify": "^1.0.1"
|
package/src/bootstrap.ts
CHANGED