Get Started
/Quick Start
Quick Start
First start by opening your terminal and typing :
npx create-web3
-
Name your project.
-
Choose install by using NPM or YARN
-
Choose project create with Javascript or Typescript
When finished now install packages
npm run install
Once packages are installed cd
into the directory of your project
To start your local hardhat environment:
npm run chain
Now open another terminal, cd
into the directory of your project, and deploy the Greetor.sol contract
npm run deploy
Now in the same terminal start your Front End:
npm run dev
🚀
Now open your browser and go to localhost:3000.
Congratulations!!!
You've just setup your local development environment and deployed a contract locally
You can now connect a wallet and interact with the Greeter contract by typing in a new message.