simple_nft/
lib.rs

1//! This is a simple implementation of CosmWasm based Non-Fungible Token(NFT).
2//! This mod does implement the CW721 spec. However, it is different than the
3//! base implementation shown in [cw721-base]. All the functions
4//! are implemented as indivisual functions in contract.rs, rather than
5//! implementing it as a Cw721 trait.
6//!
7//! [cw721-base]: https://github.com/CosmWasm/cw-nfts/tree/main/contracts/cw721-base
8
9pub mod contract;
10mod error;
11pub mod msg;
12pub mod query;
13pub mod state;
14
15pub use crate::error::ContractError;