pub trait IbcInterface: Identification {
    // Provided method
    fn ibc_client<'a>(&'a self, deps: Deps<'a>) -> IbcClient<'_, Self> { ... }
}
Expand description

Interact with other chains over IBC.

Provided Methods§

source

fn ibc_client<'a>(&'a self, deps: Deps<'a>) -> IbcClient<'_, Self>

Implementors§

source§

impl<T> IbcInterface for Twhere T: Identification,