Lesson 6: How to find my contracts address after deploying it in ethers v6^ #6463
-
I saw that in ethers v6 and over doing Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You might be getting back a hardhat address. Quite often people mistakenly send test Eth to these hardhat addresses. Make sure you are indeed using: console.log(`deployedcontract to: ${simplestorage.target}`) and deploying using: yarn run scripts/deploy.js --network sepolia Do you have the sepolia network added to your hardhat.config and helper-hardhat-config? |
Beta Was this translation helpful? Give feedback.
You might be getting back a hardhat address. Quite often people mistakenly send test Eth to these hardhat addresses.
Make sure you are indeed using:
and deploying using:
Do you have the sepolia network added to your hardhat.config and helper-hardhat-config?