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

# トランザクションを送信

> 呼び出し元の代わりに、完全に署名されたSolanaトランザクション（base64エンコード）を転送します。UIがプラットフォームのRPCを通じて作成・購入・売却トランザクションを中継し、優先度手数料の上乗せと再試行処理を行うために使用されます。



## OpenAPI

````yaml /ja/api-reference/openapi/launch-mint-v1.yaml post /create/sendTransaction
openapi: 3.0.3
info:
  title: Raydium Launch Mint API
  description: >-
    LaunchLab
    トークンのミント作成、リーダーボード、検索、および履歴データへのアクセスを提供します。名前、シンボル、ウォレットクリエーター、および様々なフィルターオプションによる検索をサポートしています。
  version: 1.0.0
servers:
  - url: https://launch-mint-v1.raydium.io
    description: Mainnet
  - url: https://launch-mint-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Discovery
    description: ミントの検索と閲覧
  - name: Details
    description: ミント情報の取得
  - name: User Activity
    description: ユーザー作成およびトレード統計の取得
  - name: Vesting
    description: ベスティングスケジュールデータのクエリ
  - name: Configuration
    description: プラットフォーム設定とメタデータ
  - name: Creation
    description: 新しいミントを作成してトランザクションを送信
  - name: Utilities
    description: ヘルスチェックとステータス
paths:
  /create/sendTransaction:
    post:
      tags:
        - Creation
      summary: トランザクションを送信
      description: >-
        呼び出し元の代わりに、完全に署名されたSolanaトランザクション（base64エンコード）を転送します。UIがプラットフォームのRPCを通じて作成・購入・売却トランザクションを中継し、優先度手数料の上乗せと再試行処理を行うために使用されます。
      operationId: postCreateSendTransaction
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - transaction
                - wallet
              properties:
                transaction:
                  type: string
                  description: Base64エンコードされた完全に署名されたVersionedTransaction。
                wallet:
                  type: string
                  description: 呼び出し元ウォレット（base58）。トランザクションの手数料支払者と一致する必要があります。
                priorityFee:
                  type: integer
                  description: >-
                    マイクロランポート単位のオプションの優先度手数料オーバーライド。省略された場合、プラットフォームはデフォルトのポリシーを適用します。
      responses:
        '200':
          description: Accepted
          content:
            application/json:
              schema:
                type: object
                properties:
                  signature:
                    type: string
                    description: Base58トランザクション署名。

````