Files
protocol/packages/json-schemas/schemas/eip712_domain_schema.json

15 lines
343 B
JSON

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