pub struct ChainHeadBackend<T: Config> { /* private fields */ }Expand description
The chainHead backend.
Implementations§
Source§impl<T: Config> ChainHeadBackend<T>
impl<T: Config> ChainHeadBackend<T>
Sourcepub fn builder() -> ChainHeadBackendBuilder<T>
pub fn builder() -> ChainHeadBackendBuilder<T>
Configure and construct an ChainHeadBackend and the associated ChainHeadBackendDriver.
Trait Implementations§
Source§impl<T: Config> Backend<T> for ChainHeadBackend<T>
impl<T: Config> Backend<T> for ChainHeadBackend<T>
Source§fn storage_fetch_values<'life0, 'async_trait>(
&'life0 self,
keys: Vec<Vec<u8>>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<StorageResponse>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn storage_fetch_values<'life0, 'async_trait>(
&'life0 self,
keys: Vec<Vec<u8>>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<StorageResponse>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Fetch values from storage.
Source§fn storage_fetch_descendant_keys<'life0, 'async_trait>(
&'life0 self,
key: Vec<u8>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<Vec<u8>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn storage_fetch_descendant_keys<'life0, 'async_trait>(
&'life0 self,
key: Vec<u8>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<Vec<u8>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Fetch keys underneath the given key from storage.
Source§fn storage_fetch_descendant_values<'life0, 'async_trait>(
&'life0 self,
key: Vec<u8>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<StorageResponse>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn storage_fetch_descendant_values<'life0, 'async_trait>(
&'life0 self,
key: Vec<u8>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<StorageResponse>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Fetch values underneath the given key from storage.
Source§fn genesis_hash<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<HashFor<T>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn genesis_hash<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<HashFor<T>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Fetch the genesis hash
Source§fn block_number_to_hash<'life0, 'async_trait>(
&'life0 self,
_number: u64,
) -> Pin<Box<dyn Future<Output = Result<Option<BlockRef<HashFor<T>>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn block_number_to_hash<'life0, 'async_trait>(
&'life0 self,
_number: u64,
) -> Pin<Box<dyn Future<Output = Result<Option<BlockRef<HashFor<T>>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Convert a block number to a hash. This should return
None in the event that
multiple block hashes correspond to the given number (ie if the number is greater
than that of the latest finalized block and some forks exist). Nevertheless, it could
still return the hash to a block on some fork that is pruned.Source§fn block_header<'life0, 'async_trait>(
&'life0 self,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<Option<T::Header>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn block_header<'life0, 'async_trait>(
&'life0 self,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<Option<T::Header>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get a block header.
Source§fn block_body<'life0, 'async_trait>(
&'life0 self,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<Option<Vec<Vec<u8>>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn block_body<'life0, 'async_trait>(
&'life0 self,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<Option<Vec<Vec<u8>>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Return the extrinsics found in the block. Each extrinsic is represented
by a vector of bytes which has not been SCALE decoded (in other words, the
first bytes in the vector will decode to the compact encoded length of the extrinsic)
Source§fn latest_finalized_block_ref<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<BlockRef<HashFor<T>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn latest_finalized_block_ref<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<BlockRef<HashFor<T>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the most recent finalized block hash.
Note: needed only in blocks client for finalized block stream; can prolly be removed.
Source§fn stream_all_block_headers<'life0, 'async_trait>(
&'life0 self,
_hasher: T::Hasher,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn stream_all_block_headers<'life0, 'async_trait>(
&'life0 self,
_hasher: T::Hasher,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
A stream of all new block headers as they arrive.
Source§fn stream_best_block_headers<'life0, 'async_trait>(
&'life0 self,
_hasher: T::Hasher,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn stream_best_block_headers<'life0, 'async_trait>(
&'life0 self,
_hasher: T::Hasher,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
A stream of best block headers.
Source§fn stream_finalized_block_headers<'life0, 'async_trait>(
&'life0 self,
_hasher: T::Hasher,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn stream_finalized_block_headers<'life0, 'async_trait>(
&'life0 self,
_hasher: T::Hasher,
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
A stream of finalized block headers.
Source§fn submit_transaction<'life0, 'life1, 'async_trait>(
&'life0 self,
extrinsic: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<TransactionStatus<HashFor<T>>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn submit_transaction<'life0, 'life1, 'async_trait>(
&'life0 self,
extrinsic: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<TransactionStatus<HashFor<T>>>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Submit a transaction. This will return a stream of events about it.
Source§fn call<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
method: &'life1 str,
call_parameters: Option<&'life2 [u8]>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<Vec<u8>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn call<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
method: &'life1 str,
call_parameters: Option<&'life2 [u8]>,
at: HashFor<T>,
) -> Pin<Box<dyn Future<Output = Result<Vec<u8>, BackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Make a call to some runtime API.
Auto Trait Implementations§
impl<T> !RefUnwindSafe for ChainHeadBackend<T>
impl<T> !UnwindSafe for ChainHeadBackend<T>
impl<T> Freeze for ChainHeadBackend<T>where
ChainHeadRpcMethods<RpcConfigFor<T>>: Freeze,
FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Freeze,
impl<T> Send for ChainHeadBackend<T>where
ChainHeadRpcMethods<RpcConfigFor<T>>: Send,
FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Send,
impl<T> Sync for ChainHeadBackend<T>where
ChainHeadRpcMethods<RpcConfigFor<T>>: Sync,
FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Sync,
impl<T> Unpin for ChainHeadBackend<T>where
ChainHeadRpcMethods<RpcConfigFor<T>>: Unpin,
FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Unpin,
impl<T> UnsafeUnpin for ChainHeadBackend<T>where
ChainHeadRpcMethods<RpcConfigFor<T>>: UnsafeUnpin,
FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: UnsafeUnpin,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more