mirror of
https://github.com/saymrwulf/splitter.git
synced 2026-07-10 17:37:30 +00:00
26 lines
456 B
JavaScript
26 lines
456 B
JavaScript
module.exports = {
|
|
|
|
networks: {
|
|
development: { // this one is optional and reduces "failing fast" dummerweise
|
|
host: "127.0.0.1",
|
|
port: 8545,
|
|
network_id: "*"
|
|
},
|
|
test: {
|
|
host: "127.0.0.1",
|
|
port: 8545,
|
|
network_id: "*"
|
|
},
|
|
net42:{
|
|
host: "127.0.0.1",
|
|
port: 8545,
|
|
network_id: "42"
|
|
},
|
|
ropsten: {
|
|
host: "127.0.0.1",
|
|
port: 8545,
|
|
network_id: "3"
|
|
}
|
|
}
|
|
|
|
};
|