helius_get_inflation_reward
Retrieve inflation rewards for specified addresses on the Solana blockchain by providing address lists, epoch, and commitment level using MCP Helius server.
Instructions
Get inflation rewards for a list of addresses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addresses | Yes | ||
commitment | No | ||
epoch | No |
Input Schema (JSON Schema)
{
"properties": {
"addresses": {
"items": {
"type": "string"
},
"type": "array"
},
"commitment": {
"enum": [
"confirmed",
"finalized",
"processed"
],
"type": "string"
},
"epoch": {
"type": "number"
}
},
"required": [
"addresses"
],
"type": "object"
}