interface TypedDataDomain {
    chainId?: null | Numbers;
    name?: null | string;
    salt?: null | Bytes;
    verifyingContract?: null | string;
    version?: null | string;
}

Properties

chainId?: null | Numbers

The chain ID of the signing domain.

name?: null | string

The human-readable name of the signing domain.

salt?: null | Bytes

A salt used for purposes decided by the specific domain.

verifyingContract?: null | string

The the address of the contract that will verify the signature.

version?: null | string

The major version of the signing domain.