hardhat-change-network icon indicating copy to clipboard operation
hardhat-change-network copied to clipboard

Results 4 hardhat-change-network issues
Sort by recently updated
recently updated
newest added

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 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...