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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "McDonaldTrumpPepeInu",
"symbol": "BIGMC",
"decimals": 18,
"erc20": true
}
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,5 @@
{
"name": "McDonaldTrumpPepeInu",
"symbol": "BIGMC",
"decimals": 18
}
Copy link

Choose a reason for hiding this comment

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

Bug: Token metadata uses wrong directory structure

The file path uses metadata/tokens/{address}/manifest.json format, but existing tokens in this repository follow the CAIP-19 format at metadata/eip155:1/erc20:{address}.json. This non-standard path structure means the token metadata likely won't be recognized or indexed by the application that consumes this repository.

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: Token metadata missing required erc20 field

The manifest.json is missing the erc20 field. According to the repository guidelines and all existing token entries, ERC20 tokens must include "erc20": true in their metadata. This omission may cause the token to be incorrectly categorized or ignored by consuming applications.

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: Contract address not in EIP-55 checksum format

The contract address 0x0ce132ed0a46fcb20ae208e827522c9b045d7c4e in the file path is entirely lowercase, which indicates it's not in EIP-55 checksum format. All existing token addresses in this repository use proper EIP-55 checksumming with mixed case (e.g., 0x0000000000085d4780B73119b644AE5ecd22b376). The README explicitly states "The address should be in checksum format or it will not be accepted."

Fix in Cursor Fix in Web