Contains the contract functions only with a link to the full function in the contract code
Interface
Contract events
event MintingOpen()
event MintFeeDestinationSet(address indexed oldDestination, address indexed newDestination)
event MintPriceSet(uint256 oldPrice, uint256 newPrice)
event BaseURISet(string oldURI, string newURI)
event WhitelistActivitySet(bool whitelistActive)
event WhitelistAuthoritySet(address indexed oldWhitelistAuthority, address indexed newWhitelistAuthority)
Read-Only Functions
function whitelist(address holder) external view returns (bool)
External Functions
function setMintFeeDestination(address mintFeeDestination_) external onlyOwner
function setBaseURI(string memory baseURI_) external onlyOwner
function setMintPrice(uint256 mintPrice_) external onlyOwner
function setWhitelist(bool isActive) external onlyOwner
