Trait abstract_sdk::features::AccountExecutor

source ·
pub trait AccountExecutor: AccountIdentification {
    // Provided method
    fn execute_on_proxy(
        &self,
        deps: Deps<'_>,
        msg: &ExecuteMsg,
    ) -> AbstractSdkResult<CosmosMsg> { ... }
}
Expand description

Trait for modules that are allowed to execute on the proxy.

Provided Methods§

source

fn execute_on_proxy( &self, deps: Deps<'_>, msg: &ExecuteMsg, ) -> AbstractSdkResult<CosmosMsg>

Execute proxy method on proxy contract

Object Safety§

This trait is not object safe.

Implementors§