forked from balancer/balancer-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.ts
67 lines (65 loc) · 2.3 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { Task, TaskMode } from '@src';
export type GaugeWorkingBalanceHelperDeployment = {
VotingEscrowDelegationProxy: string;
ReadTotalSupplyFromVE: boolean;
};
export default {
mainnet: {
VotingEscrowDelegationProxy: new Task('20220325-ve-delegation', TaskMode.READ_ONLY).output({ network: 'mainnet' })
.VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: true,
},
polygon: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'polygon',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
arbitrum: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'arbitrum',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
optimism: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'optimism',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
gnosis: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'gnosis',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
avalanche: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'avalanche',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
zkevm: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'zkevm',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
base: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'base',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
fraxtal: {
VotingEscrowDelegationProxy: new Task('20230316-l2-ve-delegation-proxy', TaskMode.READ_ONLY).output({
network: 'fraxtal',
}).VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: false,
},
sepolia: {
VotingEscrowDelegationProxy: new Task('20220325-ve-delegation', TaskMode.READ_ONLY).output({ network: 'sepolia' })
.VotingEscrowDelegationProxy,
ReadTotalSupplyFromVE: true,
},
};