Fetch ENS-hosted lists via eth.limo instead of the wispy-bird worker proxy - #3310
Merged
Merged
Conversation
…proxy The wispy-bird-88a7 Cloudflare worker is an open HTTP proxy (fetches any ?url= target) that we want to decommission as a security hole. It was only needed because *.eth.link lacked usable CORS headers; eth.limo serves ENS content with access-control-allow-origin: * so no proxy is needed. The proxy path is also currently broken: every ENS list on the site returns 403 through it today, while 11/13 return 200 via eth.limo (the other two, tokenlist.dharma.eth and tokenlist.zerion.eth, are dead ENS names that fail on both paths). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Author
|
Verified in the Vercel preview vs production, full network capture from both: ENS lists (the 13 this PR touches):
Non-ENS lists (21, untouched by this PR): identical results on prod and preview — same 10 work, same 11 fail either way ( So every tile still broken in the preview is broken on production today for reasons unrelated to the proxy. A registry prune of the dead lists would be a sensible follow-up. |
marktoda
marked this pull request as ready for review
August 31, 2026 21:41
uni-guillaume
approved these changes
Sep 2, 2026
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.
Why
wispy-bird-88a7.uniswap.workers.devis an open HTTP proxy (it fetches any?url=target) deployed in Aug 2020 solely because*.eth.linklacked usable CORS headers. Security wants to decommission it (1.2M req/mo, largely abuse). eth.limo serves ENS content withaccess-control-allow-origin: *, so the site can fetch lists directly.What's already broken
The proxy path currently returns 403 for every ENS list on the site, so ENS lists appear to be broken in production today. Via eth.limo, 11 of 13 return 200 with valid JSON. The two failures (
tokenlist.dharma.eth,tokenlist.zerion.eth) are dead ENS names that fail through the proxy as well — candidates for removal from the registry in a follow-up.Changes
getListURLFromListID:https://<name>.eth.limoinstead of the worker proxygetURLFromQuery(list page): sameCompanion PR in Uniswap/data switches the tokenlists scraper the same way. Once both land, the worker can be killed (or first restricted to
*.eth.linktargets during a deprecation window for third-party users who hardcode it).🤖 Generated with Claude Code