ValidatorSet
Representation of 0x3::validator_set::ValidatorSet.
type ValidatorSet {
  totalStake: BigInt
  pendingRemovals: [Int!]
  pendingActiveValidatorsId: SuiAddress
  pendingActiveValidatorsSize: Int
  stakingPoolMappingsId: SuiAddress
  stakingPoolMappingsSize: Int
  inactivePoolsId: SuiAddress
  inactivePoolsSize: Int
  validatorCandidatesId: SuiAddress
  validatorCandidatesSize: Int
  activeValidators(
    first: Int
    before: String
    last: Int
    after: String
  ): ValidatorConnection!
}
Fields
ValidatorSet.totalStake ● BigInt scalar
Total amount of stake for all active validators at the beginning of the epoch.
ValidatorSet.pendingRemovals ● [Int!] list scalar
Validators that are pending removal from the active validator set, expressed as indices in to
activeValidators.
ValidatorSet.pendingActiveValidatorsId ● SuiAddress scalar
Object ID of the wrapped object
TableVecstoring the pending active validators.
ValidatorSet.pendingActiveValidatorsSize ● Int scalar
Size of the pending active validators table.