@agentlayer.tech/wallet 0.1.71 → 0.1.73
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/.openclaw/extensions/agent-wallet/openclaw.plugin.json +1 -1
- package/.openclaw/extensions/agent-wallet/package.json +1 -1
- package/CHANGELOG.md +24 -0
- package/VERSION +1 -1
- package/agent-wallet/agent_wallet/__init__.py +1 -1
- package/agent-wallet/openclaw.plugin.json +1 -1
- package/agent-wallet/pyproject.toml +1 -1
- package/agent-wallet/scripts/install_openclaw_local_config.py +4 -2
- package/bin/openclaw-agent-wallet.mjs +5 -2
- package/claude-code/plugins/agent-wallet/.claude-plugin/plugin.json +1 -1
- package/claude-code/plugins/agent-wallet/.mcp.json +2 -1
- package/codex/plugins/agent-wallet/.codex-plugin/plugin.json +1 -1
- package/hermes/plugins/agent_wallet/plugin.yaml +1 -1
- package/package.json +1 -1
- package/wdk-btc-wallet/package.json +1 -1
- package/wdk-evm-wallet/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "agent-wallet",
|
|
3
3
|
"name": "Agent Wallet",
|
|
4
4
|
"description": "Official OpenClaw plugin bridge for the agent-wallet backends, including Solana, local BTC, and local EVM.",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.73",
|
|
6
6
|
"contracts": {
|
|
7
7
|
"tools": [
|
|
8
8
|
"agentlayer_autonomous_approve",
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v0.1.73 - 2026-07-09
|
|
6
|
+
|
|
7
|
+
- Fixed CLI installer/update boot-key precedence when recovering an existing
|
|
8
|
+
hardened install. `buildInstallerEnv()` now resolves the boot key in the same
|
|
9
|
+
order as the runtime itself: explicit env first, then keystore, and only then
|
|
10
|
+
plaintext fallback files. This prevents a stale
|
|
11
|
+
`~/.openclaw/agent-wallet-runtime/boot-key` from overriding a correct key in
|
|
12
|
+
the keystore and breaking `wallet install` / `wallet update` even though the
|
|
13
|
+
active runtime can still decrypt `sealed_keys.json`.
|
|
14
|
+
- `bin/openclaw-agent-wallet.mjs`
|
|
15
|
+
- `agent-wallet/tests/smoke_cli_install_prefers_keystore_over_stale_boot_file.py`
|
|
16
|
+
|
|
17
|
+
## v0.1.72 - 2026-07-09
|
|
18
|
+
|
|
19
|
+
- Fixed a `0.1.71` installer regression where `wallet update --yes` could fail
|
|
20
|
+
during the nested OpenClaw config step on hardened installs with:
|
|
21
|
+
`AGENT_WALLET_BOOT_KEY is required`. The config installer was checking only
|
|
22
|
+
the direct env var even though the runtime now legitimately resolves the boot
|
|
23
|
+
key via the OS keystore or `agent-wallet-runtime/boot-key`. It now uses the
|
|
24
|
+
shared boot-key resolver, so update/install works again when the boot key is
|
|
25
|
+
available through the supported non-env paths.
|
|
26
|
+
- `agent-wallet/scripts/install_openclaw_local_config.py`
|
|
27
|
+
- `agent-wallet/tests/smoke_install_openclaw_local_config_sealed.py`
|
|
28
|
+
|
|
5
29
|
## v0.1.71 - 2026-07-09
|
|
6
30
|
|
|
7
31
|
- Fixed `wallet update` leaving editor integrations pinned to a stale
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.73
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "agent-wallet",
|
|
3
3
|
"name": "Agent Wallet",
|
|
4
4
|
"description": "Plugin-friendly wallet backend for OpenClaw agents with safe wallet tools and runtime instructions across Solana, local BTC, and local EVM.",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.73",
|
|
6
6
|
"skills": ["skills/wallet-operator"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
|
@@ -17,6 +17,7 @@ from agent_wallet.config import (
|
|
|
17
17
|
normalize_btc_network,
|
|
18
18
|
normalize_evm_network,
|
|
19
19
|
normalize_solana_network,
|
|
20
|
+
resolve_boot_key,
|
|
20
21
|
)
|
|
21
22
|
from agent_wallet.sealed_keys import resolve_sealed_keys_path, seal_keys, unseal_keys
|
|
22
23
|
from security_utils import write_redacted_backup
|
|
@@ -277,10 +278,11 @@ def _require_hardened_runtime_secrets(backend: str) -> str | None:
|
|
|
277
278
|
if backend.strip().lower() in {"", "none"}:
|
|
278
279
|
return None
|
|
279
280
|
|
|
280
|
-
boot_key =
|
|
281
|
+
boot_key = resolve_boot_key().strip()
|
|
281
282
|
if not boot_key:
|
|
282
283
|
raise SystemExit(
|
|
283
|
-
"
|
|
284
|
+
"A boot key is required to unlock sealed_keys.json. Resolve it via "
|
|
285
|
+
"AGENT_WALLET_BOOT_KEY, the OS keystore, or AGENT_WALLET_BOOT_KEY_FILE."
|
|
284
286
|
)
|
|
285
287
|
|
|
286
288
|
sealed_path = resolve_sealed_keys_path()
|
|
@@ -1237,11 +1237,14 @@ function buildInstallerEnv(args) {
|
|
|
1237
1237
|
const sealedKeysExist = fs.existsSync(sealedKeysPath);
|
|
1238
1238
|
const dryRun = hasFlag(args, "--dry-run");
|
|
1239
1239
|
if (!env.AGENT_WALLET_BOOT_KEY) {
|
|
1240
|
+
// Keep installer/update boot-key resolution aligned with the runtime:
|
|
1241
|
+
// explicit env first, then keystore, then plaintext fallback paths. A stale
|
|
1242
|
+
// boot-key file must not override a good keystore key and break updates.
|
|
1240
1243
|
const existingBootKey =
|
|
1244
|
+
readBootKeyFromKeystore(env) ||
|
|
1241
1245
|
resolveBootKeyFromFile(env) ||
|
|
1242
1246
|
readTextIfExists(defaultBootKeyFile(env)).trim() ||
|
|
1243
|
-
currentBootKey(env)
|
|
1244
|
-
readBootKeyFromKeystore(env);
|
|
1247
|
+
currentBootKey(env);
|
|
1245
1248
|
if (existingBootKey) {
|
|
1246
1249
|
env.AGENT_WALLET_BOOT_KEY = existingBootKey;
|
|
1247
1250
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-wallet",
|
|
3
3
|
"displayName": "Agent Wallet",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.73",
|
|
5
5
|
"description": "Claude Code bridge for the existing AgentLayer wallet runtime. Connects to Solana, Bitcoin, and EVM wallets without creating a new one.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "AgentLayer"
|
package/package.json
CHANGED