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 DVVTripletAmino {
    delegator_address?: string;
    validator_dst_address?: string;
    validator_src_address?: string;
}

Properties

delegator_address?: string
validator_dst_address?: string
validator_src_address?: string