@agentlayer.tech/wallet 0.1.72 → 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 +12 -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/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,18 @@
|
|
|
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
|
+
|
|
5
17
|
## v0.1.72 - 2026-07-09
|
|
6
18
|
|
|
7
19
|
- Fixed a `0.1.71` installer regression where `wallet update --yes` could fail
|
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",
|
|
@@ -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