mirror of
https://github.com/saymrwulf/splitter.git
synced 2026-05-31 23:28:01 +00:00
26 lines
462 B
JavaScript
26 lines
462 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"
|
|
}
|
|
}
|
|
*/
|
|
};
|