1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import * as _ from 'lodash';
import {Environments, OutdatedWrappedEther} from 'ts/types';
const BASE_URL = window.location.origin;
const isDevelopment = _.includes(BASE_URL, 'https://0xproject.dev:3572') ||
_.includes(BASE_URL, 'https://localhost:3572') ||
_.includes(BASE_URL, 'https://127.0.0.1');
export const configs = {
BASE_URL,
ENVIRONMENT: isDevelopment ? Environments.DEVELOPMENT : Environments.PRODUCTION,
BACKEND_BASE_URL: isDevelopment ? 'https://localhost:3001' : 'https://website-api.0xproject.com',
symbolsOfMintableTokens: ['MKR', 'MLN', 'GNT', 'DGD', 'REP'],
// WARNING: ZRX & WETH MUST always be default trackedTokens
defaultTrackedTokenSymbols: ['WETH', 'ZRX'],
lastLocalStorageFillClearanceDate: '2017-11-22',
lastLocalStorageTrackedTokenClearanceDate: '2017-12-13',
isMainnetEnabled: true,
outdatedWrappedEthers: [
{
address: '0x05d090b51c40b020eab3bfcb6a2dff130df22e9c',
timestampMsRangeByNetworkId: {
42: {
startTimestampMs: 1501614680000,
endTimestampMs: 1513106129000,
},
},
} as OutdatedWrappedEther,
],
};
|