ibc-testkit 0.57.0

Maintained by `ibc-rs`, serves as a versatile library that provides essential abstractions and implementations, fulfilling a dual role of enabling rigorous integration testing for the `ibc-rs` implementation while also aiding host chains in addressing a broad spectrum of testing scenarios during their integrations with `ibc-rs`.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Definitions of ibc mock types used in testing.
pub mod client_state;
pub mod consensus_state;
pub mod header;
pub mod misbehaviour;

/// Re-exports mock proto types from the `ibc-proto` crate
pub mod proto {
    pub use ibc_proto::ibc::mock::*;
}