-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract old OpenZeppelin code to avoid conflicts
- Loading branch information
Barry Lyndon
committed
Dec 25, 2021
1 parent
d56922d
commit 6bfb5f5
Showing
6 changed files
with
179 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Taken from OpenZeppelin contracts v3 | ||
|
||
pragma solidity >=0.6.0 <0.8.0; | ||
|
||
/** | ||
* @dev Interface of the ERC165 standard, as defined in the | ||
* https://eips.ethereum.org/EIPS/eip-165[EIP]. | ||
* | ||
* Implementers can declare support of contract interfaces, which can then be | ||
* queried by others ({ERC165Checker}). | ||
* | ||
* For an implementation, see {ERC165}. | ||
*/ | ||
interface IERC165 { | ||
/** | ||
* @dev Returns true if this contract implements the interface defined by | ||
* `interfaceId`. See the corresponding | ||
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] | ||
* to learn more about how these ids are created. | ||
* | ||
* This function call must use less than 30 000 gas. | ||
*/ | ||
function supportsInterface(bytes4 interfaceId) external view returns (bool); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Taken from OpenZeppelin contracts v3 | ||
|
||
pragma solidity >=0.6.2 <0.8.0; | ||
|
||
import "./IERC165.sol"; | ||
|
||
/** | ||
* @dev Required interface of an ERC721 compliant contract. | ||
*/ | ||
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`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. | ||
* | ||
* 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 Returns the account approved for `tokenId` token. | ||
* | ||
* Requirements: | ||
* | ||
* - `tokenId` must exist. | ||
*/ | ||
function getApproved(uint256 tokenId) external view returns (address operator); | ||
|
||
/** | ||
* @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 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); | ||
|
||
/** | ||
* @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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Taken from OpenZeppelin contracts v3 | ||
|
||
pragma solidity >=0.6.0 <0.8.0; | ||
|
||
/** | ||
* @title ERC721 token receiver interface | ||
* @dev Interface for any contract that wants to support safeTransfers | ||
* from ERC721 asset contracts. | ||
*/ | ||
interface IERC721Receiver { | ||
/** | ||
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} | ||
* by `operator` from `from`, this function is called. | ||
* | ||
* It must return its Solidity selector to confirm the token transfer. | ||
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. | ||
* | ||
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. | ||
*/ | ||
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters