forked from balancer/balancer-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.ts
56 lines (54 loc) · 2.08 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
import Task, { TaskMode } from 'task';
export type L2VeBoostV2Deployment = {
VotingEscrow: string;
};
export default {
// https://polygonscan.com/address/0xE241C6e48CA045C7f631600a0f1403b2bFea05ad
polygon: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'polygon',
}).OmniVotingEscrowChild,
},
// https://arbiscan.io/address/0xe241c6e48ca045c7f631600a0f1403b2bfea05ad
arbitrum: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'arbitrum',
}).OmniVotingEscrowChild,
},
// https://optimistic.etherscan.io/address/0xe241c6e48ca045c7f631600a0f1403b2bfea05ad
optimism: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'optimism',
}).OmniVotingEscrowChild,
},
// https://gnosisscan.io/address/0xe241c6e48ca045c7f631600a0f1403b2bfea05ad
gnosis: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'gnosis',
}).OmniVotingEscrowChild,
},
// https://snowtrace.io/address/0xe241c6e48ca045c7f631600a0f1403b2bfea05ad
avalanche: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'avalanche',
}).OmniVotingEscrowChild,
},
// https://zkevm.polygonscan.com/address/0xe241c6e48ca045c7f631600a0f1403b2bfea05ad
zkevm: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'zkevm',
}).OmniVotingEscrowChild,
},
// https://basescan.org/address/0xE241C6e48CA045C7f631600a0f1403b2bFea05ad
base: {
VotingEscrow: new Task('20230524-base-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'base',
}).OmniVotingEscrowChild,
},
// https://basescan.org/address/0xE241C6e48CA045C7f631600a0f1403b2bFea05ad
fraxtal: {
VotingEscrow: new Task('20230524-lz-omni-voting-escrow-child', TaskMode.READ_ONLY).output({
network: 'fraxtal',
}).OmniVotingEscrowChild,
},
};