Interface EIP712TypedData

EIP712TypedData represents a signable EIP-712 typed data object, including both the types and message object.

Remarks

See the EIP-712 specification for more: https://eips.ethereum.org/EIPS/eip-712

interface EIP712TypedData {
    domain: object;
    message: object | object[];
    primaryType: string;
    types: object;
}

Properties

domain: object
message: object | object[]
primaryType: string
types: object