Trait abstract_sdk::AccountVerification

source ·
pub trait AccountVerification: AbstractRegistryAccess + ModuleIdentification {
    // Provided method
    fn account_registry<'a>(
        &'a self,
        deps: Deps<'a>
    ) -> AbstractSdkResult<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> ) -> AbstractSdkResult<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()).unwrap();

Object Safety§

This trait is not object safe.

Implementors§