require("@nomiclabs/hardhat-waffle"); require('dotenv').config() module.exports = { defaultNetwork: "localhost", networks: { hardhat: { }, localhost: { url: "http://127.0.0.1:8545" }, rinkeby: { url: process.env.ENDPOINT_URL, // chainId: 4, accounts: [process.env.DEPLOYER_KEY] } }, solidity: { version: '0.8.11', settings: { optimizer: { enabled: true, runs: 200 } } }, paths: { sources: "./src/contracts", artifacts: "./src/abis" }, mocha: { timeout: 40000 } }