1//! Client API
23/// Chain sync status
4pub trait ChainSyncStatus: Clone + Send + Sync + 'static {
5/// Returns `true` if the chain is currently syncing
6fn is_syncing(&self) -> bool;
78/// Returns `true` if the node is currently offline
9fn is_offline(&self) -> bool;
10}