From 50a64ddf1ec226699274a97e087ce683158ef652 Mon Sep 17 00:00:00 2001 From: Anders Brownworth Date: Thu, 4 Jan 2024 15:45:19 -0500 Subject: [PATCH] parsec_user_guide.md: slight tweaks Signed-off-by: Anders Brownworth --- docs/parsec_user_guide.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/parsec_user_guide.md b/docs/parsec_user_guide.md index 2ac4e1717..4a7ec7e50 100644 --- a/docs/parsec_user_guide.md +++ b/docs/parsec_user_guide.md @@ -43,7 +43,6 @@ 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 ``` @@ -51,7 +50,7 @@ $ npm install hardhat Finish with initializing Hardhat using: ```console -$ npx hardhat +$ npx hardhat init ``` Select to create a JavaScript project. @@ -62,7 +61,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/`.