DVVTriplet is struct that just has a delegator-validator-validator triplet with no other data. It is intended to be used as a marshalable pointer. For example, a DVVTriplet can be used to construct the key to getting a Redelegation from state.

interface DVVTriplet {
    delegatorAddress: string;
    validatorDstAddress: string;
    validatorSrcAddress: string;
}

Properties

delegatorAddress: string
validatorDstAddress: string
validatorSrcAddress: string

Generated using TypeDoc