getinflationgovernor

Solana RPC

Archive Method

Only on the full archive nodes. Complex queries might take longer and incur additional cost

How to Use It

// yarn add @tatumio/tatum

import { TatumSDK, Solana, Network } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Solana>({ network: Network.SOLANA })

const res = await tatum.rpc.getInflationGovernor()

await tatum.destroy() // Destroy Tatum SDK - needed for stopping background jobs

Overview

The getInflationGovernor method is used to retrieve the current inflation governor in the Solana blockchain.

Parameters

  • options (object, optional): Configuration object containing the following fields:
    • commitment(string, optional): Specifies the level of commitment to apply when fetching data.
      • Values: finalized confirmed processed

Return Object

The method returns a JSON object with the following fields:

  • initial: The initial inflation percentage from time 0.
  • terminal: Terminal inflation percentage.
  • taper: Rate per year at which inflation is lowered. The rate reduction is derived using the target slot time in the genesis config.
  • foundation: Percentage of total inflation allocated to the foundation.
  • foundationTerm: Duration of foundation pool inflation in years.

JSON-RPC Request Example

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

JSON-RPC Response Example

{
  "jsonrpc": "2.0",
  "result": {
    "foundation": 0.05,
    "foundationTerm": 7,
    "initial": 0.15,
    "taper": 0.15,
    "terminal": 0.015
  },
  "id": 1
}