@agentlayer.tech/wallet 0.1.90 → 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 +35 -0
- package/README.md +86 -467
- package/VERSION +1 -1
- package/agent-wallet/README.md +26 -1
- package/agent-wallet/UPGRADE_COMPATIBILITY.md +2 -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/agent-wallet/scripts/install_agent_wallet.py +197 -11
- package/agent-wallet/scripts/install_openclaw_local_config.py +4 -1
- package/agent-wallet/scripts/install_openclaw_sealed_keys.py +6 -2
- package/bin/lib/evm-daemon.mjs +375 -0
- package/bin/lib/host-detection.mjs +236 -0
- package/bin/lib/integrations.mjs +69 -5
- package/bin/openclaw-agent-wallet.mjs +405 -28
- 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 +8 -3
- 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,41 @@
|
|
|
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
|
+
|
|
26
|
+
- Added a universal npm installer for OpenClaw, Codex, Claude Code, and Hermes.
|
|
27
|
+
`wallet install` now detects installed agent frameworks, supports explicit
|
|
28
|
+
`--hosts`, `--exclude`, and `--runtime-only` selection, and exposes
|
|
29
|
+
`wallet detect --json`. Runtime updates remain managed-only, so discovering a
|
|
30
|
+
new framework later does not silently enroll it. OpenClaw config creation is
|
|
31
|
+
now a host-specific step; wallet files and sealed secrets remain in their
|
|
32
|
+
existing `~/.openclaw` locations and are not replaced during updates.
|
|
33
|
+
|
|
34
|
+
- Confirmed the native OS keystore as the default boot-key backend. `auto`
|
|
35
|
+
prefers macOS Keychain, Windows DPAPI, or Linux Secret Service and uses the
|
|
36
|
+
local `0600` file only as a fallback. The npm installer now warns macOS users
|
|
37
|
+
that the system may request Keychain confirmation; this does not rotate or
|
|
38
|
+
migrate the boot key during ordinary updates.
|
|
39
|
+
|
|
5
40
|
- Hardened Morpho EVM operations with a 30% gas-limit buffer calculated from
|
|
6
41
|
the exact final calldata immediately before sending. Morpho vault and market
|
|
7
42
|
writes now wait for their final on-chain receipt and report reverts instead
|