Saltar al contenido principal
POST
/
request-token-ledger
Solicitar token usando transacción de 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.

Cuerpo

application/json
time
integer
requerido

Marca de tiempo Unix en segundos

Ejemplo:

1704067200

transaction
string
requerido

Transacción de Solana con mensaje firmado (codificada en base64)

wallet
string
requerido

Clave pública de la cartera Solana

Ejemplo:

"4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"

Respuesta

200 - application/json

Token emitido correctamente

id
string
success
boolean
Ejemplo:

true

data
object