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

    Type Alias RoboStatus

    The live presence of a set of robo signers — an organisation's whole roster, or the robos enrolled on a single account.

    type RoboStatus = {
        active: boolean;
        isReachable: boolean;
        onlineCount: number;
        signers: RoboSignerStatus[];
    }
    Index

    Properties

    active: boolean

    Whether the owner has completed 2FA activation. Independent of presence: an inactive robo is not usable even if signers are online, so callers gating on usability must check this too (see Salt.getRoboQuorum).

    isReachable: boolean

    Whether at least one of signers is online.

    onlineCount: number

    How many of signers are currently online.

    signers: RoboSignerStatus[]

    The relevant robo signers and whether each is online.