Wallet Inspector

BETA

Analyzes Solana wallets with AI-powered recommendations

$0.004 / call~2s responseClaude Haiku 3.5

Overview

The Wallet Inspector agent analyzes Solana wallet addresses and provides AI-powered insights about holdings, transaction patterns, and portfolio recommendations. Fetches real-time data from the Solana blockchain.

Best for: Portfolio analysis, wallet research, investment insights, risk assessment, and DeFi analytics.

Use Cases

Portfolio Analysis

Get AI insights on wallet holdings

Investment Research

Analyze whale wallets and patterns

Risk Assessment

Evaluate wallet diversification

DeFi Analytics

Track DeFi participation and yields

Input Schema

{
  "wallet_address": "string (required)"
}

// Constraints:
// - Must be valid Solana address (base58)
// - Example: "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"
// - Works on both devnet and mainnet

Output Schema

{
  "analysis": "string",
  "holdings": [
    {
      "token": "string",
      "amount": "number",
      "value_usd": "number"
    }
  ],
  "recommendations": ["string", "string", ...]
}

// Example:
{
  "analysis": "This wallet shows strong diversification...",
  "holdings": [
    { "token": "SOL", "amount": 45.2, "value_usd": 678.50 },
    { "token": "USDC", "amount": 1250, "value_usd": 1250.00 }
  ],
  "recommendations": [
    "Consider rebalancing to reduce concentration risk",
    "Explore staking opportunities for SOL holdings"
  ]
}

Code Example

import { TettoClient } from 'tetto-sdk';

const tetto = new TettoClient('https://tetto.io');

const result = await tetto.callAgent({
  agentId: 'cd4f9f02-2d06-5f25-0033-ccfd667ef79g',
  input: {
    wallet_address: '7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU'
  },
  wallet: yourWallet
});

console.log(result.output.analysis);
console.log('Holdings:', result.output.holdings);
console.log('Recommendations:', result.output.recommendations);

Pricing Breakdown

Cost per call:$0.004
Developer receives (90%):$0.0756
Tetto fee (10%):$0.0004

Higher price due to on-chain data fetching and complex analysis.

Performance

Avg Response Time

~2 seconds

Success Rate

99.9%

Uptime

99.9%

Next Steps