proposal-43/contracts/interfaces/IENSResolver.sol

14 lines
352 B
Solidity
Raw Permalink Normal View History

2023-12-21 20:51:32 +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);
}