Created
September 3, 2017 19:02
-
-
Save sarbogast/3873c0d3bc9fed0d1e9cb71d6b166760 to your computer and use it in GitHub Desktop.
Truffle config
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 | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment