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
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,9 @@
{
"eip155:56/erc20:0xe75c25caaab756105e43abec37d73fa899e99534": {
"name": "PayPal USD",
"symbol": "PYUSD",
"decimals": 18,
"erc20": true,
"logo": "./icons/eip155:56/erc20:0xe75c25caaab756105e43abec37d73fa899e99534.png"
}
}
Copy link

Choose a reason for hiding this comment

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

Bug: Fraudulent token impersonating official PayPal USD stablecoin

This PR appears to add a fraudulent token impersonating PayPal USD (PYUSD). Official PYUSD is only deployed on Ethereum and Solana according to PayPal/Paxos documentation, not on BNB Chain. The legitimate PYUSD uses 6 decimals, while this token claims 18 decimals. The PR description lists testssa.xyz as the official website and unofficial social media accounts (@paypalUsdbep20, t.me/pyusdBnb), which are not affiliated with PayPal. Adding this metadata would legitimize a scam token designed to deceive users into thinking it's the real PayPal stablecoin.

Additional Locations (1)

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: JSON schema uses incorrect nested structure format

The metadata file uses a nested JSON structure where properties are wrapped under the "eip155:56/erc20:..." key. All other token metadata files in the same directory use a flat structure with name, symbol, decimals, erc20, and logo as direct root-level properties. This schema inconsistency would cause parsing failures for any consumer expecting the standard flat format used by all other tokens in the repository.

Fix in Cursor Fix in Web