@agentlayer.tech/wallet 0.1.50 → 0.1.52
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 +20 -0
- package/VERSION +1 -1
- package/agent-wallet/agent_wallet/__init__.py +1 -1
- package/agent-wallet/agent_wallet/providers/wdk_evm_local.py +6 -0
- package/agent-wallet/openclaw.plugin.json +1 -1
- package/agent-wallet/pyproject.toml +1 -1
- 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.52",
|
|
6
6
|
"contracts": {
|
|
7
7
|
"tools": [
|
|
8
8
|
"agentlayer_autonomous_approve",
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v0.1.52 - 2026-06-26
|
|
6
|
+
|
|
7
|
+
- Fixed Morpho vault and market quote (preview) requests timing out under the
|
|
8
|
+
default 10 s HTTP budget. The Morpho SDK fetches vault state from
|
|
9
|
+
`api.morpho.org/graphql` and runs on-chain simulation before returning a
|
|
10
|
+
quote, which regularly exceeds 10 s. Added all six quote paths
|
|
11
|
+
(`/v1/evm/morpho/vault/{supply,withdraw}/quote` and
|
|
12
|
+
`/v1/evm/morpho/market/{supply_collateral,borrow,repay,withdraw_collateral}/quote`)
|
|
13
|
+
to `LONG_RUNNING_POST_PATHS` so they share the 120 s budget already applied
|
|
14
|
+
to the corresponding send paths.
|
|
15
|
+
- `agent-wallet/agent_wallet/providers/wdk_evm_local.py`
|
|
16
|
+
- Extended the high-trust autonomous permission mode beyond Base swaps and made
|
|
17
|
+
it a single combined permission group. `/agentlayer-autonomous-approve`
|
|
18
|
+
enables both Base Velora/Uniswap swaps and supported EVM DeFi write tools
|
|
19
|
+
(Aave, Morpho vault/market, and Lido staking/withdrawal) on Ethereum/Base;
|
|
20
|
+
`/agentlayer-autonomous-revoke` disables both together. Covered execute calls
|
|
21
|
+
use the same fresh-preview/internal-approval path while retaining exact
|
|
22
|
+
summary and quote-fingerprint binding. Transfers, bridges, Solana swaps, and
|
|
23
|
+
generic contract calls remain outside this standing permission.
|
|
24
|
+
|
|
5
25
|
## v0.1.47 - 2026-06-16
|
|
6
26
|
|
|
7
27
|
- Fixed Solana swaps of Token-2022 tokens with complex extensions (e.g. Backpack
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.52
|
|
@@ -18,11 +18,17 @@ LONG_RUNNING_POST_PATHS = {
|
|
|
18
18
|
"/v1/evm/aave/withdraw/send",
|
|
19
19
|
"/v1/evm/aave/borrow/send",
|
|
20
20
|
"/v1/evm/aave/repay/send",
|
|
21
|
+
"/v1/evm/morpho/vault/supply/quote",
|
|
21
22
|
"/v1/evm/morpho/vault/supply/send",
|
|
23
|
+
"/v1/evm/morpho/vault/withdraw/quote",
|
|
22
24
|
"/v1/evm/morpho/vault/withdraw/send",
|
|
25
|
+
"/v1/evm/morpho/market/supply_collateral/quote",
|
|
23
26
|
"/v1/evm/morpho/market/supply_collateral/send",
|
|
27
|
+
"/v1/evm/morpho/market/borrow/quote",
|
|
24
28
|
"/v1/evm/morpho/market/borrow/send",
|
|
29
|
+
"/v1/evm/morpho/market/repay/quote",
|
|
25
30
|
"/v1/evm/morpho/market/repay/send",
|
|
31
|
+
"/v1/evm/morpho/market/withdraw_collateral/quote",
|
|
26
32
|
"/v1/evm/morpho/market/withdraw_collateral/send",
|
|
27
33
|
"/v1/evm/lido/stake_eth_for_wsteth/send",
|
|
28
34
|
"/v1/evm/lido/wrap_steth/send",
|
|
@@ -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.52",
|
|
6
6
|
"skills": ["skills/wallet-operator"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-wallet",
|
|
3
3
|
"displayName": "Agent Wallet",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.52",
|
|
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