MerkleMintEip712TypedData
types object
EIP712Domain object[]
Array [
namestring
typestring
]
BatchMint object[]
Array [
namestring
typestring
]
primaryTypestring
Possible values: [BatchMint
]
domain object
namestring
Name of the signing domain
Example:
BaseToken
versionstring
The current version of the signing domain
Example:
1.0.0
chainIdnumber
Numeric identifier of the blockchain
Example:
137
verifyingContractstring
Address of the contract on the blockchain that verifies the signature
Example:
0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC
message object
signerstring
Blockchain address of the account used to sign requests
tostring[]
amountstring[]
noncenumber
Unique number per request to prevent replay attacks
MerkleMintEip712TypedData
{
"types": {
"EIP712Domain": [
{
"name": "string",
"type": "string"
}
],
"BatchMint": [
{
"name": "string",
"type": "string"
}
]
},
"primaryType": "BatchMint",
"domain": {
"name": "BaseToken",
"version": "1.0.0",
"chainId": 137,
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
},
"message": {
"signer": "string",
"to": [
"string"
],
"amount": [
"string"
],
"nonce": 0
}
}