Reference

Documentation

Everything you need to know about using Clawbyte AI

Getting Started

What is Clawbyte AI?

Clawbyte AI is an AI-powered security scanner for Solana wallets. It analyzes wallet activity, transaction patterns, and token holdings to generate a deterministic risk score (0–100) along with actionable AI-generated security insights.

How to Scan a Wallet

01Navigate to the Scanner
02Enter any Solana wallet address (base58 format, 32–44 characters)
03Click "Scan Wallet" - no wallet connection required
04Review the risk score, findings, and AI insights
05Share the report or export via API

The same wallet always produces the same score under identical blockchain conditions - ensuring transparency and reproducibility.

Security Scoring

75 – 100Low Risk
90/100

Healthy wallet with consistent activity and clean history.

50 – 74Medium Risk
62/100

Some risk indicators present. Review AI insights for details.

0 – 49High Risk
30/100

Significant security concerns detected. Proceed with caution.

Scoring Factors

Transaction History

Volume, frequency, and on-chain patterns

30%

Token Diversity

Number and type of tokens held

20%

Wallet Age

Account creation and activity duration

20%

Activity Patterns

Regularity and behavioral indicators

15%

Known Interactions

Engagement with verified protocols

15%

AI Insights

After scoring, our AI model generates a natural-language summary of the wallet's security posture. This includes context on findings, risk explanations, and actionable recommendations - all based on on-chain data.

Example AI Output

"This wallet demonstrates consistent on-chain behavior over 247 days with 1,234 transactions. No drainer interactions or phishing approvals detected. Token holdings are diversified across 12 assets. Risk classification: LOW."

API Reference

Endpoint

POST/api/scan

Authentication

No API key required. Include x-viewer-wallet header to access token holder benefits.

Request

{
  "wallet": "[SOLANA_WALLET_ADDRESS]",
  "isPublic": false
}

Response

{
  "ok": true,
  "scan": {
    "wallet": "YOUR_WALLET_ADDRESS",
    "score": 82,
    "riskLevel": "LOW",
    "findings": [
      "Wallet age: 247 days (established)",
      "Transaction count: 1,234 (active)",
      "Token diversity: 12 unique tokens"
    ],
    "aiSummary": "This wallet shows healthy activity...",
    "walletDetails": {
      "solBalance": 12.5432,
      "tokenCount": 12,
      "nftCount": 3,
      "txCount": 1234,
      "accountAgeDays": 247,
      "lastActivity": "2026-02-15T10:30:00.000Z"
    },
    "createdAt": "2026-02-15T10:30:00.000Z"
  }
}

Rate Limits

Standard

100 req/min

Per IP address

Token Holders

Unlimited

Requires 5M tokens

Error Codes

400Invalid wallet address
404No on-chain activity found
429Rate limit exceeded
500Internal server error

Integration Guide

Embedding Clawbyte AI

Integrate Clawbyte AI scans into your dApp, DAO, or platform to verify wallet security before critical operations.

Common Use Cases

Treasury Management

Verify multisig wallets before large transfers

Community Gating

Require score thresholds for DAO membership

OTC Trading

Screen counterparty wallets before trades

Airdrop Eligibility

Filter high-risk wallets from distributions

Example: Score-Gated Action

async function verifyWallet(wallet: string): Promise<boolean> {
  const res = await fetch('/api/scan', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({ wallet }),
  });
  const { scan } = await res.json();
  return scan.score >= 75 && scan.riskLevel === 'LOW';
}

if (await verifyWallet(recipientAddress)) {
  proceed(); // safe to transact
}

Frequently Asked Questions

How accurate are the risk scores?

Clawbyte AI uses deterministic heuristics combined with AI analysis. The same wallet always receives the same score under identical blockchain conditions, calibrated against thousands of known wallet patterns.

Do I need to connect my wallet to scan?

No. Clawbyte AI performs read-only analysis using public blockchain data. You never need to sign transactions or connect your wallet to scan any address.

What data do you store?

We store: wallet address, scan timestamp (UTC), risk score, findings, and AI summary. We never store private keys, seed phrases, or any sensitive data.

Can I scan wallets on mainnet?

Yes. Clawbyte AI supports both Solana devnet and mainnet. Toggle your preferred network in settings.

How often should I re-scan?

Wallet security posture changes over time. We recommend re-scanning before major transactions or at least monthly for active wallets.

Is Clawbyte AI open source?

The scoring algorithm and AI models are proprietary to ensure security and prevent gaming.

Support & Contact