NFT Drop Collection Implementation
Verified contract
Implementation
Active on
Base with 0 txns
Storage
Map
Table
Raw
Constants and immutables
8
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 999 additional slots
Balances ($0.00)
No balances found for "NFT Drop Collection Implementation"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "NFT Drop Collection Implementation"
ABI
ABI objects
Getter at block 22114648
DEFAULT_ADMIN_ROLE() view returns (bytes32)
0x0000000000000000000000000000000000000000000000000000000000000000
MINTER_ROLE() view returns (bytes32)
0x9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6
baseURI() view returns (string uri)
getNFTCollectionType() view returns (string collectionType)
NFT Drop Collection
getSupplyLock() view returns (address supplyLockHolder, uint256 supplyLockExpiration)
(supplyLockHolder=0x0000000000000000000000000000000000000000, supplyLockExpiration=0)
isRevealed() view returns (bool revealed)
false
latestTokenId() view returns (uint32)
0
maxTokenId() view returns (uint32)
0
name() view returns (string)
NFT Drop Collection Implementation
numberOfTokensAvailableToMint() view returns (uint256 count)
0
owner() view returns (address)
0x0000000000000000000000000000000000000000
pendingOwner() view returns (address)
0x0000000000000000000000000000000000000000
symbol() view returns (string)
NFTDrop
totalSupply() view returns (uint256 supply)
0
Read-only
balanceOf(address owner) view returns (uint256)
getApproved(uint256 tokenId) view returns (address)
getFeeBps(uint256) pure returns (uint256[] royaltiesInBasisPoints)
getFeeRecipients(uint256 tokenId) view returns (address[] recipients)
getRoleAdmin(bytes32 role) view returns (bytes32)
getRoyalties(uint256 tokenId) view returns (address[] recipients, uint256[] royaltiesInBasisPoints)
getTokenCreatorPaymentAddress(uint256 tokenId) view returns (address creatorPaymentAddress)
hasRole(bytes32 role, address account) view returns (bool accountHasRole)
isAdmin(address account) view returns (bool approved)
isApprovedForAll(address owner, address operator) view returns (bool)
isMinter(address account) view returns (bool approved)
ownerOf(uint256 tokenId) view returns (address)
royaltyInfo(uint256 tokenId, uint256 salePrice) view returns (address receiver, uint256 royaltyAmount)
supportsInterface(bytes4 interfaceId) view returns (bool isSupported)
tokenCreator(uint256) view returns (address creator)
tokenURI(uint256 tokenId) view returns (string uri)
State-modifying
Events acceptOwnership()
approve(address to, uint256 tokenId)
burn(uint256 tokenId)
grantAdmin(address account)
grantMinter(address account)
grantRole(bytes32 role, address account)
initialize(struct INFTDropCollectionInitializerNFTDropCollectionInitializeParams params)
mintCountTo(uint16 count, address to) returns (uint256 firstTokenId)
minterAcquireSupplyLock(uint256 expiration)
renounceOwnership()
renounceRole(bytes32 role, address callerConfirmation)
reveal(string baseURI_)
revokeAdmin(address account)
revokeMinter(address account)
revokeRole(bytes32 role, address account)
safeTransferFrom(address from, address to, uint256 tokenId)
safeTransferFrom(address from, address to, uint256 tokenId, bytes data)
selfDestruct()
setApprovalForAll(address operator, bool approved)
transferFrom(address from, address to, uint256 tokenId)
transferOwnership(address newOwner)
updateMaxTokenId(uint32 _maxTokenId)
updatePreRevealContent(string baseURI_)
Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)
ApprovalForAll(address indexed owner, address indexed operator, bool approved)
BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId)
Initialized(uint64 version)
MaxTokenIdUpdated(uint256 indexed maxTokenId)
MetadataUpdate(uint256 tokenId)
MinterAcquireSupplyLock(address indexed supplyLock, uint256 supplyLockExpiration)
OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole)
RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender)
SelfDestruct(address indexed operator)
Transfer(address indexed from, address indexed to, uint256 indexed tokenId)
URIUpdated(string baseURI, bool isRevealed)
constructor()
This contract contains no fallback and receive objects.
AccessControlBadConfirmation()
AccessControlUnauthorizedAccount(address account, bytes32 neededRole)
AdminRole_Caller_Does_Not_Have_Admin_Role()
ERC721IncorrectOwner(address sender, uint256 tokenId, address owner)
ERC721InsufficientApproval(address operator, uint256 tokenId)
ERC721InvalidApprover(address approver)
ERC721InvalidOperator(address operator)
ERC721InvalidOwner(address owner)
ERC721InvalidReceiver(address receiver)
ERC721InvalidSender(address sender)
ERC721NonexistentToken(uint256 tokenId)
InvalidInitialization()
InvalidShortString()
LazyMintedCollection_Mint_Count_Must_Be_Greater_Than_Zero()
MinterRole_Caller_Does_Not_Have_Minter_Or_Admin_Role()
NFTDropCollection_Exceeds_Max_Token_Id(uint256 maxTokenId)
NotInitializing()
OwnableInvalidOwner(address owner)
OwnableUnauthorizedAccount(address account)
RevealableCollection_Already_Revealed()
SelfDestructibleCollection_Minted_NFTs_Must_Be_Burned_First(uint256 totalSupply)
StringTooLong(string str)
StringsLibrary_Required_String_Is_Empty()
SupplyLock_Action_Disallowed_While_Supply_Is_Locked(uint256 supplyLockExpiration)
SupplyLock_Caller_Is_Not_Supply_Lock_Holder(address supplyLockHolder, uint256 supplyLockExpiration)
SupplyLock_Existing_Lock_Has_Already_Expired()
SupplyLock_Expiration_Time_In_The_Past()
SupplyLock_Expiration_Time_Too_Far_In_The_Future(uint256 maxExpiration)
TokenLimitedCollection_Max_Token_Id_May_Not_Be_Cleared(uint256 currentMaxTokenId)
TokenLimitedCollection_Max_Token_Id_May_Not_Increase(uint256 currentMaxTokenId)
TokenLimitedCollection_Max_Token_Id_Must_Be_Greater_Than_Current_Minted_Count(uint256 currentMintedCount)
TokenLimitedCollection_Max_Token_Id_Must_Not_Be_Zero()