0x01ffc9a7
0x01ffc9a7 is a four-byte hexadecimal value used in Ethereum smart contracts as the interface identifier for the ERC-165 standard. It denotes the interface ID that contracts implement to declare support for other interfaces via the supportsInterface function.
ERC-165 defines a single function, supportsInterface(bytes4), which allows a contract to advertise which interfaces it implements.
In practice, contracts that implement ERC165 expose supportsInterface and return true when queried with 0x01ffc9a7, signaling
Common related interface IDs include 0x80ac58cd for ERC-721 and 0xd9b67a26 for ERC-1155, both using ERC-165 for
Related concepts include ERC-165 and other interface standards such as ERC-721 and ERC-1155.