Use polyfilled fetch from utils
This commit is contained in:
@@ -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);
|
||||
},
|
||||
|
Reference in New Issue
Block a user