@agentlayer.tech/wallet 0.1.91 → 0.1.92
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 +21 -0
- package/README.md +86 -490
- package/VERSION +1 -1
- package/agent-wallet/agent_wallet/__init__.py +1 -1
- package/agent-wallet/agent_wallet/boot_key_migration.py +10 -21
- package/agent-wallet/agent_wallet/config.py +20 -0
- package/agent-wallet/agent_wallet/evm_user_wallets.py +176 -25
- package/agent-wallet/agent_wallet/keystore.py +112 -17
- package/agent-wallet/openclaw.plugin.json +1 -1
- package/agent-wallet/pyproject.toml +1 -1
- package/bin/lib/evm-daemon.mjs +375 -0
- package/bin/openclaw-agent-wallet.mjs +7 -0
- 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 +2 -2
- package/wdk-btc-wallet/package.json +1 -1
- package/wdk-evm-wallet/package.json +3 -2
- package/wdk-evm-wallet/src/server.js +24 -3
- package/wdk-evm-wallet/src/shutdown.js +63 -0
|
@@ -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.92",
|
|
6
6
|
"contracts": {
|
|
7
7
|
"tools": [
|
|
8
8
|
"agentlayer_autonomous_approve",
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v0.1.92 - 2026-07-29
|
|
6
|
+
|
|
7
|
+
- **EVM daemon restart after updates.** The installer now stops a verified
|
|
8
|
+
same-home `wdk-evm-wallet` daemon after committing a new runtime, so the next
|
|
9
|
+
EVM call starts the updated code. A process is signalled only when its local
|
|
10
|
+
health payload, wallet data directory, listening PID, process working
|
|
11
|
+
directory, and persisted ownership record agree. Other wallet homes and
|
|
12
|
+
unidentified listeners are left untouched.
|
|
13
|
+
|
|
14
|
+
- The EVM daemon now drains active request handlers on `SIGTERM` before exiting.
|
|
15
|
+
`OPENCLAW_EVM_DISABLE_DAEMON_TAKEOVER=1` disables automatic daemon stops in
|
|
16
|
+
both the installer and Python runtime.
|
|
17
|
+
|
|
18
|
+
- Isolated native keystore entries by wallet home. The default
|
|
19
|
+
`~/.openclaw` installation keeps the existing Keychain service, while tests
|
|
20
|
+
and secondary `OPENCLAW_HOME` installations receive a stable home-specific
|
|
21
|
+
service and cannot replace the primary boot key. Existing custom-home
|
|
22
|
+
installs can migrate from the legacy service only after the candidate key
|
|
23
|
+
decrypts their sealed state. Installer tests now also force an isolated
|
|
24
|
+
keystore backend and service explicitly.
|
|
25
|
+
|
|
5
26
|
- Added a universal npm installer for OpenClaw, Codex, Claude Code, and Hermes.
|
|
6
27
|
`wallet install` now detects installed agent frameworks, supports explicit
|
|
7
28
|
`--hosts`, `--exclude`, and `--runtime-only` selection, and exposes
|