NFT
Verified contract
Implementation
Active on
Base with 0 txns
Storage
Map
Table
Raw
Constants and immutables
1
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
1 additional
variable
Balances ($0.00)
No balances found for "NFT"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "NFT"
ABI
ABI objects
Getter at block 23055313 mintedSupply() view returns (uint256)
DEFAULT_TRANSFER_VALIDATOR() view returns (address)
0x721c0078c2328597ca70f5451fff5a7b38d4e947
autoApproveTransfersFromValidator() view returns (bool)
false
baseTokenURI() view returns (string)
getNextTokenId() view returns (uint256)
0
getTransferValidationFunction() pure returns (bytes4 functionSignature, bool isViewFunction)
(functionSignature=0xcaee23ea, isViewFunction=true)
getTransferValidator() view returns (address validator)
0x721c0078c2328597ca70f5451fff5a7b38d4e947
maxSupply() view returns (uint256)
0
maxSupplyInitialized() view returns (bool)
false
name() view returns (string)
owner() view returns (address)
0x4e59b44847b379578588920ca78fbf26c0b4956c
remainingAirdropSupply() view returns (uint256)
0
remainingOwnerMints() view returns (uint256)
0
suffixURI() view returns (string)
symbol() view returns (string)
Read-only
balanceOf(address owner) view returns (uint256)
getApproved(uint256 tokenId) view returns (address)
isApprovedForAll(address owner, address operator) view returns (bool isApproved)
ownerOf(uint256 tokenId) view returns (address)
royaltyInfo(uint256 _tokenId, uint256 _salePrice) view returns (address, uint256)
supportsInterface(bytes4 interfaceId) view returns (bool)
tokenURI(uint256 tokenId) view returns (string)
State-modifying
Events airdropMint(address[] to)
approve(address to, uint256 tokenId)
initializeERC721(string name_, string symbol_)
initializeMaxAirdropSupply(uint256 maxAirdropMints_)
initializeMaxSupply(uint256 maxSupply_, uint256 maxOwnerMints_)
initializeOwner(address owner_)
initializeURI(string baseURI_, string suffixURI_)
ownerMint(address to, uint256 quantity)
renounceOwnership()
safeTransferFrom(address from, address to, uint256 tokenId)
safeTransferFrom(address from, address to, uint256 tokenId, bytes data)
setApprovalForAll(address operator, bool approved)
setAutomaticApprovalOfTransfersFromValidator(bool autoApprove)
setBaseURI(string baseTokenURI_)
setDefaultRoyalty(address receiver, uint96 feeNumerator)
setSuffixURI(string suffixURI_)
setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator)
setTransferValidator(address transferValidator_)
transferFrom(address from, address to, uint256 tokenId)
transferOwnership(address newOwner)
Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)
ApprovalForAll(address indexed owner, address indexed operator, bool approved)
AutomaticApprovalOfTransferValidatorSet(bool autoApproved)
BaseURISet(string baseTokenURI)
DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator)
MaxSupplyInitialized(uint256 maxSupply, uint256 maxOwnerMints)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
SuffixURISet(string suffixURI)
TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator)
Transfer(address indexed from, address indexed to, uint256 indexed tokenId)
TransferValidatorUpdated(address oldValidator, address newValidator)
constructor()
This contract contains no fallback and receive objects.
AdventureFreeNFT__NonexistentToken()
AirdropMintInitializable__MaxAirdropSupplyAlreadyInitialized()
AirdropMint__AirdropBatchSizeMustBeGreaterThanZero()
AirdropMint__CannotMintToZeroAddress()
AirdropMint__MaxAirdropSupplyCannotBeSetToMaxUint256()
AirdropMint__MaxAirdropSupplyCannotBeSetToZero()
AirdropMint__MaxAirdropSupplyExceeded()
CreatorTokenBase__InvalidTransferValidatorContract()
ERC721OpenZeppelinInitializable__AlreadyInitializedERC721()
InitializableMaxSupplyBase__MaxSupplyAlreadyInitialized()
InitializableOwnable__OwnerAlreadyInitialized()
MaxSupplyBase__CannotClaimMoreThanMaximumAmountOfOwnerMints()
MaxSupplyBase__CannotMintToAddressZero()
MaxSupplyBase__MaxSupplyCannotBeSetToMaxUint256()
MaxSupplyBase__MaxSupplyExceeded()
MaxSupplyBase__MintedQuantityMustBeGreaterThanZero()
MetadataURIInitializable__URIAlreadyInitialized()
ShouldNotMintToBurnAddress()