UnbondingDelegationEntry defines an unbonding object with relevant metadata.

interface UnbondingDelegationEntry {
    balance: string;
    completionTime: undefined | Date;
    creationHeight: bigint;
    initialBalance: string;
}

Properties

balance: string

balance defines the tokens to receive at completion.

completionTime: undefined | Date

completion_time is the unix time for unbonding completion.

creationHeight: bigint

creation_height is the height which the unbonding took place.

initialBalance: string

initial_balance defines the tokens initially scheduled to receive at completion.