> ## 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 /ko/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 트랜잭션 서명입니다.

````