Skip to main content

EIP712BurnTypedData

domain object
namestring

Name of the signing domain

Example: ERC3643Token
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
types object
Burn object[]
  • Array [
  • fromstring
    amountstring
    noncestring
  • ]
  • primaryTypestring
    Example: Burn
    value object
    fromstring[]
    amountstring[]
    noncestring

    Nonce of the signing wallet

    Example: 1
    EIP712BurnTypedData
    {
    "domain": {
    "name": "ERC3643Token",
    "version": "1.0.0",
    "chainId": 137,
    "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
    },
    "types": {
    "Burn": [
    {
    "from": "string",
    "amount": "string",
    "nonce": "string"
    }
    ]
    },
    "primaryType": "Burn",
    "value": {
    "from": [
    "0x123456A9571241e97cDb61E3FfD1937D885454dd"
    ],
    "amount": [
    "1000000000000000000000"
    ],
    "nonce": "1"
    }
    }