aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/crypto.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2017-12-02 03:29:27 +0800
committerGitHub <noreply@github.com>2017-12-02 03:29:27 +0800
commitc291419141b06814c3e6d662998b7eaa6d554528 (patch)
tree4d85215ecfa9f627c12ca2dd14dc4e4c8ef3f22d /packages/contracts/util/crypto.ts
parentc57190dead41846809effb8823bd4e486ca72512 (diff)
parent290a96d41f62b38a6d4b332fc716088caf666381 (diff)
downloaddexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.gz
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.bz2
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.lz
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.xz
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.zst
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.zip
Merge pull request #247 from 0xProject/feature/addContractsRepo
Add contracts repo
Diffstat (limited to 'packages/contracts/util/crypto.ts')
-rw-r--r--packages/contracts/util/crypto.ts38
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..5253b8c15
--- /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;
+ },
+};