EIP712 tests - Renamed -test.json files into -data.json

This commit is contained in:
Alexandre Paillier
2022-08-16 16:19:06 +02:00
parent fd93495096
commit 089de9e28f
13 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
{
"domain": {
"chainId": 1,
"name": "Boolean test",
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
"version": "1"
},
"message": {
"Bueno" : true,
"NoBueno": false
},
"primaryType": "Test",
"types": {
"EIP712Domain": [
{ "name": "name", "type": "string" },
{ "name": "version", "type": "string" },
{ "name": "chainId", "type": "uint256" },
{ "name": "verifyingContract", "type": "address" }
],
"Test": [
{ "name": "Bueno", "type": "bool" },
{ "name": "NoBueno", "type": "bool" }
]
}
}