pub enum Cw3QueryMsg {
    Threshold {},
    Proposal {
        proposal_id: u64,
    },
    ListProposals {
        start_after: Option<u64>,
        limit: Option<u32>,
    },
    ReverseProposals {
        start_before: Option<u64>,
        limit: Option<u32>,
    },
    Vote {
        proposal_id: u64,
        voter: String,
    },
    ListVotes {
        proposal_id: u64,
        start_after: Option<String>,
        limit: Option<u32>,
    },
    Voter {
        address: String,
    },
    ListVoters {
        start_after: Option<String>,
        limit: Option<u32>,
    },
}

Variants

Threshold

Fields

Returns the threshold rules that would be used for a new proposal that was opened right now. The threshold rules do not change often, but the total_weight in the response may easily differ from that used in previously opened proposals. Returns ThresholdResponse.

Proposal

Fields

proposal_id: u64

Returns details of the proposal state. Returns ProposalResponse.

ListProposals

Fields

start_after: Option<u64>
limit: Option<u32>

Iterate over details of all proposals from oldest to newest. Returns ProposalListResponse

ReverseProposals

Fields

start_before: Option<u64>
limit: Option<u32>

Iterate reverse over details of all proposals, this is useful to easily query only the most recent proposals (to get updates). Returns ProposalListResponse

Vote

Fields

proposal_id: u64
voter: String

Query the vote made by the given voter on proposal_id. This should return an error if there is no such proposal. It will return a None value if the proposal exists but the voter did not vote. Returns VoteResponse

ListVotes

Fields

proposal_id: u64
start_after: Option<String>
limit: Option<u32>

Iterate (with pagination) over all votes for this proposal. The ordering is arbitrary, unlikely to be sorted by address. But ordering is consistent and pagination from the end of each page will cover all votes for the proposal. Returns VoteListResponse

Voter

Fields

address: String

Voter extension: Returns VoterResponse

ListVoters

Fields

start_after: Option<String>
limit: Option<u32>

ListVoters extension: Returns VoterListResponse

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The name of the generated JSON Schema. Read more

Generates a JSON Schema for this type. Read more

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.