> ## 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/api-reference/openapi/launch-mint-v1.yaml post /create/mint-info
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/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

````