helius_get_token_accounts_by_owner
Retrieve Solana token accounts associated with a specific address using the Helius API to interact with blockchain data and manage token operations.
Instructions
Get token accounts owned by a Solana address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
programId | Yes | ||
publicKey | Yes |
Input Schema (JSON Schema)
{
"properties": {
"programId": {
"type": "string"
},
"publicKey": {
"type": "string"
}
},
"required": [
"publicKey",
"programId"
],
"type": "object"
}