You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
21 lines
491 B
7 years ago
|
pragma solidity ^0.4.23;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @title ERC165
|
||
|
* @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
|
||
|
*/
|
||
|
interface ERC165 {
|
||
|
|
||
|
/**
|
||
|
* @notice Query if a contract implements an interface
|
||
|
* @param _interfaceId The interface identifier, as specified in ERC-165
|
||
|
* @dev Interface identification is specified in ERC-165. This function
|
||
|
* @dev uses less than 30,000 gas.
|
||
|
*/
|
||
|
function supportsInterface(bytes4 _interfaceId)
|
||
|
external
|
||
|
view
|
||
|
returns (bool);
|
||
|
}
|