MultiTokenCollection
Verified contract
Implementation
Active on
Base with 0 txns
Storage
Map
Table
Raw
Constants and immutables
10
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 "MultiTokenCollection"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "MultiTokenCollection"
ABI
ABI objects
Getter at block 22042556
DEFAULT_ADMIN_ROLE() view returns (bytes32)
0x0000000000000000000000000000000000000000000000000000000000000000
MINTER_ROLE() view returns (bytes32)
0x9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6
contractURI() view returns (string uri)
Multi-Token Collection Implementation
defaultRoyaltyPaymentAddress() view returns (address paymentAddress)
0x0000000000000000000000000000000000000000
getNFTCollectionType() view returns (string collectionType)
Multi-Token Collection
owner() view returns (address)
0x0000000000000000000000000000000000000000
pendingOwner() view returns (address)
0x0000000000000000000000000000000000000000
totalSupply() view returns (uint256)
0
Read-only
balanceOf(address account, uint256 id) view returns (uint256)
balanceOfBatch(address[] accounts, uint256[] ids) view returns (uint256[])
exists(uint256 tokenId) view returns (bool tokenIdWasCreated)
getRoleAdmin(bytes32 role) view returns (bytes32)
getTokenMintAvailability(uint256 tokenId) view returns (uint256 mintEndTime, uint256 quantityAvailableToMint)
hasRole(bytes32 role, address account) view returns (bool accountHasRole)
isAdmin(address account) view returns (bool approved)
isApprovedForAll(address account, address operator) view returns (bool)
isMinter(address account) view returns (bool approved)
isTokenRestricted(uint256 tokenId, uint8 restriction) view returns (bool isRestricted)
royaltyInfo(uint256 tokenId, uint256 salePrice) view returns (address receiver, uint256 royaltyAmount)
supportsInterface(bytes4 interfaceId) view returns (bool isSupported)
totalSupply(uint256 id) view returns (uint256)
uri(uint256 tokenId) view returns (string tokenURI)
State-modifying
Events acceptOwnership()
adminMulticall(bytes[] internalDelegateCalls, struct CallWithoutValue[] externalCalls)
assignTokenRestrictions(uint256 tokenId, uint8 restrictionToAdd)
burn(address account, uint256 id, uint256 value)
burnBatch(address account, uint256[] ids, uint256[] values)
createToken(uint256 tokenId, string tokenURI, uint256 mintEndTime)
grantAdmin(address account)
grantMinter(address account)
grantRole(bytes32 role, address account)
initialize(address creator, string contractUri, bytes[] internalDelegateCalls, struct CallWithoutValue[] externalCalls)
renounceOwnership()
renounceRole(bytes32 role, address callerConfirmation)
revokeAdmin(address account)
revokeMinter(address account)
revokeRole(bytes32 role, address account)
safeBatchTransferFrom(address from, address to, uint256[] tokenIds, uint256[] quantities, bytes data)
safeTransferFrom(address from, address to, uint256 tokenId, uint256 quantity, bytes data)
setApprovalForAll(address operator, bool approved)
setContractURI(string uri)
setDefaultRoyaltyPaymentAddress(address paymentAddress)
setMintEndTime(uint256 tokenId, uint256 mintEndTime)
setTokenRoyaltyPaymentAddress(uint256 tokenId, address tokenRoyaltyPaymentAddressOverride)
setTokenURI(uint256 tokenId, string tokenURI)
transferOwnership(address newOwner)
ApprovalForAll(address indexed account, address indexed operator, bool approved)
AssignTokenRestriction(uint256 indexed tokenId, uint8 restrictionAdded)
ContractURIUpdated()
CreateToken(uint256 indexed tokenId)
Initialized(uint64 version)
OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
PermanentURI(string tokenUri, uint256 indexed tokenId)
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)
SetDefaultRoyaltyPaymentAddress(address indexed defaultRoyaltyPaymentAddress)
SetMintEndTime(uint256 indexed tokenId, uint256 mintEndTime)
SetTokenRoyaltyPaymentAddress(uint256 indexed tokenId, address indexed paymentAddressOverride)
TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values)
TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value)
URI(string value, uint256 indexed id)
constructor()
This contract contains no fallback and receive objects.
AccessControlBadConfirmation()
AccessControlUnauthorizedAccount(address account, bytes32 neededRole)
AddressEmptyCode(address target)
AddressInsufficientBalance(address account)
AdminRole_Caller_Does_Not_Have_Admin_Role()
CollectionTokenRoyalties_Address_Already_Set()
CollectionTokenRoyalties_Payment_Address_Required()
ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId)
ERC1155InvalidApprover(address approver)
ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength)
ERC1155InvalidOperator(address operator)
ERC1155InvalidReceiver(address receiver)
ERC1155InvalidSender(address sender)
ERC1155MissingApprovalForAll(address operator, address owner)
FailedInnerCall()
InvalidInitialization()
InvalidShortString()
MinterRole_Caller_Does_Not_Have_Minter_Or_Admin_Role()
MultiTokenCollection_Contract_URI_Required()
MultiTokenCollection_Token_Already_Exists()
MultiTokenMintSchedule_Mint_Time_Has_Already_Expired()
MultiTokenMintSchedule_Token_Minting_Has_Ended()
MultiTokenMintSchedule_Token_Not_Found()
NotInitializing()
OwnableInvalidOwner(address owner)
OwnableUnauthorizedAccount(address account)
StringTooLong(string str)
StringsLibrary_Required_String_Is_Empty()
TokenImmutability_Action_Disallowed()
TokenImmutability_Restriction_Already_Applied()