-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.ts
63 lines (60 loc) · 1.94 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
import { Task, TaskMode } from '@src';
export type BatchRelayerDeployment = {
Vault: string;
wstETH: string;
BalancerMinter: string;
};
const Vault = new Task('20210418-vault', TaskMode.READ_ONLY);
const BalancerMinter = new Task('20220325-gauge-controller', TaskMode.READ_ONLY);
export default {
Vault,
// wstETH and BalancerMinter are only deployed on mainnet.
mainnet: {
wstETH: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0',
BalancerMinter,
},
sepolia: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter,
},
polygon: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
arbitrum: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
optimism: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
gnosis: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
bsc: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
avalanche: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
zkevm: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
base: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
telos: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
telosTestnet: {
wstETH: '0x0000000000000000000000000000000000000000',
BalancerMinter: '0x0000000000000000000000000000000000000000',
},
};