From 5a3a8ae7d5867a0304fbb1368dc1f2d018e14ac5 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 24 Aug 2017 20:34:19 +0200 Subject: Refactor UNLIMITED_ALLOWANCE_IN_BASE_UNITS to constants --- src/utils/constants.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/utils/constants.ts') 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), }; -- cgit v1.2.3