UnbondingDelegation stores all of a single delegator's unbonding bonds for a single validator in an time-ordered list.

interface UnbondingDelegation {
    delegatorAddress: string;
    entries: UnbondingDelegationEntry[];
    validatorAddress: string;
}

Properties

delegatorAddress: string

delegator_address is the bech32-encoded address of the delegator.

entries are the unbonding delegation entries.

validatorAddress: string

validator_address is the bech32-encoded address of the validator.

Generated using TypeDoc