Skip to content

Commit 9a42afa

Browse files
Merge pull request #336 from LIT-Protocol/feat/delegated-wks
Vincent Wrapped Keys
2 parents 2a4272c + b7f81b2 commit 9a42afa

File tree

117 files changed

+6911
-2366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+6911
-2366
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ PINATA_JWT=
66
YELLOWSTONE_RPC_URL=https://yellowstone-rpc.litprotocol.com/
77
BASE_RPC_URL=
88
ETH_RPC_URL=
9+
SOL_RPC_URL=
910

1011
TEST_FUNDER_PRIVATE_KEY=
12+
TEST_SOLANA_FUNDER_PRIVATE_KEY=
1113
TEST_APP_MANAGER_PRIVATE_KEY=
1214
TEST_APP_DELEGATEE_PRIVATE_KEY=
1315
TEST_AGENT_WALLET_PKP_OWNER_PRIVATE_KEY=

nx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"ability-morpho",
6868
"ability-aave",
6969
"ability-debridge",
70-
"policy-send-counter"
70+
"policy-send-counter",
71+
"ability-sol-transaction-signer"
7172
],
7273
"projectsRelationship": "independent",
7374
"releaseTagPattern": "vincent/{projectName}/{version}",

packages/apps/abilities-e2e/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@
1111
"@lit-protocol/vincent-ability-erc20-transfer": "workspace:*",
1212
"@lit-protocol/vincent-ability-evm-transaction-signer": "workspace:*",
1313
"@lit-protocol/vincent-ability-sdk": "workspace:*",
14+
"@lit-protocol/vincent-ability-sol-transaction-signer": "workspace:*",
1415
"@lit-protocol/vincent-ability-uniswap-swap": "workspace:*",
1516
"@lit-protocol/vincent-app-sdk": "workspace:*",
1617
"@lit-protocol/vincent-contracts-sdk": "workspace:*",
1718
"@lit-protocol/vincent-policy-contract-whitelist": "workspace:*",
1819
"@lit-protocol/vincent-policy-send-counter": "workspace:*",
1920
"@lit-protocol/vincent-policy-spending-limit": "workspace:*",
2021
"@lit-protocol/vincent-scaffold-sdk": "^1.1.7",
22+
"@lit-protocol/vincent-wrapped-keys": "workspace:*",
23+
"@solana/web3.js": "^1.98.4",
2124
"esbuild": "^0.25.5",
2225
"ethers": "5.8.0",
2326
"ipfs-only-hash": "^4.0.0",
@@ -26,7 +29,7 @@
2629
},
2730
"devDependencies": {
2831
"@dotenvx/dotenvx": "^1.44.2",
29-
"@lit-protocol/auth-helpers": "^7.2.3",
32+
"@lit-protocol/auth-helpers": "^7.3.0",
3033
"@lit-protocol/constants": "^7.2.3",
3134
"@lit-protocol/contracts-sdk": "^7.2.3",
3235
"@lit-protocol/lit-node-client": "^7.2.3",

packages/apps/abilities-e2e/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"ability-uniswap-swap:action:deploy",
1616
"ability-erc20-approval:action:deploy",
1717
"ability-erc20-transfer:action:deploy",
18+
"ability-sol-transaction-signer:action:deploy",
1819
"ability-evm-transaction-signer:action:deploy",
1920
"policy-contract-whitelist:action:deploy",
2021
"policy-send-counter:action:deploy",

packages/apps/abilities-e2e/test-e2e/helpers/test-variables.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import { getEnv } from './test-config';
1616
export const YELLOWSTONE_RPC_URL = getEnv('YELLOWSTONE_RPC_URL');
1717
export const BASE_RPC_URL = getEnv('BASE_RPC_URL');
1818
export const ETH_RPC_URL = getEnv('ETH_RPC_URL');
19+
export const TEST_SOLANA_FUNDER_PRIVATE_KEY = getEnv('TEST_SOLANA_FUNDER_PRIVATE_KEY');
20+
export const SOL_RPC_URL = getEnv('SOL_RPC_URL');
1921
export const TEST_CONFIG_PATH = path.join(__dirname, '../test-config.json');
2022

2123
export const DATIL_CHAIN = {

0 commit comments

Comments
 (0)