mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-24 06:47:41 +01:00
20 lines
643 B
TypeScript
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',
|
|
};
|