Skip to content

Commit

Permalink
Update contracts/interfaces/IERC5313.sol
Browse files Browse the repository at this point in the history
Co-authored-by: Ernesto García <ernestognw@gmail.com>
  • Loading branch information
Amxx and ernestognw committed Feb 2, 2023
1 parent ca11940 commit 7f21b79
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions contracts/interfaces/IERC5313.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@

pragma solidity ^0.8.0;

/// @title EIP-5313 Light Contract Ownership Standard
/**
* @dev Interface for the Light Contract Ownership Standard.
*
* A standardized minimal interface required to identify an account that controls a contract
*
* _Available since v4.9._
*/
interface IERC5313 {
/// @notice Get the address of the owner
/// @return The address of the owner
/**
* @dev Gets the address of the owner.
*/
function owner() external view returns (address);
}

0 comments on commit 7f21b79

Please sign in to comment.