[][src]Struct ckb_jsonrpc_types::ChainInfo

pub struct ChainInfo {
    pub chain: String,
    pub median_time: Timestamp,
    pub epoch: EpochNumber,
    pub difficulty: U256,
    pub is_initial_block_download: bool,
    pub alerts: Vec<AlertMessage>,
}

Chain information.

Fields

chain: String

The network name.

Examples:

  • "ckb" - Lina the mainnet.
  • "ckb_testnet" - Aggron the testnet.
median_time: Timestamp

The median time of the last 37 blocks.

epoch: EpochNumber

Current epoch number.

difficulty: U256

Current difficulty.

Decoded from the epoch compact_target.

is_initial_block_download: bool

Whether the local node is in IBD, Initial Block Download.

When a node starts and its chain tip timestamp is far behind the wall clock, it will enter the IBD until it catches up the synchronization.

During IBD, the local node only synchronizes the chain with one selected remote node and stops responding the most P2P requests.

alerts: Vec<AlertMessage>

Active alerts stored in the local node.

Trait Implementations

impl Debug for ChainInfo[src]

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

impl Serialize for ChainInfo[src]

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

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>,