Trait abstract_sdk::features::AbstractRegistryAccess

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

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

Required Methods§

source

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

Get the address of the registry.

Object Safety§

This trait is not object safe.

Implementors§