pub trait OsExecute {
    fn os_execute(
        &self,
        deps: Deps<'_>,
        msgs: Vec<CosmosMsg>
    ) -> Result<SubMsg, StdError>; fn os_ibc_execute(
        &self,
        deps: Deps<'_>,
        msgs: Vec<ExecuteMsg>
    ) -> Result<SubMsg, StdError>; fn os_execute_with_reply(
        &self,
        deps: Deps<'_>,
        msgs: Vec<CosmosMsg>,
        reply_on: ReplyOn,
        id: u64
    ) -> Result<SubMsg, StdError> { ... } }
Expand description

Construct the call on the proxy contract of the OS

Required Methods

Provided Methods

Implementors