CDP Frontend SDK
    Preparing search index...

    Interface EIP712TypedData

    The message to sign using EIP-712.

    interface EIP712TypedData {
        domain: EIP712Domain;
        types: EIP712Types;
        primaryType: string;
        message: EIP712Message;
    }
    Index

    Properties

    domain: EIP712Domain
    primaryType: string

    The primary type of the message. This is the name of the struct in the types object that is the root of the message.

    message: EIP712Message

    The message to sign. The structure of this message must match the primaryType struct in the types object.