Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better look for README #29

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions step00_hardhat_helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,25 @@ Follow this Text Book:
Create a Project Directory

Make it an npm library:

```
npm init

```
```
npm install --save-dev hardhat

```
```
npx hardhat

```
Select to create a basic project from the menu

```
npm install --save-dev @nomiclabs/hardhat-waffle ethereum-waffle chai @nomiclabs/hardhat-ethers ethers

```
```
npx hardhat compile

```
```
npx hardhat test



```


This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts.
Expand Down