pub trait AccountFactoryExecFns<Chain>: CwOrchExecute<Chain, ExecuteMsg = ExecuteMsg>where
Chain: CwEnv,{
// Provided methods
fn update_config(
&self,
ans_host_contract: Option<String>,
module_factory_address: Option<String>,
version_control_contract: Option<String>
) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
fn create_account(
&self,
governance: GovernanceDetails<String>,
install_modules: Vec<ModuleInstallConfig, Global>,
name: String,
base_asset: Option<AssetEntry>,
description: Option<String>,
link: Option<String>,
namespace: Option<String>
) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
fn update_ownership(
&self,
arg0: Action
) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
}