@decentnetwork/lan 0.1.59 → 0.1.60

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.
@@ -37,6 +37,12 @@ const DEFAULT_BOOTSTRAP_NODES = [
37
37
  { host: "52.83.191.228", port: 33445, pk: "3khtxZo89SBScAMaHhTvD68pPHiKxgZT6hTCSZZVgNEm" },
38
38
  ];
39
39
  const DEFAULT_EXPRESS_NODES = [
40
+ // Dedicated express relay for the decentlan/dora network (tokyo, outside
41
+ // the GFW). Primary so our control traffic is isolated from the shared
42
+ // lens.beagle.chat relay (which also serves openclaw etc.). The express
43
+ // client tries nodes in order and uses the first that responds; lens stays
44
+ // as fallback. Sender and recipient both prefer tokyo, so they meet there.
45
+ { host: "tokyo.fi.chat", port: 8443, pk: "EzpBtoUkjeMQfuLGWwTUbvzCn9rK4J648Ziy21EKxefo" },
40
46
  { host: "lens.beagle.chat", port: 443, pk: "ECbs4GxwGzxGerNkmqDJFibEmevu8jAXqAZtikccvD95" },
41
47
  ];
42
48
  const DEFAULT_DORAS_FALLBACK = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decentnetwork/lan",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
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",