UpgradeableTwoProxy
UpgradeableTwoProxy is a proxy that does delegation based on the 3rd byte of the signature used in the message received to the contract.
State Variables
admin_
address private immutable admin_;
Functions
constructor
constructor(address _admin, address _impl1, address _impl2, bytes memory _data);
fallback
fallback() external;
Events
Upgraded1
event Upgraded1(address impl);
Upgraded2
event Upgraded2(address impl);
AdminChanged
event AdminChanged(address previousAdmin, address newAdmin);