-
Notifications
You must be signed in to change notification settings - Fork 40
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
Juan Ignacio Ubeira
committed
Feb 26, 2024
1 parent
4107644
commit 1ded31d
Showing
23 changed files
with
216,777 additions
and
0 deletions.
There are no files selected for viewing
292 changes: 292 additions & 0 deletions
292
tasks/20240223-composable-stable-pool-v6/artifact/ComposableStablePoolFactory.json
Large diffs are not rendered by default.
Oops, something went wrong.
215,836 changes: 215,836 additions & 0 deletions
215,836
tasks/20240223-composable-stable-pool-v6/build-info/ComposableStablePoolFactory.json
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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,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 }), | ||
}; |
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,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) |
Oops, something went wrong.