Lesson 6: TypeError: yParity mismatch #6359
Replies: 3 comments
-
and the gas fee has been deducted. |
Beta Was this translation helpful? Give feedback.
-
@QingRun-Tan async function main() {
const SimpleStorageFactory = await ethers.getContractFactory("SimpleStorage");
console.log("正在部署中!!!");
const simpleStorage = await SimpleStorageFactory.deploy();
await simpleStorage.waitForDeployment();// use .waitForDeployment() instead of .deployed()
console.log(
`simpleStorage address:${(await simpleStorage.getAddress()).toString()}`
); |
Beta Was this translation helpful? Give feedback.
-
I have exactly same issue when deploying new contract |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
this is my depoly.js code
this is my hardhat.config.js code
this is my bug
please help me
Beta Was this translation helpful? Give feedback.
All reactions