diff options
author | Fabio Berger <me@fabioberger.com> | 2018-07-13 05:13:47 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-07-13 05:13:47 +0800 |
commit | 49f1a6933cc22d1e703d631d5b861b8601ca2231 (patch) | |
tree | 3af6e0f9e84f09124d93b176c2cbfdd2a8edcaff /packages/utils/src/fetchAsync.ts | |
parent | a45a29432e722b71fcfc63a8545fa43ffc29b92d (diff) | |
download | dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.tar dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.tar.gz dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.tar.bz2 dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.tar.lz dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.tar.xz dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.tar.zst dexon-sol-tools-49f1a6933cc22d1e703d631d5b861b8601ca2231.zip |
Add fetchAsync util and RPCSubprovider
Diffstat (limited to 'packages/utils/src/fetchAsync.ts')
-rw-r--r-- | packages/utils/src/fetchAsync.ts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/utils/src/fetchAsync.ts b/packages/utils/src/fetchAsync.ts new file mode 100644 index 000000000..7cb2c1759 --- /dev/null +++ b/packages/utils/src/fetchAsync.ts @@ -0,0 +1,29 @@ +import { FetchRequest } from '@0xproject/types'; +import 'isomorphic-fetch'; + +export const fetchAsync = async ( + endpoint: string, + options: FetchRequest, + timeoutMs: number = 20000, +): Promise<Response> => { + let finalOptions; + if ((process as any).browser === true) { + const controller = new AbortController(); + const signal = controller.signal; + setTimeout(() => { + controller.abort(); + }, timeoutMs); + finalOptions = { + signal, + ...options, + }; + } else { + finalOptions = { + timeout: timeoutMs, + ...options, + }; + } + + const response = await fetch(endpoint, finalOptions); + return response; +}; |