-
Notifications
You must be signed in to change notification settings - Fork 1
/
truffle.js
43 lines (37 loc) · 980 Bytes
/
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
//const HDWalletProvider = require('truffle-hdwallet-provider');
module.exports = {
networks: {
development: {
host: "192.168.1.58",
port: 18545,
network_id: "*", // Match any network id
gas: 4710000,
gasPrice: 180e9,
from: "0x9da26fc2e1d6ad9fdd46138906b0104ae68a65d8",
},
rinkeby: {
host: "192.168.1.58",
port: 17545,
network_id: "*", // Match any network id
gas: 4710000,
gasPrice: 18e9,
from: "0xdd4ad968d744d76e376f1992273b07fb5aa42b6b",
},
internal: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gas: 4710000,
gasPrice: 180e9,
from: "0xbb9003ca8226f411811dd16a3f1a2c1b3f71825d",
},
mainnet: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gas: 4710000,
gasPrice: 180e9,
from: "0xbb9003ca8226f411811dd16a3f1a2c1b3f71825d"
},
}
};