aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/constants.ts')
-rw-r--r--src/utils/constants.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils/constants.ts b/src/utils/constants.ts
index d56ee16c5..1b11d7055 100644
--- a/src/utils/constants.ts
+++ b/src/utils/constants.ts
@@ -1,7 +1,10 @@
+import * as BigNumber from 'bignumber.js';
+
export const constants = {
NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
TESTRPC_NETWORK_ID: 50,
MAX_DIGITS_IN_UNSIGNED_256_INT: 78,
INVALID_JUMP_PATTERN: 'invalid JUMP at',
OUT_OF_GAS_PATTERN: 'out of gas',
+ UNLIMITED_ALLOWANCE_IN_BASE_UNITS: new BigNumber(2).pow(256).minus(1),
};