ERC721Holder.sol 213 B

12345678910
  1. pragma solidity ^0.4.21;
  2. import "./ERC721Receiver.sol";
  3. contract ERC721Holder is ERC721Receiver {
  4. function onERC721Received(address, uint256, bytes) public returns(bytes4) {
  5. return ERC721_RECEIVED;
  6. }
  7. }