Changes the withdraw address for a delegator (or validator self-delegation)

interface AminoMsgSetWithdrawAddress {
    type: "cosmos-sdk/MsgModifyWithdrawAddress";
    value: {
        delegator_address: string;
        withdraw_address: string;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgSetWithdrawAddress

Properties

Properties

type: "cosmos-sdk/MsgModifyWithdrawAddress"
value: {
    delegator_address: string;
    withdraw_address: string;
}

Type declaration

  • Readonly delegator_address: string

    Bech32 account address

  • Readonly withdraw_address: string

    Bech32 account address

Generated using TypeDoc