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

    Key metadata persisted in Redis after a successful key generation job. Retrieved by keyIdentifier to supply the required parameters to Sign calls.

    type Metadata = {
        algorithm: Algorithm;
        participants: number;
        publicKey: string;
        publicKeyPackage: string;
        storedAt: string;
        threshold: number;
    }
    Index

    Properties

    algorithm: Algorithm

    Algorithm used during key generation.

    participants: number

    Participant count used during key generation (n of t-of-n).

    publicKey: string

    Hex-encoded canonical public key.

    publicKeyPackage: string

    Base64-encoded publicKeyPackage returned by GenerateKey. Opaque; must be forwarded unchanged to each Sign call.

    storedAt: string

    ISO-8601 timestamp of when the metadata was stored.

    threshold: number

    Threshold used during key generation (t of t-of-n).