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

# Yêu cầu token bằng giao dịch Ledger

> Phương pháp yêu cầu token thay thế cho các giao dịch được ký bởi Ledger. Ký một thông điệp với định dạng `{signText}{time}` trong một giao dịch.



## OpenAPI

````yaml /vi/api-reference/openapi/launch-auth-v1.yaml post /request-token-ledger
openapi: 3.0.3
info:
  title: API Xác Thực Raydium Launch
  description: >-
    Quản lý xác thực ví cho các API LaunchLab và Forum. Cấp các token JWT sau
    khi xác minh chữ ký ví ed25519. Token là bắt buộc để đăng bình luận và quản
    lý nội dung trên API 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: Yêu cầu và xác thực token xác thực
  - name: Utilities
    description: Các endpoint kiểm tra tình trạng
paths:
  /request-token-ledger:
    post:
      tags:
        - Token Management
      summary: Yêu cầu token bằng giao dịch Ledger
      description: >-
        Phương pháp yêu cầu token thay thế cho các giao dịch được ký bởi Ledger.
        Ký một thông điệp với định dạng `{signText}{time}` trong một giao dịch.
      operationId: postRequestTokenLedger
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - time
                - transaction
                - wallet
              properties:
                time:
                  type: integer
                  description: Dấu thời gian Unix tính bằng giây
                  example: 1704067200
                transaction:
                  type: string
                  description: Giao dịch Solana chứa thông điệp được ký (mã hóa base64)
                wallet:
                  type: string
                  description: Khóa công khai ví Solana
                  example: 4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4
      responses:
        '200':
          description: Token được cấp thành công
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      token:
                        type: string

````