* make provider creation lazy * change getter for function * remove unused networks from truffle config * remove unused dotenv package * remove truffle-hdwallet-provider dependency * install ethereumjs-util * replace sha3 with keccak256 for ethereumjs-util v6
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
module.exports = {
|
|
networks: {
|
|
development: {
|
|
host: 'localhost',
|
|
port: 8545,
|
|
network_id: '*', // eslint-disable-line camelcase
|
|
},
|
|
coverage: {
|
|
host: 'localhost',
|
|
network_id: '*', // eslint-disable-line camelcase
|
|
port: 8555,
|
|
gas: 0xfffffffffff,
|
|
gasPrice: 0x01,
|
|
},
|
|
},
|
|
};
|