FROST Core TypeScript Library - v0.2.2-alpha.3
    Preparing search index...

    Interface SigningPackage<C>

    Generated by the coordinator of the signing operation and distributed to each signing party.

    Note: This is an abstract type definition. The concrete implementation should be provided by each ciphersuite.

    interface SigningPackage<C extends Ciphersuite> {
        signingCommitments: Map<IdentifierLike<C>, SigningCommitments<C>>;
        message: Uint8Array;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    signingCommitments: Map<IdentifierLike<C>, SigningCommitments<C>>

    The set of commitments participants published in the first round of the protocol. The map is keyed by some identifier type that depends on the implementation.

    message: Uint8Array

    Message which each participant will sign.

    Each signer should perform protocol-specific verification on the message.