IOwnable
Inherits: IOwnableBase
Interface of the ERC173 contract. See EIP-173.
Functions
owner
Returns the owner of the contract.
function owner() external view returns (address);
transferOwnership
Transfers the ownership of the contract to a new account (newOwner
).
OwnershipTransferred event is emitted here.
function transferOwnership(address newOwner) external;
Last updated
Was this helpful?