-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity 0.8.18; | ||
|
||
import { | ||
TransparentUpgradeableProxy | ||
} from "openzeppelin-contracts-next/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; | ||
|
||
contract GoodDollarExchangeProviderProxy is TransparentUpgradeableProxy { | ||
constructor( | ||
address _logic, | ||
address admin_, | ||
bytes memory _data | ||
) payable TransparentUpgradeableProxy(_logic, admin_, _data) {} | ||
} |
14 changes: 14 additions & 0 deletions
14
contracts/goodDollar/GoodDollarExpansionControllerProxy.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity 0.8.18; | ||
|
||
import { | ||
TransparentUpgradeableProxy | ||
} from "openzeppelin-contracts-next/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; | ||
|
||
contract GoodDollarExpansionControllerProxy is TransparentUpgradeableProxy { | ||
constructor( | ||
address _logic, | ||
address admin_, | ||
bytes memory _data | ||
) payable TransparentUpgradeableProxy(_logic, admin_, _data) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity ^0.5.13; | ||
|
||
import "celo/contracts/common/Proxy.sol"; | ||
|
||
/* solhint-disable-next-line no-empty-blocks */ | ||
contract GoodDollarReserveProxy is Proxy {} |