Skip to content

Commit

Permalink
Update 3. Writing the deployment script.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fareeha25 authored Jan 24, 2024
1 parent 58b7530 commit d1412cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ We have gotten most of the things set up already we just have to take care of tw

1. `Ethers.js` - `Ethers.js` is a very popular library, that makes it easy for us to interact with the ethereum network. We will be using this library to deploy our smart contract.
```
npm install --save-dev @nomiclabs/hardhat-ethers ethers@^5.0.0
npm install --save-dev @nomiclabs/hardhat-ethers ethers@^5.0.0 --force
```
2. To interact with ethereum, we will also need to set up the network we are using to do so. This tutorial is built on the mumbai test network which allows developers to test out there software without spending real eth.
Expand Down Expand Up @@ -63,4 +63,4 @@ The output of the above command will be similar to below:
You should be able to see a newly created `artifacts` folder inside your directory. Keep an eye out for this, because we’ll be using this pretty soon.
In the next lesson, we will finally deploy our contract!
In the next lesson, we will finally deploy our contract!

0 comments on commit d1412cb

Please sign in to comment.