getInflationGovernor RPC Method
Returns the current inflation governor
params
objectoptionalConfiguration object.commitment
The commitment describes how finalized a block is at that point in time. See Configuring State Commitment.
result
objectThe result field will be a JSON object with the following fieldsfoundation
Percentage of total inflation allocated to the foundation
initial
Initial inflation percentage from time 0
foundationTerm
Duration of foundation pool inflation in years
taper
Rate per year at which inflation is lowered. (Rate reduction is derived using the target slot time in genesis config)
terminal
Terminal inflation percentage
cURL
curl https://api.mainnet.openverse.network/ -s -X \
POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "getInflationGovernor"
}
'
Response
{
"jsonrpc": "2.0",
"result": {
"foundation": 0,
"foundationTerm": 0,
"initial": 0.08,
"taper": 0.15,
"terminal": 0.015
},
"id": 1
}