Skip to content

Commit

Permalink
CSP v6 task.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ignacio Ubeira committed Feb 26, 2024
1 parent 4107644 commit 1ded31d
Show file tree
Hide file tree
Showing 23 changed files with 216,777 additions and 0 deletions.

Large diffs are not rendered by default.

215,836 changes: 215,836 additions & 0 deletions tasks/20240223-composable-stable-pool-v6/build-info/ComposableStablePoolFactory.json

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions tasks/20240223-composable-stable-pool-v6/input.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { Task, TaskMode } from '@src';

export type ComposableStablePoolDeployment = {
Vault: string;
ProtocolFeePercentagesProvider: string;
FactoryVersion: string;
PoolVersion: string;
WETH: string;
BAL: string;
};

const Vault = new Task('20210418-vault', TaskMode.READ_ONLY);
const ProtocolFeePercentagesProvider = new Task('20220725-protocol-fee-percentages-provider', TaskMode.READ_ONLY);
const WETH = new Task('00000000-tokens', TaskMode.READ_ONLY);
const BAL = new Task('00000000-tokens', TaskMode.READ_ONLY);

const BaseVersion = { version: 6, deployment: '20240223-composable-stable-pool-v6' };

export default {
Vault,
ProtocolFeePercentagesProvider,
WETH,
BAL,
FactoryVersion: JSON.stringify({ name: 'ComposableStablePoolFactory', ...BaseVersion }),
PoolVersion: JSON.stringify({ name: 'ComposableStablePool', ...BaseVersion }),
};
8 changes: 8 additions & 0 deletions tasks/20240223-composable-stable-pool-v6/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 2024-02-23 - Composable Stable Pool V6

Deployment of `ComposableStablePoolFactory`, which supersedes `20230711-composable-stable-pool-v5`.
This version is the same in terms of functionality, but has a longer pause window and buffer period.

## Useful Files

- [`ComposableStablePoolFactory` artifact](./artifact/ComposableStablePoolFactory.json)
Loading

0 comments on commit 1ded31d

Please sign in to comment.