CDP SDK TypeScript - v1.31.0
    Preparing search index...

    Interface SignTypedDataOptions

    Options for signing an EVM typed data message.

    interface SignTypedDataOptions {
        address: `0x${string}`;
        domain: EIP712Domain;
        types: EIP712Types;
        primaryType: string;
        message: EIP712MessageMessage;
        idempotencyKey?: string;
    }
    Index

    Properties

    address: `0x${string}`

    The address of the account.

    domain: EIP712Domain

    The domain of the message.

    types: EIP712Types

    The types of the message.

    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: EIP712MessageMessage

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

    idempotencyKey?: string

    The idempotency key.