getInflationGovernor
All the specifications for getInflationGovernor RPC Method on Solana
Returns the current inflation governor
Parameters required for this RPC call
configuration : This contains the following parameters, all are optional fields.
commitment: The commitment describes how finalized a block is at that point in time. processed, confirmed and finalized are supported.
curl https://rpc.shyft.to?api_key=YOUR-API-KEY -s -X \
POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "getInflationGovernor",
"params": [
{
"commitment": "finalized"
}
]
}
'import { Connection, PublicKey, clusterApiUrl } from "@solana/web3.js";
const connection = new Connection("https://rpc.shyft.to?api_key=YOUR-API-KEY", "confirmed");
let commitment = "finalized";
let inflationGovener = await connection.getInflationGovernor();
console.log(inflationGovener);{
"jsonrpc": "2.0",
"result": {
"foundation": 0.05, //Percentage of total inflation allocated to the foundation
"foundationTerm": 7, //Duration of foundation pool inflation in years
"initial": 0.15, //Initial inflation percentage from time 0
"taper": 0.15, //Rate per year at which inflation is lowered. (Rate reduction is derived using the target slot time in genesis config)
"terminal": 0.015 //Terminal inflation percentage
},
"id": 1
}Last updated
Was this helpful?