@agentlayer.tech/wallet 0.1.23 → 0.1.24
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v0.1.24 - 2026-05-23
|
|
6
|
+
|
|
7
|
+
- Fixed the published npm package CLI metadata so
|
|
8
|
+
`npx @agentlayer.tech/wallet install --yes` resolves the wallet installer
|
|
9
|
+
command correctly.
|
|
10
|
+
- Updated the root README install guidance to describe the new local Solana
|
|
11
|
+
mainnet wallet onboarding flow instead of requiring manual runtime secret
|
|
12
|
+
exports.
|
|
13
|
+
|
|
5
14
|
## v0.1.23 - 2026-05-23
|
|
6
15
|
|
|
7
16
|
- Made the default Solana install flow mainnet-first for fresh local
|
package/README.md
CHANGED
|
@@ -249,15 +249,19 @@ Lido:
|
|
|
249
249
|
|
|
250
250
|
Across these service-backed flows, read operations remain directly callable, while write operations stay behind preview, explicit intent, and host-issued approval tokens before execution.
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
Solana:
|
|
252
|
+
For the default Solana flow, run the installer directly:
|
|
255
253
|
|
|
256
254
|
```bash
|
|
257
|
-
|
|
258
|
-
export AGENT_WALLET_MASTER_KEY="$(openssl rand -base64 32)"
|
|
259
|
-
export AGENT_WALLET_APPROVAL_SECRET="$(openssl rand -base64 32)"
|
|
255
|
+
npx @agentlayer.tech/wallet install --yes
|
|
260
256
|
```
|
|
257
|
+
|
|
258
|
+
That installs the runtime, patches the OpenClaw plugin config, generates local
|
|
259
|
+
runtime secrets when missing, and creates the first encrypted per-user Solana
|
|
260
|
+
mainnet wallet. The agent receives the public address and guarded wallet tools,
|
|
261
|
+
not the private key.
|
|
262
|
+
|
|
263
|
+
BTC and EVM are separate host-side setup flows.
|
|
264
|
+
|
|
261
265
|
Bitcoin:
|
|
262
266
|
|
|
263
267
|
```bash
|
|
@@ -272,7 +276,17 @@ sh agent-wallet/scripts/setup_evm_wallet.sh
|
|
|
272
276
|
|
|
273
277
|
That host-side bootstrap can auto-start the local `wdk-evm-wallet` service, create or unlock the vault wallet, bind both `base` and `ethereum` for the same local user, and patch OpenClaw config to `backend=wdk_evm_local`.
|
|
274
278
|
|
|
275
|
-
|
|
279
|
+
Advanced operators can still supply their own runtime provisioning secrets
|
|
280
|
+
instead of using `--yes` auto-generation:
|
|
281
|
+
|
|
282
|
+
```bash
|
|
283
|
+
export AGENT_WALLET_BOOT_KEY="$(openssl rand -base64 32)"
|
|
284
|
+
export AGENT_WALLET_MASTER_KEY="$(openssl rand -base64 32)"
|
|
285
|
+
export AGENT_WALLET_APPROVAL_SECRET="$(openssl rand -base64 32)"
|
|
286
|
+
npx @agentlayer.tech/wallet install --no-auto-secrets
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
If you prefer Python instead of `openssl`:
|
|
276
290
|
|
|
277
291
|
```bash
|
|
278
292
|
python3 -c "import secrets; print(secrets.token_urlsafe(32))"
|
|
@@ -284,7 +298,10 @@ Run it three times and assign the outputs to:
|
|
|
284
298
|
- `AGENT_WALLET_MASTER_KEY`
|
|
285
299
|
- `AGENT_WALLET_APPROVAL_SECRET`
|
|
286
300
|
|
|
287
|
-
|
|
301
|
+
These variables are provisioning inputs only. Runtime secrets are sealed into
|
|
302
|
+
`~/.openclaw/sealed_keys.json`; normal runtime execution should use
|
|
303
|
+
`AGENT_WALLET_BOOT_KEY` or `AGENT_WALLET_BOOT_KEY_FILE`, not direct
|
|
304
|
+
`AGENT_WALLET_MASTER_KEY` / `AGENT_WALLET_APPROVAL_SECRET` env loading.
|
|
288
305
|
|
|
289
306
|
## Connect the MCP server
|
|
290
307
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentlayer.tech/wallet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
4
|
"description": "NPM installer for the OpenClaw Agent Wallet local runtime.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
"url": "https://github.com/lopushok9/Agent-Layer/issues"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://github.com/lopushok9/Agent-Layer#readme",
|
|
14
|
-
"bin":
|
|
14
|
+
"bin": {
|
|
15
|
+
"wallet": "./bin/openclaw-agent-wallet.mjs"
|
|
16
|
+
},
|
|
15
17
|
"scripts": {
|
|
16
18
|
"check": "node --check bin/openclaw-agent-wallet.mjs",
|
|
17
19
|
"build:openclaw-plugins": "node scripts/manage_openclaw_plugin_packages.mjs build",
|