Trait abstract_interface::AccountFactoryExecFns

source ·
pub trait AccountFactoryExecFns<Chain>: CwOrchExecute<Chain, ExecuteMsg = ExecuteMsg>
where Chain: TxHandler,
{ // Provided methods fn update_config( &self, ans_host_contract: Option<String>, ibc_host: 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>, name: String, account_id: Option<AccountId>, base_asset: Option<AssetEntry>, description: Option<String>, link: Option<String>, namespace: Option<String>, coins: &[Coin] ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... } fn update_ownership( &self, arg0: Action ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... } }
Expand description

Automatically derived trait that allows you to call the variants of the message directly without the need to construct the struct yourself.

Provided Methods§

source

fn update_config( &self, ans_host_contract: Option<String>, ibc_host: Option<String>, module_factory_address: Option<String>, version_control_contract: Option<String> ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::UpdateConfig variant

source

fn create_account( &self, governance: GovernanceDetails<String>, install_modules: Vec<ModuleInstallConfig>, name: String, account_id: Option<AccountId>, base_asset: Option<AssetEntry>, description: Option<String>, link: Option<String>, namespace: Option<String>, coins: &[Coin] ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::CreateAccount variant

source

fn update_ownership( &self, arg0: Action ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::UpdateOwnership variant

Implementors§

source§

impl<SupportedContract, Chain> ExecuteMsgFns<Chain> for SupportedContract
where Chain: TxHandler, SupportedContract: CwOrchExecute<Chain, ExecuteMsg = ExecuteMsg>,