diff options
author | Jacob Evans <dekz@dekz.net> | 2018-10-09 18:17:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 18:17:11 +0800 |
commit | 024bcf492ddbdceb033466aeadef220adc145332 (patch) | |
tree | 01a364d769f3eede04f4bd1e4a743784d39eea91 /packages/order-utils/src/constants.ts | |
parent | 3ac9dac4f0a6b3875b7ae0ea6dd1855743768ef2 (diff) | |
parent | 75b9e639194e98febf8e378619afef2d578cbc7e (diff) | |
download | dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.tar dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.tar.gz dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.tar.bz2 dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.tar.lz dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.tar.xz dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.tar.zst dexon-sol-tools-024bcf492ddbdceb033466aeadef220adc145332.zip |
Merge pull request #1102 from 0xProject/feature/0x.js/eip712-sign-typed-data
[0x.js][order-utils][web3-wrapper] Expose eth_signTypedData functionality for order signing
Diffstat (limited to 'packages/order-utils/src/constants.ts')
-rw-r--r-- | packages/order-utils/src/constants.ts | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/order-utils/src/constants.ts b/packages/order-utils/src/constants.ts index c23578c20..7de20a696 100644 --- a/packages/order-utils/src/constants.ts +++ b/packages/order-utils/src/constants.ts @@ -13,4 +13,39 @@ export const constants = { BASE_16: 16, INFINITE_TIMESTAMP_SEC: new BigNumber(2524604400), // Close to infinite ZERO_AMOUNT: new BigNumber(0), + EIP712_DOMAIN_NAME: '0x Protocol', + EIP712_DOMAIN_VERSION: '2', + EIP712_DOMAIN_SCHEMA: { + name: 'EIP712Domain', + parameters: [ + { name: 'name', type: 'string' }, + { name: 'version', type: 'string' }, + { name: 'verifyingContract', type: 'address' }, + ], + }, + EIP712_ORDER_SCHEMA: { + name: 'Order', + parameters: [ + { name: 'makerAddress', type: 'address' }, + { name: 'takerAddress', type: 'address' }, + { name: 'feeRecipientAddress', type: 'address' }, + { name: 'senderAddress', type: 'address' }, + { name: 'makerAssetAmount', type: 'uint256' }, + { name: 'takerAssetAmount', type: 'uint256' }, + { name: 'makerFee', type: 'uint256' }, + { name: 'takerFee', type: 'uint256' }, + { name: 'expirationTimeSeconds', type: 'uint256' }, + { name: 'salt', type: 'uint256' }, + { name: 'makerAssetData', type: 'bytes' }, + { name: 'takerAssetData', type: 'bytes' }, + ], + }, + EIP712_ZEROEX_TRANSACTION_SCHEMA: { + name: 'ZeroExTransaction', + parameters: [ + { name: 'salt', type: 'uint256' }, + { name: 'signerAddress', type: 'address' }, + { name: 'data', type: 'bytes' }, + ], + }, }; |