RoyaltyFeeManager
It handles the logic to check and transfer royalty fees (if any).
View methods
INTERFACE_ID_ERC2981
Returns
INTERFACE_ID_ERC2981
bytes4
-
calculateRoyaltyFeeAndGetRecipient
Calculate royalty fee and get recipient
Parameters
collection
address
address of the NFT contract
tokenId
uint256
tokenId
amount
uint256
amount (price of sale)
Returns
recipient
address
royalty recipient address
amount
uint256
amount of tokens to transfer to the recipient
owner
Returns the address of the current owner.
Returns
owner
address
address of the current owner
royaltyFeeRegistry
Returns
royaltyFeeRegistry
contract IRoyaltyFeeRegistry
address of the RoyaltyFeeRegistry
Methods
renounceOwnership
Leaves the contract without owner. It will not be possible to call onlyOwner
functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.
transferOwnership
Transfers ownership of the contract to a new account (newOwner
). Can only be called by the current owner.
Parameters
newOwner
address
address of the new owner
Events
OwnershipTransferred
Parameters
previousOwner indexed
address
address of the previous owner
newOwner indexed
address
address of the new owner
Last updated