proposal-34/contracts/interfaces/ENS.sol

8 lines
144 B
Solidity
Raw Permalink Normal View History

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