Struct ibc_proto::cosmos::staking::v1beta1::Validator [−][src]
pub struct Validator {
pub operator_address: String,
pub consensus_pubkey: Option<Any>,
pub jailed: bool,
pub status: i32,
pub tokens: String,
pub delegator_shares: String,
pub description: Option<Description>,
pub unbonding_height: i64,
pub unbonding_time: Option<Timestamp>,
pub commission: Option<Commission>,
pub min_self_delegation: String,
}
Expand description
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.
Fields
operator_address: String
operator_address defines the address of the validator’s operator; bech encoded in JSON.
consensus_pubkey: Option<Any>
consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
jailed: bool
jailed defined whether the validator has been jailed from bonded status or not.
status: i32
status is the validator status (bonded/unbonding/unbonded).
tokens: String
tokens define the delegated tokens (incl. self-delegation).
delegator_shares defines total shares issued to a validator’s delegators.
description: Option<Description>
description defines the description terms for the validator.
unbonding_height: i64
unbonding_height defines, if unbonding, the height at which this validator has begun unbonding.
unbonding_time: Option<Timestamp>
unbonding_time defines, if unbonding, the min time for the validator to complete unbonding.
commission: Option<Commission>
commission defines the commission parameters.
min_self_delegation: String
min_self_delegation is the validator’s self declared minimum self delegation.
Implementations
Returns the enum value of status
, or the default if the field is set to an invalid enum value.
Sets status
to the provided enum value.
Trait Implementations
Returns the encoded length of the message without a length delimiter.
Encodes the message to a buffer. Read more
Encodes the message to a newly allocated buffer.
Encodes the message with a length-delimiter to a buffer. Read more
Encodes the message with a length-delimiter to a newly allocated buffer.
Decodes an instance of the message from a buffer. Read more
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Decodes an instance of the message from a buffer, and merges it into self
. Read more
Decodes a length-delimited instance of the message from buffer, and
merges it into self
. Read more
Auto Trait Implementations
impl RefUnwindSafe for Validator
impl UnwindSafe for Validator
Blanket Implementations
Mutably borrows from an owned value. Read more
Wrap the input message T
in a tonic::Request
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more