@owstack/wallet-service
Version:
A service for multisignature HD wallets
17 lines (11 loc) • 453 B
JavaScript
/**
* The base library for the wallet service.
* @module BaseWalletService
*/
const Service = {};
Service.BlockchainMonitor = require('./blockchainmonitor/blockchainmonitor');
Service.EmailService = require('./emailservice/emailservice');
Service.Node = require('./node/node');
Service.PushNotificationsService = require('./pushnotificationsservice/pushnotificationsservice');
Service.WalletService = require('./lib');
module.exports = Service;