> ## 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

> Solanaの現在のインフレーションガバナーを返します。これは、初期率、終端率、ファンデーションシェア、およびSOL発行量が時間とともにどのように減少するかを決定するテーパースケジュールを含みます。



## OpenAPI

````yaml ja/openapi/rpc-http/getInflationGovernor.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    トークン発行を管理するコアなSolanaインフレモデルのパラメータを取得するための経済政策APIです。初期率、ターミナル率、および減衰スケジュールが含まれます。
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: メインネットRPCエンドポイント
  - url: https://devnet.helius-rpc.com
    description: デブネットRPCエンドポイント
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getInflationGovernor
      description: |
        Solanaの長期的な貨幣政策を管理する基本的なパラメータを取得します。
        この経済設計APIは、初期およびターミナルのインフレ率、デフレーションスケジュール速度、
        およびファウンデーション配分の詳細を含むブロックチェーンのインフレモデル設定についての詳細情報を提供します。
        Solanaは、初期の高い率から長期的に持続可能な低い率へとインフレが徐々に減少するデフレーショントークン発行モデルを使用しています。
        経済研究者、トークノミクス分析者、長期投資家、将来のトークン供給、ステーキング報酬見積もり、または
        長期間にわたるSolanaの貨幣政策の軌跡を予測するアプリケーションにとって不可欠です。
      operationId: getInflationGovernor
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  description: JSON-RPCプロトコルバージョン。
                  enum:
                    - '2.0'
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: リクエストのための一意の識別子。
                  example: '1'
                  default: '1'
                method:
                  type: string
                  description: 呼び出すRPCメソッドの名称。
                  enum:
                    - getInflationGovernor
                  example: getInflationGovernor
                  default: getInflationGovernor
      responses:
        '200':
          description: インフレガバナー情報の取得に成功しました。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: JSON-RPCプロトコルバージョン。
                    enum:
                      - '2.0'
                    example: '2.0'
                  id:
                    type: string
                    description: リクエストと対応する識別子。
                    example: '1'
                  result:
                    type: object
                    description: Solanaの長期的な貨幣政策とインフレモデルを定義する包括的なパラメータ。
                    properties:
                      initial:
                        type: number
                        format: float
                        description: 'Solanaのメインネット開始時の初年度のインフレ率（小数形式、例: 0.08 = 8%）。'
                        example: 0.15
                      terminal:
                        type: number
                        format: float
                        description: システムが最終的に到達し無期限に維持する長期的な持続可能インフレ率。
                        example: 0.015
                      taper:
                        type: number
                        format: float
                        description: 初期からターミナル率までインフレが減少する年率（デフレーションスケジュール速度）。
                        example: 0.15
                      foundation:
                        type: number
                        format: float
                        description: Solana Foundationにエコシステム開発のために割り当てられるトータルインフレの割合。
                        example: 0.05
                      foundationTerm:
                        type: number
                        format: float
                        description: ファウンデーションがインフレから配分を受ける期間（年単位）。
                        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: 不正リクエスト - 無効なリクエストパラメータまたは不正なリクエスト。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: 無効なパラメータ
                id: '1'
        '401':
          description: 認証エラー - 無効または欠落しているAPIキー。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: 認証されていません
                id: '1'
        '429':
          description: リクエスト数超過 - レート制限を超えました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: リクエストが多すぎます
                id: '1'
        '500':
          description: 内部サーバーエラー - サーバーエラーが発生しました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: 内部エラー
                id: '1'
        '503':
          description: サービス利用不可 - サービスは一時的に利用できません。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: サービスが利用できません
                id: '1'
        '504':
          description: ゲートウェイタイムアウト - リクエストがタイムアウトしました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: ゲートウェイタイムアウト
                id: '1'
      security:
        - ApiKeyQuery: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        jsonrpc:
          type: string
          description: JSON-RPCプロトコルバージョン。
          enum:
            - '2.0'
          example: '2.0'
        error:
          type: object
          properties:
            code:
              type: integer
              description: エラーコード。
              example: -32602
            message:
              type: string
              description: エラーメッセージ。
            data:
              type: object
              description: エラーに関する追加データ。
        id:
          type: string
          description: リクエストと一致する識別子。
          example: '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        あなたのHelius
        APIキー。このキーは[ダッシュボード](https://dashboard.helius.dev/api-keys)で無料で取得できます。

````