pub trait VaultInterface: AbstractNameService + AccountIdentification {
    // Provided method
    fn vault<'a>(&'a self, deps: Deps<'a>) -> Vault<'_, Self> { ... }
}
Expand description

Retrieve asset-registration information from the Account. Query asset values and balances.

Provided Methods§

source

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

Implementors§