mirror of
https://github.com/Instadapp/infinite-proxy.git
synced 2024-07-29 21:47:49 +00:00
15 lines
398 B
Solidity
15 lines
398 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract Events {
|
|
event setAdminLog(address oldAdmin_, address newAdmin_);
|
|
|
|
event setDummyImplementationLog(
|
|
address oldDummyImplementation_,
|
|
address newDummyImplementation_
|
|
);
|
|
|
|
event setImplementationLog(address implementation_, bytes4[] sigs_);
|
|
|
|
event removeImplementationLog(address implementation_);
|
|
} |