* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
16 lines
550 B
Solidity
16 lines
550 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
import "./ERC721.sol";
|
|
|
|
|
|
/**
|
|
* @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
|
|
* @dev Use ERC721 for interacting with new contracts which are standard-compliant
|
|
*/
|
|
contract DeprecatedERC721 is ERC721 {
|
|
function takeOwnership(uint256 _tokenId) public;
|
|
function transfer(address _to, uint256 _tokenId) public;
|
|
function tokensOf(address _owner) public view returns (uint256[]);
|
|
}
|