diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-02 01:50:37 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-02 01:50:37 +0800 |
commit | 9990f8720cbc04bc7a5074d6668f22af80b2a476 (patch) | |
tree | 7bada306ed5a2ae70a15339a43b49714f4701323 /packages/instant/src/constants.ts | |
parent | 544ddd44a00fe7432d6d8cef44c75f9bfbc78150 (diff) | |
download | dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.tar dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.tar.gz dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.tar.bz2 dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.tar.lz dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.tar.xz dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.tar.zst dexon-sol-tools-9990f8720cbc04bc7a5074d6668f22af80b2a476.zip |
maxWidth -> toWidth, and make from and to width consistent units
Diffstat (limited to 'packages/instant/src/constants.ts')
-rw-r--r-- | packages/instant/src/constants.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/constants.ts b/packages/instant/src/constants.ts index fcf6e0798..df1e6f53f 100644 --- a/packages/instant/src/constants.ts +++ b/packages/instant/src/constants.ts @@ -8,5 +8,5 @@ export const DEFAULT_GAS_PRICE = GWEI_IN_WEI.mul(6); export const DEFAULT_ESTIMATED_TRANSACTION_TIME_MS = 2 * 60 * 1000; // 2 minutes 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_PERCENTAGE = 95; +export const PROGRESS_STALL_AT_WIDTH = '95%'; export const PROGRESS_FINISH_ANIMATION_TIME_MS = 200; |