CDP Frontend SDK
    Preparing search index...

    Interface EIP712Domain

    The domain of the EIP-712 typed data.

    interface EIP712Domain {
        name?: string;
        version?: string;
        chainId?: number;
        salt?: `0x${string}`;
        verifyingContract?: `0x${string}`;
    }
    Index

    Properties

    name?: string

    The name of the DApp or protocol.

    version?: string

    The version of the DApp or protocol.

    chainId?: number

    The chain ID of the EVM network.

    salt?: `0x${string}`

    The optional 32-byte 0x-prefixed hex salt for domain separation.

    verifyingContract?: `0x${string}`

    The verifying contract address.