Unikura Market
This Contract is for managing tokenization orders from users of the collection.
Methods
cancel
function cancel(uint256 tokenId) external overrideOnly a sender of the specific order can call.
When a sender calls this method, this contract refund the amount paid by sender.
This method is used when there are duplicate orders with the same tokenId. It can be called after the regular order is complete.
complete
function complete(uint256 tokenId, address account, address salesAddress) external override onlyAdminOnly admins can call.
When admins call this method, this contract call mint method in Unikura Collectibles.
order
function order(uint256 tokenId, uint256 mintPrice) external payable overridereject
Only admins can call.
When admins call this method, this contract refund the amount paid by sender.
setAdmin
Only the contract owner can call.
setCollection
Only the contract owner can call.
setFeePercentage
Only the contract owner can call.
When the contract owner call this method, the service fee in Unikura will be changed.
setFeeRecipient
Only the contract owner can call.
Last updated