Trait abstract_polytone_proxy::msg::ExecuteMsgFns

source ·
pub trait ExecuteMsgFns<Chain: CwEnv>: CwOrchExecute<Chain, ExecuteMsg = ExecuteMsg> {
    // Provided method
    fn proxy(
        &self,
        msgs: Vec<CosmosMsg>
    ) -> Result<TxResponse<Chain>, CwOrchError> { ... }
}
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 proxy(&self, msgs: Vec<CosmosMsg>) -> Result<TxResponse<Chain>, CwOrchError>

Automatically generated wrapper around ExecuteMsg::Proxy variant

Implementors§

source§

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