Skip to main content

Eip712CancelOrderTypedData

domain object
namestring

Name of the signing domain

Example: ExchangeSwapOperator
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
EIP712Domain object[]
  • Array [
  • namestring
    typestring
  • ]
  • CancelOrder object[]
  • Array [
  • noncenumber
    idnumber
  • ]
  • primaryTypestring
    Example: CancelOrder
    message object
    noncenumber

    Expiration date of the order

    Example: 30
    idnumber

    Order identifier

    Example: 1564
    Eip712CancelOrderTypedData
    {
    "domain": {
    "name": "ExchangeSwapOperator",
    "version": "1.0.0",
    "chainId": 137,
    "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
    },
    "types": {
    "EIP712Domain": [
    {
    "name": "string",
    "type": "string"
    }
    ],
    "CancelOrder": [
    {
    "nonce": 0,
    "id": 0
    }
    ]
    },
    "primaryType": "CancelOrder",
    "message": {
    "nonce": 30,
    "id": 1564
    }
    }