aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/constants.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-10-30 03:51:38 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-10-30 03:52:32 +0800
commitaeec8f47ef9f72d73674f625a381f60df8a3246a (patch)
tree56639fa21ff4907defb8b30557ed02d951ebe675 /packages/instant/src/constants.ts
parentfdf9e860dedf5dbe7840951f304a33ac2d7b1b51 (diff)
downloaddexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.tar
dexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.tar.gz
dexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.tar.bz2
dexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.tar.lz
dexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.tar.xz
dexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.tar.zst
dexon-sol-tools-aeec8f47ef9f72d73674f625a381f60df8a3246a.zip
feat(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);