pub trait Execution: AccountIdentification + ModuleIdentification {
    // Provided method
    fn executor<'a>(&'a self, deps: Deps<'a>) -> Executor<'_, Self> { ... }
}
Expand description

Execute an arbitrary CosmosMsg action on the Account.

Provided Methods§

source

fn executor<'a>(&'a self, deps: Deps<'a>) -> Executor<'_, Self>

Implementors§