-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.ts
26 lines (22 loc) · 868 Bytes
/
input.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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: 2, deployment: '20221122-composable-stable-pool-v2' };
export default {
Vault,
ProtocolFeePercentagesProvider,
WETH,
BAL,
FactoryVersion: JSON.stringify({ name: 'ComposableStablePoolFactory', ...BaseVersion }),
PoolVersion: JSON.stringify({ name: 'ComposableStablePool', ...BaseVersion }),
};