interface UndelegationResponseDto {
    covenant_slashing_sigs: CovenantSignatureDto[];
    covenant_unbonding_sig_list: CovenantUnbondingSignatureDto[];
    delegator_slashing_sig_hex: string;
    delegator_unbonding_info_response?: null | object;
    slashing_tx_hex: string;
    unbonding_tx_hex: string;
}

Properties

covenant_slashing_sigs: CovenantSignatureDto[]

List of covenant slashing signatures

covenant_unbonding_sig_list: CovenantUnbondingSignatureDto[]

List of covenant unbonding signatures

delegator_slashing_sig_hex: string

The delegator's slashing signature in hex

delegator_unbonding_info_response?: null | object

Delegator unbonding info response

slashing_tx_hex: string

The hex-encoded slashing transaction

unbonding_tx_hex: string

The hex-encoded unbonding transaction

Generated using TypeDoc