Use polyfilled fetch from utils

This commit is contained in:
Steve Klebanoff
2018-10-29 17:11:15 -07:00
parent 30454fe467
commit 2ad2644b6b

View File

@@ -1,10 +1,10 @@
import { BigNumber } from '@0x/utils';
import { BigNumber, fetchAsync } from '@0x/utils';
import { COINBASE_API_BASE_URL } from '../constants';
export const coinbaseApi = {
getEthUsdPrice: async (): Promise<BigNumber> => {
const res = await fetch(`${COINBASE_API_BASE_URL}/prices/ETH-USD/buy`);
const res = await fetchAsync(`${COINBASE_API_BASE_URL}/prices/ETH-USD/buy`);
const resJson = await res.json();
return new BigNumber(resJson.data.amount);
},