diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 07:23:19 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 08:45:35 +0800 |
commit | fbf89aea1c710f4af131fa8d5653e0f1914ff88a (patch) | |
tree | 639849b7dcf7e02e8b4698f09e6d99c0b71e619d /src | |
parent | 98e8a6dd706f0a630402d9009ad3dcf9b0ff872d (diff) | |
download | dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.gz dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.bz2 dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.lz dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.xz dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.zst dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.zip |
Make getOrderHashHex static
Diffstat (limited to 'src')
-rw-r--r-- | src/0x.ts | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -150,6 +150,16 @@ export class ZeroEx { return baseUnitAmount; } /** + * Computes the orderHash for a supplied order. + * @param order An object that conforms to the Order or SignedOrder interface definitions. + * @return The resulting orderHash from hashing the supplied order. + */ + public static getOrderHashHex(order: Order|SignedOrder): string { + assert.doesConformToSchema('order', order, orderSchema); + const orderHashHex = utils.getOrderHashHex(order); + return orderHashHex; + } + /** * Instantiates a new ZeroEx instance that provides the public interface to the 0x.js library. * @param provider The Web3.js Provider instance you would like the 0x.js library to use for interacting with * the Ethereum network. @@ -185,16 +195,6 @@ export class ZeroEx { return availableAddresses; } /** - * Computes the orderHash for a supplied order. - * @param order An object that conforms to the Order or SignedOrder interface definitions. - * @return The resulting orderHash from hashing the supplied order. - */ - public getOrderHashHex(order: Order|SignedOrder): string { - assert.doesConformToSchema('order', order, orderSchema); - const orderHashHex = utils.getOrderHashHex(order); - return orderHashHex; - } - /** * Signs an orderHash and returns it's elliptic curve signature. * This method currently supports TestRPC, Geth and Parity above and below V1.6.6 * @param orderHash Hex encoded orderHash to sign. |