Parameters
chainId
string
default:"solana-devnet"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"getInflationGovernor"
required
JSON-RPC method name.
Parameters for method getInflationGovernor: [config]Positional parameters for getInflationGovernor:params[]: Optional configuration object.
Returns
Inflation parameters describing how new tokens are distributed over time.
Percentage of total inflation allocated to the foundation.
Duration in years for which foundation inflation is active.
Initial inflation rate (as a decimal) from genesis (time 0).
Annual reduction rate for inflation (tapering schedule).
Terminal (long-term) inflation rate after tapering ends.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=solana-devnet \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "getInflationGovernor",
"params": [
{}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"foundation": 0.05,
"foundationTerm": 7,
"initial": 0.15,
"taper": 0.15,
"terminal": 0.015
}
}