QueryRedelegationsRequest is request type for the Query/Redelegations RPC method.

interface QueryRedelegationsRequest {
    delegatorAddr: string;
    dstValidatorAddr: string;
    pagination?: PageRequest;
    srcValidatorAddr: string;
}

Properties

delegatorAddr: string

delegator_addr defines the delegator address to query for.

dstValidatorAddr: string

dst_validator_addr defines the validator address to redelegate to.

pagination?: PageRequest

pagination defines an optional pagination for the request.

srcValidatorAddr: string

src_validator_addr defines the validator address to redelegate from.