diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-31 23:14:44 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-31 23:14:44 +0800 |
commit | 9a5b52036b8765a6de464d8c6294b46ebcfd604e (patch) | |
tree | 4745283f70e390404283bc7cdb604dd16b47a220 /packages/instant/src/constants.ts | |
parent | 229f11f164ce5109b771295d9aee8ebb74314181 (diff) | |
download | dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.tar dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.tar.gz dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.tar.bz2 dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.tar.lz dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.tar.xz dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.tar.zst dexon-sol-tools-9a5b52036b8765a6de464d8c6294b46ebcfd604e.zip |
Tick less often, and let CSS style the transition
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 12e592ae8..3b320ed36 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_TICK_INTERVAL_MS = 100; +export const PROGRESS_TICK_INTERVAL_MS = 250; export const PROGRESS_STALL_AT_PERCENTAGE = 95; |