Skip to content

Commit 2a547ae

Browse files
Apply suggestions from code review
Co-authored-by: Nicolás Hussein <[email protected]>
1 parent 7b32ba6 commit 2a547ae

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

smart-contracts/dev-environments/hardhat/compile-and-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The output will be something like this:
5555

5656
## Test Your Contract
5757

58-
Hardhat uses Mocha as its testing framework and Chai for assertions, both included in the Hardhat Toolbox.
58+
Hardhat uses [Mocha](https://mochajs.org/){target=\_blank} as its testing framework and [Chai](https://www.chaijs.com/){target=\_blank} for assertions, both included in the [Hardhat Toolbox](https://v2.hardhat.org/hardhat-runner/plugins/nomicfoundation-hardhat-toolbox){target=\_blank}.
5959

6060
To run your tests execute the following command to run your tests:
6161

smart-contracts/dev-environments/hardhat/deploy-a-contract.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Deploy Smart Contracts with Hardhat
3-
description: Learn how to deploy smart contracts to Local Development Node using Hardhatand deployments with Ignition modules.
3+
description: Learn how to deploy smart contracts to Local Development Node using Hardhat and deployments with Ignition modules.
44
categories: Smart Contracts, Tooling
55
---
66

@@ -12,7 +12,7 @@ categories: Smart Contracts, Tooling
1212

1313
This guide will use the Local Development Node as the target network. Here's how to configure and deploy:
1414

15-
1. Run a [Local Development Node](/smart-contracts/dev-environments/local-dev-node.md) to run a local dev node
15+
1. Ensure you have a local development node running. Check the [Local Development Node](/smart-contracts/dev-environments/local-dev-node/){target=_blank} guide on how to run a local dev node.
1616

1717
2. Export your private key and save it in your Hardhat environment.
1818

smart-contracts/dev-environments/hardhat/install-and-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This guide walks you through installing and setting up Hardhat for smart contrac
1414

1515
Before getting started, ensure you have:
1616

17-
- [Node.js](https://nodejs.org/){target=\_blank} (Hardhat requires an LTS version, even major numbers like 18.x, 20.x, or 22.x) and npm installed
17+
- [Node.js](https://nodejs.org/){target=\_blank} (Hardhat requires an LTS Node version, even major numbers like 18.x, 20.x, or 22.x) and npm installed
1818
- Basic understanding of Solidity programming
1919
- Make sure that your Hardhat version is set to 2.x
2020

@@ -45,7 +45,7 @@ Before getting started, ensure you have:
4545
npx hardhat init
4646
```
4747

48-
After that you will be asked to **Create a JavaScript project**.
48+
Afterward, you will be prompted to select certain configurations for your project. You can choose **Create a JavaScript project** and then fill out the remaining options based on your preferences.
4949

5050
After that, your project will be created with three main folders:
5151

0 commit comments

Comments
 (0)