> ## 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의 현재 인플레이션 거버너를 반환합니다 — 초기 비율, 최종 비율, 재단 지분, 발행 감소 일정이 포함됩니다.



## OpenAPI

````yaml ko/openapi/rpc-http/getInflationGovernor.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    경제 정책 API로, 토큰 발행을 관리하는 Solana의 핵심 인플레이션 모델 매개변수를 검색할 수 있습니다. 여기에는 초기 비율, 최종
    비율, 감쇠 일정 등이 포함됩니다.
  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: Devnet 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 재단에 에코시스템 개발을 위해 할당된 총 인플레이션의 비율입니다.
                        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)에서 무료로
        얻으실 수 있습니다.

````