Skip to content

Commit 9dac806

Browse files
author
Yash Agrawal
committed
feat: add SBTProxy
1 parent 6d23c6d commit 9dac806

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

contracts/SBTProxy.sol

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)