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
Binary file added logo.png
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": "USD University",
"symbol": "USDU",
"decimals": 6,
"erc20": true,
"logo": "./icons/eip155:56/erc20:0x94a5642190d0f07f6510a0364bae417cf6e625f1.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 file path structure violates CAIP-19 format

The file path uses metadata/eip155/56/0x... instead of the required CAIP-19 format metadata/eip155:56/erc20:0x.... All existing BSC token files follow the pattern metadata/eip155:56/erc20:0xAddress.json with colons separating the namespace components and including the erc20: prefix. The build system in buildindex.js expects this format to generate the correct CAIP-19 asset ID key eip155:56/erc20:0xAddress for the contract map.

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: File placed in incorrect directory structure

The metadata file is placed in metadata/eip155/56/ but should be in metadata/eip155:56/ (with a colon). Additionally, the filename should be erc20:0x94a5642190d0f07f6510a0364bae417cf6e625f1.json to match the CAIP-19 format used by all other BSC token metadata files. This incorrect location prevents the metadata from being discovered by systems expecting the standard directory structure.

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: File placed in incorrect directory structure

The metadata file is placed in metadata/eip155/56/ but should be in metadata/eip155:56/ (with a colon). Additionally, the filename should be erc20:0x94a5642190d0f07f6510a0364bae417cf6e625f1.json to match the CAIP-19 format used by all other BSC token metadata files in the repository. This incorrect location prevents the metadata from being discovered by systems expecting the standard CAIP-19 directory structure.

Fix in Cursor Fix in Web