7 releases (4 breaking)

0.15.0 Sep 16, 2022
0.13.4 Jul 23, 2022
0.11.1 Feb 24, 2022
0.11.0 Jan 4, 2022
0.9.2 Oct 14, 2021

#19 in #on-chain

Download history 4/week @ 2024-02-05 186/week @ 2024-02-12 339/week @ 2024-02-19 288/week @ 2024-02-26 141/week @ 2024-03-04 88/week @ 2024-03-11

903 downloads per month

Apache-2.0

130KB
2.5K SLoC

Rust 2.5K SLoC // 0.0% comments TypeScript 289 SLoC // 0.1% comments

CW721 Metadata Onchain

NFT creators may want to store their NFT metadata on-chain so other contracts are able to interact with it. With CW721-Base in CosmWasm, we allow you to store any data on chain you wish, using a generic extension: T.

In order to support on-chain metadata, and to demonstrate how to use the extension ability, we have created this simple contract. There is no business logic here, but looking at lib.rs will show you how do define custom data that is included when minting and available in all queries.

In particular, here we define:

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
pub struct Trait {
    pub display_type: Option<String>,
    pub trait_type: String,
    pub value: String,
}

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
pub struct Metadata {
    pub image: Option<String>,
    pub image_data: Option<String>,
    pub external_url: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub attributes: Option<Vec<Trait>>,
    pub background_color: Option<String>,
    pub animation_url: Option<String>,
    pub youtube_url: Option<String>,
}

pub type Extension = Option<Metadata>;

In particular, the fields defined conform to the properties supported in the OpenSea Metadata Standard.

This means when you query NftInfo{name: "Enterprise"}, you will get something like:

{
  "name": "Enterprise",
  "token_uri": "https://starships.example.com/Starship/Enterprise.json",
  "extension": {
    "image": null,
    "image_data": null,
    "external_url": null,
    "description": "Spaceship with Warp Drive",
    "name": "Starship USS Enterprise",
    "attributes": null,
    "background_color": null,
    "animation_url": null,
    "youtube_url": null
  }
}

Please look at the test code for an example usage in Rust.

Notice

Feel free to use this contract out of the box, or as inspiration for further customization of cw721-base. We will not be adding new features or business logic here.

Dependencies

~4.5–6MB
~135K SLoC