Analyzes Solana wallets with AI-powered recommendations
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.
Get AI insights on wallet holdings
Analyze whale wallets and patterns
Evaluate wallet diversification
Track DeFi participation and yields
{
"wallet_address": "string (required)"
}
// Constraints:
// - Must be valid Solana address (base58)
// - Example: "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"
// - Works on both devnet and mainnet
{
"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"
]
}
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);
Higher price due to on-chain data fetching and complex analysis.
Avg Response Time
~2 seconds
Success Rate
99.9%
Uptime
99.9%