Eip712FreezeUnfreezeAddressTypedData
domain object
namestring
Name of the signing domain
Example:
ERC3643Tokenversionstring
The current version of the signing domain
Example:
1.0.0chainIdnumber
Numeric identifier of the blockchain
Example:
137verifyingContractstring
Address of the contract on the blockchain that verifies the signature
Example:
0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccCtypes object
EIP712Domain object[]
Array [
namestring
typestring
]
FreezeUnfreezeAddress object[]
Array [
accountstring
freezeboolean
noncestring
]
primaryTypestring
Example:
FreezeUnfreezeAddressmessage object
accountstring
Address issuing the transaction
Example:
0x123456A9571241e97cDb61E3FfD1937D885454ddfreezeboolean
Boolean value indicating whether the address is frozen or unfrozen
Example:
truenoncestring
Nonce of the signing wallet
Example:
1Eip712FreezeUnfreezeAddressTypedData
{
"domain": {
"name": "ERC3643Token",
"version": "1.0.0",
"chainId": 137,
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
},
"types": {
"EIP712Domain": [
{
"name": "string",
"type": "string"
}
],
"FreezeUnfreezeAddress": [
{
"account": "string",
"freeze": true,
"nonce": "string"
}
]
},
"primaryType": "FreezeUnfreezeAddress",
"message": {
"account": "0x123456A9571241e97cDb61E3FfD1937D885454dd",
"freeze": true,
"nonce": "1"
}
}