Interface UpdateProposalVotesOperation

Generic operation.

interface UpdateProposalVotesOperation {
    0: "update_proposal_votes";
    1: {
        approve: boolean;
        extensions: any[];
        proposal_ids: number[];
        voter: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    approve: boolean;
    extensions: any[];
    proposal_ids: number[];
    voter: string;
}

Type declaration

  • approve: boolean
  • extensions: any[]
  • proposal_ids: number[]
  • voter: string

    IDs of proposals to vote for/against. Nonexisting IDs are ignored.