Commit b9125001 by Hadrien Croubois

Move UUPSUpgradeable to proxy/utils

parent f1762419
......@@ -3,7 +3,7 @@
pragma solidity ^0.8.0;
import "../CountersImpl.sol";
import "../../proxy/UUPS/UUPSUpgradeable.sol";
import "../../proxy/utils/UUPSUpgradeable.sol";
contract UUPSUpgradeableMock is CountersImpl, UUPSUpgradeable {
// Not having any checks in this function is dangerous! Do not do this outside tests!
......
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
pragma solidity ^0.8.2;
import "./ERC1967Storage.sol";
......
......@@ -3,8 +3,6 @@
// solhint-disable-next-line compiler-version
pragma solidity ^0.8.0;
import "../../utils/Address.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment