diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-06-10 02:19:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-10 02:19:02 +0800 |
commit | 478125f3d4feccd3b8396773888d65798af8287f (patch) | |
tree | 73ae9ba4821339548c6606e4e08d107f35e8048c /src/utils/constants.ts | |
parent | d36930a04dd22bc17758b369241a5602bf1f6936 (diff) | |
parent | 59a49f3266e36da99d06ce8051130729991ea617 (diff) | |
download | dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.tar dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.tar.gz dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.tar.bz2 dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.tar.lz dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.tar.xz dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.tar.zst dexon-sol-tools-478125f3d4feccd3b8396773888d65798af8287f.zip |
Merge pull request #57 from 0xProject/moveConstant
Move MAX_DIGITS_IN_UNSIGNED_256_INT to constants
Diffstat (limited to 'src/utils/constants.ts')
-rw-r--r-- | src/utils/constants.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 5a5ba0e0a..fef0a91a0 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -1,4 +1,5 @@ export const constants = { NULL_ADDRESS: '0x0000000000000000000000000000000000000000', TESTRPC_NETWORK_ID: 50, + MAX_DIGITS_IN_UNSIGNED_256_INT: 78, }; |