mirror of
https://github.com/status-im/keycard-redeem.git
synced 2025-02-19 23:38:28 +00:00
5 lines
181 B
Solidity
5 lines
181 B
Solidity
|
pragma solidity ^0.6.1;
|
||
|
|
||
|
interface IERC721Receiver {
|
||
|
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
|
||
|
}
|