Skip to content
Open
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
Expand Up @@ -23,4 +23,5 @@ from (Values
, ('solana', 'ZUSD','FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4', 6,'Dollar-Pegged','GMO-Z')
, ('solana', 'PAI', 'Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS', 6,'Crypto Stablecoin', 'Parrot')
, ('solana', 'FDUSD', '9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u', 6,'Fiat Stablecoin', 'First Digital Labs')
, ('solana', 'CASH', 'CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH', 6,'Fiat Stablecoin', 'CASH')
Copy link

Copilot AI Jan 18, 2026

Choose a reason for hiding this comment

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

The name field should contain the issuer or organization name rather than repeating the token symbol. Looking at other entries, the name field contains values like 'Circle' (for USDC), 'Tether' (for USDT), 'Paxos' (for PYUSD), etc. For Phantom Cash, this should be 'Phantom' or the actual issuer organization name instead of 'CASH'.

Suggested change
, ('solana', 'CASH', 'CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH', 6,'Fiat Stablecoin', 'CASH')
, ('solana', 'CASH', 'CASHx9KJUStyftLFWGvEVf59SGeG9sh5FfcnZMVPCASH', 6,'Fiat Stablecoin', 'Phantom')

Copilot uses AI. Check for mistakes.
Copy link

Choose a reason for hiding this comment

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

Name field uses token symbol instead of issuer

Low Severity

The name field for the CASH token entry uses 'CASH' (the token symbol) instead of the issuer name. According to the schema, the name field contains "The name of the issuer or protocol of the stablecoin". All other entries follow this convention using issuer names like 'Circle', 'Tether', 'Paxos'. For Phantom Cash (issued by Phantom wallet), the value likely should be 'Phantom' rather than the token symbol.

Fix in Cursor Fix in Web

) as t(blockchain, symbol, address, decimals, backing, name)
Loading