* 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
57 lines
2.0 KiB
TypeScript
57 lines
2.0 KiB
TypeScript
import { blockchainTests, constants, expect, randomAddress, transactionHashUtils } from '@0x/contracts-test-utils';
|
|
import { BigNumber } from '@0x/utils';
|
|
|
|
import { hashUtils } from '../src/hash_utils';
|
|
|
|
import { artifacts } from './artifacts';
|
|
|
|
import { CoordinatorContract } from './wrappers';
|
|
|
|
blockchainTests.resets('Libs tests', env => {
|
|
let coordinatorContract: CoordinatorContract;
|
|
let chainId: number;
|
|
const exchangeAddress = randomAddress();
|
|
|
|
before(async () => {
|
|
chainId = await env.getChainIdAsync();
|
|
coordinatorContract = await CoordinatorContract.deployFrom0xArtifactAsync(
|
|
artifacts.Coordinator,
|
|
env.provider,
|
|
env.txDefaults,
|
|
artifacts,
|
|
exchangeAddress,
|
|
new BigNumber(chainId),
|
|
);
|
|
});
|
|
|
|
describe('getApprovalHash', () => {
|
|
it('should return the correct approval hash', async () => {
|
|
const signedTx = {
|
|
salt: constants.ZERO_AMOUNT,
|
|
gasPrice: constants.ZERO_AMOUNT,
|
|
expirationTimeSeconds: constants.ZERO_AMOUNT,
|
|
signerAddress: constants.NULL_ADDRESS,
|
|
data: '0x1234',
|
|
signature: '0x5678',
|
|
domain: {
|
|
verifyingContract: exchangeAddress,
|
|
chainId,
|
|
},
|
|
};
|
|
const txOrigin = constants.NULL_ADDRESS;
|
|
const approval = {
|
|
txOrigin,
|
|
transactionHash: transactionHashUtils.getTransactionHashHex(signedTx),
|
|
transactionSignature: signedTx.signature,
|
|
};
|
|
const expectedApprovalHash = await hashUtils.getApprovalHashHexAsync(
|
|
signedTx,
|
|
coordinatorContract.address,
|
|
txOrigin,
|
|
);
|
|
const approvalHash = await coordinatorContract.getCoordinatorApprovalHash(approval).callAsync();
|
|
expect(expectedApprovalHash).to.eq(approvalHash);
|
|
});
|
|
});
|
|
});
|