AI Scores Tokens
3-layer pipeline: Rule Engine (56 features) + XGBoost ML (ONNX) + GPT-4o-mini reasoning. Scores every monitored token 0-100.
3-layer AI scores tokens, publishes to Solana PDA, and GuardedVault smart contract physically blocks risky swaps. Not a warning — an enforcer.
> Initiating Deep Scan: AIX / Ai Xovia
> Analyzing Contract Ownership... [VERIFIED]
> Checking Liquidity Burn... [100.00%]
> Scoring Risk Profile... [LOW]
> Initiating Deep Scan: AIX / Ai Xovia
> Analyzing Contract Ownership... [VERIFIED]
> Checking Liquidity Burn... [100.00%]
> Scoring Risk Profile... [LOW]
Autonomous AI agent publishes risk scores on-chain. Smart contracts read them to protect your funds in real time.
3-layer pipeline: Rule Engine (56 features) + XGBoost ML (ONNX) + GPT-4o-mini reasoning. Scores every monitored token 0-100.
Scores are written to Solana PDAs via the RugSignal Anchor program. Fully verifiable on Explorer, immutable, and composable.
Smart contract reads oracle score and physically blocks risky swaps. Not a warning — your funds can't leave the vault if the token is dangerous.
Free users get 5 oracle operations per day
Five pillars of automated security auditing
Ownership analysis and permission monitoring for potential backdoors.
Whale tracking and holder concentration alerts to prevent dumping.
LP burn status, lock duration metrics, and depth analysis.
MEV activity monitoring and bot pattern recognition in real-time.
Volume consistency and historical trading pattern validation.
Latest token launches monitored by SolanaTrust
| Token Name | Launch Time | Liquidity | Risk Score | Actions |
|---|---|---|---|---|
A AIX / Ai Xovia | just now | $22.42 | 2/100 | View Audit |
$ $WIF / dogwifhat | just now | $163.30K | 4/100 | View Audit |
$ $WIF / dogwifhat | just now | $163.25K | 4/100 | View Audit |
Scalable security intelligence for every stakeholder
Automated rug-check tools to protect your daily swaps.
Integrate our risk scores directly into your user's signing experience.
Whitelist protocols based on verifiable onchain health metrics.
High-fidelity data for deep forensic onchain investigations.
Built by operators focused on product delivery, infrastructure, and Web3 execution.
CEO
Focus
CTO
Focus
Simple access tiers for individual users, active traders, and enterprise teams.
Live launch context
Early launch radar, warnings, and staged confidence on every report.
Account-linked workflow
Watchlist, usage limits, and dashboard state tied to your account.
Operator support
Upgrade and enterprise onboarding go directly through Telegram.
Freemium
Starter access for launch checks and basic platform usage.
Usage
5 requests/day
Premium
Full token workflow for active traders and small teams.
Usage
200 requests/day
Enterprise
Tailored onboarding, limits, and support for serious operators.
Usage
Custom limits
Integrate SolanaTrust into your project with just a few lines of code. Our low-latency API provides real-time risk assessments for any Solana mint address.
const trust = require('@solanatrust/sdk');
const client = new trust.Client(process.env.ST_KEY);
async function checkRisk(mintAddress) {
const score = await client.getRiskScore(mintAddress);
if (score.riskLevel === 'CRITICAL') {
return blockTransaction();
}
console.log(`Risk Score: ${score.total}`);
}