@clawlabz/clawnetwork 0.1.9 → 0.1.11

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/index.ts CHANGED
@@ -2335,6 +2335,8 @@ export default function register(api: OpenClawApi) {
2335
2335
  if (state.running) {
2336
2336
  api.logger?.info?.(`[clawnetwork] node already running (pid=${state.pid}), skipping node start`)
2337
2337
  startHealthCheck(cfg, api)
2338
+ // Start UI dashboard (may have been lost on gateway restart)
2339
+ startUiServer(cfg, api)
2338
2340
  // Still need to ensure heartbeat loop is running (may have been lost on gateway restart)
2339
2341
  const wallet = ensureWallet(cfg.network, api)
2340
2342
  await sleep(5_000)
@@ -2,7 +2,7 @@
2
2
  "id": "clawnetwork",
3
3
  "name": "ClawNetwork Node",
4
4
  "description": "Run a ClawNetwork blockchain node inside OpenClaw. Every agent is a node.",
5
- "version": "0.1.0",
5
+ "version": "0.1.11",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawlabz/clawnetwork",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Run a ClawNetwork blockchain node inside OpenClaw. Every agent is a blockchain node.",
5
5
  "type": "module",
6
6
  "license": "MIT",