OpenInfra.sh is now live - Solana infrastructure, included with every server. LEARN MORE HERE >

OpenInfra.shopeninfra.sh

getInflationRate

Returns the current epoch's effective inflation rates.

Request

{  "jsonrpc": "2.0",  "id": 1,  "method": "getInflationRate"}

Parameters

This method takes no parameters.

Response

{  "jsonrpc": "2.0",  "result": {    "total": 0.149,    "validator": 0.148,    "foundation": 0.001,    "epoch": 100  },  "id": 1}
FieldTypeDescription
totalf64Total inflation rate for the current epoch.
validatorf64Portion of inflation allocated to validators.
foundationf64Portion of inflation allocated to the foundation.
epochu64Epoch for which these inflation values are valid.

All rate fields (total, validator, foundation) are expressed as annualized fractions (e.g. 0.149 means 14.9%). The epoch field identifies which epoch these rates apply to.

Notes