You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
940 B
32 lines
940 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.19;
|
|
|
|
import "../../proxy/utils/UUPSUpgradeable.sol";
|
|
|
|
contract NonUpgradeableMock {
|
|
uint256 internal _counter;
|
|
|
|
function current() external view returns (uint256) {
|
|
return _counter;
|
|
}
|
|
|
|
function increment() external {
|
|
++_counter;
|
|
}
|
|
}
|
|
|
|
contract UUPSUpgradeableMock is NonUpgradeableMock, UUPSUpgradeable {
|
|
// Not having any checks in this function is dangerous! Do not do this outside tests!
|
|
function _authorizeUpgrade(address) internal override {}
|
|
}
|
|
|
|
contract UUPSUpgradeableUnsafeMock is UUPSUpgradeableMock {
|
|
function upgradeTo(address newImplementation) public override {
|
|
ERC1967Utils.upgradeToAndCall(newImplementation, bytes(""), false);
|
|
}
|
|
|
|
function upgradeToAndCall(address newImplementation, bytes memory data) public payable override {
|
|
ERC1967Utils.upgradeToAndCall(newImplementation, data, false);
|
|
}
|
|
}
|
|
|