require('@nomiclabs/hardhat-waffle') require('dotenv').config() module.exports = { defaultNetwork: 'localhost', networks: { localhost: { url: 'http://127.0.0.1:8545', }, }, solidity: { version: '0.8.11', settings: { optimizer: { enabled: true, runs: 200, }, }, }, paths: { sources: './src/contracts', artifacts: './src/abis', }, mocha: { timeout: 40000, }, }