Automatically merged updates to draft EIP(s) 712

Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
This commit is contained in:
Paul Bouchon 2018-07-18 10:00:36 -04:00 committed by EIP Automerge Bot
parent 4746d22b07
commit 5f68f4d49c

View File

@ -215,6 +215,9 @@ Typed data is a JSON object containing type information, domain seprator paramet
properties: {
types: {
type: 'object',
properties: {
EIP712Domain: {type: 'array'},
},
additionalProperties: {
type: 'array',
items: {
@ -225,12 +228,14 @@ Typed data is a JSON object containing type information, domain seprator paramet
},
required: ['name', 'type']
}
}
},
required: ['EIP712Domain']
},
primaryType: {type: 'string'},
domain: {type: 'object'},
message: {type: 'object'}
}
},
required: ['types', 'primaryType', 'domain', 'message']
}
```