DYOR is not about staring at charts. It's about auditing code logic. Most tools guess; Protocol NAVI calculates.
Once the raw data is ingested by the Yurei Agent, it enters the Protocol NAVI Logic Core. This core does not rely on "sentiment" or "social volume". It relies on three primary mathematical vectors to generate a Deterministic Risk Score.
Vector AAuthority Risk
The most fundamental risk in any SPL token is the retained authority of the deployer. "Verified" tags on explorers mean nothing if the contract is mutable or freezable.
# Scoring Algorithm (Simplified)
if (token.freeze_authority != null) {
score += 15.0; // Immediate penalty
flags.push("CENSORSHIP_RISK");
}
if (token.mint_authority != null) {
score += 25.0; // Critical Risk
}
If a developer retains the ability to freeze your wallet, they effectively own your assets. Protocol NAVI applies a flat penalty of +15.0 to the risk score for this flag alone.
Vector BThe Liquidity Paradox
High TVL (Total Value Locked) is often mistaken for safety. This is a fatal error. Our engine runs a specific calculation:
If a token has $50M in liquidity but 0% of it is locked (burned or vested), the denominator approaches zero, and the risk score approaches infinity. We flag this as "Counterparty Risk". It is not just a "potential rug"; mathematically, it is an unsecured loan to the developer.
Vector CBehavioral Analysis
We track the heartbeat of the minter wallet. By analyzing the Tx_Delta (time difference between transactions) across the first 1,000 blocks, we can fingerprint automated deployment scripts.
| Signal | Threshold | Interpretation |
|---|---|---|
| Tx_Delta | < 10ms | Verified as a Bot/Script |
| Sniper Count | > 5 | Block 0 buys detected |
| Gini Coefficient (Top 10) | > 0.90 | Rug Probability → Certainty |
Layer 3The Final Verdict
All vectors feed into the Weighted Summation Algorithm.
Finally, Protocol NAVI (the LLM) translates this pure math into plain English context for the user, explaining why the score is 79.3, rather than just showing a red shield.
"This token is detecting a CRITICAL RISK (Score: 79.3 / 100).
The primary concerns are: (1) The developer retains an active Freeze Authority, which allows them to censor your wallet. (2) Liquidity is 100% unlocked, meaning the developer can remove all value at any time. (3) The top 10 holders control over 93% of supply.
Recommendation: Immediate Evasion Advised.