-
Notifications
You must be signed in to change notification settings - Fork 404
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
Intermittent Upload Failure of Hardhat Artifact Files to Sourcify Verifier #1270
Comments
Thanks for the detailed description! From what I see we have some performance issues when adding large files. At first sight the hash function we use to get identifiers for the files in session seems to take quite a long time. I couldn't reproduce it on https://staging.sourcify.dev/#/verifier fully but there it also seems to take a long time. We should replace the keccaks with more lightweight identifier generators. |
I can save couple seconds locally by changing how we create identifiers for the session: 5800643 But the main issue seems to come in sourcify/packages/lib-sourcify/src/lib/validation.ts Lines 303 to 308 in 5800643
Here we need to use In the meantime I can recommend you to use hardhat-verify directly if possible. That way you don't have to use the session API and you don't have to send the source files that are not needed which might be happening by dumping the whole build artifact. |
@kuzdogan ok, thanks for the update. Not sure what the sourcify cloud set up is like, but if each instance has multiple cores available you could look to parallelize the execution of keccak256str across multiple worker threads. |
@kuzdogan not much has changed in my experience, not sure if autoscaling is enabled to handle increased load? maybe tighten the per IP rate limits, as the service really hasn't been functional since I created this issue. |
Yes sorry we found out a general performance issue with the session APIs, affecting not only this contract but almost all. Since the session APIs are not used much, it seemed to have gone unnoticed. If the second keccak generation was the issue this would have manifested itself in the non-session too, so the problem is not there. In the meantime, can you please share the chainId and the address of the contract you want to verify? If just verifying this contract anyway solves your issue you can verify via the non session API or we can verify for you. I'm off this week so @marcocastignoli will take over this issue. |
@kuzdogan sure the contracts are on avalanche c-chain(chainId 43114). I've verified them on the https://snowtrace.io/ explorer. ICHIVaultFactory: 0xDD2346e0dA9540792C2F2E86016bc44Ba39DC72d |
I was able to manually verify the ICHIVaultFactory at We are soon going to handle these cases it's just not added to the verification yet cc: @marcocastignoli We still need to fix the performance issue in the session verification. |
Hey @kuzdogan I just wanted to follow up on the progress of this issue. Sourcify is basically not functional at least whenever I try to use it. |
@mshakeg Sorry for the late response. I'm trying to further debug into this. Could you please try verifying in an incognite browser window, or after deleting the cookies? The issue seems to be with the existing sessions |
I discovered that we are creating a new session for every request (not only the ones calling "/session" endpoints). I think that in production, a new session is created for each of the hundreds of requests we receive every second causing the session storage to become very slow. Before moving on with #1321 I would try to limit the session usage to only "/session" endpoints and see if it fixes the problem. |
@marcocastignoli Great, let's see if this solves the issue, and if so do a quick release. We should move away from the MemorySession regardless but the fixing this should be ASAP |
The issue should be fixed with the latest release @mshakeg Sorry for taking too long to fix this. |
@kuzdogan thanks, it seems to be much better now. |
Description
I've been experiencing intermittent failures when trying to verify contracts by uploading Hardhat artifact files (
build-info/{hash}.json
) to the Sourcify Verifier (https://sourcify.dev/#/verifier). This issue has only started occurring recently; I had been able to upload files successfully in the past without any problem. The failures are sporadic, with some attempts succeeding while others fail(or never complete"Checking contracts"
) without a clear pattern or identifiable cause.Steps to Reproduce
build-info/{hash}.json
file generated by Hardhat. Such as the attached file."Checking contracts"
Expected Behavior
The expected behavior is for the file to be uploaded successfully every time, allowing the contract to be verified without issue.
Actual Behavior
The upload process intermittently fails. Sometimes, it proceeds as expected, but at other times, the upload does not complete, and the verification process cannot proceed. There is no error message displayed on the UI.
4be0a250f2e0bdcedfcf348751eb11c6.json
View in Huly HI-507
The text was updated successfully, but these errors were encountered: