|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
|
|
|
|
import "../../utils/introspection/IERC165.sol";
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Required interface of an ERC721 compliant contract.
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
*/
|
|
|
|
interface IERC721 is IERC165 {
|
|
|
|
/**
|
|
|
|
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
|
|
|
|
*/
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
|
|
|
|
*/
|
|
|
|
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
|
|
|
|
*/
|
|
|
|
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns the number of tokens in ``owner``'s account.
|
|
|
|
*/
|
|
|
|
function balanceOf(address owner) external view returns (uint256 balance);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns the owner of the `tokenId` token.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - `tokenId` must exist.
|
|
|
|
*/
|
|
|
|
function ownerOf(uint256 tokenId) external view returns (address owner);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Safely transfers `tokenId` token from `from` to `to`.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - `from` cannot be the zero address.
|
|
|
|
* - `to` cannot be the zero address.
|
|
|
|
* - `tokenId` token must exist and be owned by `from`.
|
|
|
|
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
|
|
|
|
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
|
|
|
|
*
|
|
|
|
* Emits a {Transfer} event.
|
|
|
|
*/
|
|
|
|
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
|
|
|
|
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - `from` cannot be the zero address.
|
|
|
|
* - `to` cannot be the zero address.
|
|
|
|
* - `tokenId` token must exist and be owned by `from`.
|
|
|
|
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
|
|
|
|
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
|
|
|
|
*
|
|
|
|
* Emits a {Transfer} event.
|
|
|
|
*/
|
|
|
|
function safeTransferFrom(address from, address to, uint256 tokenId) external;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Transfers `tokenId` token from `from` to `to`.
|
|
|
|
*
|
|
|
|
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
|
|
|
|
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
|
|
|
|
* understand this adds an external call which potentially creates a reentrancy vulnerability.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - `from` cannot be the zero address.
|
|
|
|
* - `to` cannot be the zero address.
|
|
|
|
* - `tokenId` token must be owned by `from`.
|
|
|
|
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
|
|
|
|
*
|
|
|
|
* Emits a {Transfer} event.
|
|
|
|
*/
|
|
|
|
function transferFrom(address from, address to, uint256 tokenId) external;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
|
|
|
|
* The approval is cleared when the token is transferred.
|
|
|
|
*
|
|
|
|
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - The caller must own the token or be an approved operator.
|
|
|
|
* - `tokenId` must exist.
|
|
|
|
*
|
|
|
|
* Emits an {Approval} event.
|
|
|
|
*/
|
|
|
|
function approve(address to, uint256 tokenId) external;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Approve or remove `operator` as an operator for the caller.
|
|
|
|
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - The `operator` cannot be the caller.
|
|
|
|
*
|
|
|
|
* Emits an {ApprovalForAll} event.
|
|
|
|
*/
|
|
|
|
function setApprovalForAll(address operator, bool approved) external;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns the account approved for `tokenId` token.
|
|
|
|
*
|
|
|
|
* Requirements:
|
|
|
|
*
|
|
|
|
* - `tokenId` must exist.
|
|
|
|
*/
|
|
|
|
function getApproved(uint256 tokenId) external view returns (address operator);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
|
|
|
|
*
|
|
|
|
* See {setApprovalForAll}
|
|
|
|
*/
|
|
|
|
function isApprovedForAll(address owner, address operator) external view returns (bool);
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
}
|