Validator
No description
type Validator {
address: Address!
credentials: ValidatorCredentials
nextEpochCredentials: ValidatorCredentials
name: String
description: String
imageUrl: String
projectUrl: String
operationCap: MoveObject
stakingPool: MoveObject @deprecated
stakingPoolId: IotaAddress!
exchangeRates: MoveObject @deprecated
exchangeRatesTable: Owner
exchangeRatesSize: UInt53
stakingPoolActivationEpoch: UInt53
stakingPoolIotaBalance: BigInt
rewardsPool: BigInt
poolTokenBalance: BigInt
pendingStake: BigInt
pendingTotalIotaWithdraw: BigInt
pendingPoolTokenWithdraw: BigInt
votingPower: Int
gasPrice: BigInt
commissionRate: Int
nextEpochStake: BigInt
nextEpochGasPrice: BigInt
nextEpochCommissionRate: Int
atRisk: UInt53
reportRecords(
first: Int
before: String
last: Int
after: String
): AddressConnection!
apy: Int
}
Fields
Validator.address
● Address!
non-null object
The validator's address.
Validator.credentials
● ValidatorCredentials
object
Validator's set of credentials such as public keys, network addresses and others.
Validator.nextEpochCredentials
● ValidatorCredentials
object
Validator's set of credentials for the next epoch.
Validator.name
● String
scalar
Validator's name.
Validator.description
● String
scalar
Validator's description.
Validator.imageUrl
● String
scalar
Validator's url containing their custom image.
Validator.projectUrl
● String
scalar
Validator's homepage URL.
Validator.operationCap
● MoveObject
object
The validator's current valid Cap
object. Validators can delegate
the operation ability to another address. The address holding this Cap
object can then update the reference gas price and tallying rule on
behalf of the validator.
Validator.stakingPool
● MoveObject
deprecated object
DEPRECATED
The staking pool is a wrapped object. Access its fields directly on the Validator
type.
The validator's current staking pool object, used to track the amount of stake and to compound staking rewards.