@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
16 lines (14 loc) • 392 B
text/typescript
module.exports = (wallet, appName, appVersion) => {
if (!appVersion || !appName) return;
if (wallet.network == 'livenet' && appVersion.major == 5) {
return {
title: 'Deprecated Test message',
body: 'Only for bitpay, old wallets',
link: 'http://bitpay.com',
id: 'bitpay1',
dismissible: true,
category: 'critical',
app: 'bitpay'
};
}
};