abstract_std/objects/
ownership.rs

1/// This module used internally, for Nft Owners and could be removed at any point if cw721 will get upgraded to cosmwasm 2.0+
2pub mod cw721;
3mod gov_ownable;
4pub mod nested_admin;
5
6// Re-export this type here as well
7pub use super::gov_type::GovernanceDetails;
8
9pub use gov_ownable::{
10    assert_nested_owner, get_ownership, initialize_owner, is_owner, query_ownership,
11    update_ownership, GovAction, GovOwnershipError, Ownership,
12};