UNPKG

@daostack/arc

Version:

A platform for building DAOs

68 lines (66 loc) 1.25 kB
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: 6200000 }, coverage: { host: 'localhost', network_id: '*', // eslint-disable-line camelcase port: 8555, gas: 0xfffffffffff, gasPrice: 0x01, } }, rpc: { host: "localhost", port: 8545 }, solc: { optimizer: { enabled: true, runs: 200 } }, compilers: { solc: { version: "0.5.17", // Fetch exact version from solc-bin (default: truffle's version) optimizer: { enabled: true, runs: 200 } } }, plugins: ["solidity-coverage"] };