7 lines
334 B
TypeScript
7 lines
334 B
TypeScript
import { decryptMnemonicToPrivKey } from 'libs/decrypt';
|
|
import { fromPrivateKey } from 'ethereumjs-wallet';
|
|
import { signWrapper } from 'libs/wallet';
|
|
|
|
export const MnemonicWallet = (phrase: string, pass: string, path: string, address: string) =>
|
|
signWrapper(fromPrivateKey(decryptMnemonicToPrivKey(phrase, pass, path, address)));
|