cw721 0.6.0-alpha2

Definition and types for the CosmWasm-721 NFT interface
Documentation
mod helpers;
mod msg;
mod query;
mod receiver;

pub use cw0::Expiration;

pub use crate::helpers::{Cw721CanonicalContract, Cw721Contract};
pub use crate::msg::Cw721ExecuteMsg;
pub use crate::query::{
    AllNftInfoResponse, Approval, ApprovedForAllResponse, ContractInfoResponse, Cw721QueryMsg,
    NftInfoResponse, NumTokensResponse, OwnerOfResponse, TokensResponse,
};
pub use crate::receiver::Cw721ReceiveMsg;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}