> ## 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 ja/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キー。無料で[dashボード](https://dashboard.helius.dev/api-keys)から取得できます。

````