Files
openzeppelin-contracts/contracts/interfaces/IERC5313.sol
github-actions 6ae39c4dc1 Update docs
2023-05-09 19:56:30 +00:00

18 lines
389 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @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 {
/**
* @dev Gets the address of the owner.
*/
function owner() external view returns (address);
}