pub trait TransferInterface: AbstractNameService + Execution {
    // Provided method
    fn bank<'a>(&'a self, deps: Deps<'a>) -> Bank<'_, Self> { ... }
}
Expand description

Query and Transfer assets from and to the Abstract Account.

Provided Methods§

source

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

Implementors§