pub trait AccountVerification: AbstractRegistryAccess {
    // Provided method
    fn account_registry<'a>(
        &'a self,
        deps: Deps<'a>
    ) -> AccountRegistry<'_, Self> { ... }
}
Expand description

Verify if an addresses is associated with an Abstract Account.

Provided Methods§

source

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

API for querying and verifying a sender’s identity in the context of Abstract Accounts.

Example
use abstract_sdk::prelude::*;

let acc_registry: AccountRegistry<MockModule>  = module.account_registry(deps.as_ref());

Implementors§