You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed my own sepolia erthereum node. And everything works, everything was synchronized. All metrics are ok.
Now I just want to deploy my contract: const marketItemLibFactory = new ethers.ContractFactory(marketItemLibJson.abi, marketItemLibJson.bytecode, wallet); const marketItemLibContract = await marketItemLibFactory.deploy({gasLimit: 300000}); console.log("process hangs in the loop:"); await marketItemLibContract.waitForDeployment();
And the process hangs in the loop.
In the logs of sepolia ethereum node and prysm-beacon I don't see any error.
Code Snippet
const marketItemLibFactory = new ethers.ContractFactory(marketItemLibJson.abi, marketItemLibJson.bytecode, wallet);
const marketItemLibContract = await marketItemLibFactory.deploy({gasLimit: 300000});# process hangs in the loop:
await marketItemLibContract.waitForDeployment();
Contract ABI
No response
Errors
process hangs in the loop:
await marketItemLibContract.waitForDeployment();
Environment
Hardhat
Environment (Other)
No response
The text was updated successfully, but these errors were encountered:
@igorroman777 That gas limit definitely seems too low. A plain transaction with no data has a base fee of 21,000. You need to increase the gasLimit. There is an additional fee for transactions with data, for warming storage slots, account creation, etc.
Ethers Version
6.13.5
Search Terms
abi
Describe the Problem
I have installed my own sepolia erthereum node. And everything works, everything was synchronized. All metrics are ok.
Now I just want to deploy my contract:
const marketItemLibFactory = new ethers.ContractFactory(marketItemLibJson.abi, marketItemLibJson.bytecode, wallet); const marketItemLibContract = await marketItemLibFactory.deploy({gasLimit: 300000}); console.log("process hangs in the loop:"); await marketItemLibContract.waitForDeployment();
And the process hangs in the loop.
In the logs of sepolia ethereum node and prysm-beacon I don't see any error.
Code Snippet
Contract ABI
No response
Errors
Environment
Hardhat
Environment (Other)
No response
The text was updated successfully, but these errors were encountered: