Files
openzeppelin-contracts/contracts/token/ERC721/ERC721Holder.sol
2018-09-26 17:12:16 -03:00

20 lines
318 B
Solidity

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;
}
}