forked from balancer/balancer-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.ts
28 lines (25 loc) · 1.05 KB
/
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
27
28
import { Task, TaskMode } from '@src';
export type veBALL2GaugeSetupCoordinatorDeployment = {
AuthorizerAdaptor: string;
VotingEscrow: string;
GaugeAdder: string;
EthereumGaugeFactory: string;
PolygonRootGaugeFactory: string;
ArbitrumRootGaugeFactory: string;
};
const AuthorizerAdaptor = new Task('20220325-authorizer-adaptor', TaskMode.READ_ONLY);
const VotingEscrow = new Task('20220325-gauge-controller', TaskMode.READ_ONLY);
const GaugeAdder = new Task('20220325-gauge-adder', TaskMode.READ_ONLY);
const LiquidityGaugeFactory = new Task('20220325-mainnet-gauge-factory', TaskMode.READ_ONLY);
const PolygonRootGaugeFactory = new Task('20220413-polygon-root-gauge-factory', TaskMode.READ_ONLY);
const ArbitrumRootGaugeFactory = new Task('20220413-arbitrum-root-gauge-factory', TaskMode.READ_ONLY);
export default {
mainnet: {
AuthorizerAdaptor,
VotingEscrow,
GaugeAdder,
EthereumGaugeFactory: LiquidityGaugeFactory.output({ network: 'mainnet' }).LiquidityGaugeFactory,
PolygonRootGaugeFactory,
ArbitrumRootGaugeFactory,
},
};