文档 Docs
合约
A standard ERC-721 built for BNB Chain. Public mint, hard cap, per-wallet cap, owner controls, nothing exotic.
Parameters
| Setting | Value |
|---|---|
| Standard | ERC-721 (Enumerable), OpenZeppelin v5 |
| Max supply | 300, hard capped |
| Mint price | 0.0034 BNB (a nod to the 342 opening day) |
| Per wallet | 10 |
| Token URI | baseURI + id + .json |
The mint path
Every public mint runs the same checks before it hands you a token.
mint(qty)you send price × qty
→
checkssale open, under caps, paid enough
→
_safeMintids assigned in order
→
Mintedevent emitted
Admin controls
The owner can open or close the sale, change the price and the per-wallet cap, set the base URI, airdrop with ownerMint, and withdraw the balance. That is all, no mint-to-arbitrary, no hidden supply.