forked from shiwk/sashimi_scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainnet.js
More file actions
61 lines (60 loc) · 1.86 KB
/
mainnet.js
File metadata and controls
61 lines (60 loc) · 1.86 KB
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
const contracts = require('../contracts-config');
const methods = require('../methods/methods.json');
module.exports = {
delay: 1470, // 24*60 +30
actions: [
{
target: contracts.mainnet.chef,
methodName: methods.addPoolMethod.name,
params: {
lpToken: '0x96559937e9c4475160CA040b16cDA93E3EfBD75A',
allocPoint: 500,
}
},
{
methodName: methods.setPointMethod.name,
target: contracts.mainnet.chef,
params: {
pid: 0,
allocPoint: 1000
}
},
{
methodName: methods.transferOwnershipMethod.name,
target: contracts.mainnet.investment,
params: {
newOwner: '0x2f8ab5cD7179B3d42d177a45B18cF7C8FF8EFA77'
}
},
{
methodName: methods.setFeeToMethod.name,
target: contracts.mainnet.factory,
params: {
feeTo: '0x3a979edf5c12092a6d5048b1849c2a32900fdfce'
}
},
{
methodName: methods.addProviderMethod.name,
target: contracts.mainnet.investment,
params: {
token: '0xA050886815CFc52a24B9C4aD044ca199990B6690',
provider: '0x62c412A1708c5FD80Cf37F893811a771027d8D38'
}
},
{
methodName: methods.changeReservesRatioMethod.name,
target: contracts.mainnet.investment,
params: {
token: '0xA050886815CFc52a24B9C4aD044ca199990B6690',
reservesRatio: 10000
}
},
{
methodName: methods.addAdmin.name,
target: contracts.mainnet.investment,
params: {
admin: '0x2D4E11221b960E4Ed6D0D2358e26b9c89DfF404a',
}
}
]
}