interface AminoMsgVoteWeighted {
    type: "cosmos-sdk/MsgVoteWeighted";
    value: {
        options: {
            option: number;
            weight: string;
        }[];
        proposal_id: string;
        voter: string;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgVoteWeighted

Properties

Properties

type: "cosmos-sdk/MsgVoteWeighted"
value: {
    options: {
        option: number;
        weight: string;
    }[];
    proposal_id: string;
    voter: string;
}

Type declaration

  • Readonly options: {
        option: number;
        weight: string;
    }[]
  • Readonly proposal_id: string
  • Readonly voter: string

    Bech32 account address

Generated using TypeDoc