getInflationReward
Returns the inflation / staking reward for a list of addresses for an epoch.
This method will use 30
Compute Units.
Parameters
array
string Required. An array of addresses to query, as base-58 encoded stringsobject
optional. Configuration object containing the following fields:commitment
string. The level of commitment required for the query. The options include:finalized
string.The node will query the most recent block confirmed by the supermajority of the cluster as having reached maximum lockout, meaning the cluster has recognized this block as finalized.
confirmed
string.The node will query the most recent block that has been voted on by the supermajority of the cluster.
processed
string.The node will query its most recent block. Note that the block may not be complete.
epoch
integer. An epoch for which the reward occurs. If omitted, the previous epoch will be used.minContextSlot
integer. The minimum slot that the request can be evaluated at.
Returns
result
The result will be an object with the following fields:
epoch
The epoch during which the reward was received.effectiveSlot
The slot at which the rewards become active.amount
The reward value in lamports.postBalance
The account balance after the transaction in lamports.commission
The commission rate of the vote account at the time the reward was credited.
Last updated
Was this helpful?