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

    Type Alias RoboQuorum

    Whether a ceremony has the robo signers it needs: how many the signer configuration requires, how many are currently online, and the verdict.

    type RoboQuorum = {
        active: boolean;
        met: boolean;
        onlineCount: number;
        requiredCount: number;
    }
    Index

    Properties

    active: boolean

    Whether the robo host has completed 2FA activation. An inactive robo host is cannot participate in any signing activity.

    met: boolean

    Whether the quorum is satisfied: the robo is activated AND enough of its signers are online (active && onlineCount >= requiredCount). An inactive robo is never quorate no matter how many signers have connected.

    onlineCount: number

    How many of the relevant robos are currently online.

    requiredCount: number

    How many robos the signer configuration needs.