Skip to content

Instantly share code, notes, and snippets.

@sarbogast
Created September 3, 2017 20:44
Show Gist options
  • Save sarbogast/30de748a9e3f0ce7e53bf19df354a90a to your computer and use it in GitHub Desktop.
Save sarbogast/30de748a9e3f0ce7e53bf19df354a90a to your computer and use it in GitHub Desktop.
Truffle config with live net
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
rinkeby: {
host: "localhost",
port: 8545,
network_id: 4 // Rinkeby test network
},
live: {
host: "localhost",
port: 8545,
network_id: 1, // Main network
from: "0x1494cb5f7ad7b09e9daf1ffa3070e69ae936ca0e"
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment