Files
app-ethereum/tests/ragger/eip712_input_files/10-multidimensional_arrays-data.json

43 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2022-07-27 18:12:23 +02:00
{
"types": {
"EIP712Domain": [
{ "name": "name", "type": "string" },
{ "name": "version", "type": "string" },
{ "name": "chainId", "type": "uint256" },
{ "name": "verifyingContract", "type": "address" }
2022-07-27 18:12:23 +02:00
],
"Test": [
{ "type": "uint8[][][][]", "name": "depthy" }
2022-07-27 18:12:23 +02:00
]
},
"primaryType": "Test",
2022-07-27 18:12:23 +02:00
"domain": {
"chainId": 1,
"name": "Depth Test",
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
"version": "1"
2022-07-27 18:12:23 +02:00
},
"message": {
"depthy": [
[
[
[
"1",
"2"
],
[
"3"
]
],
[
[
"4",
"5",
"6"
]
2022-07-27 18:12:23 +02:00
]
]
]
}
}