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

    Type Alias KeyGenerationJobData

    Data payload stored in a key-generation BullMQ job. Mirrors the fields forwarded to the GenerateKey gRPC RPC.

    type KeyGenerationJobData = {
        algorithm: Algorithm;
        keyIdentifier: string;
        participants: number;
        threshold: number;
    }
    Index

    Properties

    algorithm: Algorithm

    Algorithm to use.

    keyIdentifier: string

    Stable application-assigned key identifier.

    participants: number

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

    threshold: number

    Minimum participants required to produce a valid signature.