123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- :github-icon: pass:[<svg class="icon"><use href="#github-icon"/></svg>]
- :ERC2981: pass:normal[xref:token/common.adoc#ERC2981[`ERC2981`]]
- :ERC721Royalty: pass:normal[xref:token/ERC721.adoc#ERC721Royalty[`ERC721Royalty`]]
- :xref-ERC2981-supportsInterface-bytes4-: xref:token/common.adoc#ERC2981-supportsInterface-bytes4-
- :xref-ERC2981-royaltyInfo-uint256-uint256-: xref:token/common.adoc#ERC2981-royaltyInfo-uint256-uint256-
- :xref-ERC2981-_feeDenominator--: xref:token/common.adoc#ERC2981-_feeDenominator--
- :xref-ERC2981-_setDefaultRoyalty-address-uint96-: xref:token/common.adoc#ERC2981-_setDefaultRoyalty-address-uint96-
- :xref-ERC2981-_deleteDefaultRoyalty--: xref:token/common.adoc#ERC2981-_deleteDefaultRoyalty--
- :xref-ERC2981-_setTokenRoyalty-uint256-address-uint96-: xref:token/common.adoc#ERC2981-_setTokenRoyalty-uint256-address-uint96-
- :xref-ERC2981-_resetTokenRoyalty-uint256-: xref:token/common.adoc#ERC2981-_resetTokenRoyalty-uint256-
- :IERC165-supportsInterface: pass:normal[xref:utils.adoc#IERC165-supportsInterface-bytes4-[`IERC165.supportsInterface`]]
- = Common (Tokens)
- Functionality that is common to multiple token standards.
- * {ERC2981}: NFT Royalties compatible with both ERC721 and ERC1155.
- ** For ERC721 consider {ERC721Royalty} which clears the royalty information from storage on burn.
- == Contracts
- :RoyaltyInfo: pass:normal[xref:#ERC2981-RoyaltyInfo[`++RoyaltyInfo++`]]
- :supportsInterface: pass:normal[xref:#ERC2981-supportsInterface-bytes4-[`++supportsInterface++`]]
- :royaltyInfo: pass:normal[xref:#ERC2981-royaltyInfo-uint256-uint256-[`++royaltyInfo++`]]
- :_feeDenominator: pass:normal[xref:#ERC2981-_feeDenominator--[`++_feeDenominator++`]]
- :_setDefaultRoyalty: pass:normal[xref:#ERC2981-_setDefaultRoyalty-address-uint96-[`++_setDefaultRoyalty++`]]
- :_deleteDefaultRoyalty: pass:normal[xref:#ERC2981-_deleteDefaultRoyalty--[`++_deleteDefaultRoyalty++`]]
- :_setTokenRoyalty: pass:normal[xref:#ERC2981-_setTokenRoyalty-uint256-address-uint96-[`++_setTokenRoyalty++`]]
- :_resetTokenRoyalty: pass:normal[xref:#ERC2981-_resetTokenRoyalty-uint256-[`++_resetTokenRoyalty++`]]
- [.contract]
- [[ERC2981]]
- === `++ERC2981++` link:https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/token/common/ERC2981.sol[{github-icon},role=heading-link]
- [.hljs-theme-light.nopadding]
- ```solidity
- import "@openzeppelin/contracts/token/common/ERC2981.sol";
- ```
- Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
- Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
- specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
- Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
- fee is specified in basis points by default.
- IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
- https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
- voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
- _Available since v4.5._
- [.contract-index]
- .Functions
- --
- * {xref-ERC2981-supportsInterface-bytes4-}[`++supportsInterface(interfaceId)++`]
- * {xref-ERC2981-royaltyInfo-uint256-uint256-}[`++royaltyInfo(tokenId, salePrice)++`]
- * {xref-ERC2981-_feeDenominator--}[`++_feeDenominator()++`]
- * {xref-ERC2981-_setDefaultRoyalty-address-uint96-}[`++_setDefaultRoyalty(receiver, feeNumerator)++`]
- * {xref-ERC2981-_deleteDefaultRoyalty--}[`++_deleteDefaultRoyalty()++`]
- * {xref-ERC2981-_setTokenRoyalty-uint256-address-uint96-}[`++_setTokenRoyalty(tokenId, receiver, feeNumerator)++`]
- * {xref-ERC2981-_resetTokenRoyalty-uint256-}[`++_resetTokenRoyalty(tokenId)++`]
- [.contract-subindex-inherited]
- .ERC165
- [.contract-subindex-inherited]
- .IERC2981
- [.contract-subindex-inherited]
- .IERC165
- --
- [.contract-item]
- [[ERC2981-supportsInterface-bytes4-]]
- ==== `[.contract-item-name]#++supportsInterface++#++(bytes4 interfaceId) → bool++` [.item-kind]#public#
- See {IERC165-supportsInterface}.
- [.contract-item]
- [[ERC2981-royaltyInfo-uint256-uint256-]]
- ==== `[.contract-item-name]#++royaltyInfo++#++(uint256 tokenId, uint256 salePrice) → address, uint256++` [.item-kind]#public#
- Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
- exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
- [.contract-item]
- [[ERC2981-_feeDenominator--]]
- ==== `[.contract-item-name]#++_feeDenominator++#++() → uint96++` [.item-kind]#internal#
- The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
- fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
- override.
- [.contract-item]
- [[ERC2981-_setDefaultRoyalty-address-uint96-]]
- ==== `[.contract-item-name]#++_setDefaultRoyalty++#++(address receiver, uint96 feeNumerator)++` [.item-kind]#internal#
- Sets the royalty information that all ids in this contract will default to.
- Requirements:
- - `receiver` cannot be the zero address.
- - `feeNumerator` cannot be greater than the fee denominator.
- [.contract-item]
- [[ERC2981-_deleteDefaultRoyalty--]]
- ==== `[.contract-item-name]#++_deleteDefaultRoyalty++#++()++` [.item-kind]#internal#
- Removes default royalty information.
- [.contract-item]
- [[ERC2981-_setTokenRoyalty-uint256-address-uint96-]]
- ==== `[.contract-item-name]#++_setTokenRoyalty++#++(uint256 tokenId, address receiver, uint96 feeNumerator)++` [.item-kind]#internal#
- Sets the royalty information for a specific token id, overriding the global default.
- Requirements:
- - `receiver` cannot be the zero address.
- - `feeNumerator` cannot be greater than the fee denominator.
- [.contract-item]
- [[ERC2981-_resetTokenRoyalty-uint256-]]
- ==== `[.contract-item-name]#++_resetTokenRoyalty++#++(uint256 tokenId)++` [.item-kind]#internal#
- Resets royalty information for the token id back to the global default.
|