IERC5313.sol 463 B

123456789101112131415161718
  1. // SPDX-License-Identifier: MIT
  2. // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5313.sol)
  3. pragma solidity ^0.8.0;
  4. /**
  5. * @dev Interface for the Light Contract Ownership Standard.
  6. *
  7. * A standardized minimal interface required to identify an account that controls a contract
  8. *
  9. * _Available since v4.9._
  10. */
  11. interface IERC5313 {
  12. /**
  13. * @dev Gets the address of the owner.
  14. */
  15. function owner() external view returns (address);
  16. }