-
Notifications
You must be signed in to change notification settings - Fork 30
fix: update img urls for sol tokens #1414
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "Solana Token List", | ||
| "timestamp": "2026-04-03T19:23:56.382Z", | ||
| "timestamp": "2026-04-16T20:47:19.536Z", | ||
| "version": { | ||
| "major": 1, | ||
| "minor": 0, | ||
|
|
@@ -12,6 +12,14 @@ | |
| "address": "So11111111111111111111111111111111111111112", | ||
| "decimals": 9, | ||
| "name": "Wrapped SOL", | ||
| "symbol": "WSOL", | ||
| "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png" | ||
| }, | ||
| { | ||
| "chainId": 1000000001, | ||
| "address": "11111111111111111111111111111111", | ||
| "decimals": 9, | ||
| "name": "SOL", | ||
| "symbol": "SOL", | ||
| "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png" | ||
| }, | ||
|
|
@@ -52,21 +60,24 @@ | |
| "address": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", | ||
| "decimals": 6, | ||
| "name": "USDT", | ||
| "symbol": "USDT" | ||
| "symbol": "USDT", | ||
| "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/logo.svg" | ||
| }, | ||
| { | ||
| "chainId": 1000000001, | ||
| "address": "CtzPWv73Sn1dMGVU3ZtLv9yWSyUAanBni19YWDaznnkn", | ||
| "decimals": 8, | ||
| "name": "OKX Wrapped BTC", | ||
| "symbol": "xBTC" | ||
| "symbol": "xBTC", | ||
| "logoURI": "https://static.coinall.ltd/cdn/oksupport/common/20250512-095503.72e1f41d9b9a06.png" | ||
| }, | ||
|
Comment on lines
+72
to
73
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Read-only URL health check for newly added logo URIs.
set -euo pipefail
urls=(
"https://static.coinall.ltd/cdn/oksupport/common/20250512-095503.72e1f41d9b9a06.png"
"https://i.imgur.com/fLpAyY4.png"
"https://gateway.pinata.cloud/ipfs/bafkreiduq5c43xdbcbhzx3plcdtz2jwkjpzlm2hwkoxhjgmnmqbl6otyfu"
)
for u in "${urls[@]}"; do
echo "=== $u"
curl -sSI --max-time 15 "$u" | sed -n '1,10p'
echo
doneRepository: cowprotocol/token-lists Length of output: 1320 🏁 Script executed: cat -n src/public/NearSolana.json | sed -n '65,130p'Repository: cowprotocol/token-lists Length of output: 2715 Logo URIs use non-canonical hosts that may break over time. The new Use a stable canonical source (project-controlled repo/CDN or immutable IPFS CID URL) for these logos, consistent with the existing GitHub raw pattern used for USDC (line 80) or Arweave (line 95). 🤖 Prompt for AI Agents |
||
| { | ||
| "chainId": 1000000001, | ||
| "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", | ||
| "decimals": 6, | ||
| "name": "USD Coin", | ||
| "symbol": "USDC" | ||
| "symbol": "USDC", | ||
| "logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png" | ||
| }, | ||
| { | ||
| "chainId": 1000000001, | ||
|
|
@@ -88,7 +99,8 @@ | |
| "address": "J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr", | ||
| "decimals": 8, | ||
| "name": "SPX6900 (Wormhole)", | ||
| "symbol": "SPX" | ||
| "symbol": "SPX", | ||
| "logoURI": "https://i.imgur.com/fLpAyY4.png" | ||
| }, | ||
| { | ||
| "chainId": 1000000001, | ||
|
|
@@ -103,7 +115,8 @@ | |
| "address": "FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P", | ||
| "decimals": 6, | ||
| "name": "Melania Meme", | ||
| "symbol": "MELANIA" | ||
| "symbol": "MELANIA", | ||
| "logoURI": "https://gateway.pinata.cloud/ipfs/bafkreiduq5c43xdbcbhzx3plcdtz2jwkjpzlm2hwkoxhjgmnmqbl6otyfu" | ||
| }, | ||
| { | ||
| "chainId": 1000000001, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.