@decentnetwork/lan 0.1.246 → 0.1.248

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.
@@ -20,6 +20,11 @@ const DEFAULT_CONFIG_FILE = resolve(DEFAULT_CONFIG_DIR, "config.yaml");
20
20
  // nodes. The China + Singapore nodes stay in the list as fallback for
21
21
  // peers actually in those regions.
22
22
  const DEFAULT_BOOTSTRAP_NODES = [
23
+ // lens (Vultr US) — OUR OWN ela-bootstrapd, same box as the express relay.
24
+ // It was in the iOS app's bootstrap list but missing here, which is a big
25
+ // part of why natives could always bootstrap while JS peers struggled
26
+ // (2026-07-25 discovery-outage postmortem: docs/BOOTSTRAP-FLEET.md).
27
+ { host: "144.202.113.167", port: 33445, pk: "EfT4YMq6qfHdDsCiBCgsEmA78E2NxVYVKVUS9bD6w9GH" },
23
28
  // US-East — closest for typical North-American peers.
24
29
  { host: "13.58.208.50", port: 33445, pk: "89vny8MrKdDKs7Uta9RdVmspPjnRMdwMmaiEW27pZ7gh" },
25
30
  { host: "18.216.102.47", port: 33445, pk: "G5z8MqiNDFTadFUPfMdYsYtkUDbX5mNCMVHMZtsCnFeb" },
@@ -665,6 +665,11 @@ import yaml from "js-yaml";
665
665
  var DEFAULT_CONFIG_DIR = resolve(homedir2(), ".agentnet");
666
666
  var DEFAULT_CONFIG_FILE = resolve(DEFAULT_CONFIG_DIR, "config.yaml");
667
667
  var DEFAULT_BOOTSTRAP_NODES = [
668
+ // lens (Vultr US) — OUR OWN ela-bootstrapd, same box as the express relay.
669
+ // It was in the iOS app's bootstrap list but missing here, which is a big
670
+ // part of why natives could always bootstrap while JS peers struggled
671
+ // (2026-07-25 discovery-outage postmortem: docs/BOOTSTRAP-FLEET.md).
672
+ { host: "144.202.113.167", port: 33445, pk: "EfT4YMq6qfHdDsCiBCgsEmA78E2NxVYVKVUS9bD6w9GH" },
668
673
  // US-East — closest for typical North-American peers.
669
674
  { host: "13.58.208.50", port: 33445, pk: "89vny8MrKdDKs7Uta9RdVmspPjnRMdwMmaiEW27pZ7gh" },
670
675
  { host: "18.216.102.47", port: 33445, pk: "G5z8MqiNDFTadFUPfMdYsYtkUDbX5mNCMVHMZtsCnFeb" },
@@ -1,4 +1,4 @@
1
- window.__DK_UI_VERSION="0.1.246";
1
+ window.__DK_UI_VERSION="0.1.248";
2
2
  const ICON_PATHS = {
3
3
  // ---- tab bar (the four must feel like one set) ----
4
4
  users: '<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/>',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decentnetwork/lan",
3
- "version": "0.1.246",
3
+ "version": "0.1.248",
4
4
  "description": "Private virtual LAN for self-hosted services and AI agents, built on Elastos Carrier. NAT-traversal, name service, ACL, all over a peer-to-peer mesh — no public IP required.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -84,7 +84,7 @@
84
84
  },
85
85
  "dependencies": {
86
86
  "@decentnetwork/dora": "^0.1.14",
87
- "@decentnetwork/peer": "^0.1.121",
87
+ "@decentnetwork/peer": "^0.1.122",
88
88
  "@decentnetwork/peer-webrtc": "^0.2.10",
89
89
  "ink": "^5.2.1",
90
90
  "js-yaml": "^4.1.0",