We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d23c6d commit 9dac806Copy full SHA for 9dac806
contracts/SBTProxy.sol
@@ -0,0 +1,12 @@
1
+// SPDX-License-Identifier: MPL-2.0
2
+pragma solidity =0.8.9;
3
+
4
+import {TransparentUpgradeableProxy} from "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
5
6
+contract SBTProxy is TransparentUpgradeableProxy {
7
+ constructor(
8
+ address _logic,
9
+ address admin_,
10
+ bytes memory _data
11
+ ) TransparentUpgradeableProxy(_logic, admin_, _data) {}
12
+}
0 commit comments