diff options
author | Fabio Berger <me@fabioberger.com> | 2017-06-10 00:05:21 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-06-10 00:05:21 +0800 |
commit | 8ddab912b29039dfa667e6fc7dd1921edaf5ce3e (patch) | |
tree | 0e17a92e2a4d693b6f83785084be5e81741ff1d3 /src/utils | |
parent | af36ceb0b8f2d8c734b15158e69ba7bfb5fdc5a4 (diff) | |
download | dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.tar dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.tar.gz dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.tar.bz2 dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.tar.lz dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.tar.xz dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.tar.zst dexon-sol-tools-8ddab912b29039dfa667e6fc7dd1921edaf5ce3e.zip |
Move MAX_DIGITS_IN_UNSIGNED_256_INT to constants
Diffstat (limited to 'src/utils')
-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, }; |