-
Notifications
You must be signed in to change notification settings - Fork 0
/
edenlab_truffle.js
87 lines (87 loc) · 1.75 KB
/
edenlab_truffle.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
module.exports = {
solc: {
optimizer: {
enabled: true,
runs: 200
}
},
mocha: {
useColors: true
},
networks: {
testRpc: {
host: "127.0.0.1",
port: 8545,
network_id: "10",
gas: 4694118
},
kubernetesNode: {
host: "127.0.0.1",
port: 22100,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
dev_rp: {
from: "0x5cdb00a372845c3146a19439f684094f1daa09d6", // RP coinbase
host: "51.141.120.215", // RP IP
port: 22000,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
dev_master: {
from: "0x0bf5a5ed7fecc077a01012a1a7b4d668e8c2eb0f", // Master coinbase
host: "51.144.109.43", // Master IP
port: 22000,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
testNode: {
from: "0x0bf5a5ed7fecc077a01012a1a7b4d668e8c2eb0f",
host: "51.144.109.43",
port: 22000,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
ganache: {
host: "127.0.0.1",
port: 7545,
network_id: "*",
gasPrice: 0,
mnemonic:
"chapter run clever race sure shoot solution aisle possible ridge flock august"
},
KIM1: {
from: "0xe0dfcd8ca47eec41d74d9e14760f9d5c5de78177",
host: "127.0.0.1",
port: 22000,
network_id: "*",
gasPrice: 0,
gas: 4694118
},
KIM2: {
host: "127.0.0.1",
port: 22001,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
KIM3: {
host: "127.0.0.1",
port: 22002,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
KIM3: {
host: "127.0.0.1",
port: 22004,
network_id: "10",
gasPrice: 0,
gas: 4694118
}
}
};