infinite-proxy/contracts/infiniteProxy/events.sol
2022-04-15 16:29:13 +05:30

16 lines
399 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_);
}