import { Plan, type PlanSDKType, ModuleVersion, type ModuleVersionSDKType } from './upgrade.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** * QueryCurrentPlanRequest is the request type for the Query/CurrentPlan RPC * method. */ export interface QueryCurrentPlanRequest { } export interface QueryCurrentPlanRequestProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryCurrentPlanRequest'; value: Uint8Array; } /** * QueryCurrentPlanRequest is the request type for the Query/CurrentPlan RPC * method. */ export interface QueryCurrentPlanRequestSDKType { } /** * QueryCurrentPlanResponse is the response type for the Query/CurrentPlan RPC * method. */ export interface QueryCurrentPlanResponse { /** plan is the current upgrade plan. */ plan?: Plan; } export interface QueryCurrentPlanResponseProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryCurrentPlanResponse'; value: Uint8Array; } /** * QueryCurrentPlanResponse is the response type for the Query/CurrentPlan RPC * method. */ export interface QueryCurrentPlanResponseSDKType { plan?: PlanSDKType; } /** * QueryCurrentPlanRequest is the request type for the Query/AppliedPlan RPC * method. */ export interface QueryAppliedPlanRequest { /** name is the name of the applied plan to query for. */ name: string; } export interface QueryAppliedPlanRequestProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryAppliedPlanRequest'; value: Uint8Array; } /** * QueryCurrentPlanRequest is the request type for the Query/AppliedPlan RPC * method. */ export interface QueryAppliedPlanRequestSDKType { name: string; } /** * QueryAppliedPlanResponse is the response type for the Query/AppliedPlan RPC * method. */ export interface QueryAppliedPlanResponse { /** height is the block height at which the plan was applied. */ height: bigint; } export interface QueryAppliedPlanResponseProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryAppliedPlanResponse'; value: Uint8Array; } /** * QueryAppliedPlanResponse is the response type for the Query/AppliedPlan RPC * method. */ export interface QueryAppliedPlanResponseSDKType { height: bigint; } /** * QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState * RPC method. */ /** @deprecated */ export interface QueryUpgradedConsensusStateRequest { /** * last height of the current chain must be sent in request * as this is the height under which next consensus state is stored */ lastHeight: bigint; } export interface QueryUpgradedConsensusStateRequestProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateRequest'; value: Uint8Array; } /** * QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState * RPC method. */ /** @deprecated */ export interface QueryUpgradedConsensusStateRequestSDKType { last_height: bigint; } /** * QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState * RPC method. */ /** @deprecated */ export interface QueryUpgradedConsensusStateResponse { /** Since: cosmos-sdk 0.43 */ upgradedConsensusState: Uint8Array; } export interface QueryUpgradedConsensusStateResponseProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse'; value: Uint8Array; } /** * QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState * RPC method. */ /** @deprecated */ export interface QueryUpgradedConsensusStateResponseSDKType { upgraded_consensus_state: Uint8Array; } /** * QueryModuleVersionsRequest is the request type for the Query/ModuleVersions * RPC method. * * Since: cosmos-sdk 0.43 */ export interface QueryModuleVersionsRequest { /** * module_name is a field to query a specific module * consensus version from state. Leaving this empty will * fetch the full list of module versions from state */ moduleName: string; } export interface QueryModuleVersionsRequestProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryModuleVersionsRequest'; value: Uint8Array; } /** * QueryModuleVersionsRequest is the request type for the Query/ModuleVersions * RPC method. * * Since: cosmos-sdk 0.43 */ export interface QueryModuleVersionsRequestSDKType { module_name: string; } /** * QueryModuleVersionsResponse is the response type for the Query/ModuleVersions * RPC method. * * Since: cosmos-sdk 0.43 */ export interface QueryModuleVersionsResponse { /** module_versions is a list of module names with their consensus versions. */ moduleVersions: ModuleVersion[]; } export interface QueryModuleVersionsResponseProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryModuleVersionsResponse'; value: Uint8Array; } /** * QueryModuleVersionsResponse is the response type for the Query/ModuleVersions * RPC method. * * Since: cosmos-sdk 0.43 */ export interface QueryModuleVersionsResponseSDKType { module_versions: ModuleVersionSDKType[]; } /** * QueryAuthorityRequest is the request type for Query/Authority * * Since: cosmos-sdk 0.46 */ export interface QueryAuthorityRequest { } export interface QueryAuthorityRequestProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryAuthorityRequest'; value: Uint8Array; } /** * QueryAuthorityRequest is the request type for Query/Authority * * Since: cosmos-sdk 0.46 */ export interface QueryAuthorityRequestSDKType { } /** * QueryAuthorityResponse is the response type for Query/Authority * * Since: cosmos-sdk 0.46 */ export interface QueryAuthorityResponse { address: string; } export interface QueryAuthorityResponseProtoMsg { typeUrl: '/cosmos.upgrade.v1beta1.QueryAuthorityResponse'; value: Uint8Array; } /** * QueryAuthorityResponse is the response type for Query/Authority * * Since: cosmos-sdk 0.46 */ export interface QueryAuthorityResponseSDKType { address: string; } export declare const QueryCurrentPlanRequest: { typeUrl: "/cosmos.upgrade.v1beta1.QueryCurrentPlanRequest"; encode(_: QueryCurrentPlanRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryCurrentPlanRequest; fromJSON(_: any): QueryCurrentPlanRequest; toJSON(_: QueryCurrentPlanRequest): JsonSafe; fromPartial(_: Partial): QueryCurrentPlanRequest; fromProtoMsg(message: QueryCurrentPlanRequestProtoMsg): QueryCurrentPlanRequest; toProto(message: QueryCurrentPlanRequest): Uint8Array; toProtoMsg(message: QueryCurrentPlanRequest): QueryCurrentPlanRequestProtoMsg; }; export declare const QueryCurrentPlanResponse: { typeUrl: "/cosmos.upgrade.v1beta1.QueryCurrentPlanResponse"; encode(message: QueryCurrentPlanResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryCurrentPlanResponse; fromJSON(object: any): QueryCurrentPlanResponse; toJSON(message: QueryCurrentPlanResponse): JsonSafe; fromPartial(object: Partial): QueryCurrentPlanResponse; fromProtoMsg(message: QueryCurrentPlanResponseProtoMsg): QueryCurrentPlanResponse; toProto(message: QueryCurrentPlanResponse): Uint8Array; toProtoMsg(message: QueryCurrentPlanResponse): QueryCurrentPlanResponseProtoMsg; }; export declare const QueryAppliedPlanRequest: { typeUrl: "/cosmos.upgrade.v1beta1.QueryAppliedPlanRequest"; encode(message: QueryAppliedPlanRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryAppliedPlanRequest; fromJSON(object: any): QueryAppliedPlanRequest; toJSON(message: QueryAppliedPlanRequest): JsonSafe; fromPartial(object: Partial): QueryAppliedPlanRequest; fromProtoMsg(message: QueryAppliedPlanRequestProtoMsg): QueryAppliedPlanRequest; toProto(message: QueryAppliedPlanRequest): Uint8Array; toProtoMsg(message: QueryAppliedPlanRequest): QueryAppliedPlanRequestProtoMsg; }; export declare const QueryAppliedPlanResponse: { typeUrl: "/cosmos.upgrade.v1beta1.QueryAppliedPlanResponse"; encode(message: QueryAppliedPlanResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryAppliedPlanResponse; fromJSON(object: any): QueryAppliedPlanResponse; toJSON(message: QueryAppliedPlanResponse): JsonSafe; fromPartial(object: Partial): QueryAppliedPlanResponse; fromProtoMsg(message: QueryAppliedPlanResponseProtoMsg): QueryAppliedPlanResponse; toProto(message: QueryAppliedPlanResponse): Uint8Array; toProtoMsg(message: QueryAppliedPlanResponse): QueryAppliedPlanResponseProtoMsg; }; export declare const QueryUpgradedConsensusStateRequest: { typeUrl: "/cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateRequest"; encode(message: QueryUpgradedConsensusStateRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedConsensusStateRequest; fromJSON(object: any): QueryUpgradedConsensusStateRequest; toJSON(message: QueryUpgradedConsensusStateRequest): JsonSafe; fromPartial(object: Partial): QueryUpgradedConsensusStateRequest; fromProtoMsg(message: QueryUpgradedConsensusStateRequestProtoMsg): QueryUpgradedConsensusStateRequest; toProto(message: QueryUpgradedConsensusStateRequest): Uint8Array; toProtoMsg(message: QueryUpgradedConsensusStateRequest): QueryUpgradedConsensusStateRequestProtoMsg; }; export declare const QueryUpgradedConsensusStateResponse: { typeUrl: "/cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse"; encode(message: QueryUpgradedConsensusStateResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedConsensusStateResponse; fromJSON(object: any): QueryUpgradedConsensusStateResponse; toJSON(message: QueryUpgradedConsensusStateResponse): JsonSafe; fromPartial(object: Partial): QueryUpgradedConsensusStateResponse; fromProtoMsg(message: QueryUpgradedConsensusStateResponseProtoMsg): QueryUpgradedConsensusStateResponse; toProto(message: QueryUpgradedConsensusStateResponse): Uint8Array; toProtoMsg(message: QueryUpgradedConsensusStateResponse): QueryUpgradedConsensusStateResponseProtoMsg; }; export declare const QueryModuleVersionsRequest: { typeUrl: "/cosmos.upgrade.v1beta1.QueryModuleVersionsRequest"; encode(message: QueryModuleVersionsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleVersionsRequest; fromJSON(object: any): QueryModuleVersionsRequest; toJSON(message: QueryModuleVersionsRequest): JsonSafe; fromPartial(object: Partial): QueryModuleVersionsRequest; fromProtoMsg(message: QueryModuleVersionsRequestProtoMsg): QueryModuleVersionsRequest; toProto(message: QueryModuleVersionsRequest): Uint8Array; toProtoMsg(message: QueryModuleVersionsRequest): QueryModuleVersionsRequestProtoMsg; }; export declare const QueryModuleVersionsResponse: { typeUrl: "/cosmos.upgrade.v1beta1.QueryModuleVersionsResponse"; encode(message: QueryModuleVersionsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleVersionsResponse; fromJSON(object: any): QueryModuleVersionsResponse; toJSON(message: QueryModuleVersionsResponse): JsonSafe; fromPartial(object: Partial): QueryModuleVersionsResponse; fromProtoMsg(message: QueryModuleVersionsResponseProtoMsg): QueryModuleVersionsResponse; toProto(message: QueryModuleVersionsResponse): Uint8Array; toProtoMsg(message: QueryModuleVersionsResponse): QueryModuleVersionsResponseProtoMsg; }; export declare const QueryAuthorityRequest: { typeUrl: "/cosmos.upgrade.v1beta1.QueryAuthorityRequest"; encode(_: QueryAuthorityRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryAuthorityRequest; fromJSON(_: any): QueryAuthorityRequest; toJSON(_: QueryAuthorityRequest): JsonSafe; fromPartial(_: Partial): QueryAuthorityRequest; fromProtoMsg(message: QueryAuthorityRequestProtoMsg): QueryAuthorityRequest; toProto(message: QueryAuthorityRequest): Uint8Array; toProtoMsg(message: QueryAuthorityRequest): QueryAuthorityRequestProtoMsg; }; export declare const QueryAuthorityResponse: { typeUrl: "/cosmos.upgrade.v1beta1.QueryAuthorityResponse"; encode(message: QueryAuthorityResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryAuthorityResponse; fromJSON(object: any): QueryAuthorityResponse; toJSON(message: QueryAuthorityResponse): JsonSafe; fromPartial(object: Partial): QueryAuthorityResponse; fromProtoMsg(message: QueryAuthorityResponseProtoMsg): QueryAuthorityResponse; toProto(message: QueryAuthorityResponse): Uint8Array; toProtoMsg(message: QueryAuthorityResponse): QueryAuthorityResponseProtoMsg; }; //# sourceMappingURL=query.d.ts.map