feat(account): add newMnemonic

dev
neeboo 5 years ago
parent e5a2e455d1
commit 6daa1120e0
  1. 1
      .travis.yml
  2. 17
      packages/harmony-account/src/wallet.ts

@ -10,6 +10,7 @@ install:
- yarn bootstrap
script:
- yarn dist
cache:
directories:
- '$HOME/.yarn-cache'

@ -5,11 +5,11 @@ import {
getAddress,
generatePrivateKey,
} from '@harmony-js/crypto';
import { Messenger } from '@harmony-js/network';
import { isPrivateKey, isAddress } from '@harmony-js/utils';
import { Transaction } from '@harmony-js/transaction';
import { Account } from './account';
import { defaultMessenger } from './utils';
import {Messenger} from '@harmony-js/network';
import {isPrivateKey, isAddress} from '@harmony-js/utils';
import {Transaction} from '@harmony-js/transaction';
import {Account} from './account';
import {defaultMessenger} from './utils';
class Wallet {
// static method generate Mnemonic
@ -47,10 +47,13 @@ class Wallet {
this.messenger = messenger;
}
/**
* @function generateMnemonic
* @function newMnemonic
* @memberof Wallet
* @return {string} Mnemonics
*/
newMnemonic(): string {
return Wallet.generateMnemonic();
}
/**
* @function addByMnemonic
@ -326,4 +329,4 @@ class Wallet {
}
}
export { Wallet };
export {Wallet};

Loading…
Cancel
Save