@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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentlayertech/agent-wallet-plugin",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "OpenClaw plugin bridge for the AgentLayer wallet runtime.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN ../../../LICENSE",
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
- If you want the installer to finish the OpenClaw plugin wiring in the same pass, provide the runtime secrets first:
253
-
254
- Solana:
252
+ For the default Solana flow, run the installer directly:
255
253
 
256
254
  ```bash
257
- export AGENT_WALLET_BOOT_KEY="$(openssl rand -base64 32)"
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
- That generates three fresh local secrets in the current shell session. If you prefer Python instead of `openssl`:
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
- Without those secrets, the installer still lays down the runtime and installs dependencies, but stops before the final hardened OpenClaw config step and prints the exact `next_configure_command` to run later.
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
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "openclaw-agent-wallet"
7
- version = "0.1.23"
7
+ version = "0.1.24"
8
8
  description = "Plugin-friendly wallet backend for OpenClaw agents"
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentlayer.tech/wallet",
3
- "version": "0.1.23",
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": "./bin/openclaw-agent-wallet.mjs",
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",