Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
ganache: {
host: "localhost",
port: 7545,
network_id: "*" // Match any network id
},
chainskills: {
host: "localhost",
port: 8545,
network_id: "4224",
gas: 4700000
},
rinkeby: {
host: "localhost",
port: 8545,
network_id: 4, //rinkeby test network
gas: 4700000
}
}
};