IERC5313.sol 389 B

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