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

    Interface GenerateKeyRequest

    Request payload for the GenerateKey RPC. Field names are camelCase because proto-loader converts snake_case by default.

    interface GenerateKeyRequest {
        algorithm: Algorithm;
        keyIdentifier: string;
        participants: number;
        threshold: number;
    }
    Index

    Properties

    algorithm: Algorithm

    Algorithm to use.

    keyIdentifier: string

    Stable application-assigned key identifier (e.g. "wallet-1").

    participants: number

    Total number of nodes in the protocol (n of t-of-n).

    threshold: number

    Minimum participants required to sign (t of t-of-n).