pub trait AbstractRegistryAccess: Sized {
    // Required method
    fn abstract_registry(&self, deps: Deps<'_>) -> AbstractSdkResult<Addr>;
}
Expand description

Trait that enables access to a registry, like a version control contract.

Required Methods§

source

fn abstract_registry(&self, deps: Deps<'_>) -> AbstractSdkResult<Addr>

Get the address of the registry.

Implementors§