Skip to content

Commit

Permalink
chore: deprecate 20220906-composable-stable-pool
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Nov 25, 2022
1 parent c167cfe commit bfe97fe
Show file tree
Hide file tree
Showing 15 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkg/deployments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ Returns an object with all contracts from a deployment and their addresses.
| Protocol fee percentages provider | [`20220725-protocol-fee-percentages-provider`](./tasks/20220725-protocol-fee-percentages-provider) |
| Child Chain Gauge Reward Helper | [`20220812-child-chain-reward-helper`](./tasks/20220812-child-chain-reward-helper) |
| Linear Pools for Aave aTokens with built-in rebalancing | [`20220817-aave-rebalanced-linear-pool`](./tasks/20220817-aave-rebalanced-linear-pool) |
| Composable Stable Pools | [`20220906-composable-stable-pool`](./tasks/20220906-composable-stable-pool) |

## Scripts

Expand Down Expand Up @@ -132,3 +131,4 @@ Go to each deprecated deployment's readme file to learn more about why it is dep
| Linear Pools for ERC4626 Tokens | [`20220304-erc4626-linear-pool`](./tasks/deprecated/20220304-erc4626-linear-pool) |
| Batch Relayer V2 | [`20220318-batch-relayer-v2`](./tasks/deprecated/20220318-batch-relayer-v2) |
| Fee Distributor for veBAL holders | [`20220420-fee-distributor`](./tasks/deprecated/20220420-fee-distributor) |
| Composable Stable Pools | [`20220906-composable-stable-pool`](./tasks/deprecated/20220906-composable-stable-pool) |
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> ⚠️ **DEPRECATED: do not use** ⚠️
>
> This factory and associated Pools have been deprecated due to numerical issues when one of the token depegs. Use this [updated version](../../20220906-composable-stable-pool) instead.
> This factory and associated Pools have been deprecated due to numerical issues when one of the token depegs. Use this [updated version](../../20221122-composable-stable-pool-v2) instead.
Deployment of the `StablePhantomPoolFactory`, for Meta Stable Pools with preminted BPT of up to 4 tokens.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Task from '../../src/task';
import { TaskRunOptions } from '../../src/types';
import Task from '../../../src/task';
import { TaskRunOptions } from '../../../src/types';
import { ComposableStablePoolDeployment } from './input';

export default async (task: Task, { force, from }: TaskRunOptions = {}): Promise<void> => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Task, { TaskMode } from '../../src/task';
import Task, { TaskMode } from '../../../src/task';

export type ComposableStablePoolDeployment = {
Vault: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 2022-09-06 - Composable Stable Pool

> ⚠️ **DEPRECATED: do not use** ⚠️
>
> This factory and associated Pools have been deprecated in favor of a new version that supports proportional joins and exits. Use this [updated version](../../20221122-composable-stable-pool-v2) instead.
Deployment of `ComposableStablePoolFactory`, which allows creating Stable Pools that are suitable to be included in other Pools.

## Useful Files
Expand Down

0 comments on commit bfe97fe

Please sign in to comment.