Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: ernestognw <ernestognw@gmail.com>
12 lines
325 B
Solidity
12 lines
325 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
import "../patched/interfaces/IERC721Receiver.sol";
|
|
|
|
contract ERC721ReceiverHarness is IERC721Receiver {
|
|
function onERC721Received(address, address, uint256, bytes calldata) external pure returns (bytes4) {
|
|
return this.onERC721Received.selector;
|
|
}
|
|
}
|