sg4

Crates.iosg4
lib.rssg4
version3.15.0
sourcesrc
created_at2022-08-26 20:58:12.056079
updated_at2024-10-01 18:41:47.404577
descriptionDefinition and types for the SG4 interface
homepagehttps://stargaze.zone
repositoryhttps://github.com/public-awesome/launchpad
max_upload_size
id653054
size3,617
Michael J.S. (humanalgorithm)

documentation

README

SG4 Spec: Stargaze Minter Contracts

A minter must store the factory that created it, so it can query its parameters:

pub struct MinterConfig<T> {
    pub factory: Addr,
    pub collection_code_id: u64,
    pub mint_price: Coin,
    pub extension: T,
}

Custom minters can add more fields using extension.

A minimum, Stargaze minters should specify at least one Mint {} operation that takes 0 to many arguments.

pub enum ExecuteMsg {
    Mint {},
}

Provides minter status for each collection. Status is changed through on-chain governance proposals.

  • Verified: a community based signal that the creators are verified
  • Blocked: a community based signal that the collection should be blocked
  • Explicit: a community based signal that the collection has explicit content (not safe for work, pornographic, etc)
pub struct Minter {
    pub verified: bool,
    pub blocked: bool,
    pub is_explicit: bool,
}
Commit count: 2335

cargo fmt