Contract Control
Ownership analysis and permission monitoring for potential backdoors.
Real-time security analytics and risk scoring for the Solana ecosystem. Identify rugs, honey pots, and malicious contracts before they strike.
> Initiating Deep Scan: Claude Certified Architect
> Analyzing Contract Ownership... [VERIFIED]
> Checking Liquidity Burn... [100.00%]
> Scoring Risk Profile... [MEDIUM]
> Initiating Deep Scan: Claude Certified Architect
> Analyzing Contract Ownership... [VERIFIED]
> Checking Liquidity Burn... [100.00%]
> Scoring Risk Profile... [MEDIUM]
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 |
|---|---|---|---|---|
C Claude Certified Architect | just now | $500.00K | 26/100 | View Audit |
阿 阿默 | just now | $23.67K | 12/100 | View Audit |
C Crawfish by Claude AI | just now | $29.02K | 12/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}`);
}