IERC721.sol 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. // SPDX-License-Identifier: MIT
  2. // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)
  3. pragma solidity ^0.8.20;
  4. import {IERC165} from "../../utils/introspection/IERC165.sol";
  5. /**
  6. * @dev Required interface of an ERC-721 compliant contract.
  7. */
  8. interface IERC721 is IERC165 {
  9. /**
  10. * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
  11. */
  12. event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
  13. /**
  14. * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
  15. */
  16. event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
  17. /**
  18. * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
  19. */
  20. event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
  21. /**
  22. * @dev Returns the number of tokens in ``owner``'s account.
  23. */
  24. function balanceOf(address owner) external view returns (uint256 balance);
  25. /**
  26. * @dev Returns the owner of the `tokenId` token.
  27. *
  28. * Requirements:
  29. *
  30. * - `tokenId` must exist.
  31. */
  32. function ownerOf(uint256 tokenId) external view returns (address owner);
  33. /**
  34. * @dev Safely transfers `tokenId` token from `from` to `to`.
  35. *
  36. * Requirements:
  37. *
  38. * - `from` cannot be the zero address.
  39. * - `to` cannot be the zero address.
  40. * - `tokenId` token must exist and be owned by `from`.
  41. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
  42. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
  43. * a safe transfer.
  44. *
  45. * Emits a {Transfer} event.
  46. */
  47. function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
  48. /**
  49. * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
  50. * are aware of the ERC-721 protocol to prevent tokens from being forever locked.
  51. *
  52. * Requirements:
  53. *
  54. * - `from` cannot be the zero address.
  55. * - `to` cannot be the zero address.
  56. * - `tokenId` token must exist and be owned by `from`.
  57. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
  58. * {setApprovalForAll}.
  59. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
  60. * a safe transfer.
  61. *
  62. * Emits a {Transfer} event.
  63. */
  64. function safeTransferFrom(address from, address to, uint256 tokenId) external;
  65. /**
  66. * @dev Transfers `tokenId` token from `from` to `to`.
  67. *
  68. * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721
  69. * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
  70. * understand this adds an external call which potentially creates a reentrancy vulnerability.
  71. *
  72. * Requirements:
  73. *
  74. * - `from` cannot be the zero address.
  75. * - `to` cannot be the zero address.
  76. * - `tokenId` token must be owned by `from`.
  77. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
  78. *
  79. * Emits a {Transfer} event.
  80. */
  81. function transferFrom(address from, address to, uint256 tokenId) external;
  82. /**
  83. * @dev Gives permission to `to` to transfer `tokenId` token to another account.
  84. * The approval is cleared when the token is transferred.
  85. *
  86. * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
  87. *
  88. * Requirements:
  89. *
  90. * - The caller must own the token or be an approved operator.
  91. * - `tokenId` must exist.
  92. *
  93. * Emits an {Approval} event.
  94. */
  95. function approve(address to, uint256 tokenId) external;
  96. /**
  97. * @dev Approve or remove `operator` as an operator for the caller.
  98. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
  99. *
  100. * Requirements:
  101. *
  102. * - The `operator` cannot be the address zero.
  103. *
  104. * Emits an {ApprovalForAll} event.
  105. */
  106. function setApprovalForAll(address operator, bool approved) external;
  107. /**
  108. * @dev Returns the account approved for `tokenId` token.
  109. *
  110. * Requirements:
  111. *
  112. * - `tokenId` must exist.
  113. */
  114. function getApproved(uint256 tokenId) external view returns (address operator);
  115. /**
  116. * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
  117. *
  118. * See {setApprovalForAll}
  119. */
  120. function isApprovedForAll(address owner, address operator) external view returns (bool);
  121. }