Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
425 changes: 425 additions & 0 deletions images/0x1f891d25a386e6f67ead37d9bfaf5c444213a134.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "SkyTrade Pro (SUSDT)",
"symbol": "SUSDT",
"decimals": 18,
"erc20": true,
"logo": "./images/0x1f891d25a386e6f67ead37d9bfaF5C444213a134.png"
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Metadata Casing and Logo Path Errors

The contract address 0x1f891d25a386e6f67ead37d9bfaF5C444213a134 in this metadata file and its logo path uses inconsistent casing compared to the standard lowercase format. The logo path itself is also incorrect, as it points to ./images/CONTRACT_ADDRESS.png instead of the expected images/bnb-chain/CONTRACT_ADDRESS/logo.png structure. This will result in broken logo links and potential lookup issues.

Fix in Cursor Fix in Web

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "SkyTrade Pro",
"symbol": "SUSDT",
"decimals": 18,
"logoURI": "https://github.com/skytradepro/contract-metadata/blob/master/images/0x1f891d25a386e6f67ead37d9bfaf5c444213a134.png",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Incorrect Logo URL Format

The logoURI points to a GitHub web interface URL instead of the raw image file. This means applications expecting a direct image will not display the logo properly.

Fix in Cursor Fix in Web

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@skytradepro are you able to address this comment as well as provide better quality image?

"tags": ["defi", "token", "bsc"],
"description": "Decentralized Finance token."
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Logo URL Incorrect, Path Duplicate Issue

The logoURI points to a GitHub blob URL, serving an HTML page instead of the direct image, which prevents the logo from displaying. Additionally, the file path contains a duplicated metadata/eip155:56/ segment, placing the file in an unexpected location.

Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Logo URL Incorrect, Path Duplicated, Case Mismatch

The logoURI points to a GitHub blob URL, which serves the GitHub page instead of the raw image content. The file path includes a duplicated metadata/eip155:56/ segment. Additionally, the contract address in the filename uses lowercase hex characters (bfaf5c) while other files in this commit use uppercase (bfaF5C), which might cause lookup issues.

Fix in Cursor Fix in Web