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

# طلب رمز باستخدام معاملة Ledger

> خيار بديل لطلب الرمز لمعاملات موقعة بـ Ledger. يوقّع رسالة بالصيغة `{signText}{time}` داخل معاملة.



## OpenAPI

````yaml /ar/api-reference/openapi/launch-auth-v1.yaml post /request-token-ledger
openapi: 3.0.3
info:
  title: واجهة برمجية لمصادقة Raydium Launch
  description: >-
    تدير مصادقة المحفظة لواجهات برمجية LaunchLab و Forum. تصدر رموز JWT بعد
    التحقق من توقيعات محافظ ed25519. الرموز مطلوبة لنشر التعليقات وإدارة المحتوى
    على واجهة برمجية Forum.
  version: 1.0.0
servers:
  - url: https://launch-auth-v1.raydium.io
    description: Mainnet
  - url: https://launch-auth-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Token Management
    description: طلب والتحقق من رموز المصادقة
  - name: Utilities
    description: نقاط نهاية فحص الصحة
paths:
  /request-token-ledger:
    post:
      tags:
        - Token Management
      summary: طلب رمز باستخدام معاملة Ledger
      description: >-
        خيار بديل لطلب الرمز لمعاملات موقعة بـ Ledger. يوقّع رسالة بالصيغة
        `{signText}{time}` داخل معاملة.
      operationId: postRequestTokenLedger
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - time
                - transaction
                - wallet
              properties:
                time:
                  type: integer
                  description: طابع Unix بالثواني
                  example: 1704067200
                transaction:
                  type: string
                  description: معاملة Solana تحتوي على رسالة موقعة (مشفرة بـ base64)
                wallet:
                  type: string
                  description: مفتاح عام لمحفظة Solana
                  example: 4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4
      responses:
        '200':
          description: تم إصدار الرمز بنجاح
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      token:
                        type: string

````