cw_orch_interchain_mock/
lib.rs

1//! Implementation of the interchain traits for the [cw_orch::prelude::Mock] environment
2
3mod error;
4mod interchain;
5
6use cosmwasm_std::testing::MockApi;
7use cw_orch_mock::cw_multi_test::MockApiBech32;
8pub use error::InterchainMockError;
9
10pub type MockInterchainEnv = interchain::MockInterchainEnvBase<MockApi>;
11pub type MockBech32InterchainEnv = interchain::MockInterchainEnvBase<MockApiBech32>;