Skip to content

Commit

Permalink
feat: add GD proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
philbow61 committed Dec 19, 2024
1 parent 2fe2367 commit f7fde77
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
14 changes: 14 additions & 0 deletions contracts/goodDollar/GoodDollarExchangeProviderProxy.sol
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 contracts/goodDollar/GoodDollarExpansionControllerProxy.sol
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) {}
}
7 changes: 7 additions & 0 deletions contracts/goodDollar/GoodDollarReserveProxy.sol
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 {}

0 comments on commit f7fde77

Please sign in to comment.