interface SignPayloadRequest {
    domain: TypedDomainData;
    hash?: string;
    id: string;
    primaryType: string;
    types: {
        [key: string]: TypedDataField[];
    };
    value: {
        [key: string]: any;
    };
}

Hierarchy (view full)

Properties

hash?: string

Hash to verify and that will be signed

id: string
primaryType: string
types: {
    [key: string]: TypedDataField[];
}

Type declaration

value: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any