@lit-protocol/vincent-ability-evm-transaction-signer 0.0.12-mma → 0.1.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 +24 -0
- package/README.md +0 -2
- package/dist/CHANGELOG.md +24 -0
- package/dist/README.md +0 -2
- package/dist/package.json +2 -2
- package/dist/src/generated/lit-action.js +2 -2
- package/dist/src/generated/vincent-ability-metadata.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 0.1.0 (2025-09-11)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- Refactor the Uniswap Swap Ability to utilize a prepare step which uses a Lit Action to generate and sign a Uniswap route generated by the V3 Alpha Router. The Swap Ability now intakes the signed route, validates it was signed by the expected PKP (which can only be used to sign the generated Uniswap routes within the prepare Lit Action), then uses the provided route to create and sign the Uniswap Swap transaction with the Agent Wallet PKP. The Uniswap Swap Ability was also updated to no longer support the Spending Limit Policy, and currently doesn't support any Policies. ([8bbb1c07](https://github.com/LIT-Protocol/Vincent/commit/8bbb1c07))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated ability-sdk to 2.1.0
|
|
10
|
+
- Updated app-sdk to 2.1.0
|
|
11
|
+
- Updated policy-contract-whitelist to 1.1.0
|
|
12
|
+
|
|
13
|
+
### ❤️ Thank You
|
|
14
|
+
|
|
15
|
+
- Wyatt Barnes @spacesailor24
|
|
16
|
+
|
|
17
|
+
## 0.0.3 (2025-09-03)
|
|
18
|
+
|
|
19
|
+
### 🧱 Updated Dependencies
|
|
20
|
+
|
|
21
|
+
- Updated ability-sdk to 2.0.1
|
|
22
|
+
- Updated app-sdk to 2.0.1
|
|
23
|
+
- Updated policy-contract-whitelist to 1.0.1
|
|
24
|
+
|
|
1
25
|
## 0.0.2 (2025-08-05)
|
|
2
26
|
|
|
3
27
|
### 🧱 Updated Dependencies
|
package/README.md
CHANGED
|
@@ -17,7 +17,6 @@ This Vincent Ability is intended to be used with Vincent Policies, such as the [
|
|
|
17
17
|
The Transaction Signer Ability is built using the Vincent Ability SDK and provides a secure way to sign Ethereum transactions. Here's how it operates:
|
|
18
18
|
|
|
19
19
|
1. **Precheck Phase**: Validates the transaction structure and runs policy checks
|
|
20
|
-
|
|
21
20
|
- Deserializes the provided serialized transaction using ethers.js
|
|
22
21
|
- Validates all required fields are present (nonce, gasPrice, gasLimit, etc.)
|
|
23
22
|
- Returns deserialized transaction details for review
|
|
@@ -29,7 +28,6 @@ The Transaction Signer Ability is built using the Vincent Ability SDK and provid
|
|
|
29
28
|
### Workflow
|
|
30
29
|
|
|
31
30
|
1. **Precheck Phase**: Validates the transaction structure and runs policy checks
|
|
32
|
-
|
|
33
31
|
- Deserializes the provided serialized transaction using ethers.js
|
|
34
32
|
- Validates all required fields are present (nonce, gasPrice, gasLimit, etc.)
|
|
35
33
|
- Returns deserialized transaction details for review
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 0.1.0 (2025-09-11)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- Refactor the Uniswap Swap Ability to utilize a prepare step which uses a Lit Action to generate and sign a Uniswap route generated by the V3 Alpha Router. The Swap Ability now intakes the signed route, validates it was signed by the expected PKP (which can only be used to sign the generated Uniswap routes within the prepare Lit Action), then uses the provided route to create and sign the Uniswap Swap transaction with the Agent Wallet PKP. The Uniswap Swap Ability was also updated to no longer support the Spending Limit Policy, and currently doesn't support any Policies. ([8bbb1c07](https://github.com/LIT-Protocol/Vincent/commit/8bbb1c07))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated ability-sdk to 2.1.0
|
|
10
|
+
- Updated app-sdk to 2.1.0
|
|
11
|
+
- Updated policy-contract-whitelist to 1.1.0
|
|
12
|
+
|
|
13
|
+
### ❤️ Thank You
|
|
14
|
+
|
|
15
|
+
- Wyatt Barnes @spacesailor24
|
|
16
|
+
|
|
17
|
+
## 0.0.3 (2025-09-03)
|
|
18
|
+
|
|
19
|
+
### 🧱 Updated Dependencies
|
|
20
|
+
|
|
21
|
+
- Updated ability-sdk to 2.0.1
|
|
22
|
+
- Updated app-sdk to 2.0.1
|
|
23
|
+
- Updated policy-contract-whitelist to 1.0.1
|
|
24
|
+
|
|
1
25
|
## 0.0.2 (2025-08-05)
|
|
2
26
|
|
|
3
27
|
### 🧱 Updated Dependencies
|
package/dist/README.md
CHANGED
|
@@ -17,7 +17,6 @@ This Vincent Ability is intended to be used with Vincent Policies, such as the [
|
|
|
17
17
|
The Transaction Signer Ability is built using the Vincent Ability SDK and provides a secure way to sign Ethereum transactions. Here's how it operates:
|
|
18
18
|
|
|
19
19
|
1. **Precheck Phase**: Validates the transaction structure and runs policy checks
|
|
20
|
-
|
|
21
20
|
- Deserializes the provided serialized transaction using ethers.js
|
|
22
21
|
- Validates all required fields are present (nonce, gasPrice, gasLimit, etc.)
|
|
23
22
|
- Returns deserialized transaction details for review
|
|
@@ -29,7 +28,6 @@ The Transaction Signer Ability is built using the Vincent Ability SDK and provid
|
|
|
29
28
|
### Workflow
|
|
30
29
|
|
|
31
30
|
1. **Precheck Phase**: Validates the transaction structure and runs policy checks
|
|
32
|
-
|
|
33
31
|
- Deserializes the provided serialized transaction using ethers.js
|
|
34
32
|
- Validates all required fields are present (nonce, gasPrice, gasLimit, etc.)
|
|
35
33
|
- Returns deserialized transaction details for review
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lit-protocol/vincent-ability-evm-transaction-signer",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"esbuild": "^0.19.12",
|
|
19
|
-
"esbuild-plugin-polyfill-node": "^0.3.0",
|
|
19
|
+
"@lit-protocol/esbuild-plugin-polyfill-node": "^0.3.0",
|
|
20
20
|
"ipfs-only-hash": "^4.0.0"
|
|
21
21
|
},
|
|
22
22
|
"main": "./dist/src/index.js",
|