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

parsec_user_guide.md: slight usability tweaks #243

Merged
merged 1 commit into from
Jan 7, 2024
Merged
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
5 changes: 2 additions & 3 deletions docs/parsec_user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,14 @@ Go to a new separate directory and run the following:

```console
$ mkdir parsec-playground && cd parsec-playground
$ npm -y init # `-y` keeps all defaults
$ npm install @nomicfoundation/hardhat-ethers ethers
$ npm install hardhat
```

Finish with initializing Hardhat using:

```console
$ npx hardhat
$ npx hardhat init
```

Select to create a JavaScript project.
Expand All @@ -61,7 +60,7 @@ These can all be overwritten for the purpose of this guide.
However, to use the Hardhat compiler, all Solidity files should be stored in the
`contracts` subdirectory.

Copy the example [hardhat.config.js](../scripts/hardhat.config.js) into this directory.
Copy the example [scripts/hardhat.config.js](../scripts/hardhat.config.js) into this directory.

Edit the `url:` value in the `hardhat.config.js` file to correspond with the url of the agent RPC server.
Using Docker this will be `http://localhost:8080/`.
Expand Down
Loading