Uses of different folders in hardhat lesson-6 ? #122
-
Hi all, Can somebody explain for what purpose scripts are used and tests are used for ? And additionally what is the use of hardhat.config.js? |
Beta Was this translation helpful? Give feedback.
Answered by
PatrickAlphaC
Jun 6, 2022
Replies: 1 comment 1 reply
-
We discuss all that here in the video But basically:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
PatrickAlphaC
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We discuss all that here in the video
But basically:
scripts
is for running scripts to interact with our smart contractstests
for writing tests for our smart contractshardhat.config.js
you can think of this as the entry point for all our scripts. Everything we do in hardhat will pass through this file, which has a number of parameters for working with our project. Like what chains to use, what editions of solidity, etc.