UnbondingDelegationEntry defines an unbonding object with relevant metadata.

interface UnbondingDelegationEntry {
    balance: string;
    completionTime?: Date;
    creationHeight: Long;
    initialBalance: string;
}

Properties

balance: string

balance defines the tokens to receive at completion.

completionTime?: Date

completion_time is the unix time for unbonding completion.

creationHeight: Long

creation_height is the height which the unbonding took place.

initialBalance: string

initial_balance defines the tokens initially scheduled to receive at completion.

Generated using TypeDoc