You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
548 B
16 lines
548 B
7 years ago
|
pragma solidity ^0.4.24;
|
||
7 years ago
|
|
||
7 years ago
|
import "./IERC721.sol";
|
||
7 years ago
|
|
||
7 years ago
|
|
||
7 years ago
|
/**
|
||
|
* @title ERC-721 methods shipped in OpenZeppelin v1.7.0, removed in the latest version of the standard
|
||
|
* @dev Only use this interface for compatibility with previously deployed contracts
|
||
7 years ago
|
* Use ERC721 for interacting with new contracts which are standard-compliant
|
||
7 years ago
|
*/
|
||
7 years ago
|
contract IDeprecatedERC721 is IERC721 {
|
||
7 years ago
|
function takeOwnership(uint256 _tokenId) public;
|
||
|
function transfer(address _to, uint256 _tokenId) public;
|
||
|
function tokensOf(address _owner) public view returns (uint256[]);
|
||
|
}
|