Replies: 3 comments 3 replies
-
Double check the brackets in your |
Beta Was this translation helpful? Give feedback.
-
i ran into a similar issue a while back and I played with compiler versions, adding a bunch of different ones till it worked. it might be a bug in the version of hardhat your using or one of its dependecies. unless its something else causing the issue. |
Beta Was this translation helpful? Give feedback.
-
I think the problem is in the newly made "MockV3Aggregator.sol" file. Oddly enough I had to add a semicolon at the end of the pragma statement pragma solidity ^0.6.0; and it worked like a charm. |
Beta Was this translation helpful? Give feedback.
-
Hi.
As per Lesson 7 timestamp 10:40 (ish)
Created MockV3Aggregator.sol:
In hardhat.config.js:
```
// solidity: "0.8.8",
solidity: {
compilers: [
{ version: "0.8.8" },
{ version: "0.6.0" },
],
},
Beta Was this translation helpful? Give feedback.
All reactions