keycard-redeem/contracts/erc721/IERC165.sol

6 lines
128 B
Solidity

pragma solidity ^0.6.1;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}