Trait abstract_std::app::BaseExecuteMsgFns
source · pub trait BaseExecuteMsgFns<Chain: TxHandler, CwOrchExecuteMsgType>: CwOrchExecute<Chain, ExecuteMsg = CwOrchExecuteMsgType>where
BaseExecuteMsg: Into<CwOrchExecuteMsgType>,{
// Provided method
fn update_config(
&self,
ans_host_address: Option<String>,
version_control_address: Option<String>,
) -> Result<TxResponse<Chain>, 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§
sourcefn update_config(
&self,
ans_host_address: Option<String>,
version_control_address: Option<String>,
) -> Result<TxResponse<Chain>, CwEnvError>
fn update_config( &self, ans_host_address: Option<String>, version_control_address: Option<String>, ) -> Result<TxResponse<Chain>, CwEnvError>
Automatically generated wrapper around BaseExecuteMsg::UpdateConfig variant