pub trait ChainQueryData: Send + Sync {
    // Required methods
    fn name(&self) -> StorageResult<String>;
    fn base_chain_height(&self) -> StorageResult<DaBlockHeight>;
}

Required Methods§

Implementors§