get_multiple_accounts
Retrieve account information for multiple Solana public keys in a single request. Specify encoding to decode account data efficiently.
Instructions
Returns the account information for a list of public keys.
Args: pubkeys (list[str]): List of account public keys encoding (str): Encoding for the account data
Returns: str: Multiple accounts information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
encoding | No | base64 | |
pubkeys | Yes |
Input Schema (JSON Schema)
{
"properties": {
"encoding": {
"default": "base64",
"title": "Encoding",
"type": "string"
},
"pubkeys": {
"items": {
"type": "string"
},
"title": "Pubkeys",
"type": "array"
}
},
"required": [
"pubkeys"
],
"title": "get_multiple_accountsArguments",
"type": "object"
}