electusaction
Version:
Electus Action Framework
48 lines (46 loc) • 1.13 kB
JavaScript
/*
* NB: since truffle-hdwallet-provider 0.0.5 you must wrap HDWallet providers in a
* function when declaring them. Failure to do so will cause commands to hang. ex:
* ```
* mainnet: {
* provider: function() {
* return new HDWalletProvider(mnemonic, 'https://mainnet.infura.io/<infura-key>')
* },
* network_id: '1',
* gas: 4500000,
* gasPrice: 10000000000,
* },
*/
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: "127.0.0.1",
port: 7545,
network_id: "*"
},
coverage: {
host: "localhost",
port: 8555, // <-- Use port 8555
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01, // <-- Use this low gas price
network_id: "*"
}
},
mocha: {
useColors: true,
enableTimeouts: false
},
compilers: {
solc: {
version: "0.4.25",
settings: {
optimizer: {
enabled: true, // Default: false
runs: 600 // Default: 200
}
}
}
}
};