ibc-client-cw 0.57.0

Contains types and implementations that are needed to integrate a light client, built using ibc-rs, into CosmWasm contract. It functions as a library, allowing users to import the ready-made `Context` object that is generic across light clients, introduce their concrete client type and integrate their assembled context into the CosmWasm contract's entrypoint.
Documentation
1
2
3
4
5
6
7
8
9
mod error;
mod helper;
mod msgs;
mod response;

pub use error::*;
pub use helper::*;
pub use msgs::*;
pub use response::*;