Edits an existing validator.

interface AminoMsgEditValidator {
    type: "cosmos-sdk/MsgEditValidator";
    value: {
        commission_rate: undefined | string;
        description: Description;
        min_self_delegation: undefined | string;
        validator_address: string;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgEditValidator

Properties

Properties

type: "cosmos-sdk/MsgEditValidator"
value: {
    commission_rate: undefined | string;
    description: Description;
    min_self_delegation: undefined | string;
    validator_address: string;
}

Type declaration

  • Readonly commission_rate: undefined | string

    The new value for the comission rate.

    An empty string in the protobuf document means "do not change". In Amino JSON this empty string becomes undefined (omitempty)

  • Readonly description: Description
  • Readonly min_self_delegation: undefined | string

    The new value for the comission rate.

    An empty string in the protobuf document means "do not change". In Amino JSON this empty string becomes undefined (omitempty)

  • Readonly validator_address: string

    Bech32 encoded validator address

Generated using TypeDoc