arc_dx
Version:
A platform for building DAOs
61 lines (59 loc) • 1.15 kB
JavaScript
require("babel-polyfill");
require("babel-register")({
"presets": ["es2015"],
"plugins": ["syntax-async-functions","transform-regenerator"]
});
module.exports = {
networks: {
live: {
network_id: 1,
host: "localhost",
port: 8546,
gas: 4543760
},
ropsten: {
network_id: 3,
host: "localhost",
port: 8545,
gas: 4543760
},
rinkeby: {
network_id: 4,
host: "localhost",
port: 8545,
gas: 4543760
},
kovan: {
network_id: 42,
host: "localhost",
port: 8545,
gas: 4543760
},
development: {
network_id: "*",
host: "localhost",
port: 8545,
gas: 4543760
},
},
rpc: {
host: "localhost",
port: 8545
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
},
compilers: {
solc: {
version: "0.4.25", // Fetch exact version from solc-bin (default: truffle's version)
// docker: true, // Use "0.5.1" you've installed locally with docker (default: false)
optimizer: {
enabled: true,
runs: 200
}
}
}
};