Change verifyingContractAddress -> verifyingContract everywhere

This commit is contained in:
Amir Bandeali
2019-09-18 11:50:35 -07:00
parent b359738037
commit ae75aed55e
43 changed files with 86 additions and 86 deletions

View File

@@ -36,7 +36,7 @@ describe('signTypedDataUtils', () => {
},
primaryType: 'Test',
};
const orderSignTypedDataHashHex = '0xc59d01479d63bda79d1c7fefc883a81ff247f9a1f9168c748922cd7e0dcd5eca';
const orderSignTypedDataHashHex = '0x78772b297e1b0b31089589a6608930cceba855af9d3ccf7b92cf47fa881e21f7';
const orderSignTypedData = {
types: {
EIP712Domain: [
@@ -53,7 +53,7 @@ describe('signTypedDataUtils', () => {
type: 'uint256',
},
{
name: 'verifyingContractAddress',
name: 'verifyingContract',
type: 'address',
},
],
@@ -112,7 +112,7 @@ describe('signTypedDataUtils', () => {
name: '0x Protocol',
version: '2',
chainId: 1337,
verifyingContractAddress: '0x0000000000000000000000000000000000000000',
verifyingContract: '0x0000000000000000000000000000000000000000',
},
message: {
makerAddress: '0x0000000000000000000000000000000000000000',
@@ -160,7 +160,7 @@ describe('signTypedDataUtils', () => {
};
const hash = signTypedDataUtils.generateTypedDataHash(uninitializedOrder).toString('hex');
const hashHex = `0x${hash}`;
expect(hashHex).to.be.eq('0x7624dcf06a5ba0e2799a87adba76a13c7d6418214d6b3c9bc239fdf2422f2027');
expect(hashHex).to.be.eq('0x510449a190415c4770080d857a1c654b653a0c054c94a7a8e9f08f623f9e824f');
});
});
});