@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
|
@@ -5,16 +5,16 @@ description: Use when operating OpenClaw wallet tools: balances, transfers, swap
|
|
|
5
5
|
|
|
6
6
|
# Wallet Operator
|
|
7
7
|
|
|
8
|
-
Use this skill before calling OpenClaw wallet tools. It is the routing guide for wallet commands, providers, units, and
|
|
8
|
+
Use this skill before calling OpenClaw wallet tools. It is the routing guide for wallet commands, providers, units, and confirmation flow.
|
|
9
9
|
|
|
10
10
|
## Core Rules
|
|
11
11
|
|
|
12
12
|
1. Start with `get_wallet_capabilities` when the active chain, signing support, or available tools are unclear.
|
|
13
13
|
2. Use `get_wallet_address` before asking for deposits or confirming a recipient/source wallet.
|
|
14
14
|
3. Use `get_wallet_balance` before spending, swapping, bridging, staking, lending, or claiming.
|
|
15
|
-
4. Use `preview` first for every write action. Use `prepare` only after explicit user intent.
|
|
15
|
+
4. Use `preview` first for every write action. For Solana Jupiter swaps, prefer `intent_preview` then `intent_execute` after explicit chat confirmation so execution can refresh the quote inside approved limits. Solana swap intents are normalized by the backend to at least 300 bps slippage, 120 seconds validity, and 3 fresh execution attempts; do not pass a hand-tightened `minimum_output_amount_raw` unless the user explicitly set that floor. Use `prepare` only after explicit user intent. In OpenClaw, use `execute` only after the user explicitly confirms the shown summary in chat; do not ask the user for `/approve`, buttons, popups, or a manual token.
|
|
16
16
|
5. `prepare` returns an execution plan only; it must not return signed transaction bytes.
|
|
17
|
-
6. On mainnet, `execute
|
|
17
|
+
6. On mainnet, restate the network and material terms before `execute`; the OpenClaw plugin handles the internal execution authorization after chat confirmation.
|
|
18
18
|
7. If backend is `sign_only`, do not execute; use `prepare` and state that nothing was broadcast.
|
|
19
19
|
8. Never claim a transfer, swap, bridge, stake, claim, deposit, borrow, repay, or withdrawal happened unless the tool result says it was broadcast/confirmed.
|
|
20
20
|
9. Do not use Mayan. Direct Mayan paths were removed. Cross-chain swaps must go through LI.FI with Mayan denied.
|
|
@@ -63,7 +63,7 @@ Use this skill before calling OpenClaw wallet tools. It is the routing guide for
|
|
|
63
63
|
## Transfer Commands
|
|
64
64
|
|
|
65
65
|
- SOL transfer: `transfer_sol`
|
|
66
|
-
- Params: `recipient`, `amount` in SOL UI units, `mode`, `purpose`, optional `user_intent
|
|
66
|
+
- Params: `recipient`, `amount` in SOL UI units, `mode`, `purpose`, optional `user_intent`.
|
|
67
67
|
- SPL transfer: `transfer_spl_token`
|
|
68
68
|
- Params: `recipient`, `mint`, `amount` in UI units, optional `decimals`, `mode`, `purpose`.
|
|
69
69
|
- EVM native transfer: `transfer_evm_native`
|
|
@@ -76,7 +76,11 @@ Use this skill before calling OpenClaw wallet tools. It is the routing guide for
|
|
|
76
76
|
## Swap Commands
|
|
77
77
|
|
|
78
78
|
- Solana same-chain Jupiter swap: `swap_solana_tokens`
|
|
79
|
-
- Params: `input_mint`, `output_mint`, `amount` in UI units, optional `slippage_bps`, `mode`, `purpose`.
|
|
79
|
+
- Params: `input_mint`, `output_mint`, `amount` in UI units, optional `slippage_bps`, `minimum_output_amount_raw`, `max_fee_lamports`, `valid_for_seconds`, `max_attempts`, `mode`, `purpose`.
|
|
80
|
+
- Prefer `mode=intent_preview`, show the intent limits to the user, then after chat confirmation call `mode=intent_execute` with the same semantic params. This confirms risk limits, not a stale quote fingerprint.
|
|
81
|
+
- Default Solana swap slippage is 300 bps (3%). The backend computes the approved minimum output from the indicative output and slippage, not from a strict RFQ threshold.
|
|
82
|
+
- The primary execution path uses Jupiter Swap API V2 `/order` + `/execute`; if a JupiterZ/RFQ route fails, the backend retries with a non-JupiterZ route when possible.
|
|
83
|
+
- Do not use legacy `execute` for Solana Jupiter swaps in OpenClaw; exact quote-bound approval is too fragile for active markets.
|
|
80
84
|
- Use for SOL<->SPL or SPL<->SPL on Solana. Do not use LI.FI for Solana-only swaps.
|
|
81
85
|
- EVM same-chain Velora swap: `swap_evm_tokens`
|
|
82
86
|
- Params: `token_in`, `token_out`, `amount_in_raw` base-unit string, `mode`, `purpose`, optional `network`.
|
|
@@ -118,7 +122,7 @@ Use this skill before calling OpenClaw wallet tools. It is the routing guide for
|
|
|
118
122
|
1. Call the write tool with `mode=preview` and a concrete `purpose`.
|
|
119
123
|
2. Show the user the important fields: chain, token, amount, destination, provider, estimated output/minimum output, fees, and route/tool when present.
|
|
120
124
|
3. For `prepare`, call same tool with `mode=prepare`, same params, `user_intent=true`.
|
|
121
|
-
4. For `execute`, use the same semantic params
|
|
125
|
+
4. For `execute`, use the same semantic params after the user's chat confirmation. Do not mutate amount, token, destination, network, slippage, or minimum output between preview and execute; do not ask the user for a token or out-of-chat approval action.
|
|
122
126
|
5. For cross-chain swaps, after execute, offer `get_lifi_transfer_status` using the source tx hash and bridge/tool if returned.
|
|
123
127
|
|
|
124
128
|
## Disabled Or Avoided Paths
|
package/package.json
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"name": "wdk-evm-wallet",
|
|
9
9
|
"version": "0.1.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@tetherto/wdk": "^1.0.0-beta.
|
|
12
|
-
"@tetherto/wdk-protocol-lending-aave-evm": "^1.0.0-beta.
|
|
11
|
+
"@tetherto/wdk": "^1.0.0-beta.9",
|
|
12
|
+
"@tetherto/wdk-protocol-lending-aave-evm": "^1.0.0-beta.4",
|
|
13
13
|
"@tetherto/wdk-protocol-swap-velora-evm": "^1.0.0-beta.4",
|
|
14
|
-
"@tetherto/wdk-wallet-evm": "^1.0.0-beta.
|
|
14
|
+
"@tetherto/wdk-wallet-evm": "^1.0.0-beta.12",
|
|
15
15
|
"dotenv": "^16.4.5"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
@@ -49,100 +49,6 @@
|
|
|
49
49
|
"node": ">=14.0.0"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
|
-
"node_modules/@gelatonetwork/relay-sdk/node_modules/@noble/curves": {
|
|
53
|
-
"version": "1.2.0",
|
|
54
|
-
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
55
|
-
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
56
|
-
"license": "MIT",
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"@noble/hashes": "1.3.2"
|
|
59
|
-
},
|
|
60
|
-
"funding": {
|
|
61
|
-
"url": "https://paulmillr.com/funding/"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"node_modules/@gelatonetwork/relay-sdk/node_modules/@noble/hashes": {
|
|
65
|
-
"version": "1.3.2",
|
|
66
|
-
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
67
|
-
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
68
|
-
"license": "MIT",
|
|
69
|
-
"engines": {
|
|
70
|
-
"node": ">= 16"
|
|
71
|
-
},
|
|
72
|
-
"funding": {
|
|
73
|
-
"url": "https://paulmillr.com/funding/"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"node_modules/@gelatonetwork/relay-sdk/node_modules/ethers": {
|
|
77
|
-
"version": "6.13.4",
|
|
78
|
-
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.4.tgz",
|
|
79
|
-
"integrity": "sha512-21YtnZVg4/zKkCQPjrDj38B1r4nQvTZLopUGMLQ1ePU2zV/joCfDC3t3iKQjWRzjjjbzR+mdAIoikeBRNkdllA==",
|
|
80
|
-
"funding": [
|
|
81
|
-
{
|
|
82
|
-
"type": "individual",
|
|
83
|
-
"url": "https://github.com/sponsors/ethers-io/"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"type": "individual",
|
|
87
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
88
|
-
}
|
|
89
|
-
],
|
|
90
|
-
"license": "MIT",
|
|
91
|
-
"dependencies": {
|
|
92
|
-
"@adraffy/ens-normalize": "1.10.1",
|
|
93
|
-
"@noble/curves": "1.2.0",
|
|
94
|
-
"@noble/hashes": "1.3.2",
|
|
95
|
-
"@types/node": "22.7.5",
|
|
96
|
-
"aes-js": "4.0.0-beta.5",
|
|
97
|
-
"tslib": "2.7.0",
|
|
98
|
-
"ws": "8.17.1"
|
|
99
|
-
},
|
|
100
|
-
"engines": {
|
|
101
|
-
"node": ">=14.0.0"
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"node_modules/@gelatonetwork/relay-sdk/node_modules/ethers/node_modules/ws": {
|
|
105
|
-
"version": "8.17.1",
|
|
106
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
|
|
107
|
-
"integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
|
|
108
|
-
"license": "MIT",
|
|
109
|
-
"engines": {
|
|
110
|
-
"node": ">=10.0.0"
|
|
111
|
-
},
|
|
112
|
-
"peerDependencies": {
|
|
113
|
-
"bufferutil": "^4.0.1",
|
|
114
|
-
"utf-8-validate": ">=5.0.2"
|
|
115
|
-
},
|
|
116
|
-
"peerDependenciesMeta": {
|
|
117
|
-
"bufferutil": {
|
|
118
|
-
"optional": true
|
|
119
|
-
},
|
|
120
|
-
"utf-8-validate": {
|
|
121
|
-
"optional": true
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"node_modules/@gelatonetwork/relay-sdk/node_modules/ws": {
|
|
126
|
-
"version": "8.20.0",
|
|
127
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz",
|
|
128
|
-
"integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==",
|
|
129
|
-
"license": "MIT",
|
|
130
|
-
"engines": {
|
|
131
|
-
"node": ">=10.0.0"
|
|
132
|
-
},
|
|
133
|
-
"peerDependencies": {
|
|
134
|
-
"bufferutil": "^4.0.1",
|
|
135
|
-
"utf-8-validate": ">=5.0.2"
|
|
136
|
-
},
|
|
137
|
-
"peerDependenciesMeta": {
|
|
138
|
-
"bufferutil": {
|
|
139
|
-
"optional": true
|
|
140
|
-
},
|
|
141
|
-
"utf-8-validate": {
|
|
142
|
-
"optional": true
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
52
|
"node_modules/@noble/ciphers": {
|
|
147
53
|
"version": "1.3.0",
|
|
148
54
|
"resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz",
|
|
@@ -277,79 +183,49 @@
|
|
|
277
183
|
}
|
|
278
184
|
},
|
|
279
185
|
"node_modules/@tetherto/wdk": {
|
|
280
|
-
"version": "1.0.0-beta.
|
|
281
|
-
"resolved": "https://registry.npmjs.org/@tetherto/wdk/-/wdk-1.0.0-beta.
|
|
282
|
-
"integrity": "sha512-
|
|
186
|
+
"version": "1.0.0-beta.9",
|
|
187
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk/-/wdk-1.0.0-beta.9.tgz",
|
|
188
|
+
"integrity": "sha512-cnspICVmYHAMgQJvaQsoAXD0JJe5iYLUmyWuL/iN415cq5lA64f03f+sPHfCUBIMQq3qzqNo7r29WEDcGaDYCw==",
|
|
283
189
|
"license": "Apache-2.0",
|
|
284
190
|
"dependencies": {
|
|
285
|
-
"@tetherto/wdk-wallet": "^1.0.0-beta.
|
|
191
|
+
"@tetherto/wdk-wallet": "^1.0.0-beta.7",
|
|
286
192
|
"bare-node-runtime": "^1.1.4"
|
|
287
193
|
}
|
|
288
194
|
},
|
|
195
|
+
"node_modules/@tetherto/wdk-failover-provider": {
|
|
196
|
+
"version": "1.0.0-beta.2",
|
|
197
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-failover-provider/-/wdk-failover-provider-1.0.0-beta.2.tgz",
|
|
198
|
+
"integrity": "sha512-G1KNpw11Hql7Q6Xy5oqO+8P+AkJi4QBTK4JZtZvcXmx8ze+d/lzSQSufWLE/k5YAvwJ+xDx7mRzy/teG4zaiOw==",
|
|
199
|
+
"license": "Apache-2.0"
|
|
200
|
+
},
|
|
289
201
|
"node_modules/@tetherto/wdk-protocol-lending-aave-evm": {
|
|
290
|
-
"version": "1.0.0-beta.
|
|
291
|
-
"resolved": "https://registry.npmjs.org/@tetherto/wdk-protocol-lending-aave-evm/-/wdk-protocol-lending-aave-evm-1.0.0-beta.
|
|
292
|
-
"integrity": "sha512-
|
|
202
|
+
"version": "1.0.0-beta.4",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-protocol-lending-aave-evm/-/wdk-protocol-lending-aave-evm-1.0.0-beta.4.tgz",
|
|
204
|
+
"integrity": "sha512-cIDyUUPcKnbm4weFS1CAXUakssqIKYRwovZY4ZTgmS2nO3SX+3Tp5+uM5XhgIDc/uzhuGJoPOgo+H77hjjZAlg==",
|
|
293
205
|
"license": "Apache-2.0",
|
|
294
206
|
"dependencies": {
|
|
295
207
|
"@bgd-labs/aave-address-book": "4.33.0",
|
|
296
|
-
"@tetherto/wdk-wallet": "
|
|
297
|
-
"@tetherto/wdk-wallet-evm": "
|
|
298
|
-
"@tetherto/wdk-wallet-evm-erc-4337": "
|
|
208
|
+
"@tetherto/wdk-wallet": "1.0.0-beta.7",
|
|
209
|
+
"@tetherto/wdk-wallet-evm": "1.0.0-beta.8",
|
|
210
|
+
"@tetherto/wdk-wallet-evm-erc-4337": "1.0.0-beta.5",
|
|
299
211
|
"bare-node-runtime": "^1.1.4",
|
|
300
212
|
"ethers": "6.14.3"
|
|
301
213
|
}
|
|
302
214
|
},
|
|
303
|
-
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/@
|
|
304
|
-
"version": "1.
|
|
305
|
-
"resolved": "https://registry.npmjs.org/@
|
|
306
|
-
"integrity": "sha512-
|
|
307
|
-
"license": "
|
|
308
|
-
"dependencies": {
|
|
309
|
-
"@noble/hashes": "1.3.2"
|
|
310
|
-
},
|
|
311
|
-
"funding": {
|
|
312
|
-
"url": "https://paulmillr.com/funding/"
|
|
313
|
-
}
|
|
314
|
-
},
|
|
315
|
-
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/@noble/hashes": {
|
|
316
|
-
"version": "1.3.2",
|
|
317
|
-
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
318
|
-
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
319
|
-
"license": "MIT",
|
|
320
|
-
"engines": {
|
|
321
|
-
"node": ">= 16"
|
|
322
|
-
},
|
|
323
|
-
"funding": {
|
|
324
|
-
"url": "https://paulmillr.com/funding/"
|
|
325
|
-
}
|
|
326
|
-
},
|
|
327
|
-
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/ethers": {
|
|
328
|
-
"version": "6.14.3",
|
|
329
|
-
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.14.3.tgz",
|
|
330
|
-
"integrity": "sha512-qq7ft/oCJohoTcsNPFaXSQUm457MA5iWqkf1Mb11ujONdg7jBI6sAOrHaTi3j0CBqIGFSCeR/RMc+qwRRub7IA==",
|
|
331
|
-
"funding": [
|
|
332
|
-
{
|
|
333
|
-
"type": "individual",
|
|
334
|
-
"url": "https://github.com/sponsors/ethers-io/"
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"type": "individual",
|
|
338
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
339
|
-
}
|
|
340
|
-
],
|
|
341
|
-
"license": "MIT",
|
|
215
|
+
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/@tetherto/wdk-wallet-evm": {
|
|
216
|
+
"version": "1.0.0-beta.8",
|
|
217
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet-evm/-/wdk-wallet-evm-1.0.0-beta.8.tgz",
|
|
218
|
+
"integrity": "sha512-wkqoEeAu2uVhhSCkW1y3o0os1G3zwlC3L8J5Fsvio17gyxD802eYyRSiLTmP1g5bXLcW/sUr0hNA06Mscfpchw==",
|
|
219
|
+
"license": "Apache-2.0",
|
|
342
220
|
"dependencies": {
|
|
343
|
-
"@
|
|
344
|
-
"@noble/
|
|
345
|
-
"@noble/
|
|
346
|
-
"@
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
-
"
|
|
350
|
-
|
|
351
|
-
"engines": {
|
|
352
|
-
"node": ">=14.0.0"
|
|
221
|
+
"@noble/curves": "1.9.2",
|
|
222
|
+
"@noble/hashes": "1.8.0",
|
|
223
|
+
"@noble/secp256k1": "2.2.3",
|
|
224
|
+
"@tetherto/wdk-wallet": "1.0.0-beta.7",
|
|
225
|
+
"bare-node-runtime": "^1.1.4",
|
|
226
|
+
"bip39": "3.1.0",
|
|
227
|
+
"ethers": "6.14.3",
|
|
228
|
+
"sodium-universal": "5.0.1"
|
|
353
229
|
}
|
|
354
230
|
},
|
|
355
231
|
"node_modules/@tetherto/wdk-protocol-swap-velora-evm": {
|
|
@@ -366,58 +242,6 @@
|
|
|
366
242
|
"ethers": "6.13.5"
|
|
367
243
|
}
|
|
368
244
|
},
|
|
369
|
-
"node_modules/@tetherto/wdk-protocol-swap-velora-evm/node_modules/@noble/curves": {
|
|
370
|
-
"version": "1.2.0",
|
|
371
|
-
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
372
|
-
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
373
|
-
"license": "MIT",
|
|
374
|
-
"dependencies": {
|
|
375
|
-
"@noble/hashes": "1.3.2"
|
|
376
|
-
},
|
|
377
|
-
"funding": {
|
|
378
|
-
"url": "https://paulmillr.com/funding/"
|
|
379
|
-
}
|
|
380
|
-
},
|
|
381
|
-
"node_modules/@tetherto/wdk-protocol-swap-velora-evm/node_modules/@noble/hashes": {
|
|
382
|
-
"version": "1.3.2",
|
|
383
|
-
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
384
|
-
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
385
|
-
"license": "MIT",
|
|
386
|
-
"engines": {
|
|
387
|
-
"node": ">= 16"
|
|
388
|
-
},
|
|
389
|
-
"funding": {
|
|
390
|
-
"url": "https://paulmillr.com/funding/"
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
"node_modules/@tetherto/wdk-protocol-swap-velora-evm/node_modules/ethers": {
|
|
394
|
-
"version": "6.13.5",
|
|
395
|
-
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.5.tgz",
|
|
396
|
-
"integrity": "sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==",
|
|
397
|
-
"funding": [
|
|
398
|
-
{
|
|
399
|
-
"type": "individual",
|
|
400
|
-
"url": "https://github.com/sponsors/ethers-io/"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"type": "individual",
|
|
404
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
405
|
-
}
|
|
406
|
-
],
|
|
407
|
-
"license": "MIT",
|
|
408
|
-
"dependencies": {
|
|
409
|
-
"@adraffy/ens-normalize": "1.10.1",
|
|
410
|
-
"@noble/curves": "1.2.0",
|
|
411
|
-
"@noble/hashes": "1.3.2",
|
|
412
|
-
"@types/node": "22.7.5",
|
|
413
|
-
"aes-js": "4.0.0-beta.5",
|
|
414
|
-
"tslib": "2.7.0",
|
|
415
|
-
"ws": "8.17.1"
|
|
416
|
-
},
|
|
417
|
-
"engines": {
|
|
418
|
-
"node": ">=14.0.0"
|
|
419
|
-
}
|
|
420
|
-
},
|
|
421
245
|
"node_modules/@tetherto/wdk-safe-protocol-kit": {
|
|
422
246
|
"version": "6.1.3",
|
|
423
247
|
"resolved": "https://registry.npmjs.org/@tetherto/wdk-safe-protocol-kit/-/wdk-safe-protocol-kit-6.1.3.tgz",
|
|
@@ -464,15 +288,16 @@
|
|
|
464
288
|
}
|
|
465
289
|
},
|
|
466
290
|
"node_modules/@tetherto/wdk-wallet-evm": {
|
|
467
|
-
"version": "1.0.0-beta.
|
|
468
|
-
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet-evm/-/wdk-wallet-evm-1.0.0-beta.
|
|
469
|
-
"integrity": "sha512-
|
|
291
|
+
"version": "1.0.0-beta.12",
|
|
292
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet-evm/-/wdk-wallet-evm-1.0.0-beta.12.tgz",
|
|
293
|
+
"integrity": "sha512-y101FMTrj9Ys67d80RE9La8B2RAd2jckD5+d50c/Wa8tCNa0uUsTf7YIjVssvfmYFrXUL8uq4vMA0fcJwNFIoQ==",
|
|
470
294
|
"license": "Apache-2.0",
|
|
471
295
|
"dependencies": {
|
|
472
296
|
"@noble/curves": "1.9.2",
|
|
473
297
|
"@noble/hashes": "1.8.0",
|
|
474
298
|
"@noble/secp256k1": "2.2.3",
|
|
475
|
-
"@tetherto/wdk-
|
|
299
|
+
"@tetherto/wdk-failover-provider": "1.0.0-beta.2",
|
|
300
|
+
"@tetherto/wdk-wallet": "1.0.0-beta.8",
|
|
476
301
|
"bare-node-runtime": "^1.1.4",
|
|
477
302
|
"bip39": "3.1.0",
|
|
478
303
|
"ethers": "6.14.4",
|
|
@@ -508,56 +333,14 @@
|
|
|
508
333
|
"sodium-universal": "5.0.1"
|
|
509
334
|
}
|
|
510
335
|
},
|
|
511
|
-
"node_modules/@tetherto/wdk-wallet-evm
|
|
512
|
-
"version": "
|
|
513
|
-
"resolved": "https://registry.npmjs.org/
|
|
514
|
-
"integrity": "sha512-
|
|
515
|
-
"
|
|
516
|
-
{
|
|
517
|
-
"type": "individual",
|
|
518
|
-
"url": "https://github.com/sponsors/ethers-io/"
|
|
519
|
-
},
|
|
520
|
-
{
|
|
521
|
-
"type": "individual",
|
|
522
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
523
|
-
}
|
|
524
|
-
],
|
|
525
|
-
"license": "MIT",
|
|
526
|
-
"dependencies": {
|
|
527
|
-
"@adraffy/ens-normalize": "1.10.1",
|
|
528
|
-
"@noble/curves": "1.2.0",
|
|
529
|
-
"@noble/hashes": "1.3.2",
|
|
530
|
-
"@types/node": "22.7.5",
|
|
531
|
-
"aes-js": "4.0.0-beta.5",
|
|
532
|
-
"tslib": "2.7.0",
|
|
533
|
-
"ws": "8.17.1"
|
|
534
|
-
},
|
|
535
|
-
"engines": {
|
|
536
|
-
"node": ">=14.0.0"
|
|
537
|
-
}
|
|
538
|
-
},
|
|
539
|
-
"node_modules/@tetherto/wdk-wallet-evm-erc-4337/node_modules/@tetherto/wdk-wallet-evm/node_modules/ethers/node_modules/@noble/curves": {
|
|
540
|
-
"version": "1.2.0",
|
|
541
|
-
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
542
|
-
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
543
|
-
"license": "MIT",
|
|
336
|
+
"node_modules/@tetherto/wdk-wallet-evm/node_modules/@tetherto/wdk-wallet": {
|
|
337
|
+
"version": "1.0.0-beta.8",
|
|
338
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet/-/wdk-wallet-1.0.0-beta.8.tgz",
|
|
339
|
+
"integrity": "sha512-eCOpPbgRrwVuB7mJS1zGVVN47n/pvX5gLRG+WERH0NmpcIS8OHxa4DYuTJ9P1qEZYRvYl4XOSrhfizC/foonDQ==",
|
|
340
|
+
"license": "Apache-2.0",
|
|
544
341
|
"dependencies": {
|
|
545
|
-
"
|
|
546
|
-
|
|
547
|
-
"funding": {
|
|
548
|
-
"url": "https://paulmillr.com/funding/"
|
|
549
|
-
}
|
|
550
|
-
},
|
|
551
|
-
"node_modules/@tetherto/wdk-wallet-evm-erc-4337/node_modules/@tetherto/wdk-wallet-evm/node_modules/ethers/node_modules/@noble/hashes": {
|
|
552
|
-
"version": "1.3.2",
|
|
553
|
-
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
554
|
-
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
555
|
-
"license": "MIT",
|
|
556
|
-
"engines": {
|
|
557
|
-
"node": ">= 16"
|
|
558
|
-
},
|
|
559
|
-
"funding": {
|
|
560
|
-
"url": "https://paulmillr.com/funding/"
|
|
342
|
+
"bare-node-runtime": "^1.1.4",
|
|
343
|
+
"bip39": "3.1.0"
|
|
561
344
|
}
|
|
562
345
|
},
|
|
563
346
|
"node_modules/@types/node": {
|
|
@@ -629,6 +412,18 @@
|
|
|
629
412
|
"integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==",
|
|
630
413
|
"license": "MIT"
|
|
631
414
|
},
|
|
415
|
+
"node_modules/agent-base": {
|
|
416
|
+
"version": "6.0.2",
|
|
417
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
|
418
|
+
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
419
|
+
"license": "MIT",
|
|
420
|
+
"dependencies": {
|
|
421
|
+
"debug": "4"
|
|
422
|
+
},
|
|
423
|
+
"engines": {
|
|
424
|
+
"node": ">= 6.0.0"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
632
427
|
"node_modules/asn1js": {
|
|
633
428
|
"version": "3.0.7",
|
|
634
429
|
"resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.7.tgz",
|
|
@@ -658,14 +453,15 @@
|
|
|
658
453
|
"license": "MIT"
|
|
659
454
|
},
|
|
660
455
|
"node_modules/axios": {
|
|
661
|
-
"version": "1.
|
|
662
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
663
|
-
"integrity": "sha512-
|
|
456
|
+
"version": "1.16.1",
|
|
457
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz",
|
|
458
|
+
"integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
|
|
664
459
|
"license": "MIT",
|
|
665
460
|
"dependencies": {
|
|
666
|
-
"follow-redirects": "^1.
|
|
667
|
-
"form-data": "^4.0.
|
|
668
|
-
"proxy-
|
|
461
|
+
"follow-redirects": "^1.16.0",
|
|
462
|
+
"form-data": "^4.0.5",
|
|
463
|
+
"https-proxy-agent": "^5.0.1",
|
|
464
|
+
"proxy-from-env": "^2.1.0"
|
|
669
465
|
}
|
|
670
466
|
},
|
|
671
467
|
"node_modules/b4a": {
|
|
@@ -1642,6 +1438,23 @@
|
|
|
1642
1438
|
"b4a": "^1.3.0"
|
|
1643
1439
|
}
|
|
1644
1440
|
},
|
|
1441
|
+
"node_modules/debug": {
|
|
1442
|
+
"version": "4.4.3",
|
|
1443
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1444
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1445
|
+
"license": "MIT",
|
|
1446
|
+
"dependencies": {
|
|
1447
|
+
"ms": "^2.1.3"
|
|
1448
|
+
},
|
|
1449
|
+
"engines": {
|
|
1450
|
+
"node": ">=6.0"
|
|
1451
|
+
},
|
|
1452
|
+
"peerDependenciesMeta": {
|
|
1453
|
+
"supports-color": {
|
|
1454
|
+
"optional": true
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1645
1458
|
"node_modules/delayed-stream": {
|
|
1646
1459
|
"version": "1.0.0",
|
|
1647
1460
|
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
@@ -1723,9 +1536,9 @@
|
|
|
1723
1536
|
}
|
|
1724
1537
|
},
|
|
1725
1538
|
"node_modules/ethers": {
|
|
1726
|
-
"version": "6.
|
|
1727
|
-
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.
|
|
1728
|
-
"integrity": "sha512-
|
|
1539
|
+
"version": "6.16.0",
|
|
1540
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.16.0.tgz",
|
|
1541
|
+
"integrity": "sha512-U1wulmetNymijEhpSEQ7Ct/P/Jw9/e7R1j5XIbPRydgV2DjLVMsULDlNksq3RQnFgKoLlZf88ijYtWEXcPa07A==",
|
|
1729
1542
|
"funding": [
|
|
1730
1543
|
{
|
|
1731
1544
|
"type": "individual",
|
|
@@ -1796,9 +1609,9 @@
|
|
|
1796
1609
|
"license": "MIT"
|
|
1797
1610
|
},
|
|
1798
1611
|
"node_modules/follow-redirects": {
|
|
1799
|
-
"version": "1.
|
|
1800
|
-
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.
|
|
1801
|
-
"integrity": "sha512-
|
|
1612
|
+
"version": "1.16.0",
|
|
1613
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
|
|
1614
|
+
"integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
|
|
1802
1615
|
"funding": [
|
|
1803
1616
|
{
|
|
1804
1617
|
"type": "individual",
|
|
@@ -1928,6 +1741,19 @@
|
|
|
1928
1741
|
"node": ">= 0.4"
|
|
1929
1742
|
}
|
|
1930
1743
|
},
|
|
1744
|
+
"node_modules/https-proxy-agent": {
|
|
1745
|
+
"version": "5.0.1",
|
|
1746
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
1747
|
+
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
1748
|
+
"license": "MIT",
|
|
1749
|
+
"dependencies": {
|
|
1750
|
+
"agent-base": "6",
|
|
1751
|
+
"debug": "4"
|
|
1752
|
+
},
|
|
1753
|
+
"engines": {
|
|
1754
|
+
"node": ">= 6"
|
|
1755
|
+
}
|
|
1756
|
+
},
|
|
1931
1757
|
"node_modules/isomorphic-ws": {
|
|
1932
1758
|
"version": "5.0.0",
|
|
1933
1759
|
"resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz",
|
|
@@ -1982,6 +1808,12 @@
|
|
|
1982
1808
|
"node": ">= 0.6"
|
|
1983
1809
|
}
|
|
1984
1810
|
},
|
|
1811
|
+
"node_modules/ms": {
|
|
1812
|
+
"version": "2.1.3",
|
|
1813
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1814
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1815
|
+
"license": "MIT"
|
|
1816
|
+
},
|
|
1985
1817
|
"node_modules/node-gyp-build": {
|
|
1986
1818
|
"version": "4.8.4",
|
|
1987
1819
|
"resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
|
|
@@ -1996,9 +1828,9 @@
|
|
|
1996
1828
|
}
|
|
1997
1829
|
},
|
|
1998
1830
|
"node_modules/ox": {
|
|
1999
|
-
"version": "0.14.
|
|
2000
|
-
"resolved": "https://registry.npmjs.org/ox/-/ox-0.14.
|
|
2001
|
-
"integrity": "sha512-
|
|
1831
|
+
"version": "0.14.22",
|
|
1832
|
+
"resolved": "https://registry.npmjs.org/ox/-/ox-0.14.22.tgz",
|
|
1833
|
+
"integrity": "sha512-nb5msL8qWbPglhIfZbGJAfw3cqiJjFMiWmACt7kgyWtLib12tcctbHufMT9Hb0Lr6Pt4k9I3dbpueTpbhvbqvA==",
|
|
2002
1834
|
"funding": [
|
|
2003
1835
|
{
|
|
2004
1836
|
"type": "github",
|
|
@@ -2047,10 +1879,13 @@
|
|
|
2047
1879
|
}
|
|
2048
1880
|
},
|
|
2049
1881
|
"node_modules/proxy-from-env": {
|
|
2050
|
-
"version": "
|
|
2051
|
-
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-
|
|
2052
|
-
"integrity": "sha512-
|
|
2053
|
-
"license": "MIT"
|
|
1882
|
+
"version": "2.1.0",
|
|
1883
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
|
|
1884
|
+
"integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
|
|
1885
|
+
"license": "MIT",
|
|
1886
|
+
"engines": {
|
|
1887
|
+
"node": ">=10"
|
|
1888
|
+
}
|
|
2054
1889
|
},
|
|
2055
1890
|
"node_modules/punycode": {
|
|
2056
1891
|
"version": "2.3.1",
|
|
@@ -2244,9 +2079,9 @@
|
|
|
2244
2079
|
}
|
|
2245
2080
|
},
|
|
2246
2081
|
"node_modules/viem": {
|
|
2247
|
-
"version": "2.
|
|
2248
|
-
"resolved": "https://registry.npmjs.org/viem/-/viem-2.
|
|
2249
|
-
"integrity": "sha512-
|
|
2082
|
+
"version": "2.50.4",
|
|
2083
|
+
"resolved": "https://registry.npmjs.org/viem/-/viem-2.50.4.tgz",
|
|
2084
|
+
"integrity": "sha512-rf98F4s3Vlb+uJZEKfay3IbBw3CNCbVtx5Y3UIljlO2tSX420g/J0WQSYsjzBSasUFgxgsXabji14O9kGbiqgg==",
|
|
2250
2085
|
"funding": [
|
|
2251
2086
|
{
|
|
2252
2087
|
"type": "github",
|
|
@@ -2261,8 +2096,8 @@
|
|
|
2261
2096
|
"@scure/bip39": "1.6.0",
|
|
2262
2097
|
"abitype": "1.2.3",
|
|
2263
2098
|
"isows": "1.0.7",
|
|
2264
|
-
"ox": "0.14.
|
|
2265
|
-
"ws": "8.
|
|
2099
|
+
"ox": "0.14.22",
|
|
2100
|
+
"ws": "8.20.1"
|
|
2266
2101
|
},
|
|
2267
2102
|
"peerDependencies": {
|
|
2268
2103
|
"typescript": ">=5.0.4"
|
|
@@ -2288,27 +2123,6 @@
|
|
|
2288
2123
|
"url": "https://paulmillr.com/funding/"
|
|
2289
2124
|
}
|
|
2290
2125
|
},
|
|
2291
|
-
"node_modules/viem/node_modules/ws": {
|
|
2292
|
-
"version": "8.18.3",
|
|
2293
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
2294
|
-
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
2295
|
-
"license": "MIT",
|
|
2296
|
-
"engines": {
|
|
2297
|
-
"node": ">=10.0.0"
|
|
2298
|
-
},
|
|
2299
|
-
"peerDependencies": {
|
|
2300
|
-
"bufferutil": "^4.0.1",
|
|
2301
|
-
"utf-8-validate": ">=5.0.2"
|
|
2302
|
-
},
|
|
2303
|
-
"peerDependenciesMeta": {
|
|
2304
|
-
"bufferutil": {
|
|
2305
|
-
"optional": true
|
|
2306
|
-
},
|
|
2307
|
-
"utf-8-validate": {
|
|
2308
|
-
"optional": true
|
|
2309
|
-
}
|
|
2310
|
-
}
|
|
2311
|
-
},
|
|
2312
2126
|
"node_modules/which-runtime": {
|
|
2313
2127
|
"version": "1.3.2",
|
|
2314
2128
|
"resolved": "https://registry.npmjs.org/which-runtime/-/which-runtime-1.3.2.tgz",
|
|
@@ -2316,9 +2130,9 @@
|
|
|
2316
2130
|
"license": "Apache-2.0"
|
|
2317
2131
|
},
|
|
2318
2132
|
"node_modules/ws": {
|
|
2319
|
-
"version": "8.
|
|
2320
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.
|
|
2321
|
-
"integrity": "sha512-
|
|
2133
|
+
"version": "8.21.0",
|
|
2134
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
|
|
2135
|
+
"integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
|
|
2322
2136
|
"license": "MIT",
|
|
2323
2137
|
"engines": {
|
|
2324
2138
|
"node": ">=10.0.0"
|