> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# getInflationGovernor

> Mengembalikan parameter pengendali inflasi Solana saat ini — tingkat awal, tingkat terminal, porsi yayasan, dan jadwal pengurangan yang menentukan bagaimana penerbitan SOL menurun seiring waktu.



## OpenAPI

````yaml id/openapi/rpc-http/getInflationGovernor.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    API kebijakan ekonomi untuk mengambil parameter inti model inflasi Solana
    yang mengatur penerbitan token, termasuk tingkat awal, tingkat terminal, dan
    jadwal penurunan.
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: Titik akhir RPC Mainnet
  - url: https://devnet.helius-rpc.com
    description: Titik akhir RPC Devnet
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getInflationGovernor
      description: >
        Mengambil parameter fundamental yang mengendalikan kebijakan moneter
        jangka panjang Solana.

        API desain ekonomi ini menyediakan informasi mendetail tentang
        konfigurasi model inflasi 

        blockchain, termasuk tingkat inflasi awal dan terminal, tingkat
        pengurangan inflasi, 

        serta detail alokasi yayasan. Solana menggunakan model penerbitan token
        disinflasioner 

        yang inflasinya menurun secara bertahap dari tingkat awal yang lebih
        tinggi menjadi tingkat 

        lebih rendah yang berkelanjutan dalam jangka panjang. Penting bagi
        peneliti ekonomi, analis 

        tokenomika, investor jangka panjang, dan aplikasi yang memodelkan
        pasokan token mendatang, 

        proyeksi imbalan staking, atau prakiraan arah kebijakan moneter Solana
        dalam jangka waktu panjang.
      operationId: getInflationGovernor
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  description: Versi protokol JSON-RPC.
                  enum:
                    - '2.0'
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: Pengidentifikasi unik untuk permintaan.
                  example: '1'
                  default: '1'
                method:
                  type: string
                  description: Nama metode RPC yang akan dipanggil.
                  enum:
                    - getInflationGovernor
                  example: getInflationGovernor
                  default: getInflationGovernor
      responses:
        '200':
          description: Informasi pengatur inflasi berhasil diambil.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: Versi protokol JSON-RPC.
                    enum:
                      - '2.0'
                    example: '2.0'
                  id:
                    type: string
                    description: Pengidentifikasi yang cocok dengan permintaan.
                    example: '1'
                  result:
                    type: object
                    description: >-
                      Parameter lengkap yang mendefinisikan kebijakan moneter
                      jangka panjang dan model inflasi Solana.
                    properties:
                      initial:
                        type: number
                        format: float
                        description: >-
                          Tingkat inflasi tahunan awal pada permulaan mainnet
                          Solana (format desimal, misalnya 0,08 = 8%).
                        example: 0.15
                      terminal:
                        type: number
                        format: float
                        description: >-
                          Tingkat inflasi berkelanjutan jangka panjang yang pada
                          akhirnya akan dicapai dan dipertahankan sistem tanpa
                          batas waktu.
                        example: 0.015
                      taper:
                        type: number
                        format: float
                        description: >-
                          Tingkat tahunan penurunan inflasi dari tingkat awal ke
                          tingkat terminal (kecepatan jadwal disinflasi).
                        example: 0.15
                      foundation:
                        type: number
                        format: float
                        description: >-
                          Persentase total inflasi yang dialokasikan kepada
                          Solana Foundation untuk pengembangan ekosistem.
                        example: 0.05
                      foundationTerm:
                        type: number
                        format: float
                        description: >-
                          Durasi dalam tahun saat yayasan menerima alokasi dari
                          inflasi.
                        example: 7
              example:
                jsonrpc: '2.0'
                id: '1'
                result:
                  initial: 0.15
                  terminal: 0.015
                  taper: 0.15
                  foundation: 0.05
                  foundationTerm: 7
        '400':
          description: >-
            Permintaan Tidak Valid - Parameter permintaan tidak valid atau
            format permintaan salah.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: Invalid params
                id: '1'
        '401':
          description: Tidak Terotorisasi - Kunci API tidak valid atau tidak disertakan.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: Unauthorized
                id: '1'
        '429':
          description: Terlalu Banyak Permintaan - Batas laju terlampaui.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: Too many requests
                id: '1'
        '500':
          description: Kesalahan Server Internal - Terjadi kesalahan pada server.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: Internal error
                id: '1'
        '503':
          description: Layanan Tidak Tersedia - Layanan tidak tersedia untuk sementara.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: Service unavailable
                id: '1'
        '504':
          description: Waktu Tunggu Gateway Habis - Waktu permintaan habis.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: Gateway timeout
                id: '1'
      security:
        - ApiKeyQuery: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        jsonrpc:
          type: string
          description: Versi protokol JSON-RPC.
          enum:
            - '2.0'
          example: '2.0'
        error:
          type: object
          properties:
            code:
              type: integer
              description: Kode kesalahan.
              example: -32602
            message:
              type: string
              description: Pesan kesalahan.
            data:
              type: object
              description: Data tambahan tentang kesalahan.
        id:
          type: string
          description: Pengidentifikasi yang cocok dengan permintaan.
          example: '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        Kunci API Helius Anda. Anda dapat memperolehnya secara gratis di
        [dasbor](https://dashboard.helius.dev/api-keys).

````