Saltar al contenido principal
POST
/
unbond
Unbond tokens
curl --request POST \
  --url http://localhost:5935/unbond \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "1000000000000000000"
}
'
{
  "txHash": "0x...",
  "status": "success"
}

Cuerpo

application/json
amount
string
requerido

Amount of LPT to unbond (in wei)

Ejemplo:

"1000000000000000000"

Respuesta

200 - application/json

Unbond initiated successfully

txHash
string

Transaction hash

Ejemplo:

"0x..."

status
string

Transaction status

Ejemplo:

"success"

Last modified on March 1, 2026