blueprint-contexts 0.2.0-alpha.4

Context providers for Tangle Blueprints
Documentation
1
2
3
4
5
6
pub use blueprint_clients::evm::instrumented_client::InstrumentedClient;

/// `EvmInstrumentedClientContext` trait provides access to the EVM provider from the context.
pub trait EvmInstrumentedClientContext {
    async fn evm_client(&self) -> InstrumentedClient;
}