get_token_largest_accounts
Retrieve the 20 largest accounts for a specified SPL Token on Solana. Input the token mint address to analyze token distribution and identify top holders.
Instructions
Returns the 20 largest accounts of a particular SPL Token type.
Args: mint (str): Pubkey of token mint to query
Returns: str: Largest token accounts in the format "Largest token accounts: {accounts}"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mint | Yes |
Input Schema (JSON Schema)
{
"properties": {
"mint": {
"title": "Mint",
"type": "string"
}
},
"required": [
"mint"
],
"title": "get_token_largest_accountsArguments",
"type": "object"
}