aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/utils/configs.ts
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-07-13 06:50:13 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-07-13 06:56:01 +0800
commitac5588c7c436e2540f87e432446e103d35c9221a (patch)
tree75fb70ebf9cfb0aaa3450610f2072a43c3b2f1bc /packages/website/ts/utils/configs.ts
parentddb70a89ad99527e03844d23e7c0f3522e98a602 (diff)
downloaddexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.tar
dexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.tar.gz
dexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.tar.bz2
dexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.tar.lz
dexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.tar.xz
dexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.tar.zst
dexon-sol-tools-ac5588c7c436e2540f87e432446e103d35c9221a.zip
Make error reporter not return a promise and add more environment possibilities
Diffstat (limited to 'packages/website/ts/utils/configs.ts')
-rw-r--r--packages/website/ts/utils/configs.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/website/ts/utils/configs.ts b/packages/website/ts/utils/configs.ts
index 97aabd13d..745328d0a 100644
--- a/packages/website/ts/utils/configs.ts
+++ b/packages/website/ts/utils/configs.ts
@@ -2,10 +2,6 @@ import * as _ from 'lodash';
import { Environments, OutdatedWrappedEtherByNetworkId, PublicNodeUrlsByNetworkId } from 'ts/types';
const BASE_URL = window.location.origin;
-const isDevelopment = _.includes(
- ['https://0xproject.localhost:3572', 'https://localhost:3572', 'https://127.0.0.1'],
- BASE_URL,
-);
const INFURA_API_KEY = 'T5WSC8cautR4KXyYgsRs';
export const configs = {
@@ -21,7 +17,6 @@ export const configs = {
DOMAIN_DOGFOOD: 'dogfood.0xproject.com',
DOMAIN_DEVELOPMENT: '0xproject.localhost:3572',
DOMAIN_PRODUCTION: '0xproject.com',
- ENVIRONMENT: isDevelopment ? Environments.DEVELOPMENT : Environments.PRODUCTION,
GOOGLE_ANALYTICS_ID: 'UA-98720122-1',
LAST_LOCAL_STORAGE_FILL_CLEARANCE_DATE: '2017-11-22',
LAST_LOCAL_STORAGE_TRACKED_TOKEN_CLEARANCE_DATE: '2018-7-5',