mirror of
https://github.com/status-im/keycard-redeem.git
synced 2025-01-14 22:24:21 +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);
|
||
|
}
|