Skip to content

Commit

Permalink
refactor: move staking wrappers to persistent dir
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanJCasey authored Oct 5, 2023
1 parent 341d223 commit 9851130
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pragma solidity 0.8.19;
import {ReentrancyGuard} from "openzeppelin-solc-0.8/security/ReentrancyGuard.sol";
import {ERC20} from "openzeppelin-solc-0.8/token/ERC20/ERC20.sol";
import {SafeERC20} from "openzeppelin-solc-0.8/token/ERC20/utils/SafeERC20.sol";
import {AddressArrayLib} from "../../../utils/0.8.19/AddressArrayLib.sol";
import {AddressArrayLib} from "../../utils/0.8.19/AddressArrayLib.sol";
import {IStakingWrapper} from "./IStakingWrapper.sol";

/// @title StakingWrapperBase Contract
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

pragma solidity 0.8.19;

import {IAuraStashToken} from "../../../../external-interfaces/IAuraStashToken.sol";
import {IAuraStashToken} from "../../../external-interfaces/IAuraStashToken.sol";
import {ConvexCurveLpStakingWrapperLib} from "../convex-curve-lp/ConvexCurveLpStakingWrapperLib.sol";

/// @title AuraBalancerV2LpStakingWrapperLib Contract
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

pragma solidity 0.8.19;

import {DispatcherOwnedBeacon} from "../../../utils/0.8.19/dispatcher-owned-beacon/DispatcherOwnedBeacon.sol";
import {IConvexCurveLpStakingWrapper} from "./IConvexCurveLpStakingWrapper.sol";
import {IConvexCurveLpStakingWrapperFactory} from "./IConvexCurveLpStakingWrapperFactory.sol";
import {DispatcherOwnedBeacon} from "../../../../utils/0.8.19/dispatcher-owned-beacon/DispatcherOwnedBeacon.sol";

/// @title ConvexCurveLpStakingWrapperFactory Contract
/// @author Enzyme Council <security@enzyme.finance>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ pragma solidity 0.8.19;
import {ERC20} from "openzeppelin-solc-0.8/token/ERC20/ERC20.sol";
import {SafeERC20} from "openzeppelin-solc-0.8/token/ERC20/utils/SafeERC20.sol";
import {Address} from "openzeppelin-solc-0.8/utils/Address.sol";
import {IConvexBaseRewardPool} from "../../../../external-interfaces/IConvexBaseRewardPool.sol";
import {IConvexBooster} from "../../../../external-interfaces/IConvexBooster.sol";
import {IConvexStashTokenWrapper} from "../../../../external-interfaces/IConvexStashTokenWrapper.sol";
import {IConvexVirtualBalanceRewardPool} from "../../../../external-interfaces/IConvexVirtualBalanceRewardPool.sol";
import {IConvexBaseRewardPool} from "../../../external-interfaces/IConvexBaseRewardPool.sol";
import {IConvexBooster} from "../../../external-interfaces/IConvexBooster.sol";
import {IConvexStashTokenWrapper} from "../../../external-interfaces/IConvexStashTokenWrapper.sol";
import {IConvexVirtualBalanceRewardPool} from "../../../external-interfaces/IConvexVirtualBalanceRewardPool.sol";
import {StakingWrapperBase} from "../StakingWrapperBase.sol";
import {StakingWrapperLibBase} from "../StakingWrapperLibBase.sol";
import {IConvexCurveLpStakingWrapper} from "./IConvexCurveLpStakingWrapper.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

pragma solidity >=0.6.0 <0.9.0;

import {IDispatcherOwnedBeacon} from "../../../../utils/0.8.19/dispatcher-owned-beacon/IDispatcherOwnedBeacon.sol";
import {IDispatcherOwnedBeacon} from "../../../utils/0.8.19/dispatcher-owned-beacon/IDispatcherOwnedBeacon.sol";

/// @title IConvexCurveLpStakingWrapperFactory Interface
/// @author Enzyme Council <security@enzyme.finance>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

import {IConvexCurveLpStakingWrapperFactory} from
"../../../../infrastructure/staking-wrappers/convex-curve-lp/IConvexCurveLpStakingWrapperFactory.sol";
"../../../../../persistent/staking-wrappers/convex-curve-lp/IConvexCurveLpStakingWrapperFactory.sol";
import {IIntegrationManager} from "../../IIntegrationManager.sol";
import {StakingWrapperActionsMixin} from "../utils/0.6.12/actions/StakingWrapperActionsMixin.sol";
import {BalancerV2LiquidityAdapterBase} from "../utils/0.6.12/bases/BalancerV2LiquidityAdapterBase.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
pragma solidity 0.6.12;

import {ERC20} from "openzeppelin-solc-0.6/token/ERC20/ERC20.sol";
import {CurvePriceFeed} from "../../../../infrastructure/price-feeds/derivatives/feeds/CurvePriceFeed.sol";
import {IConvexCurveLpStakingWrapperFactory} from
"../../../../infrastructure/staking-wrappers/convex-curve-lp/IConvexCurveLpStakingWrapperFactory.sol";
"../../../../../persistent/staking-wrappers/convex-curve-lp/IConvexCurveLpStakingWrapperFactory.sol";
import {CurvePriceFeed} from "../../../../infrastructure/price-feeds/derivatives/feeds/CurvePriceFeed.sol";
import {IIntegrationManager} from "../../IIntegrationManager.sol";
import {StakingWrapperActionsMixin} from "../utils/0.6.12/actions/StakingWrapperActionsMixin.sol";
import {CurveLiquidityAdapterBase} from "../utils/0.6.12/bases/CurveLiquidityAdapterBase.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

pragma solidity 0.6.12;

import {IStakingWrapper} from "../../../../../../../persistent/staking-wrappers/IStakingWrapper.sol";
import {AssetHelpers} from "../../../../../../../utils/0.6.12/AssetHelpers.sol";
import {IStakingWrapper} from "../../../../../../infrastructure/staking-wrappers/IStakingWrapper.sol";

/// @title StakingWrapperActionsMixin Contract
/// @author Enzyme Council <security@enzyme.finance>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
pragma solidity 0.6.12;

import {IConvexCurveLpStakingWrapperFactory} from
"../../../staking-wrappers/convex-curve-lp/IConvexCurveLpStakingWrapperFactory.sol";
"../../../../../persistent/staking-wrappers/convex-curve-lp/IConvexCurveLpStakingWrapperFactory.sol";
import {IDerivativePriceFeed} from "../IDerivativePriceFeed.sol";

/// @title ConvexCurveLpStakingWrapperPriceFeed Contract
Expand Down

0 comments on commit 9851130

Please sign in to comment.