Eip712Message
EIP-712 message for TransferWithAuthorization
Properties
| Property | Type | Required | Description |
|---|---|---|---|
from |
string | Yes | |
nonce |
string | Yes | |
to |
string | Yes | |
validAfter |
string | Yes | |
validBefore |
string | Yes | |
value |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "EIP-712 message for TransferWithAuthorization",
"required": [
"from",
"to",
"value",
"validAfter",
"validBefore",
"nonce"
],
"properties": {
"from": {
"type": "string"
},
"nonce": {
"type": "string"
},
"to": {
"type": "string"
},
"validAfter": {
"type": "string"
},
"validBefore": {
"type": "string"
},
"value": {
"type": "string"
}
}
}