Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fa5d458
feat: init generate and batch generate private key las
spacesailor24 Sep 12, 2025
3350163
feat: sol tx sign ability and e2e test
spacesailor24 Sep 17, 2025
0fc16d2
chore: sol signing e2e test
spacesailor24 Sep 18, 2025
88d5e76
chore: add expected accs to e2e test
spacesailor24 Sep 18, 2025
a4e5636
chore: pnpm build
spacesailor24 Sep 20, 2025
e176eae
chore: pnpm build
spacesailor24 Sep 20, 2025
00508b3
Merge branch 'feat/delegated-wks' into feat/sol-sign-ability
spacesailor24 Sep 20, 2025
c40cf21
Merge branch 'feat/delegated-wks' into feat/sol-sign-ability
spacesailor24 Sep 20, 2025
aead290
feat: working sol sign e2e test
spacesailor24 Sep 20, 2025
7e0f4f1
Merge branch 'feat/delegated-wks' into feat/sol-sign-ability
spacesailor24 Sep 20, 2025
0a86d80
chore: merge conflicts
spacesailor24 Sep 20, 2025
35316cc
chore: refactors after new util methods
spacesailor24 Sep 20, 2025
22ed17b
fix: versioned txs. add test case
spacesailor24 Sep 20, 2025
359d445
Merge branch 'feat/delegated-wks'
spacesailor24 Sep 22, 2025
4cb3b31
Merge branch 'feat/delegated-wks'
spacesailor24 Sep 23, 2025
b617d8f
Merge branch 'feat/delegated-wks'
spacesailor24 Sep 23, 2025
ba098f6
feat: replace versionTx bool with auto detect
spacesailor24 Sep 23, 2025
5e97c1a
feat: add legacyTransactionOptions
spacesailor24 Sep 23, 2025
94d5c6a
chore: adjust legacyTransactionOptions schema and add e2e test cases
spacesailor24 Sep 23, 2025
3d0e244
chore: remove console.log
spacesailor24 Sep 23, 2025
fbc34c3
chore: return version when parsing versioned tx
spacesailor24 Sep 24, 2025
9eb7395
chore: pnpm build
spacesailor24 Sep 24, 2025
89124dc
feat: add clusterD ability param and validate tx is for a specific cl…
spacesailor24 Sep 24, 2025
75a9231
feat: add rpcurl input param to precheck. use lit node rpc for execute
spacesailor24 Sep 24, 2025
6e674b1
chore: use const for sol cluster in e2e test
spacesailor24 Sep 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: working sol sign e2e test
  • Loading branch information
spacesailor24 committed Sep 20, 2025
commit aead290aec3864a43eacad62f1eb01950e6676e3
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ BASE_RPC_URL=
ETH_RPC_URL=

TEST_FUNDER_PRIVATE_KEY=
TEST_SOLANA_FUNDER_PRIVATE_KEY=
TEST_APP_MANAGER_PRIVATE_KEY=
TEST_APP_DELEGATEE_PRIVATE_KEY=
TEST_AGENT_WALLET_PKP_OWNER_PRIVATE_KEY=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { getEnv } from './test-config';
export const YELLOWSTONE_RPC_URL = getEnv('YELLOWSTONE_RPC_URL');
export const BASE_RPC_URL = getEnv('BASE_RPC_URL');
export const ETH_RPC_URL = getEnv('ETH_RPC_URL');
export const TEST_SOLANA_FUNDER_PRIVATE_KEY = getEnv('TEST_SOLANA_FUNDER_PRIVATE_KEY');
export const TEST_CONFIG_PATH = path.join(__dirname, '../test-config.json');

export const DATIL_CHAIN = {
Expand Down
Loading
Loading