Skip to main content

BlockStateApi

Trait BlockStateApi 

Source
pub trait BlockStateApi {
    type MerkleProof: Serialize + Send + Sync + 'static;

    // Required methods
    fn get_block_state_path<'life0, 'async_trait>(
        &'life0 self,
        snapshot: Snapshot,
        key: String,
    ) -> Pin<Box<dyn Future<Output = Result<Self::MerkleProof>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_block_state_height<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Associated Types§

Source

type MerkleProof: Serialize + Send + Sync + 'static

Required Methods§

Source

fn get_block_state_path<'life0, 'async_trait>( &'life0 self, snapshot: Snapshot, key: String, ) -> Pin<Box<dyn Future<Output = Result<Self::MerkleProof>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn get_block_state_height<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§