@agentlayer.tech/wallet 0.1.91 → 0.1.93
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 +38 -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/agent_wallet/providers/x402.py +9 -1
- package/agent-wallet/agent_wallet/user_wallets.py +2 -0
- package/agent-wallet/agent_wallet/wallet_layer/solana.py +2 -0
- 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/claude-code/plugins/agent-wallet/README.md +2 -0
- package/claude-code/plugins/agent-wallet/commands/cards.md +129 -0
- package/codex/plugins/agent-wallet/.codex-plugin/plugin.json +1 -1
- package/codex/plugins/agent-wallet/README.md +6 -2
- package/codex/plugins/agent-wallet/skills/cards/SKILL.md +119 -0
- 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.93",
|
|
6
6
|
"contracts": {
|
|
7
7
|
"tools": [
|
|
8
8
|
"agentlayer_autonomous_approve",
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,44 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v0.1.93 - 2026-08-10
|
|
6
|
+
|
|
7
|
+
- **Added `/cards` (Claude Code) and `cards` (Codex) for Laso Finance card
|
|
8
|
+
issuance.** Issue a US or international prepaid card, paid via x402 from
|
|
9
|
+
the wallet already connected in the session (Solana or Base/EVM). Both
|
|
10
|
+
files hardcode the `laso.finance` endpoints and never accept a URL
|
|
11
|
+
override from user input, search results, or page content; the flow
|
|
12
|
+
always previews the live payment terms and requires explicit confirmation
|
|
13
|
+
of the total debit (including any fee) before calling `x402_pay_request`.
|
|
14
|
+
- **Fixed a misleading Solana compatibility message in
|
|
15
|
+
`x402_preview_request`.** Preview runs through a read-only worker that
|
|
16
|
+
deliberately skips loading the Solana signer for speed; the compatibility
|
|
17
|
+
reason used to word this as "does not yet expose a supported x402 signer
|
|
18
|
+
path," which reads as unsupported. It now says the signer isn't loaded in
|
|
19
|
+
this read-only preview context by design, and that the real
|
|
20
|
+
`x402_pay_request` call can still succeed.
|
|
21
|
+
|
|
22
|
+
## v0.1.92 - 2026-07-29
|
|
23
|
+
|
|
24
|
+
- **EVM daemon restart after updates.** The installer now stops a verified
|
|
25
|
+
same-home `wdk-evm-wallet` daemon after committing a new runtime, so the next
|
|
26
|
+
EVM call starts the updated code. A process is signalled only when its local
|
|
27
|
+
health payload, wallet data directory, listening PID, process working
|
|
28
|
+
directory, and persisted ownership record agree. Other wallet homes and
|
|
29
|
+
unidentified listeners are left untouched.
|
|
30
|
+
|
|
31
|
+
- The EVM daemon now drains active request handlers on `SIGTERM` before exiting.
|
|
32
|
+
`OPENCLAW_EVM_DISABLE_DAEMON_TAKEOVER=1` disables automatic daemon stops in
|
|
33
|
+
both the installer and Python runtime.
|
|
34
|
+
|
|
35
|
+
- Isolated native keystore entries by wallet home. The default
|
|
36
|
+
`~/.openclaw` installation keeps the existing Keychain service, while tests
|
|
37
|
+
and secondary `OPENCLAW_HOME` installations receive a stable home-specific
|
|
38
|
+
service and cannot replace the primary boot key. Existing custom-home
|
|
39
|
+
installs can migrate from the legacy service only after the candidate key
|
|
40
|
+
decrypts their sealed state. Installer tests now also force an isolated
|
|
41
|
+
keystore backend and service explicitly.
|
|
42
|
+
|
|
5
43
|
- Added a universal npm installer for OpenClaw, Codex, Claude Code, and Hermes.
|
|
6
44
|
`wallet install` now detects installed agent frameworks, supports explicit
|
|
7
45
|
`--hosts`, `--exclude`, and `--runtime-only` selection, and exposes
|