Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
27 lines
667 B
Solidity
27 lines
667 B
Solidity
// SPDX-License-Identifier: MIT
|
|
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
/**
|
|
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
|
|
*
|
|
* _Available since v4.8.3._
|
|
*/
|
|
interface IERC1967 {
|
|
/**
|
|
* @dev Emitted when the implementation is upgraded.
|
|
*/
|
|
event Upgraded(address indexed implementation);
|
|
|
|
/**
|
|
* @dev Emitted when the admin account has changed.
|
|
*/
|
|
event AdminChanged(address previousAdmin, address newAdmin);
|
|
|
|
/**
|
|
* @dev Emitted when the beacon is changed.
|
|
*/
|
|
event BeaconUpgraded(address indexed beacon);
|
|
}
|