aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/constants.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-10-30 06:17:29 +0800
committerGitHub <noreply@github.com>2018-10-30 06:17:29 +0800
commit48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae (patch)
tree56639fa21ff4907defb8b30557ed02d951ebe675 /packages/instant/src/constants.ts
parentfdf9e860dedf5dbe7840951f304a33ac2d7b1b51 (diff)
parentaeec8f47ef9f72d73674f625a381f60df8a3246a (diff)
downloaddexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.tar
dexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.tar.gz
dexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.tar.bz2
dexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.tar.lz
dexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.tar.xz
dexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.tar.zst
dexon-sol-tools-48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae.zip
Merge pull request #1196 from 0xProject/feature/instant/default-gas-price
[instant] Add default gasPrice of 6 gwei to transactions
Diffstat (limited to 'packages/instant/src/constants.ts')
-rw-r--r--packages/instant/src/constants.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/instant/src/constants.ts b/packages/instant/src/constants.ts
index e4281d54a..47cb2eaeb 100644
--- a/packages/instant/src/constants.ts
+++ b/packages/instant/src/constants.ts
@@ -3,3 +3,5 @@ export const BIG_NUMBER_ZERO = new BigNumber(0);
export const ETH_DECIMALS = 18;
export const DEFAULT_ZERO_EX_CONTAINER_SELECTOR = '#zeroExInstantContainer';
export const WEB_3_WRAPPER_TRANSACTION_FAILED_ERROR_MSG_PREFIX = 'Transaction failed';
+export const GWEI_IN_WEI = new BigNumber(1000000000);
+export const DEFAULT_GAS_PRICE = GWEI_IN_WEI.mul(6);