> ## Documentation Index
> Fetch the complete documentation index at: https://chainstack-docs-polygon-erigon-trace-deprecation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# getInflationGovernor | Solana

> The Solana getInflationGovernor method returns the current inflation governor. This method provides the current inflation governor.

# Solana `getInflationGovernor` method

The Solana `getInflationGovernor` method returns the current inflation governor.

This method provides the current inflation governor, which controls the inflation rate in the network. It is useful for understanding the current inflation policy of the network.

## Parameters

This method does not require any parameters.

## Response

* `value` — the current inflation governor:
  * `initial` — the initial inflation rate.
  * `terminal` — the terminal inflation rate.
  * `taper` — the taper of the inflation rate.
  * `foundation` — the foundation portion of the inflation rate.
  * `foundationTerm` — the foundation term of the inflation rate.

## Use case

A practical use case for `getInflationGovernor` is to understand the current inflation policy of the network. This can be useful for wallets or other applications that need to display or make use of this information.


## OpenAPI

````yaml openapi/solana_node_api/getInflationGovernor.json POST /9de47db917d4f69168e3fed02217d15b
openapi: 3.0.0
info:
  title: getInflationGovernor example
  version: 1.0.0
  description: This is an API example for Solana's getInflationGovernor.
servers:
  - url: https://nd-326-444-187.p2pify.com
security: []
paths:
  /9de47db917d4f69168e3fed02217d15b:
    post:
      tags:
        - query
      summary: getInflationGovernor
      operationId: getInflationGovernor
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: getInflationGovernor
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Inflation governor details
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object
                    properties:
                      foundation:
                        type: number
                      foundationTerm:
                        type: number
                      initial:
                        type: number
                      taper:
                        type: number
                      terminal:
                        type: number

````