* Add barebones EIP1820 support. * Update openzeppelin-test-helpers dependency to have ERC1820 support. * Add tests for ERC1820. * Improve inline documentation. * Add changelog entry. * Update test-helpers, refactor tests to use new helpers. * Rename ERC1820 to ERC1820Implementer. * Improve implementer docstring. * Remove _implementsInterfaceForAddress. * update openzeppelin-test-helpers to 0.2.0 * Update contracts/drafts/ERC1820Implementer.sol Co-Authored-By: nventuro <nicolas.venturo@gmail.com> * Fix how solidity coverage is run to allow for free events. * Fix coverage testing script.
18 lines
789 B
Solidity
18 lines
789 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
/**
|
|
* @title IERC1820Implementer
|
|
* Interface for contracts that will be registered as implementers in the ERC1820 registry.
|
|
* @notice For more details, see https://eips.ethereum.org/EIPS/eip-1820
|
|
*/
|
|
interface IERC1820Implementer {
|
|
/**
|
|
* @notice Indicates whether the contract implements the interface `interfaceHash` for the address `account` or
|
|
* not.
|
|
* @param interfaceHash keccak256 hash of the name of the interface
|
|
* @param account Address for which the contract will implement the interface
|
|
* @return ERC1820_ACCEPT_MAGIC only if the contract implements `interfaceHash` for the address `account`.
|
|
*/
|
|
function canImplementInterfaceForAddress(bytes32 interfaceHash, address account) external view returns (bytes32);
|
|
}
|