* move orderParsingUtils from order-utils to connect * Remove many functions from signatureUtils Removed from the exported object, that is. All of them are used in other existing code, so they were all moved to be as local to their usage as possible. * remove orderHashUtils.isValidOrderHash() * Move all *RevertErrors from order-utils... ...into their respective @0x/contracts- packages. * Refactor @0x/order-utils' orderHashUtils away - Move existing routines into @0x/contracts-test-utils - Migrate non-contract-test callers to a newly-exposed getOrderHash() method in DevUtils. * Move all *RevertErrors from @0x/utils... ...into their respective @0x/contracts- packages. * rm transactionHashUtils.isValidTransactionHash() * DevUtils.sol: Fail yarn test if too big to deploy * Refactor @0x/order-utils transactionHashUtils away - Move existing routines into @0x/contracts-test-utils - Migrate non-contract-test callers to a newly-exposed getTransactionHash() method in DevUtils. * Consolidate `Removed export...` CHANGELOG entries * Rm EthBalanceChecker from devutils wrapper exports * Stop importing from '.' or '.../src' * fix builds * fix prettier; dangling promise * increase max bundle size
53 lines
2.2 KiB
TypeScript
53 lines
2.2 KiB
TypeScript
import { assert } from '@0x/assert';
|
|
import { schemas } from '@0x/json-schemas';
|
|
import { eip712Utils } from '@0x/order-utils';
|
|
import { Order, SignedOrder } from '@0x/types';
|
|
import { signTypedDataUtils } from '@0x/utils';
|
|
import * as _ from 'lodash';
|
|
|
|
const INVALID_TAKER_FORMAT = 'instance.takerAddress is not of a type(s) string';
|
|
|
|
const NULL_ADDRESS = '0x0000000000000000000000000000000000000000';
|
|
|
|
export const orderHashUtils = {
|
|
/**
|
|
* Computes the orderHash for a supplied order.
|
|
* @param order An object that conforms to the Order or SignedOrder interface definitions.
|
|
* @return Hex encoded string orderHash from hashing the supplied order.
|
|
*/
|
|
getOrderHashHex(order: SignedOrder | Order): string {
|
|
try {
|
|
assert.doesConformToSchema('order', order, schemas.orderSchema, [schemas.hexSchema]);
|
|
} catch (error) {
|
|
if (_.includes(error.message, INVALID_TAKER_FORMAT)) {
|
|
const errMsg = `Order taker must be of type string. If you want anyone to be able to fill an order - pass ${NULL_ADDRESS}`;
|
|
throw new Error(errMsg);
|
|
}
|
|
throw error;
|
|
}
|
|
|
|
const orderHashBuff = orderHashUtils.getOrderHashBuffer(order);
|
|
const orderHashHex = `0x${orderHashBuff.toString('hex')}`;
|
|
return orderHashHex;
|
|
},
|
|
/**
|
|
* Computes the orderHash for a supplied order
|
|
* @param order An object that conforms to the Order or SignedOrder interface definitions.
|
|
* @return A Buffer containing the resulting orderHash from hashing the supplied order
|
|
*/
|
|
getOrderHashBuffer(order: SignedOrder | Order): Buffer {
|
|
try {
|
|
assert.doesConformToSchema('order', order, schemas.orderSchema, [schemas.hexSchema]);
|
|
} catch (error) {
|
|
if (_.includes(error.message, INVALID_TAKER_FORMAT)) {
|
|
const errMsg = `Order taker must be of type string. If you want anyone to be able to fill an order - pass ${NULL_ADDRESS}`;
|
|
throw new Error(errMsg);
|
|
}
|
|
throw error;
|
|
}
|
|
const typedData = eip712Utils.createOrderTypedData(order);
|
|
const orderHashBuff = signTypedDataUtils.generateTypedDataHash(typedData);
|
|
return orderHashBuff;
|
|
},
|
|
};
|