@lit-protocol/vincent-e2e-test-utils 2.0.0 → 2.0.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 +24 -0
- package/dist/package.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# 2.0.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
|
+
- Adds a `enableSmartAccount` flag to the `setupVincentDevelopmentEnvironment`. Supports `safe`, `crossmint` and `zerodev` smart accounts. When the flag is set, the development environment will create a Smart Account owned by the `agentWalletOwner` (currently owns the Agent PKP for development). It will then add the Agent PKP as a signer on the Smart Account. ([77fe226d](https://github.com/LIT-Protocol/Vincent/commit/77fe226d))
|
|
11
|
+
|
|
12
|
+
### ⚠️ Breaking Changes
|
|
13
|
+
|
|
14
|
+
- Refactors dev environment to so that the dev EOA mints a Platforum User PKP which mints and owns an Agent PKP for each Vincent App ([d723a4ca](https://github.com/LIT-Protocol/Vincent/commit/d723a4ca))
|
|
15
|
+
|
|
16
|
+
### 🧱 Updated Dependencies
|
|
17
|
+
|
|
18
|
+
- Updated contracts-sdk to 6.0.0
|
|
19
|
+
|
|
20
|
+
### ❤️ Thank You
|
|
21
|
+
|
|
22
|
+
- awisniew207 @awisniew207
|
|
23
|
+
- Wyatt Barnes @spacesailor24
|
|
24
|
+
|
|
1
25
|
## 1.1.3 (2025-11-23)
|
|
2
26
|
|
|
3
27
|
### 🧱 Updated Dependencies
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lit-protocol/vincent-e2e-test-utils",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"tslib": "^2.8.1",
|
|
22
22
|
"viem": "^2.38.3",
|
|
23
23
|
"zod": "^3.25.64",
|
|
24
|
-
"@lit-protocol/vincent-contracts-sdk": "
|
|
24
|
+
"@lit-protocol/vincent-contracts-sdk": "7.0.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "./dist/src/index.js",
|
|
27
27
|
"types": "./dist/src/index.d.ts",
|