This repo may be too old to be of any use. Please see the new Scaffold ETH 2 which is very similar to this project.
This project was sponsored by the BuidlGuidl. Please support the BuidlGuidl if this project has been helpful!
My iteration of Austin Griffith's scaffold-eth. Also inspired by Nader Dabit's blog post
It is recommended to use Yarn to avoid dependency collisions: Yarn
git clone https://github.com/ChangoMan/nextjs-ethereum-starter.git
cd nextjs-ethereum-starter
yarn install
# Start up the Hardhat Network
yarn chainHere we just install the npm project's dependencies, and by running yarn chain we spin up an instance of Hardhat Network that you can connect to using MetaMask. In a different terminal in the same directory, run:
yarn deployThis will deploy the contract to Hardhat Network. After this completes run:
cd frontend
yarn installThis will install the frontend packages. We also need to set up the local configuration file.
cp .env.local.example .env.localThis will create a file called .env.local. Open up that file and fill in the NEXT_PUBLIC_ALCHEMY_API_KEY= and NEXT_PUBLIC_UNSPLASH_ACCESS_KEY= environment variables.
yarn devThis will start up the Next.js development server. Your site will be available at http://localhost:3000/
To interact with the local contract, be sure to switch your MetaMask Network to Localhost 8545