get_token_accounts_by_delegate
Retrieve all SPL Token accounts managed by a specific delegate, including details on associated mints, for accurate token delegation tracking on Solana.
Instructions
Returns all SPL Token accounts by approved delegate.
Args: delegate (str): Public key of delegate owner mint (str): Token mint address
Returns: str: Token accounts information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delegate | Yes | ||
mint | Yes |
Input Schema (JSON Schema)
{
"properties": {
"delegate": {
"title": "Delegate",
"type": "string"
},
"mint": {
"title": "Mint",
"type": "string"
}
},
"required": [
"delegate",
"mint"
],
"title": "get_token_accounts_by_delegateArguments",
"type": "object"
}