pub trait DrmlClient<Block, Backend, Runtime>: Sized + Send + Sync + CallApiAt<Block> + ProvideRuntimeApi<Block, Api = Runtime::RuntimeApi> + HeaderBackend<Block> + BlockchainEvents<Block> where
    Block: Block,
    Backend: Backend<Block>,
    Runtime: ConstructRuntimeApi<Block, Self>, 
{ }
Expand description

DRML client abstraction, this super trait only pulls in functionality required for DRML internal crates like DRML-collator.

Implementors