pub trait OffchainApiClient: ClientT {
    fn set_local_storage<'life0, 'async_trait>(
        &'life0 self,
        kind: StorageKind,
        key: Bytes,
        value: Bytes
    ) -> Pin<Box<dyn Future<Output = RpcResult<()>> + Send + 'async_trait>>
    where
        Self: Sync + 'async_trait,
        'life0: 'async_trait
, { ... } fn get_local_storage<'life0, 'async_trait>(
        &'life0 self,
        kind: StorageKind,
        key: Bytes
    ) -> Pin<Box<dyn Future<Output = RpcResult<Option<Bytes>>> + Send + 'async_trait>>
    where
        Self: Sync + 'async_trait,
        'life0: 'async_trait
, { ... } }
Expand description

Client implementation for the OffchainApi RPC API.

Provided Methods§

source

fn set_local_storage<'life0, 'async_trait>(
    &'life0 self,
    kind: StorageKind,
    key: Bytes,
    value: Bytes
) -> Pin<Box<dyn Future<Output = RpcResult<()>> + Send + 'async_trait>>where
    Self: Sync + 'async_trait,
    'life0: 'async_trait,

Set offchain local storage under given key and prefix.

source

fn get_local_storage<'life0, 'async_trait>(
    &'life0 self,
    kind: StorageKind,
    key: Bytes
) -> Pin<Box<dyn Future<Output = RpcResult<Option<Bytes>>> + Send + 'async_trait>>where
    Self: Sync + 'async_trait,
    'life0: 'async_trait,

Get offchain local storage under given key and prefix.

Implementors§

source§

impl<TypeJsonRpseeInteral> OffchainApiClient for TypeJsonRpseeInteralwhere
    TypeJsonRpseeInteral: ClientT,