Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 49 additional slots
-
variable spans 48 additional slots
-
variable spans 49 additional slots
-
variable spans 49 additional slots
-
variable spans 47 additional slots
Balances ($0.00)
No balances found for "Mintdash"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 4814993 | a year ago | | | 0 | 0.000021039829 |
ABI
ABI objects
Getter at block 23073961
administrator() view returns (address)
0x68ff7974c14549dd45f80ba399fb2d06813da888
baseURI() view returns (string)
maxSupply() view returns (uint256)
0
name() view returns (string)
Mintdash
owner() view returns (address)
0x68ff7974c14549dd45f80ba399fb2d06813da888
payoutAddress() view returns (address)
0x0000000000000000000000000000000000000000
platformFeesAddress() view returns (address)
0xea6b5147c353904d5fafa801422d268772f09512
platformFeesNumerator() view returns (uint96)
500
provenanceHash() view returns (bytes32)
0x0000000000000000000000000000000000000000000000000000000000000000
publicMintStage() view returns (uint144 mintPrice, uint48 startTime, uint48 endTime, uint16 mintLimitPerWallet)
(mintPrice=0, startTime=0, endTime=0, mintLimitPerWallet=0)
symbol() view returns (string)
MINTDASH
totalSupply() view returns (uint256)
0
Read-only
allowedPayers(address payer) view returns (bool allowed)
allowlistMintStages(uint256 allowlistStageId) view returns (uint80 mintPrice, uint48 startTime, uint48 endTime, uint16 mintLimitPerWallet, uint40 maxSupplyForStage, bytes32 merkleRoot)
balanceOf(address owner) view returns (uint256)
getAmountMinted(address user) view returns (uint64)
getApproved(uint256 tokenId) view returns (address)
getTokenGatedIsRedeemed(address nftContract, uint256 tokenId) view returns (bool)
isApprovedForAll(address owner, address operator) view returns (bool)
ownerOf(uint256 tokenId) view returns (address)
royaltyInfo(uint256 _tokenId, uint256 _salePrice) view returns (address, uint256)
supportsInterface(bytes4 interfaceId) view returns (bool)
tokenGatedMintStages(address nftContract) view returns (uint104 mintPrice, uint48 startTime, uint48 endTime, uint16 mintLimitPerWallet, uint40 maxSupplyForStage)
tokenURI(uint256 tokenId) view returns (string)
State-modifying
Events airdrop(address[] to, uint64[] quantity)
approve(address to, uint256 tokenId) payable
burn(uint256 tokenId)
initialize(string _name, string _symbol, address _administrator)
mintAllowlist(uint256 allowlistStageId, address recipient, uint256 quantity, bytes32[] merkleProof) payable
mintPublic(address recipient, uint256 quantity) payable
mintTokenGated(address recipient, address nftContract, uint256[] tokenIds) payable
multicall(bytes[] data) returns (bytes[] results)
renounceAdministration()
renounceOwnership()
safeTransferFrom(address from, address to, uint256 tokenId) payable
safeTransferFrom(address from, address to, uint256 tokenId, bytes _data) payable
setApprovalForAll(address operator, bool approved)
transferAdministration(address newAdmin)
transferFrom(address from, address to, uint256 tokenId) payable
transferOwnership(address newOwner)
updateAllowlistMintStage(struct AllowlistMintStageConfig allowlistMintStageConfig)
updateBaseURI(string newUri)
updateConfiguration(struct IERC721DropImplementationMultiConfig config)
updateMaxSupply(uint256 newMaxSupply)
updatePayer(address payer, bool isAllowed)
updatePayoutAddress(address newPayoutAddress)
updatePlatformFees(address newPlatformFeesAddress, uint256 newPlatformFeesNumerator)
updateProvenanceHash(bytes32 newProvenanceHash)
updatePublicMintStage(struct PublicMintStage publicMintStageData)
updateRoyalties(address receiver, uint96 feeNumerator)
updateTokenGatedMintStage(struct TokenGatedMintStageConfig tokenGatedMintStageConfig)
withdrawAllFunds()
AdministrationTransferred(address indexed previousAdmin, address indexed newAdmin)
AllowedPayerUpdated(address indexed payer, bool indexed allowed)
AllowlistMintStageUpdated(uint256 indexed allowlistStageId, struct AllowlistMintStage data)
Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)
ApprovalForAll(address indexed owner, address indexed operator, bool approved)
BaseURIUpdated(string indexed baseURI)
BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId)
ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to)
Initialized(uint8 version)
MaxSupplyUpdated(uint256 indexed maxSupply)
Minted(address indexed recipient, uint256 indexed quantity, uint256 indexed stageIndex)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
PayoutAddressUpdated(address indexed payoutAddress)
PlatformFeesUpdated(address indexed platformFeesAddress, uint256 indexed platformFeesNumerator)
ProvenanceHashUpdated(bytes32 indexed provenanceHash)
PublicMintStageUpdated(struct PublicMintStage data)
RoyaltiesUpdated(address indexed receiver, uint96 indexed feeNumerator)
TokenGatedMintStageUpdated(address indexed nftContract, struct TokenGatedMintStage data)
Transfer(address indexed from, address indexed to, uint256 indexed tokenId)
This contract contains no constructor objects.
This contract contains no fallback and receive objects.
AllowlistStageInvalidProof()
ApprovalCallerNotOwnerNorApproved()
ApprovalQueryForNonexistentToken()
BalanceQueryForZeroAddress()
CannotExceedMaxSupplyOfUint64()
IncorrectFundsProvided()
InvalidAdministratorAddress()
InvalidPayoutAddress()
InvalidPlatformFeesAddress()
MintERC2309QuantityExceedsLimit()
MintQuantityExceedsMaxSupply()
MintQuantityExceedsMaxSupplyForStage()
MintQuantityExceedsWalletLimit()
MintToZeroAddress()
MintZeroQuantity()
NothingToWithdraw()
OnlyAdministrator()
OnlyOwnerOrAdministrator()
OwnerQueryForNonexistentToken()
OwnershipNotInitializedForExtraData()
PayerNotAllowed()
PayoutAddressCannotBeZeroAddress()
PayoutTransferFailed()
PlatformFeesAddressCannotBeZeroAddress()
PlatformFeesNumeratorTooHigh()
PlatformFeesTransferFailed()
ProvenanceHashCannotBeUpdatedAfterMintStarted()
SignatureAlreadyUsed()
StageNotActive(uint256 blockTimestamp, uint256 startTime, uint256 endTime)
TokenGatedNftContractCannotBeZeroAddress()
TokenGatedNotTokenOwner()
TokenGatedTokenAlreadyRedeemed()
TransferCallerNotOwnerNorApproved()
TransferFromIncorrectOwner()
TransferToNonERC721ReceiverImplementer()
TransferToZeroAddress()
URIQueryForNonexistentToken()