forked from balancer/balancer-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.ts
26 lines (22 loc) · 835 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 WeightedPoolDeployment = {
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: 3, deployment: '20230206-weighted-pool-v3' };
export default {
Vault,
ProtocolFeePercentagesProvider,
WETH,
BAL,
FactoryVersion: JSON.stringify({ name: 'WeightedPoolFactory', ...BaseVersion }),
PoolVersion: JSON.stringify({ name: 'WeightedPool', ...BaseVersion }),
};