-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtruffle.js
32 lines (31 loc) · 1.01 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
require('babel-register');
require('babel-polyfill');
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: "localhost",
port: 7545,
//port: 8545,
network_id: "*", // Match any network id
gas: 5712388, // Gas limit used for deploys
//gasPrice: 1,
},
rinkeby: {
host: "localhost", // Connect to geth on the specified
port: 8545,
from: "0x6b018f0b646f50a436e25d034624ed9b6a1d0bb7", // default address to use for any transaction Truffle makes during migrations
//from: "0x009ae1e9fe05a03b4f7bb2facb9e590c5b0fa935", //0x6b018f0b646f50a436e25d034624ed9b6a1d0bb7", // default address to use for any transaction Truffle makes during migrations
network_id: 4,
gas: 6712388 // Gas limit used for deploys
},
live: {
network_id: 1,
port: 8545,
host: "localhost",
gasPrice: 10000000000,
gas: 700000
}
}
};