This commit is contained in:
Fabio Berger
2018-07-13 12:42:01 +02:00
parent 1229c61ba4
commit 2e5ff53d72
20 changed files with 45 additions and 75 deletions

View File

@@ -1,4 +1,4 @@
import { logUtils } from '@0xproject/utils';
import { fetchAsync, logUtils } from '@0xproject/utils';
import * as _ from 'lodash';
import * as queryString from 'query-string';
@@ -19,14 +19,14 @@ export const fetchUtils = {
async requestAsync(baseUrl: string, path: string, queryParams?: object): Promise<any> {
const query = queryStringFromQueryParams(queryParams);
const url = `${baseUrl}${path}${query}`;
const response = await fetch(url);
const response = await fetchAsync(url);
logErrorIfPresent(response, url);
const result = await response.json();
return result;
},
async postAsync(baseUrl: string, path: string, body: object): Promise<Response> {
const url = `${baseUrl}${path}`;
const response = await fetch(url, {
const response = await fetchAsync(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',