-
Notifications
You must be signed in to change notification settings - Fork 413
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
[ui]: Lookup does not include deprecated chains #860
Comments
Do we have a complete list of the deleted chains? If not I can make it looking at the |
No we haven't stored it anywhere. AFAIK it is only the deprecated Ethereum testnets. Instead of looking all the way to the file history, you can check the chainId's that exist in the file system ( |
I compared the production repo with the sourcify-chains.ts, these are the networks that were removed:
|
Looks like this broke a test |
which test? circleci's node-16-test are working |
The tests were broken with 2c54874 but seems to be back with 35be29d. However I see an extra "View in Sourcify Repository" link to chainId=0 See https://staging.sourcify.dev/#/lookup/0x1F98431c8aD98523631AE4a59f267346ea31F984 |
Is not what we wanted with #869 ? |
Oh sorry I didn't noticed it, now it's clear |
fixed with the commit f464ef6 |
Because we deleted the deprecated chains (Ropsten, Kovan etc.) the UI does not ask for verified contracts (
/checkAllByAddress
) for them. Even if we have deprecated them, we should include them and mark themsupported: false
. The underlying reason is not with the UI per se, but withsourcify-chains.ts
.Also in the future, it might make sense to have an endpoint to look for all chains without
checkByAddress
requiring all chains to be passed.Example
0x136f0cC844A873B61E4adF46f885D4e112D3fC20 can be seen in the repo.sourcify.dev but in the UI it is not found
View in Huly HI-406
The text was updated successfully, but these errors were encountered: