Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

fix: update types on wallet legacy options #737

Merged
merged 1 commit into from
Jan 19, 2021
Merged
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
8 changes: 4 additions & 4 deletions src/chains/ethereum/options/src/wallet-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export type WalletConfig = {
/**
* @deprecated Use wallet.accounts instead
*/
accounts: number;
accounts: OptionsAccount[];
};
cliType: string[];
};
Expand All @@ -86,7 +86,7 @@ export type WalletConfig = {
/**
* @deprecated Use wallet.seed instead
*/
seed: number;
seed: string;
};
};

Expand All @@ -100,7 +100,7 @@ export type WalletConfig = {
/**
* @deprecated Use wallet.mnemonic instead
*/
mnemonic: number;
mnemonic: string;
};
};

Expand Down Expand Up @@ -132,7 +132,7 @@ export type WalletConfig = {
/**
* @deprecated Use wallet.secure instead
*/
secure: number;
secure: boolean;
};
};

Expand Down