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
167 downloads per month
Used in 23 crates
(21 directly)
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
~127K SLoC