@substrate-system/frost
    Preparing search index...

    Interface KeyShare

    FROST (Flexible Round-Optimized Schnorr Threshold) Signatures

    A TypeScript implementation of the FROST threshold signature scheme as specified in RFC 9591.

    interface KeyShare {
        participantId: ParticipantId;
        privateShare: Scalar;
        publicShare: GroupElement;
    }
    Index

    Properties

    participantId: ParticipantId
    privateShare: Scalar
    publicShare: GroupElement