diff options
Diffstat (limited to 'packages/website/ts/schemas')
-rw-r--r-- | packages/website/ts/schemas/order_schema.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/schemas/order_schema.ts b/packages/website/ts/schemas/order_schema.ts index 1d9e96fee..a7fbae411 100644 --- a/packages/website/ts/schemas/order_schema.ts +++ b/packages/website/ts/schemas/order_schema.ts @@ -7,7 +7,7 @@ export const orderSchema = { signature: { $ref: '/SignatureData' }, expirationUnixTimestampSec: { type: 'string' }, feeRecipient: { type: 'string' }, - exchangeContract: { type: 'string' }, + exchangeContractAddress: { type: 'string' }, networkId: { type: 'number' }, }, required: [ @@ -17,7 +17,7 @@ export const orderSchema = { 'signature', 'expirationUnixTimestampSec', 'feeRecipient', - 'exchangeContract', + 'exchangeContractAddress', 'networkId', ], type: 'object', |