QueryVotesResponse is the response type for the Query/Votes RPC method.

interface QueryVotesResponse {
    pagination?: PageResponse;
    votes: Vote[];
}

Properties

Properties

pagination?: PageResponse

pagination defines the pagination in the response.

votes: Vote[]

votes defined the queried votes.