跳转到主要内容
POST
/
request-token-ledger
使用 Ledger 交易请求令牌
curl --request POST \
  --url https://launch-auth-v1.raydium.io/request-token-ledger \
  --header 'Content-Type: application/json' \
  --data '
{
  "time": 1704067200,
  "transaction": "<string>",
  "wallet": "4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"
}
'
{
  "id": "<string>",
  "success": true,
  "data": {
    "token": "<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
time
integer
必填

Unix 时间戳(秒)

示例:

1704067200

transaction
string
必填

包含已签名消息的 Solana 交易(base64 编码)

wallet
string
必填

Solana 钱包公钥

示例:

"4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"

响应

200 - application/json

令牌颁发成功

id
string
success
boolean
示例:

true

data
object