* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
11 lines
213 B
Solidity
11 lines
213 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
import "./ERC721Receiver.sol";
|
|
|
|
|
|
contract ERC721Holder is ERC721Receiver {
|
|
function onERC721Received(address, uint256, bytes) public returns(bytes4) {
|
|
return ERC721_RECEIVED;
|
|
}
|
|
}
|