proposal-46/contracts/interfaces/IENSResolver.sol

14 lines
352 B
Solidity
Raw Permalink Normal View History

2024-01-31 10:12:30 +00:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
interface IENSResolver {
function setContenthash(bytes32 node, bytes memory hash) external;
function setAddr(bytes32 node, address a) external;
function addr(bytes32 node) external view returns (address);
function contenthash(bytes32 node) external returns (bytes memory);
}