salt-sdk
    Preparing search index...

    Type Alias HuddleEvents

    Events emitted by the Account during the MPC huddle. Listen for these on an AccountSetup instance to observe huddle progress.

    type HuddleEvents = {
        connected: (accountId: string) => void;
        preRegistered: (accountId: string) => void;
        ready: (accountId: string) => void;
        registered: (accountId: string) => void;
        registering: (accountId: string) => void;
        signerStatusChanged: (signerStatuses: Record<string, SignerStatus>) => void;
        timedOut: (accountId: string) => void;
    }
    Index

    Properties

    connected: (accountId: string) => void

    Fires when the signer connects to the websocket room

    preRegistered: (accountId: string) => void

    Fires when the local signer completes pre-registration

    ready: (accountId: string) => void

    Fires when the local signer is ready, waiting for other signers

    registered: (accountId: string) => void

    Fires when the local signer completes on-chain registration

    registering: (accountId: string) => void

    Fires when key generation (automateRegistration + registerAllSteps) starts

    signerStatusChanged: (signerStatuses: Record<string, SignerStatus>) => void

    Fires when any remote signer's status changes

    timedOut: (accountId: string) => void

    Fires when the huddle times out before completing