aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/inputs/hash_input.tsx
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-23 07:18:52 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-05-24 00:41:35 +0800
commit5913d654bdf77d25b95570b1e656f63cc89ff97a (patch)
tree8cf3fd324cb7cd13e58f67eb3c0491bf5fa6ef18 /packages/website/ts/components/inputs/hash_input.tsx
parentf3fe9661f65f5ac58d45e965b7be02e9738df1c4 (diff)
downloaddexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.tar
dexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.tar.gz
dexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.tar.bz2
dexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.tar.lz
dexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.tar.xz
dexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.tar.zst
dexon-sol-tools-5913d654bdf77d25b95570b1e656f63cc89ff97a.zip
Remove 0x.js as a dependency from website
Diffstat (limited to 'packages/website/ts/components/inputs/hash_input.tsx')
-rw-r--r--packages/website/ts/components/inputs/hash_input.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/website/ts/components/inputs/hash_input.tsx b/packages/website/ts/components/inputs/hash_input.tsx
index 37d4af138..8d9cdfc0b 100644
--- a/packages/website/ts/components/inputs/hash_input.tsx
+++ b/packages/website/ts/components/inputs/hash_input.tsx
@@ -1,5 +1,6 @@
-import { Order, ZeroEx } from '0x.js';
+import { getOrderHashHex } from '@0xproject/order-utils';
import { Styles } from '@0xproject/react-shared';
+import { Order } from '@0xproject/types';
import * as _ from 'lodash';
import * as React from 'react';
import ReactTooltip = require('react-tooltip');
@@ -57,7 +58,7 @@ export class HashInput extends React.Component<HashInputProps, HashInputState> {
takerTokenAddress: hashData.receiveTokenContractAddr,
takerTokenAmount: hashData.receiveAmount,
};
- const orderHash = ZeroEx.getOrderHashHex(order);
+ const orderHash = getOrderHashHex(order);
return orderHash;
}
}