ERC721.sol 548 B

123456789101112
  1. pragma solidity ^0.4.23;
  2. contract ERC721 {
  3. event Transfer(address indexed _from, address indexed _to, uint256 _tokenId);
  4. event Approval(address indexed _owner, address indexed _approved, uint256 _tokenId);
  5. function balanceOf(address _owner) public view returns (uint256 _balance);
  6. function ownerOf(uint256 _tokenId) public view returns (address _owner);
  7. function transfer(address _to, uint256 _tokenId) public;
  8. function approve(address _to, uint256 _tokenId) public;
  9. function takeOwnership(uint256 _tokenId) public;
  10. }