跳转到主要内容
POST
/
create
/
mint-info
提交铸造创建
curl --request POST \
  --url https://launch-mint-v1.raydium.io/create/mint-info \
  --header 'Content-Type: application/json' \
  --data '
{
  "mint": "<string>",
  "name": "My Memecoin",
  "symbol": "MEME",
  "wallet": "<string>",
  "description": "<string>",
  "imageUri": "<string>",
  "website": "<string>",
  "twitter": "<string>",
  "telegram": "<string>",
  "platformId": "<string>"
}
'

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.

请求体

application/json
mint
string
必填

链上创建的铸造公钥(base58)。

name
string
必填

LaunchLab UI 中显示的名称。

示例:

"My Memecoin"

symbol
string
必填

代码符号。

示例:

"MEME"

wallet
string
必填

创建者钱包(base58)— 必须与链上创建者匹配。

description
string

长格式描述。

imageUri
string

代币图标的 HTTPS URL 或 IPFS URI。

website
string
twitter
string
telegram
string
platformId
string

托管此启动的平台公钥。

响应

200

Accepted