@kagamidigital/salt-sdk-mirror
    Preparing search index...

    Interface CeremonyTimeoutInfo

    Structured fields lifted off salt-signer-sdk's TimeoutError.

    interface CeremonyTimeoutInfo {
        expectedCount?: number;
        missingPeerIds?: number[];
        phase: CeremonyTimeoutPhase;
        receivedCount?: number;
        sessionId?: string;
        waitedForMs?: number;
        waitingFor?: string;
    }
    Index

    Properties

    expectedCount?: number

    How many messages/parties the wait expected.

    missingPeerIds?: number[]

    Parties that had not responded when the wait expired, when known.

    Which stage ran out of time — see CeremonyTimeoutPhase.

    receivedCount?: number

    How many had actually arrived when the wait expired.

    sessionId?: string

    The relay session the ceremony was running in, when known.

    waitedForMs?: number

    How long the timed-out wait ran before giving up.

    waitingFor?: string

    The signer-sdk's own label for the expired wait (e.g. 'partyCount', 'protocolMessage').