@agentlayer.tech/wallet 0.1.71 → 0.1.72
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/agent-wallet/scripts/install_openclaw_local_config.py +4 -2
- package/claude-code/plugins/agent-wallet/.claude-plugin/plugin.json +1 -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.72",
|
|
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.72 - 2026-07-09
|
|
6
|
+
|
|
7
|
+
- Fixed a `0.1.71` installer regression where `wallet update --yes` could fail
|
|
8
|
+
during the nested OpenClaw config step on hardened installs with:
|
|
9
|
+
`AGENT_WALLET_BOOT_KEY is required`. The config installer was checking only
|
|
10
|
+
the direct env var even though the runtime now legitimately resolves the boot
|
|
11
|
+
key via the OS keystore or `agent-wallet-runtime/boot-key`. It now uses the
|
|
12
|
+
shared boot-key resolver, so update/install works again when the boot key is
|
|
13
|
+
available through the supported non-env paths.
|
|
14
|
+
- `agent-wallet/scripts/install_openclaw_local_config.py`
|
|
15
|
+
- `agent-wallet/tests/smoke_install_openclaw_local_config_sealed.py`
|
|
16
|
+
|
|
5
17
|
## v0.1.71 - 2026-07-09
|
|
6
18
|
|
|
7
19
|
- Fixed `wallet update` leaving editor integrations pinned to a stale
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.72
|
|
@@ -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.72",
|
|
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()
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-wallet",
|
|
3
3
|
"displayName": "Agent Wallet",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.72",
|
|
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