ProposalStatus defines proposal statuses.

from enum cosmos.group.v1.ProposalStatus

Enumeration Members

ABORTED: 4

Final status of a proposal when the group policy is modified before the final tally.

from enum value: PROPOSAL_STATUS_ABORTED = 4;

ACCEPTED: 2

Final status of a proposal when the final tally is done and the outcome passes the group policy's decision policy.

from enum value: PROPOSAL_STATUS_ACCEPTED = 2;

REJECTED: 3

Final status of a proposal when the final tally is done and the outcome is rejected by the group policy's decision policy.

from enum value: PROPOSAL_STATUS_REJECTED = 3;

SUBMITTED: 1

Initial status of a proposal when submitted.

from enum value: PROPOSAL_STATUS_SUBMITTED = 1;

UNSPECIFIED: 0

An empty value is invalid and not allowed.

from enum value: PROPOSAL_STATUS_UNSPECIFIED = 0;

WITHDRAWN: 5

A proposal can be withdrawn before the voting start time by the owner. When this happens the final status is Withdrawn.

from enum value: PROPOSAL_STATUS_WITHDRAWN = 5;