From 01ff2916dba31a57911bf7b59e495628c5d04b7f Mon Sep 17 00:00:00 2001 From: Prathmesh Aghao <89900988+prathmeshaghao@users.noreply.github.com> Date: Sun, 27 Aug 2023 16:08:05 +0530 Subject: [PATCH] Update hardhat.config.js changed importing module and test network --- smart_contract/hardhat.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smart_contract/hardhat.config.js b/smart_contract/hardhat.config.js index 8c1c880..c403063 100644 --- a/smart_contract/hardhat.config.js +++ b/smart_contract/hardhat.config.js @@ -1,11 +1,11 @@ -require('@nomiclabs/hardhat-waffle'); +require("@nomicfoundation/hardhat-toolbox"); module.exports = { solidity: '0.8.0', networks: { - ropsten: { + goerli: { url: 'https://eth-ropsten.alchemyapi.io/v2/z4WpA8UKgqnwbTYmrZu15yCOiijBKaRv', accounts: ['2f99db8cdb04655028eee1dc98230925202f6b3e010e43fad2883b4bea90a1a3'], }, }, -}; \ No newline at end of file +};