Validator defines a validator, together with the total amount of the Validator's bond shares and their exchange rate to coins. Slashing results in a decrease in the exchange rate, allowing correct calculation of future undelegations without iterating over delegators. When coins are delegated to this validator, the validator is credited with a delegation whose number of bond shares is based on the amount of coins delegated divided by the current exchange rate. Voting power can be calculated as total bonded shares multiplied by exchange rate.

interface Validator {
    commission?: Commission;
    consensusPubkey?: Any;
    delegatorShares: string;
    description?: Description;
    jailed: boolean;
    minSelfDelegation: string;
    operatorAddress: string;
    status: BondStatus;
    tokens: string;
    unbondingHeight: Long;
    unbondingTime?: Date;
}

Properties

commission?: Commission

commission defines the commission parameters.

consensusPubkey?: Any

consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.

delegatorShares: string

delegator_shares defines total shares issued to a validator's delegators.

description?: Description

description defines the description terms for the validator.

jailed: boolean

jailed defined whether the validator has been jailed from bonded status or not.

minSelfDelegation: string

min_self_delegation is the validator's self declared minimum self delegation.

operatorAddress: string

operator_address defines the address of the validator's operator; bech encoded in JSON.

status: BondStatus

status is the validator status (bonded/unbonding/unbonded).

tokens: string

tokens define the delegated tokens (incl. self-delegation).

unbondingHeight: Long

unbonding_height defines, if unbonding, the height at which this validator has begun unbonding.

unbondingTime?: Date

unbonding_time defines, if unbonding, the min time for the validator to complete unbonding.

Generated using TypeDoc