From 562f4b1220902e1d61b1caac54248319f82c8727 Mon Sep 17 00:00:00 2001 From: "yonatan.tesfu" <yonatan.tesfu@etu.hesge.ch> Date: Mon, 23 Jan 2023 20:51:00 +0100 Subject: [PATCH] rendu final --- hardhat.config.ts | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 70b6646d..27e5bbd6 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -1,11 +1,6 @@ import "hardhat-deploy"; import "@typechain/hardhat"; import "@nomiclabs/hardhat-ethers"; -// import "@nomiclabs/hardhat-waffle" -// import "@nomiclabs/hardhat-etherscan" -// import "hardhat-gas-reporter" -// import "dotenv/config" -// import "solidity-coverage" import { HardhatUserConfig } from "hardhat/config" const config: HardhatUserConfig = { @@ -19,11 +14,6 @@ const config: HardhatUserConfig = { chainId: 31337, allowUnlimitedContractSize: true }, - // goerli: { - // url: GOERLI_RPC_URL, - // accounts: [PRIVATE_KEY], - // chainId: 5, - // }, }, solidity: { version: "0.8.8", @@ -34,16 +24,6 @@ const config: HardhatUserConfig = { }, }, }, - // etherscan: { - // apiKey: ETHERSCAN_API_KEY, - // }, - // gasReporter: { - // enabled: true, - // currency: "USD", - // outputFile: "gas-report.txt", - // noColors: true, - // // coinmarketcap: COINMARKETCAP_API_KEY, - // }, namedAccounts: { deployer: { default: 0, // The deployer will be the first account -- GitLab