proposal-36/contracts/interfaces/ENS.sol

8 lines
144 B
Solidity
Raw Permalink Normal View History

2023-11-09 14:04:09 +00:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface IENS {
function owner(bytes32 node) external view returns (address);
}