QueryProposalsResponse is the response type for the Query/Proposals RPC method.

interface QueryProposalsResponse {
    pagination?: PageResponse;
    proposals: Proposal[];
}

Properties

pagination?: PageResponse

pagination defines the pagination in the response.

proposals: Proposal[]