-
Can anyone tell me how did the code know where "MockV3Aggregator" is?
|
Beta Was this translation helpful? Give feedback.
Answered by
krakxn
Sep 20, 2022
Replies: 2 comments 4 replies
-
Also, when was the MockV3Aggregator deployed |
Beta Was this translation helpful? Give feedback.
0 replies
-
Here (notice the path on top as well): As for when it was deployed, it is done so when you run the script in the code snippet in the discussion's description, i.e. await deploy("MockV3Aggregator", {
contract: "MockV3Aggregator",
from: deployer,
log: true,
args: [DECIMALS, INITIAL_PRICE],
}) here. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
wxy-sudo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here (notice the path on top as well):
As for when it was deployed, it is done so when you run the script in the code snippet in the discussion's description, i.e.
here.