hermes-test-components 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
14
use alloc::string::String;

use cgp::prelude::Async;

use crate::chain::traits::types::memo::ProvideMemoType;

pub struct ProvideStringMemoType;

impl<Chain> ProvideMemoType<Chain> for ProvideStringMemoType
where
    Chain: Async,
{
    type Memo = Option<String>;
}