Token Risk Index
The Token Risk Index is a simple flag system that tags token contracts with basic safety metadata. It's used during wallet scans and signal evaluation to give immediate context about the token's properties.
No scoring or aggregation. Just binary checks tied to known risk traits.
Data Points
Each token is evaluated for the following:
{
isMintable: boolean,
isTradingPaused: boolean,
isVerified: boolean
}
These are resolved using metadata fetched from GoPlus, Solana token program flags, or any preloaded cache.
Example Output
{
symbol: "ZAZA",
address: "7TxM...LkD1",
isMintable: true,
isTradingPaused: false,
isVerified: false
}
This data is merged into the wallet's token list and passed to downstream components like:
WalletTokenTable
TokenValueBar
WalletSummary
AI prompt context
System Behavior
If
isMintable === true
, signal score weight may be adjusted upwardIf
isVerified === false
, token is visually flagged in the UIIf
isTradingPaused === true
, token is excluded from value totals and shown in gray
All checks are run client-side using available metadata at load time. There is no blocking or filtering, this is metadata only.
Last updated