Invalid address error while deploying dynamic svg nft contract #5353
Answered
by
Nlferu
Mayank-Pandey1
asked this question in
Q&A
-
I get the following error when I try to deploy the
repository link of the project: |
Beta Was this translation helpful? Give feedback.
Answered by
Nlferu
Apr 23, 2023
Replies: 1 comment 1 reply
-
Hello @Mayank-Pandey1 You have incorrectly built contructor in your constructor(
address priceFeedAddress,
string memory lowSvg,
string memory highSvg
) or correct your args = [lowSvg, highSvg, ethUsdPriceFeedAddress]; |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Mayank-Pandey1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @Mayank-Pandey1
You have incorrectly built contructor in your
DenamicSvgNft
contract. You have to pass constructor arguments in same order as they are in contract, so correct yourDenamicSvgNft
into below:or correct your
03-dynamic-svg-nft.js
into below: