-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtruffle.js
29 lines (28 loc) · 897 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
require('babel-register');
require('babel-polyfill');
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gas: 4500000
},
rinkeby: {
host: "localhost", // Connect to geth on the specified
port: 8545,
from: "0xE2652f6128A05cd270F6719bdee0867a81f346Ca", // default address to use for any transaction Truffle makes during migrations
network_id: 4,
gas: 6512388, // Gas limit used for deploys
gasPrice: 5000000000
},
live: {
host: "localhost", // Connect to geth on the specified
port: 8545,
from: "0x09Cec1DBe8746a9CB8e939B239CE50d44aCF71Dc", // default address to use for any transaction Truffle makes during migrations
network_id: 1,
gas: 6512388, // Gas limit used for deploys
gasPrice: 41000000000
}
}
};