Redelegation contains the list of a particular delegator's redelegating bonds from a particular source validator to a particular destination validator.

interface Redelegation {
    delegatorAddress: string;
    entries: RedelegationEntry[];
    validatorDstAddress: string;
    validatorSrcAddress: string;
}

Properties

delegatorAddress: string

delegator_address is the bech32-encoded address of the delegator.

entries are the redelegation entries.

validatorDstAddress: string

validator_dst_address is the validator redelegation destination operator address.

validatorSrcAddress: string

validator_src_address is the validator redelegation source operator address.

Generated using TypeDoc