* Update ERC721 to latest 1.11.0 from OpenZeppelin-solidity * Hardcode supported interfaces instead of using lookup table. This avoids shifting storage when extending supports interface. * Update build artifacts * Fix linter errors
11 lines
222 B
Solidity
11 lines
222 B
Solidity
pragma solidity ^0.4.21;
|
|
|
|
import "./ERC721Receiver.sol";
|
|
|
|
|
|
contract ERC721Holder is ERC721Receiver {
|
|
function onERC721Received(address, address, uint256, bytes) public returns(bytes4) {
|
|
return ERC721_RECEIVED;
|
|
}
|
|
}
|