-
Notifications
You must be signed in to change notification settings - Fork 499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SUGGESTION OF FIX] "TypeError: customChains is not iterable" When verifying contract. #140
Comments
I got the exact same error, and adding the property to etherscan as per your suggestion made my code work! Thank you 😁
Would be great to get an explanation from the devs as to why this works. |
shawnesquivel
added a commit
to shawnesquivel/hardhat-fund-me-fcc
that referenced
this issue
Dec 15, 2022
As per this issue PatrickAlphaC#122 and referencing this solution used from hardhat repo smartcontractkit/hardhat-starter-kit#140
Thanks you solution worked for me
|
Thanks for the solution |
tyler-tennant
added a commit
to tyler-tennant/hardhat-fund-me-fcc
that referenced
this issue
Sep 2, 2024
As per this issue PatrickAlphaC/hardhat-fund-me-fcc#122 and referencing this solution used from hardhat repo smartcontractkit/hardhat-starter-kit#140
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PROBLEM
I get the next error when running 'verify' on typescript:
another error that you can see for the same reason is when running
yarn hardhat verify --network <NETWORK> <CONTRACT_ADDRESS> <CONSTRUCTOR_PARAMETERS>
is the next one:the solution is the same one.
SOLUTION
The fix is to add
customChains: [],
afther the element on this line:hardhat-starter-kit/hardhat.config.ts
Line 73 in ca2bd3d
so it will be like this
The text was updated successfully, but these errors were encountered: