@lit-protocol/vincent-ability-aerodrome-swap 0.2.0 → 0.4.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 +21 -0
- package/dist/package.json +8 -4
- package/dist/src/generated/lit-action.js +2 -2
- package/dist/src/generated/vincent-ability-metadata.json +1 -1
- package/dist/src/lib/ability-helpers/find-supported-token-on-base.d.ts +1 -1
- package/dist/src/lib/ability-helpers/find-supported-token-on-base.d.ts.map +1 -1
- package/dist/src/lib/ability-helpers/find-supported-token-on-base.js +2 -2
- package/dist/src/lib/ability-helpers/find-supported-token-on-base.js.map +1 -1
- package/dist/src/lib/vincent-ability.d.ts +1 -0
- package/dist/src/lib/vincent-ability.d.ts.map +1 -1
- package/dist/src/lib/vincent-ability.js +71 -55
- package/dist/src/lib/vincent-ability.js.map +1 -1
- package/package.json +9 -5
- package/vendor/sugar-sdk-0.3.0.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## 0.4.0 (2025-11-06)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- Replace local vendor install of sugar-sdk with NPM install of @dromos-labs/sdk.js ([7c45f92b](https://github.com/LIT-Protocol/Vincent/commit/7c45f92b))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated e2e-test-utils to 1.0.0
|
|
10
|
+
|
|
11
|
+
### ❤️ Thank You
|
|
12
|
+
|
|
13
|
+
- Wyatt Barnes @spacesailor24
|
|
14
|
+
|
|
15
|
+
## 0.3.0 (2025-10-23)
|
|
16
|
+
|
|
17
|
+
### 🚀 Features
|
|
18
|
+
|
|
19
|
+
- Refactor internal use of the SDK to simplify the Aerodrome Swap Ability ([439b73f9](https://github.com/LIT-Protocol/Vincent/commit/439b73f9))
|
|
20
|
+
- Wrap Sugar SDK quote generation in a Lit Actions runOnce to avoid the possible scenario where the Lit nodes get back different quotes causing a Lit Action signing failure ([939dbd82](https://github.com/LIT-Protocol/Vincent/commit/939dbd82))
|
|
21
|
+
|
|
22
|
+
### ❤️ Thank You
|
|
23
|
+
|
|
24
|
+
- Wyatt Barnes @spacesailor24
|
|
25
|
+
|
|
1
26
|
## 0.2.0 (2025-10-20)
|
|
2
27
|
|
|
3
28
|
### 🚀 Features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## 0.3.0 (2025-10-23)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- Refactor internal use of the SDK to simplify the Aerodrome Swap Ability ([439b73f9](https://github.com/LIT-Protocol/Vincent/commit/439b73f9))
|
|
6
|
+
- Wrap Sugar SDK quote generation in a Lit Actions runOnce to avoid the possible scenario where the Lit nodes get back different quotes causing a Lit Action signing failure ([939dbd82](https://github.com/LIT-Protocol/Vincent/commit/939dbd82))
|
|
7
|
+
|
|
8
|
+
### ❤️ Thank You
|
|
9
|
+
|
|
10
|
+
- Wyatt Barnes @spacesailor24
|
|
11
|
+
|
|
12
|
+
## 0.2.0 (2025-10-20)
|
|
13
|
+
|
|
14
|
+
### 🚀 Features
|
|
15
|
+
|
|
16
|
+
- Update Aerodrome Sugar SDK version. Fix Sugar SDK dependency issue when installing the Aerodrome Swap Ability from NPM ([bf7ceef3](https://github.com/LIT-Protocol/Vincent/commit/bf7ceef3))
|
|
17
|
+
|
|
18
|
+
### ❤️ Thank You
|
|
19
|
+
|
|
20
|
+
- Wyatt Barnes @spacesailor24
|
|
21
|
+
|
|
1
22
|
## 0.1.0 (2025-10-17)
|
|
2
23
|
|
|
3
24
|
### 🚀 Features
|
package/dist/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lit-protocol/vincent-ability-aerodrome-swap",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
+
"@dromos-labs/sdk.js": "0.3.0-alpha.1",
|
|
8
9
|
"@lit-protocol/vincent-ability-sdk": "workspace:*",
|
|
9
10
|
"ethers": "^5.8.0",
|
|
10
|
-
"sugar-sdk": "file:vendor/sugar-sdk-0.3.0.tgz",
|
|
11
11
|
"tslib": "2.8.1",
|
|
12
12
|
"zod": "^3.25.64"
|
|
13
13
|
},
|
|
@@ -15,7 +15,12 @@
|
|
|
15
15
|
"@lit-protocol/vincent-app-sdk": "workspace:^"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
+
"@aa-sdk/core": "^4.53.1",
|
|
19
|
+
"@account-kit/infra": "^4.53.1",
|
|
20
|
+
"@account-kit/smart-contracts": "^4.53.1",
|
|
18
21
|
"@lit-protocol/esbuild-plugin-polyfill-node": "^0.3.0",
|
|
22
|
+
"@lit-protocol/vincent-contracts-sdk": "workspace:*",
|
|
23
|
+
"@lit-protocol/vincent-e2e-test-utils": "workspace:*",
|
|
19
24
|
"esbuild": "^0.19.12",
|
|
20
25
|
"ipfs-only-hash": "^4.0.0"
|
|
21
26
|
},
|
|
@@ -24,8 +29,7 @@
|
|
|
24
29
|
"types": "./dist/src/index.d.ts",
|
|
25
30
|
"files": [
|
|
26
31
|
"dist/**",
|
|
27
|
-
"*.md"
|
|
28
|
-
"vendor/**"
|
|
32
|
+
"*.md"
|
|
29
33
|
],
|
|
30
34
|
"type": "commonjs"
|
|
31
35
|
}
|