Moved wallet to separate file.

This commit is contained in:
ricmoo 2017-03-08 01:49:05 -05:00
parent 16529909f9
commit 30cf4a1702

15
wallet/index.js Normal file
View File

@ -0,0 +1,15 @@
'use strict';
var Wallet = require('./wallet');
var HDNode = require('./hdnode');
var SigningKey = require('./signing-key');
module.exports = {
HDNode: HDNode,
Wallet: Wallet,
// Do we need to expose this at all?
_SigningKey: SigningKey,
}
require('ethers-utils/standalone.js')(module.exports);