IERC5313.sol 435 B

12345678910111213141516
  1. // SPDX-License-Identifier: MIT
  2. // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5313.sol)
  3. pragma solidity >=0.4.16;
  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. interface IERC5313 {
  10. /**
  11. * @dev Gets the address of the owner.
  12. */
  13. function owner() external view returns (address);
  14. }