delete contracts and tests not yet in zos

This commit is contained in:
Francisco Giordano
2018-04-18 13:39:41 -03:00
parent 0b33d29e41
commit 89c32f5dd7
111 changed files with 0 additions and 5914 deletions

View File

@ -1,15 +0,0 @@
pragma solidity ^0.4.21;
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[]);
}