Skip to main content

state.QueryUnbonding RPC

Retrieves the unbonding status between a delegator and a validator.

Updated on
Nov 7, 2024

state.QueryUnbonding RPC

Parameters

validator_address
string
REQUIRED
The address of the validator

Returns

result
object
The result object which contains the following fields:
unbond
object
The unbond object which contains the following fields:
delegator_address
string
The address of the delegator initiating the unbonding process
validator_address
string
The address of the validator from which tokens are being unbonded
entries
array
Array of individual unbonding entries, each representing a specific part of the unbonding process
creation_height
integer
The block height at which this unbonding entry was created.
completion_time
string
The timestamp marking when this unbonding entry will complete
initial_balance
string
Initial amount of tokens allocated for this unbonding entry
balance
string
Remaining balance of tokens that are still in the process of unbonding
Request
1
curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/' \
2
--header 'Content-Type: application/json' \
3
--data '{
4
"id": 1,
5
"jsonrpc": "2.0",
6
"method": "state.QueryUnbonding",
7
"params": [
8
"VALIDATOR_ADDRESS"
9
]
10
}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free