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

    Interface SignRequest

    Request payload for the Sign RPC.

    interface SignRequest {
        algorithm: Algorithm;
        keyIdentifier: string;
        message: Buffer;
        participants: number;
        publicKeyPackage: Buffer;
        threshold: number;
    }
    Index

    Properties

    algorithm: Algorithm

    Must match the algorithm used during GenerateKey.

    keyIdentifier: string

    Must match the identifier used during GenerateKey.

    message: Buffer

    Raw bytes to sign. Pass the digest or message according to the target chain convention; the engine does not pre-hash.

    participants: number

    Must match the participants count used during GenerateKey.

    publicKeyPackage: Buffer

    Exactly the publicKeyPackage bytes returned by the matching GenerateKey call.

    threshold: number

    Must match the threshold used during GenerateKey.