UNPKG

@owstack/wallet-service

Version:

A service for multisignature HD wallets

23 lines (16 loc) 426 B
'use strict'; var cLib = require('../../cLib'); var owsCommon = require('@owstack/ows-common'); var Context = owsCommon.util.Context; var BaseWalletService = require('../../../base-service').WalletService; var BaseUtils = BaseWalletService.Common.Utils; var Unit = cLib.Unit; var context = new Context({ Unit: Unit }); class CUtils extends BaseUtils { constructor() { super(context); } }; module.exports = CUtils;