chore: 🔧 change to mempool api for fees

This commit is contained in:
AP 2020-07-08 23:09:56 +02:00
parent 1b45f57180
commit 704b04c542
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ describe('Bitcoin Resolvers', () => {
expect(res.errors).toBe(undefined);
expect(fetchMock).toBeCalledWith(
'https://bitcoinfees.earn.com/api/v1/fees/recommended'
'https://mempool.space/api/v1/fees/recommended'
);
expect(res).toMatchSnapshot();
});

View file

@ -13,7 +13,7 @@ export const appUrls = {
tbase,
oneml: 'https://1ml.com/node/',
blockchain: 'https://www.blockchain.com/btc/tx/',
fees: 'https://bitcoinfees.earn.com/api/v1/fees/recommended',
fees: 'https://mempool.space/api/v1/fees/recommended',
ticker: 'https://blockchain.info/ticker',
hodlhodl: 'https://hodlhodl.com/api',
github: 'https://api.github.com/repos/apotdevin/thunderhub/releases/latest',