Content
EVENTS
Mint(operator, data)
Burn(operator, data)
Mint(address operator, LibAsset.MintData data) |
---|
Event emitted when the |
Burn(address operator, LibAsset.BurnData data) |
---|
Event emitted when the |
FUNCTIONS
mintBatch(_data)
burnBatch(_data)
contractUri()
uri(_tokenId)
uri(_tokenId, _version)
totalSupply(_tokenId)
maxSupply(_tokenId)
contractRoyalty()
userMintNonce(_user)
royaltyInfo(_tokenId, _salePrice)
mintBatch(LibAsset.MintData _data) |
---|
Mints a batch of assets. |
|
Emits a |
Requirements:
|
visibility: external |
state mutability: |
burnBatch(LibAsset.BurnData _data) |
---|
Burns a batch of assets. |
|
Emits a |
Requirements:
|
visibility: external |
state mutability: |
contractUri() -> string |
---|
Returns the contract uri. |
Passes through ContentStorage.sol. |
visibility: external |
state mutability: view |
uri(uint256 _tokenId) -> string |
---|
Returns the latest public uri of token type |
visbility: external |
state mutability: view |
uri(uint256 _tokenId, uint256 _version) -> string |
---|
Returns the particular public uri of token type |
Passes through ContentStorage.sol. |
visibility: external |
state mutability: view |
totalSupply(uint256 _tokenId) -> uint256 |
---|
Returns the total amount of token type |
visibility: external |
state mutability: view |
maxSupply(uint _tokenId) -> uint256 |
---|
Returns the maximum amount of token type |
visibility: external |
state mutability: view |
contractRoyalty() -> address, uint24 |
---|
Returns the default royalty receiver address and rate for the contract's assets. |
Passes through ContentStorage.sol. |
visibility: external |
state mutability: view |
userMintNonce(address _user) -> uint256 |
---|
Returns the nonce of |
visibility: external |
state mutability: view |
royaltyInfo(uint256 _tokenId, uint256 _salePrice) -> address, uint256 |
---|
Returns the receiver address and calculated royalty amount for token type |
visibility: external |
state mutability: view |
Last updated