Struct mintscan::v1::Status[][src]

pub struct Status {
Show fields pub chain_id: Id, pub block_height: Height, pub block_time: f64, pub total_txs_num: u64, pub total_validator_num: u64, pub unjailed_validator_num: u64, pub jailed_validator_num: u64, pub total_supply_tokens: Supply, pub total_circulating_tokens: Supply, pub bonded_tokens: u64, pub not_bonded_tokens: u64, pub inflation: String, pub community_pool: Vec<Coin>, pub timestamp: Time,
}

/v1/status endpoint.

Fields

chain_id: Id

Chain ID

block_height: Height

Block height.

block_time: f64

Block time in seconds.

total_txs_num: u64

Total number of transactions.

total_validator_num: u64

Total number of validators.

unjailed_validator_num: u64

Number of unjailed validators.

jailed_validator_num: u64

Number of jailed validators.

total_supply_tokens: Supply

Total supply of tokens.

total_circulating_tokens: Supply

Total circulating tokens.

bonded_tokens: u64

Number of bonded tokens.

not_bonded_tokens: u64

Number of tokens not bonded.

inflation: String

Inflation.

community_pool: Vec<Coin>

Community pool.

timestamp: Time

Timestamp.

Trait Implementations

impl Clone for Status[src]

impl Debug for Status[src]

impl<'de> Deserialize<'de> for Status[src]

Auto Trait Implementations

impl RefUnwindSafe for Status

impl Send for Status

impl Sync for Status

impl Unpin for Status

impl UnwindSafe for Status

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,