ERC721Holder.sol 253 B

123456789
  1. pragma solidity ^0.5.0;
  2. import "./IERC721Receiver.sol";
  3. contract ERC721Holder is IERC721Receiver {
  4. function onERC721Received(address, address, uint256, bytes memory) public returns (bytes4) {
  5. return this.onERC721Received.selector;
  6. }
  7. }