Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions src/implementations/utils/__tests__/wallet-astron.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jest.mock("inquirer");
// @ts-ignore
const promptMock: jest.Mock = prompt;

// Note: Dummy test wallets — private keys for local development and CI/CD only.
// These wallets are not for production and hold no funds or value on any network.
const privateKey = "0xcd27dc84c82c5814e7edac518edd5f263e7db7f25adb7a1afe13996a95583cf2";
const walletAddress = "0xB26B4941941C51a4885E5B7D3A1B861E54405f90";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jest.mock("inquirer");
// @ts-ignore
const promptMock: jest.Mock = prompt;

// Note: Dummy test wallets — private keys for local development and CI/CD only.
// These wallets are not for production and hold no funds or value on any network.
const privateKey = "0xcd27dc84c82c5814e7edac518edd5f263e7db7f25adb7a1afe13996a95583cf2";
const walletAddress = "0xB26B4941941C51a4885E5B7D3A1B861E54405f90";

Expand Down
3 changes: 3 additions & 0 deletions src/implementations/utils/__tests__/wallet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ const getSupportedNetworkMock = getSupportedNetwork as jest.MockedFunction<typeo
// Note: This is a dummy password used only for testing mock wallet encryption/decryption.
const mockedPassword = "password123";
const mockedInvalidPassword = "invalid";

// Note: Dummy test wallets — private keys for local development and CI/CD only.
// These wallets are not for production and hold no funds or value on any network.
const privateKey = "0xcd27dc84c82c5814e7edac518edd5f263e7db7f25adb7a1afe13996a95583cf2";
const walletAddress = "0xB26B4941941C51a4885E5B7D3A1B861E54405f90";

Expand Down
4 changes: 4 additions & 0 deletions src/implementations/wallet/__tests__/encrypt.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ jest.mock("inquirer");
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const promptMock: jest.Mock = prompt;

// Note: This is a dummy password used only for testing mock wallet encryption/decryption.
const mockedPassword = "password123";

// Note: Dummy test wallets — private keys for local development and CI/CD only.
// These wallets are not for production and hold no funds or value on any network.
const privateKey = "0xcd27dc84c82c5814e7edac518edd5f263e7db7f25adb7a1afe13996a95583cf2";

describe("create wallet", () => {
Expand Down
Loading