ERC721LA
Verified contract
Implementation
Active on
Ethereum with 0 txns
Storage
Map
Table
Raw
Constants and immutables
11
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 10 additional slots
Balances ($0.00)
No balances found for "ERC721LA"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "ERC721LA"
ABI
ABI objects
Getter at block 20863760 totalEditions() view returns (uint256 total)
COLLECTION_ADMIN_ROLE() view returns (bytes32)
0xea8e1b953cb200117b202dd78c6958f9c14d952d5bdaa146141d2a5f9ee220db
EDITION_MAX_SIZE() view returns (uint256)
999999
EDITION_TOKEN_MULTIPLIER() view returns (uint256)
1000000
IERC165_INTERFACE() view returns (bytes32)
0x01ffc9a700000000000000000000000000000000000000000000000000000000
IERC2981_INTERFACE() view returns (bytes32)
0x2a55205a00000000000000000000000000000000000000000000000000000000
IERC721METADATA_INTERFACE() view returns (bytes32)
0x5b5e139f00000000000000000000000000000000000000000000000000000000
IERC721_INTERFACE() view returns (bytes32)
0x80ac58cd00000000000000000000000000000000000000000000000000000000
MINTER_ROLE() view returns (bytes32)
0x9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6
name() view returns (string)
symbol() view returns (string)
totalSupply() view returns (uint256)
0
Read-only
balanceOf(address owner) view returns (uint256 balance)
editionSupply(uint256 editionId) view returns (uint256 supply)
editionedTokenId(uint256 editionId, uint256 tokenNumber) pure returns (uint256 tokenId)
getApproved(uint256 tokenId) view returns (address)
getEdition(uint256 _editionId) view returns (struct ERC721LAEdition)
hasRole(bytes32 role, address account) view returns (bool)
isApprovedForAll(address owner, address operator) view returns (bool)
ownerOf(uint256 tokenId) view returns (address)
parseEditionFromTokenId(uint256 tokenId) pure returns (uint256 editionId, uint256 tokenNumber)
royaltyInfo(uint256 _tokenId, uint256 _value) view returns (address _receiver, uint256 _royaltyAmount)
supportsInterface(bytes4 interfaceId) pure returns (bool)
tokenURI(uint256 tokenId) view returns (string)
State-modifying
Events approve(address to, uint256 tokenId)
createAndMintEdition(string _baseURI, uint256 _maxSupply, address _recipient)
grantRole(bytes32 role, address account)
initialize(string _name, string _symbol, address _admin, address _royaltyRegistry)
lazyMintEdition(string _baseURI, uint256 _maxSupply) returns (uint256)
mintEditionTokens(uint256 _editionId, uint256 _quantity, address _recipient)
renounceRole(bytes32 role, address account)
revokeRole(bytes32 role, address account)
safeTransferFrom(address from, address to, uint256 tokenId)
safeTransferFrom(address from, address to, uint256 tokenId, bytes _data)
setApprovalForAll(address operator, bool approved)
transferFrom(address from, address to, uint256 tokenId)
updateEdition(uint256 editionId, string _baseURI)
Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)
ApprovalForAll(address indexed owner, address indexed operator, bool approved)
EditionCreated(address indexed contractAddress, address indexed createdBy, uint256 editionId, uint256 maxSupply, string baseURI)
EditionUpdated(address indexed contractAddress, uint256 editionId, uint256 maxSupply, string baseURI)
RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender)
Transfer(address indexed from, address indexed to, uint256 indexed tokenId)
constructor()
This contract contains no fallback and receive objects.
AccessControlNotAllowed()
AlreadyInitialized()
BitMapHeadNotFound()
InvalidEditionData()
InvalidEditionId()
InvalidMintData()
MaxSupplyError()
NotAllowed()
NotERC721Receiver()
TokenNotFound()
TransferError()