pub trait MFactoryExecFns<Chain>: BootExecute<Chain, ExecuteMsg = ExecuteMsg>where
    Chain: BootEnvironment,
{ fn update_config(
        &self,
        admin: Option<String>,
        ans_host_address: Option<String>,
        version_control_address: Option<String>
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... } fn install_module(
        &self,
        module: ModuleInfo,
        init_msg: Option<Binary>
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... } fn update_factory_binary_msgs(
        &self,
        to_add: Vec<(ModuleInfo, Binary), Global>,
        to_remove: Vec<ModuleInfo, Global>
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... } }

Provided Methods§

Implementors§