mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-24 06:47:41 +01:00
15 lines
549 B
TypeScript
15 lines
549 B
TypeScript
const lnpay =
|
|
process.env.NODE_ENV === 'development'
|
|
? 'http://localhost:3001/api/lnpay'
|
|
: 'https://thunderhub.io/api/lnpay';
|
|
|
|
export const appUrls = {
|
|
lnpay,
|
|
oneml: 'https://1ml.com/node/',
|
|
blockchain: 'https://www.blockchain.com/btc/tx/',
|
|
fees: 'https://bitcoinfees.earn.com/api/v1/fees/recommended',
|
|
ticker: 'https://blockchain.info/ticker',
|
|
hodlhodl: 'https://hodlhodl.com/api',
|
|
github: 'https://api.github.com/repos/apotdevin/thunderhub/releases/latest',
|
|
update: 'https://github.com/apotdevin/thunderhub#updating',
|
|
};
|