@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
13 lines (9 loc) • 363 B
text/typescript
import logger from '../lib/logger';
import { PushNotificationsService } from '../lib/pushnotificationsservice';
const config = require('../config');
const pushNotificationsService = new PushNotificationsService();
pushNotificationsService.start(config, err => {
if (err) throw err;
logger.info('Push Notification Service started');
});