-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
58 lines (58 loc) · 1.27 KB
/
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
module.exports = {
solc: {
optimizer: {
enabled: true,
runs: 200
}
},
mocha: {
useColors: true
},
networks: {
master: {
from: "0x2d53b00ed1a56437b19adc4e6192c6d1b78f708c", // Master coinbase
host: "127.0.0.1", // Master IP
port: 22000,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
ap: {
from: "0x2e933a6c78db354667189542d62a7d7df9a5e377", // AP coinbase
host: "127.0.0.1", // AP IP
port: 22001,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
rp1: {
from: "0x64bead472383998573e22b191f20e0cd762fb809", // RP 1 coinbase
host: "127.0.0.1", // RP 1 IP
port: 22002,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
rp2: {
from: "0x67f2a69bb32a444bfe93bc4a4c02f4e35aa93033", // RP 2 coinbase
host: "127.0.0.1", // RP 2 IP
port: 22003,
network_id: "10",
gasPrice: 0,
gas: 4694118
},
testRpc: {
host: "127.0.0.1",
port: 8545,
network_id: "10",
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"
}
}
}