import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../cosmos/base/query/v1beta1/pagination"; import { Params, ParamsAmino, ParamsSDKType } from "./params"; import { Spec, SpecAmino, SpecSDKType } from "./spec"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** QueryParamsRequest is request type for the Query/Params RPC method. */ export interface QueryParamsRequest { } export interface QueryParamsRequestProtoMsg { typeUrl: "/lavanet.lava.spec.QueryParamsRequest"; value: Uint8Array; } /** QueryParamsRequest is request type for the Query/Params RPC method. */ export interface QueryParamsRequestAmino { } export interface QueryParamsRequestAminoMsg { type: "/lavanet.lava.spec.QueryParamsRequest"; value: QueryParamsRequestAmino; } /** QueryParamsRequest is request type for the Query/Params RPC method. */ export interface QueryParamsRequestSDKType { } /** QueryParamsResponse is response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** params holds all the parameters of this module. */ params: Params; } export interface QueryParamsResponseProtoMsg { typeUrl: "/lavanet.lava.spec.QueryParamsResponse"; value: Uint8Array; } /** QueryParamsResponse is response type for the Query/Params RPC method. */ export interface QueryParamsResponseAmino { /** params holds all the parameters of this module. */ params?: ParamsAmino; } export interface QueryParamsResponseAminoMsg { type: "/lavanet.lava.spec.QueryParamsResponse"; value: QueryParamsResponseAmino; } /** QueryParamsResponse is response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { params: ParamsSDKType; } export interface QueryGetSpecRequest { chainID: string; } export interface QueryGetSpecRequestProtoMsg { typeUrl: "/lavanet.lava.spec.QueryGetSpecRequest"; value: Uint8Array; } export interface QueryGetSpecRequestAmino { ChainID?: string; } export interface QueryGetSpecRequestAminoMsg { type: "/lavanet.lava.spec.QueryGetSpecRequest"; value: QueryGetSpecRequestAmino; } export interface QueryGetSpecRequestSDKType { ChainID: string; } export interface QueryGetSpecResponse { spec: Spec; } export interface QueryGetSpecResponseProtoMsg { typeUrl: "/lavanet.lava.spec.QueryGetSpecResponse"; value: Uint8Array; } export interface QueryGetSpecResponseAmino { Spec?: SpecAmino; } export interface QueryGetSpecResponseAminoMsg { type: "/lavanet.lava.spec.QueryGetSpecResponse"; value: QueryGetSpecResponseAmino; } export interface QueryGetSpecResponseSDKType { Spec: SpecSDKType; } export interface QueryAllSpecRequest { pagination?: PageRequest; } export interface QueryAllSpecRequestProtoMsg { typeUrl: "/lavanet.lava.spec.QueryAllSpecRequest"; value: Uint8Array; } export interface QueryAllSpecRequestAmino { pagination?: PageRequestAmino; } export interface QueryAllSpecRequestAminoMsg { type: "/lavanet.lava.spec.QueryAllSpecRequest"; value: QueryAllSpecRequestAmino; } export interface QueryAllSpecRequestSDKType { pagination?: PageRequestSDKType; } export interface QueryAllSpecResponse { spec: Spec[]; pagination?: PageResponse; } export interface QueryAllSpecResponseProtoMsg { typeUrl: "/lavanet.lava.spec.QueryAllSpecResponse"; value: Uint8Array; } export interface QueryAllSpecResponseAmino { Spec?: SpecAmino[]; pagination?: PageResponseAmino; } export interface QueryAllSpecResponseAminoMsg { type: "/lavanet.lava.spec.QueryAllSpecResponse"; value: QueryAllSpecResponseAmino; } export interface QueryAllSpecResponseSDKType { Spec: SpecSDKType[]; pagination?: PageResponseSDKType; } export interface QueryShowAllChainsRequest { } export interface QueryShowAllChainsRequestProtoMsg { typeUrl: "/lavanet.lava.spec.QueryShowAllChainsRequest"; value: Uint8Array; } export interface QueryShowAllChainsRequestAmino { } export interface QueryShowAllChainsRequestAminoMsg { type: "/lavanet.lava.spec.QueryShowAllChainsRequest"; value: QueryShowAllChainsRequestAmino; } export interface QueryShowAllChainsRequestSDKType { } export interface QueryShowAllChainsResponse { chainInfoList: ShowAllChainsInfoStruct[]; } export interface QueryShowAllChainsResponseProtoMsg { typeUrl: "/lavanet.lava.spec.QueryShowAllChainsResponse"; value: Uint8Array; } export interface QueryShowAllChainsResponseAmino { chainInfoList?: ShowAllChainsInfoStructAmino[]; } export interface QueryShowAllChainsResponseAminoMsg { type: "/lavanet.lava.spec.QueryShowAllChainsResponse"; value: QueryShowAllChainsResponseAmino; } export interface QueryShowAllChainsResponseSDKType { chainInfoList: ShowAllChainsInfoStructSDKType[]; } export interface ShowAllChainsInfoStruct { chainName: string; chainID: string; enabledApiInterfaces: string[]; apiCount: bigint; } export interface ShowAllChainsInfoStructProtoMsg { typeUrl: "/lavanet.lava.spec.ShowAllChainsInfoStruct"; value: Uint8Array; } export interface ShowAllChainsInfoStructAmino { chainName?: string; chainID?: string; enabledApiInterfaces?: string[]; api_count?: string; } export interface ShowAllChainsInfoStructAminoMsg { type: "/lavanet.lava.spec.ShowAllChainsInfoStruct"; value: ShowAllChainsInfoStructAmino; } export interface ShowAllChainsInfoStructSDKType { chainName: string; chainID: string; enabledApiInterfaces: string[]; api_count: bigint; } export interface QueryShowChainInfoRequest { chainName: string; } export interface QueryShowChainInfoRequestProtoMsg { typeUrl: "/lavanet.lava.spec.QueryShowChainInfoRequest"; value: Uint8Array; } export interface QueryShowChainInfoRequestAmino { chainName?: string; } export interface QueryShowChainInfoRequestAminoMsg { type: "/lavanet.lava.spec.QueryShowChainInfoRequest"; value: QueryShowChainInfoRequestAmino; } export interface QueryShowChainInfoRequestSDKType { chainName: string; } export interface ApiList { interface: string; supportedApis: string[]; addon: string; } export interface ApiListProtoMsg { typeUrl: "/lavanet.lava.spec.ApiList"; value: Uint8Array; } export interface ApiListAmino { interface?: string; supportedApis?: string[]; addon?: string; } export interface ApiListAminoMsg { type: "/lavanet.lava.spec.ApiList"; value: ApiListAmino; } export interface ApiListSDKType { interface: string; supportedApis: string[]; addon: string; } export interface QueryShowChainInfoResponse { chainID: string; interfaces: string[]; supportedApisInterfaceList: ApiList[]; optionalInterfaces: string[]; } export interface QueryShowChainInfoResponseProtoMsg { typeUrl: "/lavanet.lava.spec.QueryShowChainInfoResponse"; value: Uint8Array; } export interface QueryShowChainInfoResponseAmino { chainID?: string; interfaces?: string[]; supportedApisInterfaceList?: ApiListAmino[]; optional_interfaces?: string[]; } export interface QueryShowChainInfoResponseAminoMsg { type: "/lavanet.lava.spec.QueryShowChainInfoResponse"; value: QueryShowChainInfoResponseAmino; } export interface QueryShowChainInfoResponseSDKType { chainID: string; interfaces: string[]; supportedApisInterfaceList: ApiListSDKType[]; optional_interfaces: string[]; } export declare const QueryParamsRequest: { typeUrl: string; encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): JsonSafe; fromPartial(_: Partial): QueryParamsRequest; fromAmino(_: QueryParamsRequestAmino): QueryParamsRequest; toAmino(_: QueryParamsRequest): QueryParamsRequestAmino; fromAminoMsg(object: QueryParamsRequestAminoMsg): QueryParamsRequest; fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest; toProto(message: QueryParamsRequest): Uint8Array; toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { typeUrl: string; 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; fromAmino(object: QueryParamsResponseAmino): QueryParamsResponse; toAmino(message: QueryParamsResponse): QueryParamsResponseAmino; fromAminoMsg(object: QueryParamsResponseAminoMsg): QueryParamsResponse; fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse; toProto(message: QueryParamsResponse): Uint8Array; toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryGetSpecRequest: { typeUrl: string; encode(message: QueryGetSpecRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryGetSpecRequest; fromJSON(object: any): QueryGetSpecRequest; toJSON(message: QueryGetSpecRequest): JsonSafe; fromPartial(object: Partial): QueryGetSpecRequest; fromAmino(object: QueryGetSpecRequestAmino): QueryGetSpecRequest; toAmino(message: QueryGetSpecRequest): QueryGetSpecRequestAmino; fromAminoMsg(object: QueryGetSpecRequestAminoMsg): QueryGetSpecRequest; fromProtoMsg(message: QueryGetSpecRequestProtoMsg): QueryGetSpecRequest; toProto(message: QueryGetSpecRequest): Uint8Array; toProtoMsg(message: QueryGetSpecRequest): QueryGetSpecRequestProtoMsg; }; export declare const QueryGetSpecResponse: { typeUrl: string; encode(message: QueryGetSpecResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryGetSpecResponse; fromJSON(object: any): QueryGetSpecResponse; toJSON(message: QueryGetSpecResponse): JsonSafe; fromPartial(object: Partial): QueryGetSpecResponse; fromAmino(object: QueryGetSpecResponseAmino): QueryGetSpecResponse; toAmino(message: QueryGetSpecResponse): QueryGetSpecResponseAmino; fromAminoMsg(object: QueryGetSpecResponseAminoMsg): QueryGetSpecResponse; fromProtoMsg(message: QueryGetSpecResponseProtoMsg): QueryGetSpecResponse; toProto(message: QueryGetSpecResponse): Uint8Array; toProtoMsg(message: QueryGetSpecResponse): QueryGetSpecResponseProtoMsg; }; export declare const QueryAllSpecRequest: { typeUrl: string; encode(message: QueryAllSpecRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryAllSpecRequest; fromJSON(object: any): QueryAllSpecRequest; toJSON(message: QueryAllSpecRequest): JsonSafe; fromPartial(object: Partial): QueryAllSpecRequest; fromAmino(object: QueryAllSpecRequestAmino): QueryAllSpecRequest; toAmino(message: QueryAllSpecRequest): QueryAllSpecRequestAmino; fromAminoMsg(object: QueryAllSpecRequestAminoMsg): QueryAllSpecRequest; fromProtoMsg(message: QueryAllSpecRequestProtoMsg): QueryAllSpecRequest; toProto(message: QueryAllSpecRequest): Uint8Array; toProtoMsg(message: QueryAllSpecRequest): QueryAllSpecRequestProtoMsg; }; export declare const QueryAllSpecResponse: { typeUrl: string; encode(message: QueryAllSpecResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryAllSpecResponse; fromJSON(object: any): QueryAllSpecResponse; toJSON(message: QueryAllSpecResponse): JsonSafe; fromPartial(object: Partial): QueryAllSpecResponse; fromAmino(object: QueryAllSpecResponseAmino): QueryAllSpecResponse; toAmino(message: QueryAllSpecResponse): QueryAllSpecResponseAmino; fromAminoMsg(object: QueryAllSpecResponseAminoMsg): QueryAllSpecResponse; fromProtoMsg(message: QueryAllSpecResponseProtoMsg): QueryAllSpecResponse; toProto(message: QueryAllSpecResponse): Uint8Array; toProtoMsg(message: QueryAllSpecResponse): QueryAllSpecResponseProtoMsg; }; export declare const QueryShowAllChainsRequest: { typeUrl: string; encode(_: QueryShowAllChainsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryShowAllChainsRequest; fromJSON(_: any): QueryShowAllChainsRequest; toJSON(_: QueryShowAllChainsRequest): JsonSafe; fromPartial(_: Partial): QueryShowAllChainsRequest; fromAmino(_: QueryShowAllChainsRequestAmino): QueryShowAllChainsRequest; toAmino(_: QueryShowAllChainsRequest): QueryShowAllChainsRequestAmino; fromAminoMsg(object: QueryShowAllChainsRequestAminoMsg): QueryShowAllChainsRequest; fromProtoMsg(message: QueryShowAllChainsRequestProtoMsg): QueryShowAllChainsRequest; toProto(message: QueryShowAllChainsRequest): Uint8Array; toProtoMsg(message: QueryShowAllChainsRequest): QueryShowAllChainsRequestProtoMsg; }; export declare const QueryShowAllChainsResponse: { typeUrl: string; encode(message: QueryShowAllChainsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryShowAllChainsResponse; fromJSON(object: any): QueryShowAllChainsResponse; toJSON(message: QueryShowAllChainsResponse): JsonSafe; fromPartial(object: Partial): QueryShowAllChainsResponse; fromAmino(object: QueryShowAllChainsResponseAmino): QueryShowAllChainsResponse; toAmino(message: QueryShowAllChainsResponse): QueryShowAllChainsResponseAmino; fromAminoMsg(object: QueryShowAllChainsResponseAminoMsg): QueryShowAllChainsResponse; fromProtoMsg(message: QueryShowAllChainsResponseProtoMsg): QueryShowAllChainsResponse; toProto(message: QueryShowAllChainsResponse): Uint8Array; toProtoMsg(message: QueryShowAllChainsResponse): QueryShowAllChainsResponseProtoMsg; }; export declare const ShowAllChainsInfoStruct: { typeUrl: string; encode(message: ShowAllChainsInfoStruct, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ShowAllChainsInfoStruct; fromJSON(object: any): ShowAllChainsInfoStruct; toJSON(message: ShowAllChainsInfoStruct): JsonSafe; fromPartial(object: Partial): ShowAllChainsInfoStruct; fromAmino(object: ShowAllChainsInfoStructAmino): ShowAllChainsInfoStruct; toAmino(message: ShowAllChainsInfoStruct): ShowAllChainsInfoStructAmino; fromAminoMsg(object: ShowAllChainsInfoStructAminoMsg): ShowAllChainsInfoStruct; fromProtoMsg(message: ShowAllChainsInfoStructProtoMsg): ShowAllChainsInfoStruct; toProto(message: ShowAllChainsInfoStruct): Uint8Array; toProtoMsg(message: ShowAllChainsInfoStruct): ShowAllChainsInfoStructProtoMsg; }; export declare const QueryShowChainInfoRequest: { typeUrl: string; encode(message: QueryShowChainInfoRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryShowChainInfoRequest; fromJSON(object: any): QueryShowChainInfoRequest; toJSON(message: QueryShowChainInfoRequest): JsonSafe; fromPartial(object: Partial): QueryShowChainInfoRequest; fromAmino(object: QueryShowChainInfoRequestAmino): QueryShowChainInfoRequest; toAmino(message: QueryShowChainInfoRequest): QueryShowChainInfoRequestAmino; fromAminoMsg(object: QueryShowChainInfoRequestAminoMsg): QueryShowChainInfoRequest; fromProtoMsg(message: QueryShowChainInfoRequestProtoMsg): QueryShowChainInfoRequest; toProto(message: QueryShowChainInfoRequest): Uint8Array; toProtoMsg(message: QueryShowChainInfoRequest): QueryShowChainInfoRequestProtoMsg; }; export declare const ApiList: { typeUrl: string; encode(message: ApiList, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ApiList; fromJSON(object: any): ApiList; toJSON(message: ApiList): JsonSafe; fromPartial(object: Partial): ApiList; fromAmino(object: ApiListAmino): ApiList; toAmino(message: ApiList): ApiListAmino; fromAminoMsg(object: ApiListAminoMsg): ApiList; fromProtoMsg(message: ApiListProtoMsg): ApiList; toProto(message: ApiList): Uint8Array; toProtoMsg(message: ApiList): ApiListProtoMsg; }; export declare const QueryShowChainInfoResponse: { typeUrl: string; encode(message: QueryShowChainInfoResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryShowChainInfoResponse; fromJSON(object: any): QueryShowChainInfoResponse; toJSON(message: QueryShowChainInfoResponse): JsonSafe; fromPartial(object: Partial): QueryShowChainInfoResponse; fromAmino(object: QueryShowChainInfoResponseAmino): QueryShowChainInfoResponse; toAmino(message: QueryShowChainInfoResponse): QueryShowChainInfoResponseAmino; fromAminoMsg(object: QueryShowChainInfoResponseAminoMsg): QueryShowChainInfoResponse; fromProtoMsg(message: QueryShowChainInfoResponseProtoMsg): QueryShowChainInfoResponse; toProto(message: QueryShowChainInfoResponse): Uint8Array; toProtoMsg(message: QueryShowChainInfoResponse): QueryShowChainInfoResponseProtoMsg; };