Performs an undelegation from a delegate and a validator

interface AminoMsgUndelegate {
    type: "cosmos-sdk/MsgUndelegate";
    value: {
        amount: Coin;
        delegator_address: string;
        validator_address: string;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgUndelegate

Properties

Properties

type: "cosmos-sdk/MsgUndelegate"
value: {
    amount: Coin;
    delegator_address: string;
    validator_address: string;
}

Type declaration

  • Readonly amount: Coin
  • Readonly delegator_address: string

    Bech32 encoded delegator address

  • Readonly validator_address: string

    Bech32 encoded validator address

Generated using TypeDoc