require("@nomicfoundation/hardhat-toolbox"); require("dotenv").config(); /** @type import('hardhat/config').HardhatUserConfig */ module.exports = { solidity: { version: "0.8.24", settings: { optimizer: { enabled: true, runs: 200 } } }, networks: { localhost: { url: "http://127.0.0.1:8545", chainId: 31337 }, hardhat: { chainId: 31337 } }, paths: { sources: "./contracts", tests: "./test", cache: "./cache", artifacts: "./artifacts" } };