跳转到主要内容
POST
/
unbond
Unbond tokens
curl --request POST \
  --url http://localhost:5935/unbond \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "1000000000000000000"
}
'
{
  "txHash": "0x...",
  "status": "success"
}

请求体

application/json
amount
string
必填

Amount of LPT to unbond (in wei)

示例:

"1000000000000000000"

响应

200 - application/json

Unbond initiated successfully

txHash
string

Transaction hash

示例:

"0x..."

status
string

Transaction status

示例:

"success"

Last modified on March 1, 2026