fix(solvers/test): correct instance-bucket paths, v1→v2 competition endpoint, retention note - #659
Open
KaiserSnipes wants to merge 1 commit into
Open
Conversation
…note on the solver test page
The "Sample Test Instances" section pointed at instance URLs that no longer
exist (prod-mainnet/$AUCTION_ID.json -> 404) and at the retired v1
solver_competition endpoint. Verified 2026-09-03: the bucket's layout is
prod/{chain}/auction/{id}.json (staging/... for barn) across mainnet, xdai,
arbitrum-one, base, polygon, bnb, avalanche, linea, ink and plasma; objects
are served gzip-encoded and expire after roughly 30 days; v2 serves.
The 2023 example no longer resolves on v2 or in the bucket, so it is
replaced with a current one that resolves end to end, plus a pointer to
/latest so the example does not rot again.
|
@KaiserSnipes is attempting to deploy a commit to the cow Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Team Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "Sample Test Instances" section of
docs/cow-protocol/tutorials/solvers/test.mdpoints at instance URLs that no longer exist and at the retired v1 competition endpoint. Verified on 2026-09-03:…/prod-mainnet/$AUCTION_ID.json→ HTTP 404. The bucket's live layout isprod/{chain}/auction/{id}.json(andstaging/{chain}/auction/{id}.jsonfor barn), with chain prefixesmainnet,xdai,arbitrum-one,base,polygon,bnb,avalanche,linea,ink,plasma(from alist-type=2&delimiter=/listing of the bucket).Content-Encoding: gzip;curl --compresseddecodes them (noted on the page, since a plain download yields gzip bytes).api/v1/solver_competition/by_tx_hash/…→ 404;api/v2/…→ 200. The page's 2023 example (0x17271e39…, auction 6462225) no longer resolves on v2 or in the bucket, so it is replaced with a current one that resolves end to end: tx0xc90348e3…→ v2by_tx_hash→ auctionId 13730541 →prod/mainnet/auction/13730541.json(HTTP 200) — plus a one-line pointer to/api/v2/solver_competition/latestso the example does not rot the same way.No other content on the page is touched (it is still
draft: true; the rest predates the current stack and is out of scope here).