跳轉到主要內容
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