forked from jchai002/crypto-payment-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
25 lines (24 loc) · 812 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
require("babel-register");
require("babel-polyfill");
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
rinkeby: {
host: "https://rinkeby.infura.io/MXuKWE4EUpXRE6bKNqpz", // Connect to geth on the specified
from: "0x2cdb7e99ec3db8254650e72e4d87087b4dfae176", // default address to use for any transaction Truffle makes during migrations
network_id: 4,
gas: 4612388 // Gas limit used for deploys
},
rinkebyDeploy: {
host: "localhost",
port: 8545,
from: "0x2cdb7e99ec3db8254650e72e4d87087b4dfae176", // default address to use for any transaction Truffle makes during migrations
network_id: 4,
gas: 4612388 // Gas limit used for deploys
}
}
};