Created
September 3, 2017 20:44
-
-
Save sarbogast/30de748a9e3f0ce7e53bf19df354a90a to your computer and use it in GitHub Desktop.
Truffle config with live net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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