Files
app-ethereum/tests/ragger/eip712_input_files/13-empty_arrays-data.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2023-07-05 17:08:20 +02:00
{
"domain": {
"chainId": 5,
"name": "Empty Arrays",
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
"version": "1"
},
"message": {
2024-03-22 17:35:57 +01:00
"test1": [],
"test2": [
2023-07-05 17:08:20 +02:00
[
2024-03-22 17:35:57 +01:00
"one",
"two"
2023-07-05 17:08:20 +02:00
],
[],
[
2024-03-22 17:35:57 +01:00
"three",
"four"
2023-07-05 17:08:20 +02:00
]
2024-03-22 17:35:57 +01:00
],
"test3": [
{
"sub": [
{
"sub": [],
"value": 3
}
],
"value": 1
}
],
"test4": [
{
"sub": [],
"value": 2
}
],
"test5": []
2023-07-05 17:08:20 +02:00
},
"primaryType": "Struct",
"types": {
"EIP712Domain": [
{ "name": "name", "type": "string" },
{ "name": "version", "type": "string" },
{ "name": "chainId", "type": "uint256" },
{ "name": "verifyingContract", "type": "address" }
],
"Struct": [
2024-03-22 17:35:57 +01:00
{ "name": "test1", "type": "uint8[]" },
{ "name": "test2", "type": "string[][]" },
{ "name": "test3", "type": "Top[]" },
{ "name": "test4", "type": "Top[]" },
{ "name": "test5", "type": "Top[]" }
],
"Bottom": [
{ "name": "value", "type": "uint8" }
],
"Mid": [
{ "name": "sub", "type": "Bottom[]" },
{ "name": "value", "type": "uint8" }
],
"Top": [
{ "name": "sub", "type": "Mid[]" },
{ "name": "value", "type": "uint8" }
2023-07-05 17:08:20 +02:00
]
}
}