hermes-runtime 0.1.0

Implementation of an IBC Relayer in Rust, as a library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use cgp::core::Async;
use hermes_runtime_components::traits::runtime::ProvideRuntimeType;

use crate::types::runtime::HermesRuntime;

pub struct ProvideHermesRuntime;

impl<Context> ProvideRuntimeType<Context> for ProvideHermesRuntime
where
    Context: Async,
{
    type Runtime = HermesRuntime;
}