IDeprecatedERC721.sol 548 B

123456789101112131415
  1. pragma solidity ^0.4.24;
  2. import "./IERC721.sol";
  3. /**
  4. * @title ERC-721 methods shipped in OpenZeppelin v1.7.0, removed in the latest version of the standard
  5. * @dev Only use this interface for compatibility with previously deployed contracts
  6. * Use ERC721 for interacting with new contracts which are standard-compliant
  7. */
  8. contract IDeprecatedERC721 is IERC721 {
  9. function takeOwnership(uint256 _tokenId) public;
  10. function transfer(address _to, uint256 _tokenId) public;
  11. function tokensOf(address _owner) public view returns (uint256[]);
  12. }