forked from LaconicNetwork/cosmos-explorer
221 lines
7.5 KiB
TypeScript
221 lines
7.5 KiB
TypeScript
/// <reference types="long" />
|
|
import { Plan, PlanSDKType, ModuleVersion, ModuleVersionSDKType } from "./upgrade";
|
|
import * as _m0 from "protobufjs/minimal";
|
|
import { DeepPartial, Long } from "../../../helpers";
|
|
/**
|
|
* QueryCurrentPlanRequest is the request type for the Query/CurrentPlan RPC
|
|
* method.
|
|
*/
|
|
export interface QueryCurrentPlanRequest {
|
|
}
|
|
/**
|
|
* 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;
|
|
}
|
|
/**
|
|
* 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;
|
|
}
|
|
/**
|
|
* 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: Long;
|
|
}
|
|
/**
|
|
* QueryAppliedPlanResponse is the response type for the Query/AppliedPlan RPC
|
|
* method.
|
|
*/
|
|
export interface QueryAppliedPlanResponseSDKType {
|
|
height: Long;
|
|
}
|
|
/**
|
|
* 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: Long;
|
|
}
|
|
/**
|
|
* QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState
|
|
* RPC method.
|
|
*/
|
|
/** @deprecated */
|
|
export interface QueryUpgradedConsensusStateRequestSDKType {
|
|
last_height: Long;
|
|
}
|
|
/**
|
|
* QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState
|
|
* RPC method.
|
|
*/
|
|
/** @deprecated */
|
|
export interface QueryUpgradedConsensusStateResponse {
|
|
/** Since: cosmos-sdk 0.43 */
|
|
upgradedConsensusState: 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;
|
|
}
|
|
/**
|
|
* 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[];
|
|
}
|
|
/**
|
|
* 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 {
|
|
}
|
|
/**
|
|
* 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;
|
|
}
|
|
/**
|
|
* QueryAuthorityResponse is the response type for Query/Authority
|
|
*
|
|
* Since: cosmos-sdk 0.46
|
|
*/
|
|
export interface QueryAuthorityResponseSDKType {
|
|
address: string;
|
|
}
|
|
export declare const QueryCurrentPlanRequest: {
|
|
encode(_: QueryCurrentPlanRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryCurrentPlanRequest;
|
|
fromPartial(_: DeepPartial<QueryCurrentPlanRequest>): QueryCurrentPlanRequest;
|
|
};
|
|
export declare const QueryCurrentPlanResponse: {
|
|
encode(message: QueryCurrentPlanResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryCurrentPlanResponse;
|
|
fromPartial(object: DeepPartial<QueryCurrentPlanResponse>): QueryCurrentPlanResponse;
|
|
};
|
|
export declare const QueryAppliedPlanRequest: {
|
|
encode(message: QueryAppliedPlanRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryAppliedPlanRequest;
|
|
fromPartial(object: DeepPartial<QueryAppliedPlanRequest>): QueryAppliedPlanRequest;
|
|
};
|
|
export declare const QueryAppliedPlanResponse: {
|
|
encode(message: QueryAppliedPlanResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryAppliedPlanResponse;
|
|
fromPartial(object: DeepPartial<QueryAppliedPlanResponse>): QueryAppliedPlanResponse;
|
|
};
|
|
export declare const QueryUpgradedConsensusStateRequest: {
|
|
encode(message: QueryUpgradedConsensusStateRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedConsensusStateRequest;
|
|
fromPartial(object: DeepPartial<QueryUpgradedConsensusStateRequest>): QueryUpgradedConsensusStateRequest;
|
|
};
|
|
export declare const QueryUpgradedConsensusStateResponse: {
|
|
encode(message: QueryUpgradedConsensusStateResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedConsensusStateResponse;
|
|
fromPartial(object: DeepPartial<QueryUpgradedConsensusStateResponse>): QueryUpgradedConsensusStateResponse;
|
|
};
|
|
export declare const QueryModuleVersionsRequest: {
|
|
encode(message: QueryModuleVersionsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleVersionsRequest;
|
|
fromPartial(object: DeepPartial<QueryModuleVersionsRequest>): QueryModuleVersionsRequest;
|
|
};
|
|
export declare const QueryModuleVersionsResponse: {
|
|
encode(message: QueryModuleVersionsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleVersionsResponse;
|
|
fromPartial(object: DeepPartial<QueryModuleVersionsResponse>): QueryModuleVersionsResponse;
|
|
};
|
|
export declare const QueryAuthorityRequest: {
|
|
encode(_: QueryAuthorityRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryAuthorityRequest;
|
|
fromPartial(_: DeepPartial<QueryAuthorityRequest>): QueryAuthorityRequest;
|
|
};
|
|
export declare const QueryAuthorityResponse: {
|
|
encode(message: QueryAuthorityResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryAuthorityResponse;
|
|
fromPartial(object: DeepPartial<QueryAuthorityResponse>): QueryAuthorityResponse;
|
|
};
|