13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
export const constants = {
|
|
TEC_DOMAIN_NAME: '0x Protocol Trade Execution Coordinator',
|
|
TEC_DOMAIN_VERSION: '1.0.0',
|
|
TEC_APPROVAL_SCHEMA: {
|
|
name: 'TECApproval',
|
|
parameters: [
|
|
{ name: 'transactionHash', type: 'bytes32' },
|
|
{ name: 'transactionSignature', type: 'bytes' },
|
|
{ name: 'approvalExpirationTimeSeconds', type: 'uint256' },
|
|
],
|
|
},
|
|
};
|