diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2017-11-30 14:02:43 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2017-11-30 23:10:18 +0800 |
commit | 4b3e0383235ca4ca0127f24c2e05543bb45a56bb (patch) | |
tree | 7a9c1888f99b1121826b09ca28185565ed47cd50 /packages/contracts/util/crypto.ts | |
parent | c57190dead41846809effb8823bd4e486ca72512 (diff) | |
download | dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.tar dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.tar.gz dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.tar.bz2 dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.tar.lz dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.tar.xz dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.tar.zst dexon-sol-tools-4b3e0383235ca4ca0127f24c2e05543bb45a56bb.zip |
Add contracts to packages, fix most linting errors
Diffstat (limited to 'packages/contracts/util/crypto.ts')
-rw-r--r-- | packages/contracts/util/crypto.ts | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/contracts/util/crypto.ts b/packages/contracts/util/crypto.ts new file mode 100644 index 000000000..e4baee021 --- /dev/null +++ b/packages/contracts/util/crypto.ts @@ -0,0 +1,38 @@ +import {BigNumber} from 'bignumber.js'; +import BN = require('bn.js'); +import ABI = require('ethereumjs-abi'); +import ethUtil = require('ethereumjs-util'); +import * as _ from 'lodash'; + +export const crypto = { + /* + * We convert types from JS to Solidity as follows: + * BigNumber -> uint256 + * number -> uint8 + * string -> string + * boolean -> bool + * valid Ethereum address -> address + */ + solSHA3(args: any[]): Buffer { + const argTypes: string[] = []; + _.each(args, (arg, i) => { + const isNumber = _.isFinite(arg); + if (isNumber) { + argTypes.push('uint8'); + } else if ((arg).isBigNumber) { + argTypes.push('uint256'); + args[i] = new BN(arg.toString(10), 10); + } else if (ethUtil.isValidAddress(arg)) { + argTypes.push('address'); + } else if (_.isString(arg)) { + argTypes.push('string'); + } else if (_.isBoolean(arg)) { + argTypes.push('bool'); + } else { + throw new Error(`Unable to guess arg type: ${arg}`); + } + }); + const hash = ABI.soliditySHA3(argTypes, args); + return hash; + }, +}; |