diff options
author | Steve Klebanoff <steve@0xproject.com> | 2018-12-01 05:12:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-01 05:12:06 +0800 |
commit | 94d81bd5621535ca3a02ceb690ec963036b0ec6b (patch) | |
tree | 3843ab3b991c0d3a0a37f525a0d742df47464bfc /packages/instant/src/constants.ts | |
parent | f8daacc19aef4a2c0920e8b5dad87af7b8b12196 (diff) | |
parent | 34b2f4736e30b50f94a3110c313131b56e35bc02 (diff) | |
download | dexon-0x-contracts-94d81bd5621535ca3a02ceb690ec963036b0ec6b.tar.gz dexon-0x-contracts-94d81bd5621535ca3a02ceb690ec963036b0ec6b.tar.zst dexon-0x-contracts-94d81bd5621535ca3a02ceb690ec963036b0ec6b.zip |
Merge pull request #1359 from 0xProject/feature/instant/prod-env-switches-cdn
[instant] CDN-approach to identifying environments
Diffstat (limited to 'packages/instant/src/constants.ts')
-rw-r--r-- | packages/instant/src/constants.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/instant/src/constants.ts b/packages/instant/src/constants.ts index 163be40b3..0dd770ec6 100644 --- a/packages/instant/src/constants.ts +++ b/packages/instant/src/constants.ts @@ -22,6 +22,11 @@ export const HEAP_ANALYTICS_ID = process.env.HEAP_ANALYTICS_ID; 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 INSTANT_DISCHARGE_TARGET = process.env.INSTANT_DISCHARGE_TARGET as + | 'production' + | 'dogfood' + | 'staging' + | undefined; export const COINBASE_WALLET_IOS_APP_STORE_URL = 'https://itunes.apple.com/us/app/coinbase-wallet/id1278383455?mt=8'; export const COINBASE_WALLET_ANDROID_APP_STORE_URL = 'https://play.google.com/store/apps/details?id=org.toshi&hl=en'; export const COINBASE_WALLET_SITE_URL = 'https://wallet.coinbase.com/'; |