Package Exports
- eth_account
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eth_account) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eth_account
Ethereum account generator from secret phrase + salt
Installation
Use the package manager npm to install eth_account.
npm install eth_account
Usage
const AccManager = require('./index.js');
AccManager.setSecret('xxxxXXXX');
var eth_acc = new AccManager.Account('account1');
console.log(eth_acc);