@agentlayer.tech/wallet 0.1.14 → 0.1.15

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.
@@ -2,6 +2,12 @@
2
2
 
3
3
  Workspace extension for the official OpenClaw agent.
4
4
 
5
+ External install path:
6
+
7
+ ```bash
8
+ openclaw plugins install clawhub:@agentlayertech/agent-wallet-plugin
9
+ ```
10
+
5
11
  This extension registers wallet tools through the official OpenClaw plugin API and forwards execution to the local Python `agent-wallet` backend.
6
12
 
7
13
  It is designed so the OpenClaw agent sees a small operational wallet surface instead of raw key management.
@@ -57,6 +63,20 @@ Recommended local installer entrypoint:
57
63
  sh ./setup.sh
58
64
  ```
59
65
 
66
+ For packaged installs, keep the runtime installer path:
67
+
68
+ ```bash
69
+ npx @agentlayer.tech/wallet install --yes
70
+ ```
71
+
72
+ The ClawHub plugin package only installs the native OpenClaw plugin. It expects the authoritative Python runtime to already exist, and by default it now looks for it at:
73
+
74
+ ```bash
75
+ ~/.openclaw/agent-wallet-runtime/current/agent-wallet
76
+ ```
77
+
78
+ If that runtime is not present, set `plugins.entries.agent-wallet.config.packageRoot` explicitly.
79
+
60
80
  That installs the Python backend, Node dependencies for the local BTC/EVM runtimes, and patches the OpenClaw plugin config. Wallet creation, unlock, and local service start stay as separate host-side steps.
61
81
 
62
82
  For self-hosted installs, prefer `SOLANA_RPC_URL` / `SOLANA_RPC_URLS` in local env and treat the plugin `rpcUrl` / `rpcUrls` fields as fallback only. If the local runtime exposes `ALCHEMY_API_KEY` or `HELIUS_API_KEY`, the wallet can derive the Solana RPC URL automatically for `mainnet` or `devnet`. Local env always takes precedence over `openclaw.json`.