getInflationReward
Returns the inflation / staking reward for a list of addresses for an epoch.
This method will use 30 Compute Units.
getInflationReward for Solana is limited to 1 request per second. If you have higher rate limit needs, contact us.
Parameters
arraystring Required. An array of addresses to query, as base-58 encoded stringsobjectoptional. Configuration object containing the following fields:commitmentstring. The level of commitment required for the query. The options include:finalizedstring.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.
confirmedstring.The node will query the most recent block that has been voted on by the supermajority of the cluster.
processedstring.The node will query its most recent block. Note that the block may not be complete.
epochinteger. An epoch for which the reward occurs. If omitted, the previous epoch will be used.minContextSlotinteger. The minimum slot that the request can be evaluated at.
Returns
result The result will be an object with the following fields:
epochThe epoch during which the reward was received.effectiveSlotThe slot at which the rewards become active.amountThe reward value in lamports.postBalanceThe account balance after the transaction in lamports.commissionThe commission rate of the vote account at the time the reward was credited.
// Result
{
"jsonrpc": "2.0",
"result": [
{
"amount": 4777030052,
"commission": 7,
"effectiveSlot": 320112000,
"epoch": 740,
"postBalance": 24765023250
}
],
"id": 1
}curl https://mainnet.solana.validationcloud.io/v1/<YOUR_API_KEY_HERE> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1, "method":"getInflationReward", "params": [["Ec37CQZjwRgGnuMmUi3BnEBXS5Xa3siakAPxPkHtahSf"]] }'
curl https://devnet.solana.validationcloud.io/v1/<YOUR_API_KEY_HERE> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1, "method":"getInflationReward", "params": [["Ec37CQZjwRgGnuMmUi3BnEBXS5Xa3siakAPxPkHtahSf"]] }'
Last updated
Was this helpful?