getInflationGovernor RPC Method
Returns the current inflation governor
params
object
optional
Configuration object.commitment
The commitment describes how finalized a block is at that point in time. See Configuring State Commitment.
result
object
The 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://us-seattle.openverse.network/api -s -X \
POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "getInflationGovernor"
}
'
Response
{
"jsonrpc": "2.0",
"result": {
"foundation": 0.05,
"foundationTerm": 7,
"initial": 0.15,
"taper": 0.15,
"terminal": 0.015
},
"id": 1
}