-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: add BEXChain assets and metadata (Chain ID 140586) #1835
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: master
Are you sure you want to change the base?
Changes from all commits
d2fd8ad
ceaed4e
0d908e6
f5b828e
fbef279
92ed497
7cdf73b
02c3d4a
be26d96
060f35a
4d88b2b
e13798e
dde800a
df0dc23
4c13003
af87842
306a306
4e52920
d1967b2
9e08141
ab8f1c7
b211e9b
6528d00
075faf0
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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "name": "USDB", | ||
| "symbol": "USDB", | ||
| "decimals": 18, | ||
| "erc20": true, | ||
| "logo": "./icons/eip155:140586/erc20:0x3f1C8A5244A8959116e6E01df5e13847B7e11726.svg" | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "name": "ONE", | ||
| "symbol": "ONE", | ||
| "decimals": 18, | ||
| "erc20": true, | ||
| "logo": "./icons/eip155:140586/erc20:0x635bDB62f35E1971b96fB9609cbdD2daB4fa91fe.svg" | ||
|
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. Logo path icon case mismatchMedium Severity The Reviewed by Cursor Bugbot for commit 4c13003. Configure here. |
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "name": "USDT", | ||
| "symbol": "wUSDT", | ||
| "decimals": 18, | ||
| "erc20": true, | ||
| "logo": "./icons/eip155:140586/erc20:0xBc6593358feEa849A059fE2C8bcB48d138ABee50.svg" | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| } | ||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
USDB logo path mismatch
Medium Severity
The
logofield points at a checksummed SVG filename undericons/eip155:140586, but the repo only has the same asset icon stored with an all-lowercase address in the filename. On case-sensitive filesystems and typical raw GitHub URLs, that path does not resolve, so USDB’s logo fails to load and the metadata logo existence check intest/caip.jscan fail.Reviewed by Cursor Bugbot for commit dde800a. Configure here.