forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
{
|
|
"types": {
|
|
"EIP712Domain": [
|
|
{
|
|
"name": "name",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "version",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "chainId",
|
|
"type": "uint256"
|
|
},
|
|
{
|
|
"name": "verifyingContract",
|
|
"type": "address"
|
|
}
|
|
],
|
|
"Foo": [
|
|
{
|
|
"name": "addys",
|
|
"type": "address[]"
|
|
},
|
|
{
|
|
"name": "stringies",
|
|
"type": "string[]"
|
|
},
|
|
{
|
|
"name": "inties",
|
|
"type": "uint[]"
|
|
}
|
|
]
|
|
},
|
|
"primaryType": "Foo",
|
|
"domain": {
|
|
"name": "Lorem",
|
|
"version": "1",
|
|
"chainId": "1",
|
|
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
|
|
},
|
|
"message": {
|
|
"addys": [
|
|
"0x0000000000000000000000000000000000000001",
|
|
"0x0000000000000000000000000000000000000002",
|
|
"0x0000000000000000000000000000000000000003"
|
|
],
|
|
"stringies": [
|
|
"lorem",
|
|
"ipsum",
|
|
"dolores"
|
|
],
|
|
"inties": [
|
|
"0x0000000000000000000000000000000000000001",
|
|
"3",
|
|
4.0
|
|
]
|
|
}
|
|
}
|
|
|