Was this helpful?
Inherits: IERC173, OwnableBase, Facet
function Ownable_init(address owner_) external onlyInitializing;
Returns the owner of the contract.
function owner() external view returns (address);
Transfers the ownership of the contract to a new account (newOwner).
newOwner
OwnershipTransferred event is emitted here.
function transferOwnership(address newOwner) external onlyOwner;