@agentlayer.tech/wallet 0.1.24 → 0.1.26
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/README.md +3 -3
- package/.openclaw/extensions/agent-wallet/dist/index.js +138 -96
- package/.openclaw/extensions/agent-wallet/index.ts +138 -96
- package/.openclaw/extensions/agent-wallet/openclaw.plugin.json +4 -0
- package/.openclaw/extensions/agent-wallet/skills/wallet-operator/SKILL.md +4 -1
- package/CHANGELOG.md +14 -0
- package/agent-wallet/README.md +4 -3
- package/agent-wallet/agent_wallet/config.py +1 -0
- package/agent-wallet/agent_wallet/openclaw_adapter.py +187 -73
- package/agent-wallet/agent_wallet/openclaw_cli.py +1 -0
- package/agent-wallet/agent_wallet/providers/jupiter.py +89 -0
- package/agent-wallet/agent_wallet/wallet_layer/base.py +111 -5
- package/agent-wallet/agent_wallet/wallet_layer/solana.py +298 -23
- package/agent-wallet/pyproject.toml +1 -1
- package/agent-wallet/scripts/install_openclaw_local_config.py +59 -5
- package/agent-wallet/skills/wallet-operator/SKILL.md +10 -6
- package/package.json +1 -1
- package/wdk-evm-wallet/package-lock.json +123 -309
- package/wdk-evm-wallet/package.json +10 -3
|
@@ -17,7 +17,7 @@ In practice this means the agent works through explicit tools for:
|
|
|
17
17
|
- EVM native balance, ERC-20 balance/metadata, fee-rate, receipt, Velora swap quote/execute, Aave V3 account/reserve/position flows, and transfer flows through the local `wdk-evm-wallet` backend
|
|
18
18
|
- wallet address, balances, and portfolio reads
|
|
19
19
|
- native SOL and SPL token transfers
|
|
20
|
-
- Jupiter swap and price lookup
|
|
20
|
+
- Jupiter swap and price lookup, including Solana swap intent execution that refreshes quotes inside user-approved limits
|
|
21
21
|
- Jupiter Earn read/deposit/withdraw flows
|
|
22
22
|
- Kamino lending read/deposit/withdraw/borrow/repay flows
|
|
23
23
|
- native Solana staking, stake deactivation, and stake withdrawal
|
|
@@ -118,8 +118,8 @@ The intended user-facing flow inside OpenClaw is:
|
|
|
118
118
|
transfers, swaps, Aave position changes, staking, stake deactivation, and stake withdrawals should start in `preview`.
|
|
119
119
|
3. Prepare only with intent:
|
|
120
120
|
`prepare` is for explicit execution planning intent and returns no signed transaction bytes.
|
|
121
|
-
4. Execute only
|
|
122
|
-
`execute`
|
|
121
|
+
4. Execute only after chat confirmation:
|
|
122
|
+
after the user explicitly confirms the shown preview/prepare summary in chat, call `execute` with the same semantic params. The OpenClaw extension handles the internal execution authorization automatically and binds it to the cached operation.
|
|
123
123
|
5. On mainnet, restate the network, asset, amount, and destination, validator, or stake account before execute.
|
|
124
124
|
|
|
125
125
|
For staking specifically, the normal agent flow should be:
|