74 releases (30 stable)

3.15.0 Oct 1, 2024
3.14.0 Jun 4, 2024
3.13.0 Apr 26, 2024
3.7.0 Feb 13, 2024
0.9.1 Mar 27, 2022

#5 in #stargaze

Download history 20/week @ 2024-07-08 80/week @ 2024-07-15 82/week @ 2024-07-22 42/week @ 2024-07-29 34/week @ 2024-08-05 119/week @ 2024-08-12 34/week @ 2024-08-19 72/week @ 2024-08-26 49/week @ 2024-09-02 63/week @ 2024-09-09 73/week @ 2024-09-16 60/week @ 2024-09-23 417/week @ 2024-09-30 61/week @ 2024-10-07 50/week @ 2024-10-14

590 downloads per month
Used in 23 crates (21 directly)

Apache-2.0

7KB
94 lines

SG-721

SG-721 is a cw721-compatible spec that adds on-chain contract metadata, including royalties.

pub struct CollectionInfo<T> {
    pub creator: String,
    pub description: String,
    pub image: String,
    pub external_link: Option<String>,
    pub trading_start_time: Option<Timestamp>,
    pub royalty_info: Option<T>,
}

pub struct RoyaltyInfo {
    pub payment_address: Addr,
    pub share: Decimal,
}

The above is set when the contract is instantiated. The contract inherits everything else from cw721-base.

Dependencies

~4–6MB
~129K SLoC