Reputation: 869
I'm trying to create a next.js react project using hardhat for Ethereum smart contracting.
Here is what I installed: npm install ethers hardhat @nomiclabs/hardhat-waffle ethereum-waffle chai @nomiclabs/hardhat-ethers web3modal @openzeppelin/contracts ipfs-http-client axios
This is what I see in my folder:
I don't understand why I don't see a contracts
, scripts
folder and files like hardhat.config.js
. Did I do something wrong in my installation? How can I fix this?
Upvotes: 1
Views: 714
Reputation: 869
It worked when I downloaded the latest version of next-react like this: npx create-next-app@latest {name}
Upvotes: 1