IERC1967.sol 668 B

1234567891011121314151617181920212223242526
  1. // SPDX-License-Identifier: MIT
  2. // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)
  3. pragma solidity ^0.8.19;
  4. /**
  5. * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
  6. *
  7. * _Available since v4.8.3._
  8. */
  9. interface IERC1967 {
  10. /**
  11. * @dev Emitted when the implementation is upgraded.
  12. */
  13. event Upgraded(address indexed implementation);
  14. /**
  15. * @dev Emitted when the admin account has changed.
  16. */
  17. event AdminChanged(address previousAdmin, address newAdmin);
  18. /**
  19. * @dev Emitted when the beacon is changed.
  20. */
  21. event BeaconUpgraded(address indexed beacon);
  22. }