New EIP Draft: IOwnable Interface

Many contract get the contract owner but there is no interface for this. The OZ Ownable contract does not have an interface and the owner() function is only public. Should we have a simple interface such as:

// SPDX-License-Identifier: MIT
pragma solidity =0.8.15;

interface IOwnable {
function getOwner() external view returns (address);
}

1 Like

There is an ERC already for ownership