protocol/packages/json-schemas/schemas/zero_ex_transaction_schema.json
Lawrence Forman 376f068719 Add eip712DomainSchema to json-schemas.
Add required field `domain` to `order` and `zeroExTransaction` schemas.
2019-07-23 15:04:46 -07:00

12 lines
350 B
JSON

{
"id": "/zeroExTransactionSchema",
"properties": {
"data": { "$ref": "/hexSchema" },
"signerAddress": { "$ref": "/addressSchema" },
"salt": { "$ref": "/wholeNumberSchema" },
"domain": { "$ref": "/eip712DomainSchema" }
},
"required": ["data", "salt", "signerAddress", "domain"],
"type": "object"
}