-
I followed along with Patrick to deploy the NFTs to Sepolia at Lesson 14 (22:30:58). After successfuly deployed 3 contracts:
Here's my repo: https://github.com/veoquynhs/hardhat-nft-fcc |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I realized that my |
Beta Was this translation helpful? Give feedback.
I realized that my
hardhat.config.js
hadrequire("@nomiclabs/hardhat-ethers");
, which is pretty redundant. So when I compiled the code with thepackage.json
- which is similar to Patrick's Repo, it forced me to installhardhat-ethers
, which might be incompatible with my program. So when I removed that line:require("@nomiclabs/hardhat-ethers");
and then recompiled and deployed, my program worked totally fine.