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

# minimumLedgerSlot

> 노드가 원장에 대한 정보를 갖고 있는 가장 낮은 슬롯을 반환합니다.



## OpenAPI

````yaml ko/openapi/rpc-http/minimumLedgerSlot.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: Devnet RPC 엔드포인트
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: minimumLedgerSlot
      description: >-
        이 Solana 검증인의 장부 저장소에서 여전히 유지되고 있는 가장 낮은 슬롯 번호를 검색합니다. 이 블록체인 상태 관리 API는
        검증인의 활성 장부 저장소에서 가장 초기의 접근 가능한 슬롯을 식별하는 데 도움을 주며, 이는 체인을 재생하여 역사적 상태를
        재구성하기 위한 하한선을 나타냅니다. 블록 저장소를 추적하는 getFirstAvailableBlock과 달리, 이 방법은 검증인의
        상태 전이 기록에 대한 정보를 제공합니다. 상태 재구성 도구, 장부 분석 유틸리티, 검증인 모니터링 시스템을 구축하는 애플리케이션
        및 이 노드가 계정 상태 검증을 위해 블록체인을 얼마나 멀리까지 재생할 수 있는지 이해해야 하는 서비스에 필수적입니다.
      operationId: minimumLedgerSlot
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  description: JSON-RPC 프로토콜 버전입니다.
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: 요청에 대한 고유 식별자입니다.
                  example: '1'
                  default: '1'
                method:
                  type: string
                  enum:
                    - minimumLedgerSlot
                  description: 호출할 RPC 메서드의 이름입니다.
                  example: minimumLedgerSlot
                  default: minimumLedgerSlot
                params:
                  type: array
                  description: 이 메서드에 필요한 매개변수는 없습니다.
                  maxItems: 0
      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: integer
                    description: >-
                      이 검증인의 상태 재생 버퍼에 여전히 유지되고 있는 가장 낮은 Solana 슬롯 번호로, 체인 재구성을
                      위한 최소 경계를 제공합니다.
                    example: 1234
              examples:
                default:
                  value:
                    jsonrpc: '2.0'
                    id: '1'
                    result: 1234
        '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)에서 무료로
        받을 수 있습니다.

````