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