Files
protocol/packages/json-schemas/schemas/eip712_domain_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

15 lines
350 B
JSON

{
"id": "/eip712DomainSchema",
"properties": {
"name": { "type": "string" },
"version": { "type": "version" },
"chainId": { "type": "number" },
"verifyingContractAddress": { "$ref": "/addressSchema" }
},
"required": [
"chainId",
"verifyingContractAddress"
],
"type": "object"
}