pragma solidity ^0.4.24; import "../../Initializable.sol"; import "./IERC721Receiver.sol"; contract ERC721Holder is Initializable, IERC721Receiver { function onERC721Received( address, address, uint256, bytes ) public returns(bytes4) { return this.onERC721Received.selector; } }