abstract_std/objects/
ownership.rs

1
2
3
4
5
6
7
8
9
10
11
12
/// This module used internally, for Nft Owners and could be removed at any point if cw721 will get upgraded to cosmwasm 2.0+
pub mod cw721;
mod gov_ownable;
pub mod nested_admin;

// Re-export this type here as well
pub use super::gov_type::GovernanceDetails;

pub use gov_ownable::{
    assert_nested_owner, get_ownership, initialize_owner, is_owner, query_ownership,
    update_ownership, GovAction, GovOwnershipError, Ownership,
};