Overworld Key
Verified contract
Active on
Ethereum with 553 txns
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($0.00)
No balances found for "Overworld Key"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 21151129 | a day ago | | | 0 | 0.00046074949 | |
| 21038854 | 17 days ago | | | 0 | 0.00031850823 | |
| 21038846 | 17 days ago | | | 0 | 0.00026762806 | |
| 20956636 | a month ago | | | 0 | 0.00026503664 | |
| 20797942 | 2 months ago | | | 0 | 0.00061328641 | |
| 20793452 | 2 months ago | | | 0 | 0.00065508126 | |
| 20768355 | 2 months ago | | | 0 | 0.00010993835 | |
| 20741250 | 2 months ago | | | 0 | 0.00013053213 | |
| 20740827 | 2 months ago | | | 0 | 0.00013832851 | |
| 20560034 | 3 months ago | | | 0 | 0.000028769490 |
ABI
ABI objects
Getter at block 21158017
getCosigner() view returns (address)
0x194ea7ce80b510d6b872b1d221c6230ebf83bff9
getCrossmintAddress() view returns (address)
0x0000000000000000000000000000000000000000
getGlobalWalletLimit() view returns (uint256)
0
getMaxMintableSupply() view returns (uint256)
4999
getMintable() view returns (bool)
false
getNumberStages() view returns (uint256)
0
getTimestampExpirySeconds() view returns (uint64)
300
getTokenURISuffix() view returns (string)
.json
name() view returns (string)
Overworld Key
owner() view returns (address)
0xa045e31c6e363eee76fbf2be34017878d496b3a9
symbol() view returns (string)
overworld_key
totalSupply() view returns (uint256)
99
Read-only
assertValidCosign(address minter, uint32 qty, uint64 timestamp, bytes signature) view
balanceOf(address owner) view returns (uint256)
explicitOwnershipOf(uint256 tokenId) view returns (struct IERC721ATokenOwnership)
explicitOwnershipsOf(uint256[] tokenIds) view returns (struct IERC721ATokenOwnership[])
getActiveStageFromTimestamp(uint64 timestamp) view returns (uint256)
getApproved(uint256 tokenId) view returns (address)
getCosignDigest(address minter, uint32 qty, uint64 timestamp) view returns (bytes32)
getCosignNonce(address minter) view returns (uint256)
getStageInfo(uint256 index) view returns (struct IERC721MMintStageInfo, uint32, uint256)
isApprovedForAll(address owner, address operator) view returns (bool)
ownerOf(uint256 tokenId) view returns (address)
supportsInterface(bytes4 interfaceId) view returns (bool)
tokenURI(uint256 tokenId) view returns (string)
tokensOfOwner(address owner) view returns (uint256[])
tokensOfOwnerIn(address owner, uint256 start, uint256 stop) view returns (uint256[])
totalMintedByAddress(address a) view returns (uint256)
State-modifying
Events approve(address to, uint256 tokenId) payable
crossmint(uint32 qty, address to, bytes32[] proof, uint64 timestamp, bytes signature) payable
mint(uint32 qty, bytes32[] proof, uint64 timestamp, bytes signature) payable
ownerMint(uint32 qty, address to)
renounceOwnership()
safeTransferFrom(address from, address to, uint256 tokenId) payable
safeTransferFrom(address from, address to, uint256 tokenId, bytes data) payable
setApprovalForAll(address operator, bool approved)
setBaseURI(string baseURI)
setBaseURIPermanent()
setCosigner(address cosigner)
setCrossmintAddress(address crossmintAddress)
setGlobalWalletLimit(uint256 globalWalletLimit)
setMaxMintableSupply(uint256 maxMintableSupply)
setMintable(bool mintable)
setStages(struct IERC721MMintStageInfo[] newStages)
setTimestampExpirySeconds(uint64 expiry)
setTokenURISuffix(string suffix)
transferFrom(address from, address to, uint256 tokenId) payable
transferOwnership(address newOwner)
updateStage(uint256 index, uint80 price, uint32 walletLimit, bytes32 merkleRoot, uint24 maxStageSupply, uint64 startTimeUnixSeconds, uint64 endTimeUnixSeconds)
withdraw()
Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)
ApprovalForAll(address indexed owner, address indexed operator, bool approved)
ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
PermanentBaseURI(string baseURI)
SetActiveStage(uint256 activeStage)
SetBaseURI(string baseURI)
SetCosigner(address cosigner)
SetCrossmintAddress(address crossmintAddress)
SetGlobalWalletLimit(uint256 globalWalletLimit)
SetMaxMintableSupply(uint256 maxMintableSupply)
SetMintable(bool mintable)
SetTimestampExpirySeconds(uint64 expiry)
Transfer(address indexed from, address indexed to, uint256 indexed tokenId)
UpdateStage(uint256 stage, uint80 price, uint32 walletLimit, bytes32 merkleRoot, uint24 maxStageSupply, uint64 startTimeUnixSeconds, uint64 endTimeUnixSeconds)
Withdraw(uint256 value)
constructor(string collectionName, string collectionSymbol, string tokenURISuffix, uint256 maxMintableSupply, uint256 globalWalletLimit, address cosigner, uint64 timestampExpirySeconds)
This contract contains no fallback and receive objects.
ApprovalCallerNotOwnerNorApproved()
ApprovalQueryForNonexistentToken()
BalanceQueryForZeroAddress()
CannotIncreaseMaxMintableSupply()
CannotUpdatePermanentBaseURI()
CosignerNotSet()
CrossmintAddressNotSet()
CrossmintOnly()
GlobalWalletLimitOverflow()
InsufficientStageTimeGap()
InvalidCosignSignature()
InvalidProof()
InvalidQueryRange()
InvalidStage()
InvalidStageArgsLength()
InvalidStartAndEndTimestamp()
MintERC2309QuantityExceedsLimit()
MintToZeroAddress()
MintZeroQuantity()
Mintable()
NoSupplyLeft()
NotEnoughValue()
NotMintable()
OperatorNotAllowed(address operator)
OwnerQueryForNonexistentToken()
OwnershipNotInitializedForExtraData()
StageSupplyExceeded()
TimestampExpired()
TransferCallerNotOwnerNorApproved()
TransferFromIncorrectOwner()
TransferToNonERC721ReceiverImplementer()
TransferToZeroAddress()
URIQueryForNonexistentToken()
WalletGlobalLimitExceeded()
WalletStageLimitExceeded()
WithdrawFailed()