Get Solana Portfolio
monei_get_solana_portfolioGet a complete Solana wallet portfolio showing SOL balance and all SPL token holdings with current USD values.
Instructions
Returns the full token portfolio for the user's Solana wallet, including SOL balance and all SPL token holdings with USD values.
Use this when the user wants a breakdown of what they hold on Solana. For a simple balance check, use monei_get_wallet instead.
Args:
network (string, optional): 'mainnet-beta' (default), 'devnet', or 'testnet'.
Returns: { "address": string, // Solana wallet address "nativeBalance": string, // SOL balance "nativeBalanceUsd": number, "tokens": [ { "mintAddress": string, "name": string, "symbol": string, "balance": string, "valueUsd": number, "priceUsd": number } ], "totalValueUsd": number }
Examples:
"What's in my Solana wallet?" -> call with default network
"Do I have any USDC on Solana?" -> check tokens array for USDC symbol
"What's my SOL balance?" -> check nativeBalance field
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | Solana network to use. Defaults to mainnet-beta. | mainnet-beta |