Files
openzeppelin-contracts/contracts/token/ERC721/ERC721Holder.sol
2019-04-24 19:32:08 -03:00

10 lines
253 B
Solidity

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