import { ProposalStatus, Proposal, type ProposalSDKType, Vote, type VoteSDKType, VotingParams, type VotingParamsSDKType, DepositParams, type DepositParamsSDKType, TallyParams, type TallyParamsSDKType, Deposit, type DepositSDKType, TallyResult, type TallyResultSDKType } from './gov.js'; import { PageRequest, type PageRequestSDKType, PageResponse, type PageResponseSDKType } from '../../base/query/v1beta1/pagination.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequest { /** proposal_id defines the unique id of the proposal. */ proposalId: bigint; } export interface QueryProposalRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryProposalRequest'; value: Uint8Array; } /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequestSDKType { proposal_id: bigint; } /** QueryProposalResponse is the response type for the Query/Proposal RPC method. */ export interface QueryProposalResponse { proposal: Proposal; } export interface QueryProposalResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryProposalResponse'; value: Uint8Array; } /** QueryProposalResponse is the response type for the Query/Proposal RPC method. */ export interface QueryProposalResponseSDKType { proposal: ProposalSDKType; } /** QueryProposalsRequest is the request type for the Query/Proposals RPC method. */ export interface QueryProposalsRequest { /** proposal_status defines the status of the proposals. */ proposalStatus: ProposalStatus; /** voter defines the voter address for the proposals. */ voter: string; /** depositor defines the deposit addresses from the proposals. */ depositor: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryProposalsRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryProposalsRequest'; value: Uint8Array; } /** QueryProposalsRequest is the request type for the Query/Proposals RPC method. */ export interface QueryProposalsRequestSDKType { proposal_status: ProposalStatus; voter: string; depositor: string; pagination?: PageRequestSDKType; } /** * QueryProposalsResponse is the response type for the Query/Proposals RPC * method. */ export interface QueryProposalsResponse { /** proposals defines all the requested governance proposals. */ proposals: Proposal[]; /** pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryProposalsResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryProposalsResponse'; value: Uint8Array; } /** * QueryProposalsResponse is the response type for the Query/Proposals RPC * method. */ export interface QueryProposalsResponseSDKType { proposals: ProposalSDKType[]; pagination?: PageResponseSDKType; } /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequest { /** proposal_id defines the unique id of the proposal. */ proposalId: bigint; /** voter defines the voter address for the proposals. */ voter: string; } export interface QueryVoteRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryVoteRequest'; value: Uint8Array; } /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequestSDKType { proposal_id: bigint; voter: string; } /** QueryVoteResponse is the response type for the Query/Vote RPC method. */ export interface QueryVoteResponse { /** vote defines the queried vote. */ vote: Vote; } export interface QueryVoteResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryVoteResponse'; value: Uint8Array; } /** QueryVoteResponse is the response type for the Query/Vote RPC method. */ export interface QueryVoteResponseSDKType { vote: VoteSDKType; } /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequest { /** proposal_id defines the unique id of the proposal. */ proposalId: bigint; /** pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryVotesRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryVotesRequest'; value: Uint8Array; } /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequestSDKType { proposal_id: bigint; pagination?: PageRequestSDKType; } /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponse { /** votes defines the queried votes. */ votes: Vote[]; /** pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryVotesResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryVotesResponse'; value: Uint8Array; } /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponseSDKType { votes: VoteSDKType[]; pagination?: PageResponseSDKType; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { /** * params_type defines which parameters to query for, can be one of "voting", * "tallying" or "deposit". */ paramsType: string; } export interface QueryParamsRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryParamsRequest'; value: Uint8Array; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequestSDKType { params_type: string; } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** voting_params defines the parameters related to voting. */ votingParams: VotingParams; /** deposit_params defines the parameters related to deposit. */ depositParams: DepositParams; /** tally_params defines the parameters related to tally. */ tallyParams: TallyParams; } export interface QueryParamsResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryParamsResponse'; value: Uint8Array; } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { voting_params: VotingParamsSDKType; deposit_params: DepositParamsSDKType; tally_params: TallyParamsSDKType; } /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequest { /** proposal_id defines the unique id of the proposal. */ proposalId: bigint; /** depositor defines the deposit addresses from the proposals. */ depositor: string; } export interface QueryDepositRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryDepositRequest'; value: Uint8Array; } /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequestSDKType { proposal_id: bigint; depositor: string; } /** QueryDepositResponse is the response type for the Query/Deposit RPC method. */ export interface QueryDepositResponse { /** deposit defines the requested deposit. */ deposit: Deposit; } export interface QueryDepositResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryDepositResponse'; value: Uint8Array; } /** QueryDepositResponse is the response type for the Query/Deposit RPC method. */ export interface QueryDepositResponseSDKType { deposit: DepositSDKType; } /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequest { /** proposal_id defines the unique id of the proposal. */ proposalId: bigint; /** pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryDepositsRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryDepositsRequest'; value: Uint8Array; } /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequestSDKType { proposal_id: bigint; pagination?: PageRequestSDKType; } /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponse { /** deposits defines the requested deposits. */ deposits: Deposit[]; /** pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryDepositsResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryDepositsResponse'; value: Uint8Array; } /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponseSDKType { deposits: DepositSDKType[]; pagination?: PageResponseSDKType; } /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequest { /** proposal_id defines the unique id of the proposal. */ proposalId: bigint; } export interface QueryTallyResultRequestProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryTallyResultRequest'; value: Uint8Array; } /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequestSDKType { proposal_id: bigint; } /** QueryTallyResultResponse is the response type for the Query/Tally RPC method. */ export interface QueryTallyResultResponse { /** tally defines the requested tally. */ tally: TallyResult; } export interface QueryTallyResultResponseProtoMsg { typeUrl: '/cosmos.gov.v1beta1.QueryTallyResultResponse'; value: Uint8Array; } /** QueryTallyResultResponse is the response type for the Query/Tally RPC method. */ export interface QueryTallyResultResponseSDKType { tally: TallyResultSDKType; } export declare const QueryProposalRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryProposalRequest"; encode(message: QueryProposalRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalRequest; fromJSON(object: any): QueryProposalRequest; toJSON(message: QueryProposalRequest): JsonSafe; fromPartial(object: Partial): QueryProposalRequest; fromProtoMsg(message: QueryProposalRequestProtoMsg): QueryProposalRequest; toProto(message: QueryProposalRequest): Uint8Array; toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg; }; export declare const QueryProposalResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryProposalResponse"; encode(message: QueryProposalResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalResponse; fromJSON(object: any): QueryProposalResponse; toJSON(message: QueryProposalResponse): JsonSafe; fromPartial(object: Partial): QueryProposalResponse; fromProtoMsg(message: QueryProposalResponseProtoMsg): QueryProposalResponse; toProto(message: QueryProposalResponse): Uint8Array; toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg; }; export declare const QueryProposalsRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryProposalsRequest"; encode(message: QueryProposalsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsRequest; fromJSON(object: any): QueryProposalsRequest; toJSON(message: QueryProposalsRequest): JsonSafe; fromPartial(object: Partial): QueryProposalsRequest; fromProtoMsg(message: QueryProposalsRequestProtoMsg): QueryProposalsRequest; toProto(message: QueryProposalsRequest): Uint8Array; toProtoMsg(message: QueryProposalsRequest): QueryProposalsRequestProtoMsg; }; export declare const QueryProposalsResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryProposalsResponse"; encode(message: QueryProposalsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsResponse; fromJSON(object: any): QueryProposalsResponse; toJSON(message: QueryProposalsResponse): JsonSafe; fromPartial(object: Partial): QueryProposalsResponse; fromProtoMsg(message: QueryProposalsResponseProtoMsg): QueryProposalsResponse; toProto(message: QueryProposalsResponse): Uint8Array; toProtoMsg(message: QueryProposalsResponse): QueryProposalsResponseProtoMsg; }; export declare const QueryVoteRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryVoteRequest"; encode(message: QueryVoteRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteRequest; fromJSON(object: any): QueryVoteRequest; toJSON(message: QueryVoteRequest): JsonSafe; fromPartial(object: Partial): QueryVoteRequest; fromProtoMsg(message: QueryVoteRequestProtoMsg): QueryVoteRequest; toProto(message: QueryVoteRequest): Uint8Array; toProtoMsg(message: QueryVoteRequest): QueryVoteRequestProtoMsg; }; export declare const QueryVoteResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryVoteResponse"; encode(message: QueryVoteResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteResponse; fromJSON(object: any): QueryVoteResponse; toJSON(message: QueryVoteResponse): JsonSafe; fromPartial(object: Partial): QueryVoteResponse; fromProtoMsg(message: QueryVoteResponseProtoMsg): QueryVoteResponse; toProto(message: QueryVoteResponse): Uint8Array; toProtoMsg(message: QueryVoteResponse): QueryVoteResponseProtoMsg; }; export declare const QueryVotesRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryVotesRequest"; encode(message: QueryVotesRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesRequest; fromJSON(object: any): QueryVotesRequest; toJSON(message: QueryVotesRequest): JsonSafe; fromPartial(object: Partial): QueryVotesRequest; fromProtoMsg(message: QueryVotesRequestProtoMsg): QueryVotesRequest; toProto(message: QueryVotesRequest): Uint8Array; toProtoMsg(message: QueryVotesRequest): QueryVotesRequestProtoMsg; }; export declare const QueryVotesResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryVotesResponse"; encode(message: QueryVotesResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesResponse; fromJSON(object: any): QueryVotesResponse; toJSON(message: QueryVotesResponse): JsonSafe; fromPartial(object: Partial): QueryVotesResponse; fromProtoMsg(message: QueryVotesResponseProtoMsg): QueryVotesResponse; toProto(message: QueryVotesResponse): Uint8Array; toProtoMsg(message: QueryVotesResponse): QueryVotesResponseProtoMsg; }; export declare const QueryParamsRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryParamsRequest"; encode(message: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(object: any): QueryParamsRequest; toJSON(message: QueryParamsRequest): JsonSafe; fromPartial(object: Partial): QueryParamsRequest; fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest; toProto(message: QueryParamsRequest): Uint8Array; toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryParamsResponse"; encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): JsonSafe; fromPartial(object: Partial): QueryParamsResponse; fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse; toProto(message: QueryParamsResponse): Uint8Array; toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryDepositRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryDepositRequest"; encode(message: QueryDepositRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositRequest; fromJSON(object: any): QueryDepositRequest; toJSON(message: QueryDepositRequest): JsonSafe; fromPartial(object: Partial): QueryDepositRequest; fromProtoMsg(message: QueryDepositRequestProtoMsg): QueryDepositRequest; toProto(message: QueryDepositRequest): Uint8Array; toProtoMsg(message: QueryDepositRequest): QueryDepositRequestProtoMsg; }; export declare const QueryDepositResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryDepositResponse"; encode(message: QueryDepositResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositResponse; fromJSON(object: any): QueryDepositResponse; toJSON(message: QueryDepositResponse): JsonSafe; fromPartial(object: Partial): QueryDepositResponse; fromProtoMsg(message: QueryDepositResponseProtoMsg): QueryDepositResponse; toProto(message: QueryDepositResponse): Uint8Array; toProtoMsg(message: QueryDepositResponse): QueryDepositResponseProtoMsg; }; export declare const QueryDepositsRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryDepositsRequest"; encode(message: QueryDepositsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositsRequest; fromJSON(object: any): QueryDepositsRequest; toJSON(message: QueryDepositsRequest): JsonSafe; fromPartial(object: Partial): QueryDepositsRequest; fromProtoMsg(message: QueryDepositsRequestProtoMsg): QueryDepositsRequest; toProto(message: QueryDepositsRequest): Uint8Array; toProtoMsg(message: QueryDepositsRequest): QueryDepositsRequestProtoMsg; }; export declare const QueryDepositsResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryDepositsResponse"; encode(message: QueryDepositsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositsResponse; fromJSON(object: any): QueryDepositsResponse; toJSON(message: QueryDepositsResponse): JsonSafe; fromPartial(object: Partial): QueryDepositsResponse; fromProtoMsg(message: QueryDepositsResponseProtoMsg): QueryDepositsResponse; toProto(message: QueryDepositsResponse): Uint8Array; toProtoMsg(message: QueryDepositsResponse): QueryDepositsResponseProtoMsg; }; export declare const QueryTallyResultRequest: { typeUrl: "/cosmos.gov.v1beta1.QueryTallyResultRequest"; encode(message: QueryTallyResultRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultRequest; fromJSON(object: any): QueryTallyResultRequest; toJSON(message: QueryTallyResultRequest): JsonSafe; fromPartial(object: Partial): QueryTallyResultRequest; fromProtoMsg(message: QueryTallyResultRequestProtoMsg): QueryTallyResultRequest; toProto(message: QueryTallyResultRequest): Uint8Array; toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg; }; export declare const QueryTallyResultResponse: { typeUrl: "/cosmos.gov.v1beta1.QueryTallyResultResponse"; encode(message: QueryTallyResultResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultResponse; fromJSON(object: any): QueryTallyResultResponse; toJSON(message: QueryTallyResultResponse): JsonSafe; fromPartial(object: Partial): QueryTallyResultResponse; fromProtoMsg(message: QueryTallyResultResponseProtoMsg): QueryTallyResultResponse; toProto(message: QueryTallyResultResponse): Uint8Array; toProtoMsg(message: QueryTallyResultResponse): QueryTallyResultResponseProtoMsg; }; //# sourceMappingURL=query.d.ts.map