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

#15 in #inter-chain

Download history 427/week @ 2024-12-07 87/week @ 2024-12-14 3/week @ 2024-12-21 92/week @ 2024-12-28 14/week @ 2025-01-04 30/week @ 2025-01-11 51/week @ 2025-01-18 32/week @ 2025-01-25 92/week @ 2025-02-01 165/week @ 2025-02-08 67/week @ 2025-02-15 47/week @ 2025-02-22 69/week @ 2025-03-01 29/week @ 2025-03-08 96/week @ 2025-03-15 33/week @ 2025-03-22

232 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

~5.5–7.5MB
~159K SLoC