An object containing the resulting signatures. Each signature comes with the public key and the data signed.

interface ExecuteJsResponse {
    claims?: Record<string, {
        derivedKeyId: string;
        signatures: Signature[];
    }>;
    debug?: {
        allNodeLogs: NodeLog[];
        allNodeResponses: NodeResponse[];
        rawNodeHTTPResponses: any;
    };
    logs: string;
    response: string | object;
    signatures: any;
    success?: boolean;
}

Hierarchy (view full)

Properties

claims?: Record<string, {
    derivedKeyId: string;
    signatures: Signature[];
}>
debug?: {
    allNodeLogs: NodeLog[];
    allNodeResponses: NodeResponse[];
    rawNodeHTTPResponses: any;
}
logs: string
response: string | object
signatures: any
success?: boolean