Moved wallet to separate file.
This commit is contained in:
parent
16529909f9
commit
30cf4a1702
15
wallet/index.js
Normal file
15
wallet/index.js
Normal 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);
|
Loading…
Reference in New Issue
Block a user