@lit-protocol/vincent-ability-evm-transaction-signer 0.0.2-ea → 0.0.2
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 +2 -2
- package/README.md +24 -16
- package/dist/CHANGELOG.md +7 -0
- package/dist/CONTRIBUTING.md +88 -0
- package/dist/README.md +174 -0
- package/dist/package.json +3 -3
- package/dist/src/generated/lit-action.js +9 -0
- package/dist/src/generated/vincent-ability-metadata.json +1 -1
- package/dist/src/generated/vincent-bundled-ability.ts +13 -0
- package/package.json +4 -4
- package/dist/src/generated/vincent-bundled-tool.d.ts +0 -971
- package/dist/src/generated/vincent-bundled-tool.d.ts.map +0 -1
- package/dist/src/generated/vincent-bundled-tool.js +0 -15
- package/dist/src/generated/vincent-bundled-tool.js.map +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT EDIT THIS FILE. IT IS GENERATED ON BUILD.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { asBundledVincentAbility } from '@lit-protocol/vincent-ability-sdk';
|
|
6
|
+
import { vincentAbility } from '../lib/vincent-ability';
|
|
7
|
+
import metadata from './vincent-ability-metadata.json';
|
|
8
|
+
|
|
9
|
+
if(!metadata.ipfsCid) {
|
|
10
|
+
throw new Error('ipfsCid is not defined in metadata JSON file');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const bundledVincentAbility = asBundledVincentAbility(vincentAbility, metadata.ipfsCid);
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lit-protocol/vincent-ability-evm-transaction-signer",
|
|
3
|
-
"version": "0.0.2
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@lit-protocol/vincent-policy-contract-whitelist": "0.0.3-ea",
|
|
9
|
-
"@lit-protocol/vincent-ability-sdk": "0.0.2-ea",
|
|
10
8
|
"ethers": "^5.8.0",
|
|
11
9
|
"tslib": "2.8.1",
|
|
12
|
-
"zod": "^3.25.64"
|
|
10
|
+
"zod": "^3.25.64",
|
|
11
|
+
"@lit-protocol/vincent-policy-contract-whitelist": "1.0.0",
|
|
12
|
+
"@lit-protocol/vincent-ability-sdk": "2.0.0"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@lit-protocol/vincent-app-sdk": "^2.0.0"
|