UnbondingDelegationEntry defines an unbonding object with relevant metadata.

interface UnbondingDelegationEntryAmino {
    balance?: string;
    completion_time?: string;
    creation_height?: string;
    initial_balance?: string;
}

Properties

balance?: string

balance defines the tokens to receive at completion.

completion_time?: string

completion_time is the unix time for unbonding completion.

creation_height?: string

creation_height is the height which the unbonding took place.

initial_balance?: string

initial_balance defines the tokens initially scheduled to receive at completion.