sg-name

Crates.iosg-name
lib.rssg-name
version1.2.5
sourcesrc
created_at2022-10-10 00:57:09.446181
updated_at2023-06-02 03:52:48.262382
descriptionRust definition of name service metadata, used by Stargaze Names
homepagehttps://stargaze.zone
repositoryhttps://github.com/public-awesome/names
max_upload_size
id684272
size18,643
Michael J.S. (humanalgorithm)

documentation

README

Stargaze Names Collection

Defines on-chain metadata for Stargaze Names, a Cosmos / Interchain name service.

pub struct NFT {
    pub collection: Addr,
    pub token_id: String,
}

pub struct TextRecord {
    pub name: String,  // "twitter"
    pub value: String, // "shan3v"
    pub verified_at: Option<Timestamp>,
}

pub struct Metadata {
    pub image: Option<NFT>,
    pub records: Vec<TextRecord>,
}
Commit count: 551

cargo fmt