@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
13 lines (10 loc) • 316 B
text/typescript
import _ from 'lodash';
import { BlockchainMonitor } from '../lib/blockchainmonitor';
import logger from '../lib/logger';
const config = require('../config');
const bcm = new BlockchainMonitor();
bcm.start(config, err => {
if (err) throw err;
logger.info('Blockchain monitor started');
});