We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 71ae63c + 8e210d8 commit 9b6fd9dCopy full SHA for 9b6fd9d
lessons/projects/4.mdx
@@ -186,13 +186,13 @@ with that of your contract.
186
187
For example, since our contract is using Solidity `0.8.12`:
188
189
-```
190
-require("@nomicfoundation/hardhat-toolbox");
191
-require('dotenv').config();
+```javascript
+require('@nomicfoundation/hardhat-toolbox')
+require('dotenv').config()
192
193
module.exports = {
194
- solidity: "0.8.12",
195
-};
+ solidity: '0.8.12',
+}
196
```
197
198
## What do we want to test on our TierNFT contract?
0 commit comments