hardhat-change-network
hardhat-change-network copied to clipboard
Fixes for new hardhat version (^2.19.0) - Now functions async (because its uses async functions from hardhat) - Fixed ethers import path - Version bumped
Replaced ethers provider wrapper (nomiclabs renamed it nomicfoundation) for ethers v6
this.config is undefine
This should be easy to change with the following code: ``` extendEnvironment((hre) => { const Web3 = require("web3"); hre.Web3 = Web3; // hre.network.provider is an EIP1193-compatible provider. hre.web3 = new...