iw-iost
v1.0.1
Published
>> This project provides a simple package to realize the core logic of the wallet. If you have any questions, please ask at the following website [icanwallet](https://github.com/icanwallet/icanwallet)
Downloads
1
Readme
iw-iost
This project provides a simple package to realize the core logic of the wallet. If you have any questions, please ask at the following website icanwallet
use case
//from mnemonic
const ecc = require('iw-iost/iw-address')
const wallet = ecc.fromMnemonic(mnemonic)
console.log(wallet)
//from privateKey
const wallet2 = ecc.fromPrivateKey(wallet.privateKey)
console.log(wallet2)
//check address
console.log(ecc.isAddress(wallet.address))