Type Alias clone_cw_multi_test::BasicAppBuilder
source · pub type BasicAppBuilder<ExecC, QueryC> = AppBuilder<BankKeeper, MockApi, MockStorage, FailingModule<ExecC, QueryC, Empty>, WasmKeeper<ExecC, QueryC>, StakeKeeper, DistributionKeeper, IbcFailingModule, GovFailingModule>;Expand description
This is essential to create a custom app with custom module.
§Example
let mut app = BasicAppBuilder::<MyExecC, MyQueryC>::new_custom()
.with_custom(MyHandler::default())
.build(|_, _, _| {});Aliased Type§
struct BasicAppBuilder<ExecC, QueryC> { /* private fields */ }