diff --git a/hardhat.config.js b/hardhat.config.js index bd530d1..973f5fb 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -33,24 +33,27 @@ module.exports = { defaultNetwork: 'hardhat', networks: { hardhat: {}, - ropsten: { - url: secrets.ropsten.rpc, - accounts: { - mnemonic: secrets.ropsten.mnemonic, - path: "m/44'/60'/0'/0", - initialIndex: 0, - count: 1, - }, - }, - ganache: { - url: secrets.ganache.rpc, - accounts: { - mnemonic: secrets.ganache.mnemonic, - path: "m/44'/60'/0'/0", - initialIndex: 0, - count: 1, - }, + coverage: { + url: 'http://127.0.0.1:8555', // Coverage launches its own ganache-cli client }, + // ropsten: { + // url: secrets.ropsten.rpc, + // accounts: { + // mnemonic: secrets.ropsten.mnemonic, + // path: "m/44'/60'/0'/0", + // initialIndex: 0, + // count: 1, + // }, + // }, + // ganache: { + // url: secrets.ganache.rpc, + // accounts: { + // mnemonic: secrets.ganache.mnemonic, + // path: "m/44'/60'/0'/0", + // initialIndex: 0, + // count: 1, + // }, + // }, }, gasReporter: { currency: 'USD',