mirror of git3://git3.w3q/git3-contract
commit
47153fefdf
@ -0,0 +1,12 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.8.0;
|
||||
|
||||
import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
|
||||
|
||||
contract UpgradeableProxy is TransparentUpgradeableProxy {
|
||||
constructor(
|
||||
address logic,
|
||||
address admin,
|
||||
bytes memory data
|
||||
) public TransparentUpgradeableProxy(logic, admin, data) {}
|
||||
}
|
Loading…
Reference in new issue