Use explicit imports (#4399)
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: ernestognw <ernestognw@gmail.com>
This commit is contained in:
@ -3,8 +3,8 @@
|
||||
|
||||
pragma solidity ^0.8.19;
|
||||
|
||||
import "./TransparentUpgradeableProxy.sol";
|
||||
import "../../access/Ownable.sol";
|
||||
import {ITransparentUpgradeableProxy, TransparentUpgradeableProxy} from "./TransparentUpgradeableProxy.sol";
|
||||
import {Ownable} from "../../access/Ownable.sol";
|
||||
|
||||
/**
|
||||
* @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an
|
||||
|
||||
@ -3,8 +3,9 @@
|
||||
|
||||
pragma solidity ^0.8.19;
|
||||
|
||||
import "../ERC1967/ERC1967Proxy.sol";
|
||||
import "../../interfaces/IERC1967.sol";
|
||||
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";
|
||||
import {ERC1967Proxy} from "../ERC1967/ERC1967Proxy.sol";
|
||||
import {IERC1967} from "../../interfaces/IERC1967.sol";
|
||||
|
||||
/**
|
||||
* @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}
|
||||
|
||||
Reference in New Issue
Block a user