@lit-protocol/vincent-ability-uniswap-swap 6.0.0 → 8.0.0
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/CHANGELOG.md +25 -0
- package/dist/CHANGELOG.md +30 -0
- package/dist/package.json +1 -1
- package/dist/src/generated/lit-action.js +2 -2
- package/dist/src/generated/vincent-ability-metadata.json +1 -1
- package/dist/src/generated/vincent-bundled-ability.d.ts +18 -12
- package/dist/src/generated/vincent-bundled-ability.d.ts.map +1 -1
- package/dist/src/generated/vincent-prepare-metadata.json +3 -3
- package/dist/src/lib/schemas.d.ts +18 -12
- package/dist/src/lib/schemas.d.ts.map +1 -1
- package/dist/src/lib/schemas.js +22 -5
- package/dist/src/lib/schemas.js.map +1 -1
- package/dist/src/lib/vincent-ability.d.ts +18 -12
- package/dist/src/lib/vincent-ability.d.ts.map +1 -1
- package/dist/src/lib/vincent-ability.js +68 -44
- package/dist/src/lib/vincent-ability.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# 8.0.0 (2025-10-08)
|
|
2
|
+
|
|
3
|
+
### ⚠️ Breaking Changes
|
|
4
|
+
|
|
5
|
+
- Remove the ApproveAndSwap Ability Action from the Uniswap Swap Ability, and format returned tokenIn allowances and balances as decimal strings ([0b80ad90](https://github.com/LIT-Protocol/Vincent/commit/0b80ad90))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Wyatt Barnes @spacesailor24
|
|
10
|
+
|
|
11
|
+
# 7.0.0 (2025-10-08)
|
|
12
|
+
|
|
13
|
+
### ⚠️ Breaking Changes
|
|
14
|
+
|
|
15
|
+
- The nativeTokenBalance, tokenInAddress, tokenInBalance properties of the Uniswap Ability Precheck success response have been made optional and can now possibly return undefined ([6069020e](https://github.com/LIT-Protocol/Vincent/commit/6069020e))
|
|
16
|
+
|
|
17
|
+
### 🧱 Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated ability-sdk to 2.3.1
|
|
20
|
+
- Updated app-sdk to 2.2.3
|
|
21
|
+
|
|
22
|
+
### ❤️ Thank You
|
|
23
|
+
|
|
24
|
+
- Wyatt Barnes @spacesailor24
|
|
25
|
+
|
|
1
26
|
# 6.0.0 (2025-10-06)
|
|
2
27
|
|
|
3
28
|
### ⚠️ Breaking Changes
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
# 7.0.0 (2025-10-08)
|
|
2
|
+
|
|
3
|
+
### ⚠️ Breaking Changes
|
|
4
|
+
|
|
5
|
+
- The nativeTokenBalance, tokenInAddress, tokenInBalance properties of the Uniswap Ability Precheck success response have been made optional and can now possibly return undefined ([6069020e](https://github.com/LIT-Protocol/Vincent/commit/6069020e))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated ability-sdk to 2.3.1
|
|
10
|
+
- Updated app-sdk to 2.2.3
|
|
11
|
+
|
|
12
|
+
### ❤️ Thank You
|
|
13
|
+
|
|
14
|
+
- Wyatt Barnes @spacesailor24
|
|
15
|
+
|
|
16
|
+
# 6.0.0 (2025-10-06)
|
|
17
|
+
|
|
18
|
+
### ⚠️ Breaking Changes
|
|
19
|
+
|
|
20
|
+
- Adds new Ability parameters that dictate what the Ability does (e.g. ERC20 allowance approvals, Uniswap Swaps, or both). Additionally, adds support for Alchemy gas sponsorship of both ERC20 approval and Uniswap swap txs. The Ability now returns failure reponses for known errors like insufficient balances or allowances ([39b5e217](https://github.com/LIT-Protocol/Vincent/commit/39b5e217))
|
|
21
|
+
|
|
22
|
+
### 🧱 Updated Dependencies
|
|
23
|
+
|
|
24
|
+
- Updated ability-sdk to 2.3.0
|
|
25
|
+
- Updated app-sdk to 2.2.2
|
|
26
|
+
|
|
27
|
+
### ❤️ Thank You
|
|
28
|
+
|
|
29
|
+
- Wyatt Barnes @spacesailor24
|
|
30
|
+
|
|
1
31
|
# 5.0.0 (2025-09-25)
|
|
2
32
|
|
|
3
33
|
### ⚠️ Breaking Changes
|