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

# 提交鑄幣建立

> 在鑄幣的鏈上建立交易送出之前，先登記新 LaunchLab 鑄幣的鏈下中繼資料。平台會按鑄幣金鑰儲存所提供的名稱／代號／URI／社群連結，讓 UI 能在 bonding curve 執行期間顯示它們。




## OpenAPI

````yaml /zh-Hant/api-reference/openapi/launch-mint-v1.yaml post /create/mint-info
openapi: 3.0.3
info:
  title: Raydium LaunchLab 鑄幣 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/mint-info:
    post:
      tags:
        - Creation
      summary: 提交鑄幣建立
      description: >
        在鑄幣的鏈上建立交易送出之前，先登記新 LaunchLab 鑄幣的鏈下中繼資料。平台會按鑄幣金鑰儲存所提供的名稱／代號／URI／社群連結，讓
        UI 能在 bonding curve 執行期間顯示它們。
      operationId: postCreateMintInfo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - mint
                - name
                - symbol
                - wallet
              properties:
                mint:
                  type: string
                  description: 鑄幣公鑰（Base58 編碼）已在鏈上建立。
                name:
                  type: string
                  description: 在 LaunchLab UI 顯示的名稱。
                  example: My Memecoin
                symbol:
                  type: string
                  description: 代號。
                  example: MEME
                description:
                  type: string
                  description: 詳細說明。
                imageUri:
                  type: string
                  description: HTTPS URL 或 IPFS URI，用於代幣圖示。
                website:
                  type: string
                twitter:
                  type: string
                telegram:
                  type: string
                platformId:
                  type: string
                  description: 託管此發行的平台公鑰。
                wallet:
                  type: string
                  description: 建立者錢包（base58 格式）— 必須與鏈上建立者相符。
      responses:
        '200':
          description: Accepted

````