Files
openzeppelin-contracts/contracts/token/ERC721/ERC721Holder.sol
2018-09-07 07:23:12 -03:00

19 lines
269 B
Solidity

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