IERC2981
IERC2981
see https://eips.ethereum.org/EIPS/eip-2981
royaltyInfo
function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiever, uint256 royaltyAmount)
called with the sale price to determine how much royalty is owed and to whom
Parameters
| Name | Type | Description |
|---|---|---|
| tokenId | uint256 | the ERC721 or ERC1155 token id to query for royalty information |
| salePrice | uint256 | the sale price of the given asset |
Return Values
| Name | Type | Description |
|---|---|---|
| receiever | address | rightful recipient of royalty |
| royaltyAmount | uint256 | amount of royalty owed |