diff options
author | Fabio Berger <me@fabioberger.com> | 2018-11-09 07:46:32 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-11-09 07:46:32 +0800 |
commit | eb5f514d25e9392a9226cb778e94c5d7dd6e47f7 (patch) | |
tree | 40cc8c6d7481c01057d5c690f6423cc9938b27e5 /packages/instant/src/constants.ts | |
parent | 57318a6ef22876a8c73321b7cc281302bbd67a3b (diff) | |
parent | 117e2f583ff44bdb63340a2134edea0f3ecb77b3 (diff) | |
download | dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.tar dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.tar.gz dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.tar.bz2 dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.tar.lz dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.tar.xz dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.tar.zst dexon-sol-tools-eb5f514d25e9392a9226cb778e94c5d7dd6e47f7.zip |
Merge branch 'development' into fixOrderValidation
* development: (51 commits)
[instant] Viewport specific errors (#1228)
Added more comments
Include wholeNumberSchema in sra-spec schemas
chore(instant): fix linter
Fix isNode
fix(instant): update buy quote at start up in the case of default amount
chore(instant): increase max bundle size for bundle watch
Small code review tweaks
fix: apply css reset to overlay as well
fix(website): turn off production flag when building locally
feat(instant): add Account to the ProviderState
feat(instant): fallback to an empty wallet provider when none is injected
[order_utils.py] is_signature_valid, via Exchange contract (#1216)
chore: linter
fix: progress bar
fix: use fontSize prop in button
feat: make instant resistant to external styles
chore(instant): update OrderState enum to follow capitalization conventions
feat: add faux externall css file
Take out unneeded conditionals
...
Diffstat (limited to 'packages/instant/src/constants.ts')
-rw-r--r-- | packages/instant/src/constants.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/instant/src/constants.ts b/packages/instant/src/constants.ts index 15105b65c..34548f26f 100644 --- a/packages/instant/src/constants.ts +++ b/packages/instant/src/constants.ts @@ -1,7 +1,11 @@ import { BigNumber } from '@0x/utils'; + +import { Network } from './types'; + export const BIG_NUMBER_ZERO = new BigNumber(0); export const ETH_DECIMALS = 18; export const DEFAULT_ZERO_EX_CONTAINER_SELECTOR = '#zeroExInstantContainer'; +export const INJECTED_DIV_CLASS = 'zeroExInstantResetRoot'; export const INJECTED_DIV_ID = 'zeroExInstant'; export const WEB_3_WRAPPER_TRANSACTION_FAILED_ERROR_MSG_PREFIX = 'Transaction failed'; export const GWEI_IN_WEI = new BigNumber(1000000000); @@ -13,3 +17,8 @@ export const ETH_GAS_STATION_API_BASE_URL = 'https://ethgasstation.info'; export const COINBASE_API_BASE_URL = 'https://api.coinbase.com/v2'; export const PROGRESS_STALL_AT_WIDTH = '95%'; export const PROGRESS_FINISH_ANIMATION_TIME_MS = 200; +export const ETHEREUM_NODE_URL_BY_NETWORK = { + [Network.Mainnet]: 'https://mainnet.infura.io/', + [Network.Kovan]: 'https://kovan.infura.io/', +}; +export const BLOCK_POLLING_INTERVAL_MS = 10000; // 10s |