-
Notifications
You must be signed in to change notification settings - Fork 128
the issue is coming at JsonRpcProvider can you check it guys #114
Comments
Could you try cloning this repo and working with the code here? |
@Vinodnaruto change this const provider = new ethers.Provider.JsonRpcProvider("http://127.0.0.1:7545"); to this: const provider = new ethers.JsonRpcProvider("http://127.0.0.1:7545"); |
I did this const provider = new ethers.JsonRpcProvider("http://127.0.0.1:7545"); |
I also got the same error and I tried this by setting the gas limit const factory = new ethers.ContractFactory(abi, bin, wallet);
const options = {
gasLimit: 3000000,
}
const contract = await factory.deploy(options); |
in the code error was showing at
The text was updated successfully, but these errors were encountered: