[add] Python client packaging first draft

This commit is contained in:
Lucas PASCAL
2023-07-28 11:00:23 +02:00
parent 6bb2d8ab97
commit e5c82d910e
52 changed files with 179 additions and 45 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" }
]
}
}