@lit-protocol/vincent-ability-sdk 2.4.0 → 2.4.1
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 +6 -0
- package/dist/CHANGELOG.md +26 -0
- package/dist/package.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 2.4.0 (2026-01-07)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- feat: add Relay.link gated signer ability ([3eec29cb](https://github.com/LIT-Protocol/Vincent/commit/3eec29cb))
|
|
6
|
+
- **ability-relay-link**: New package - a Vincent Ability that acts as a secure gated signer for Relay.link swap operations. Supports ERC-4337 Smart Accounts (ZeroDev, Crossmint, Safe) and EOAs. Includes transaction decoding, simulation-based validation, and helpers for building/submitting UserOps.
|
|
7
|
+
- **ability-sdk**: Allow `validateSimulation` and `validateTransaction` lifecycle functions to be async to support dynamic address fetching.
|
|
8
|
+
- **e2e-test-utils**: Add Safe account setup helper, export Crossmint client from setup function, and rename `TEST_PLATFORM_USER_WALLET_OWNER_PRIVATE_KEY` env var to `TEST_AGENT_WALLET_PKP_OWNER_PRIVATE_KEY`. Update ENVs to be more chain-abstract.
|
|
9
|
+
|
|
10
|
+
- Export Vincent Gated Signer abilities builder function and use it in the aave ability to convert it into a gated signer one ([ce148136](https://github.com/LIT-Protocol/Vincent/commit/ce148136))
|
|
11
|
+
|
|
12
|
+
### 🩹 Fixes
|
|
13
|
+
|
|
14
|
+
- Fix address checksum format ([#437](https://github.com/LIT-Protocol/Vincent/pull/437))
|
|
15
|
+
- Export simulation type ([#434](https://github.com/LIT-Protocol/Vincent/pull/434))
|
|
16
|
+
|
|
17
|
+
### 🧱 Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated contracts-sdk to 6.0.0
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- awisniew207 @awisniew207
|
|
24
|
+
- Federico Amura @FedericoAmura
|
|
25
|
+
- FedericoAmura @FedericoAmura
|
|
26
|
+
|
|
1
27
|
## 2.3.4 (2025-11-23)
|
|
2
28
|
|
|
3
29
|
### 🧱 Updated Dependencies
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lit-protocol/vincent-ability-sdk",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"tslib": "^2.8.1",
|
|
14
14
|
"viem": "^2.40.3",
|
|
15
15
|
"zod": "^3.25.64",
|
|
16
|
-
"@lit-protocol/vincent-contracts-sdk": "
|
|
16
|
+
"@lit-protocol/vincent-contracts-sdk": "7.0.0"
|
|
17
17
|
},
|
|
18
18
|
"main": "./dist/src/index.js",
|
|
19
19
|
"types": "./dist/src/index.d.ts",
|