cudos_cosmwasm/
lib.rs

1mod msg;
2mod querier;
3mod query;
4
5pub use msg::{
6    create_approve_all_msg, create_approve_nft_msg, create_burn_nft_msg, create_edit_nft_msg,
7    create_issue_denom_msg, create_mint_nft_msg, create_revoke_msg, create_transfer_nft_msg, 
8    create_transfer_denom_msg,
9    CudosMsg,
10};
11pub use querier::CudosQuerier;
12pub use query::{
13    Collection, CollectionResponse, CudosQuery, Denom, DenomResponse, DenomsResponse, IDCollection,
14    Owner, OwnerCollectionResponse, PageResponse, QueryApprovalsResponse,
15    QueryApprovedForAllResponse, QueryNFTResponse, SupplyResponse, NFT, PaginationRequest,
16};
17
18// TODO: Research how to enable "cudos" on the blockchain
19// This export is added to all contracts that import this package, signifying that they require
20// "cudos" support on the chain they run on.
21// #[no_mangle]
22// extern "C" fn requires_cudos() {}