multi-party-computation-controller-api
    Preparing search index...

    Type Alias SigningJobResult

    Return value of a successfully completed signing job.

    type SigningJobResult = {
        recoveryId: number | null;
        signature: string;
    }
    Index

    Properties

    recoveryId: number | null

    ECDSA recovery id (0–3), present only for CGGMP24. null for FROST algorithms.

    signature: string

    Hex-encoded raw signature bytes.

    • FROST: 64 bytes (r ‖ s)
    • CGGMP24: r ‖ s (32 + 32 bytes), recovery id in recoveryId.