thunderhub/server/utils/appUrls.ts
Anthony Potdevin c8a9869062
chore: 🔧 remove hodlhodl (#113)
* chore: 🔧 remove hodlhodl

* chore: 🔧 cleanup package json
2020-08-05 08:38:38 +02:00

20 lines
643 B
TypeScript

const lnpay =
process.env.NODE_ENV === 'development'
? 'http://localhost:3001/api/lnpay'
: 'https://thunderhub.io/api/lnpay';
const tbase =
process.env.NODE_ENV === 'development'
? 'http://localhost:3010/dev/v1'
: 'https://api.thunderbase.io/v1';
export const appUrls = {
lnpay,
tbase,
oneml: 'https://1ml.com/node/',
blockchain: 'https://www.blockchain.com/btc/tx/',
fees: 'https://mempool.space/api/v1/fees/recommended',
ticker: 'https://blockchain.info/ticker',
github: 'https://api.github.com/repos/apotdevin/thunderhub/releases/latest',
update: 'https://github.com/apotdevin/thunderhub#updating',
};