interface ValidatorSet {
    active_validators: ValidatorInfo[];
    consensus_scheme: number;
    pending_active: ValidatorInfo[];
    pending_inactive: ValidatorInfo[];
    total_joining_power: bigint;
    total_voting_power: bigint;
}

Properties

active_validators: ValidatorInfo[]
consensus_scheme: number
pending_active: ValidatorInfo[]
pending_inactive: ValidatorInfo[]
total_joining_power: bigint
total_voting_power: bigint