base-factory 0.1.0

A 1/1 Stargaze minter factory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Base Minter Factory

A simple contract that maintains all base 1/1 minter governance parameters.

It's responsible for creating new minters with the latest governance parameters.

It also maintains verified and blocked lists for vending minters.

```rs
pub struct Minter {
    pub verified: bool,
    pub blocked: bool,
}
```

Minters can be verified or blocked via on-chain governance.