/* eslint-disable */ import Long from 'long'; import _m0 from 'protobufjs/minimal'; import { Params, ValidatorSigningInfo } from '../../../cosmos/slashing/v1beta1/slashing'; import { PageRequest, PageResponse } from '../../../cosmos/base/query/v1beta1/pagination'; export const protobufPackage = 'cosmos.slashing.v1beta1'; /** QueryParamsRequest is the request type for the Query/Params RPC method */ export interface QueryParamsRequest {} /** QueryParamsResponse is the response type for the Query/Params RPC method */ export interface QueryParamsResponse { params?: Params; } /** * QuerySigningInfoRequest is the request type for the Query/SigningInfo RPC * method */ export interface QuerySigningInfoRequest { /** cons_address is the address to query signing info of */ consAddress: string; } /** * QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC * method */ export interface QuerySigningInfoResponse { /** val_signing_info is the signing info of requested val cons address */ valSigningInfo?: ValidatorSigningInfo; } /** * QuerySigningInfosRequest is the request type for the Query/SigningInfos RPC * method */ export interface QuerySigningInfosRequest { pagination?: PageRequest; } /** * QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC * method */ export interface QuerySigningInfosResponse { /** info is the signing info of all validators */ info: ValidatorSigningInfo[]; pagination?: PageResponse; } const baseQueryParamsRequest: object = {}; export const QueryParamsRequest = { encode(_: QueryParamsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = { ...baseQueryParamsRequest } as QueryParamsRequest; while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(_: any): QueryParamsRequest { const message = { ...baseQueryParamsRequest } as QueryParamsRequest; return message; }, toJSON(_: QueryParamsRequest): unknown { const obj: any = {}; return obj; }, fromPartial(_: DeepPartial): QueryParamsRequest { const message = { ...baseQueryParamsRequest } as QueryParamsRequest; return message; }, }; const baseQueryParamsResponse: object = {}; export const QueryParamsResponse = { encode(message: QueryParamsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (message.params !== undefined) { Params.encode(message.params, writer.uint32(10).fork()).ldelim(); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = { ...baseQueryParamsResponse } as QueryParamsResponse; while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.params = Params.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): QueryParamsResponse { const message = { ...baseQueryParamsResponse } as QueryParamsResponse; if (object.params !== undefined && object.params !== null) { message.params = Params.fromJSON(object.params); } else { message.params = undefined; } return message; }, toJSON(message: QueryParamsResponse): unknown { const obj: any = {}; message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined); return obj; }, fromPartial(object: DeepPartial): QueryParamsResponse { const message = { ...baseQueryParamsResponse } as QueryParamsResponse; if (object.params !== undefined && object.params !== null) { message.params = Params.fromPartial(object.params); } else { message.params = undefined; } return message; }, }; const baseQuerySigningInfoRequest: object = { consAddress: '' }; export const QuerySigningInfoRequest = { encode(message: QuerySigningInfoRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (message.consAddress !== '') { writer.uint32(10).string(message.consAddress); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfoRequest { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = { ...baseQuerySigningInfoRequest } as QuerySigningInfoRequest; while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.consAddress = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): QuerySigningInfoRequest { const message = { ...baseQuerySigningInfoRequest } as QuerySigningInfoRequest; if (object.consAddress !== undefined && object.consAddress !== null) { message.consAddress = String(object.consAddress); } else { message.consAddress = ''; } return message; }, toJSON(message: QuerySigningInfoRequest): unknown { const obj: any = {}; message.consAddress !== undefined && (obj.consAddress = message.consAddress); return obj; }, fromPartial(object: DeepPartial): QuerySigningInfoRequest { const message = { ...baseQuerySigningInfoRequest } as QuerySigningInfoRequest; if (object.consAddress !== undefined && object.consAddress !== null) { message.consAddress = object.consAddress; } else { message.consAddress = ''; } return message; }, }; const baseQuerySigningInfoResponse: object = {}; export const QuerySigningInfoResponse = { encode(message: QuerySigningInfoResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (message.valSigningInfo !== undefined) { ValidatorSigningInfo.encode(message.valSigningInfo, writer.uint32(10).fork()).ldelim(); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfoResponse { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = { ...baseQuerySigningInfoResponse } as QuerySigningInfoResponse; while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.valSigningInfo = ValidatorSigningInfo.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): QuerySigningInfoResponse { const message = { ...baseQuerySigningInfoResponse } as QuerySigningInfoResponse; if (object.valSigningInfo !== undefined && object.valSigningInfo !== null) { message.valSigningInfo = ValidatorSigningInfo.fromJSON(object.valSigningInfo); } else { message.valSigningInfo = undefined; } return message; }, toJSON(message: QuerySigningInfoResponse): unknown { const obj: any = {}; message.valSigningInfo !== undefined && (obj.valSigningInfo = message.valSigningInfo ? ValidatorSigningInfo.toJSON(message.valSigningInfo) : undefined); return obj; }, fromPartial(object: DeepPartial): QuerySigningInfoResponse { const message = { ...baseQuerySigningInfoResponse } as QuerySigningInfoResponse; if (object.valSigningInfo !== undefined && object.valSigningInfo !== null) { message.valSigningInfo = ValidatorSigningInfo.fromPartial(object.valSigningInfo); } else { message.valSigningInfo = undefined; } return message; }, }; const baseQuerySigningInfosRequest: object = {}; export const QuerySigningInfosRequest = { encode(message: QuerySigningInfosRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (message.pagination !== undefined) { PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim(); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfosRequest { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = { ...baseQuerySigningInfosRequest } as QuerySigningInfosRequest; while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.pagination = PageRequest.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): QuerySigningInfosRequest { const message = { ...baseQuerySigningInfosRequest } as QuerySigningInfosRequest; if (object.pagination !== undefined && object.pagination !== null) { message.pagination = PageRequest.fromJSON(object.pagination); } else { message.pagination = undefined; } return message; }, toJSON(message: QuerySigningInfosRequest): unknown { const obj: any = {}; message.pagination !== undefined && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined); return obj; }, fromPartial(object: DeepPartial): QuerySigningInfosRequest { const message = { ...baseQuerySigningInfosRequest } as QuerySigningInfosRequest; if (object.pagination !== undefined && object.pagination !== null) { message.pagination = PageRequest.fromPartial(object.pagination); } else { message.pagination = undefined; } return message; }, }; const baseQuerySigningInfosResponse: object = {}; export const QuerySigningInfosResponse = { encode(message: QuerySigningInfosResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { for (const v of message.info) { ValidatorSigningInfo.encode(v!, writer.uint32(10).fork()).ldelim(); } if (message.pagination !== undefined) { PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim(); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfosResponse { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = { ...baseQuerySigningInfosResponse } as QuerySigningInfosResponse; message.info = []; while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.info.push(ValidatorSigningInfo.decode(reader, reader.uint32())); break; case 2: message.pagination = PageResponse.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): QuerySigningInfosResponse { const message = { ...baseQuerySigningInfosResponse } as QuerySigningInfosResponse; message.info = []; if (object.info !== undefined && object.info !== null) { for (const e of object.info) { message.info.push(ValidatorSigningInfo.fromJSON(e)); } } if (object.pagination !== undefined && object.pagination !== null) { message.pagination = PageResponse.fromJSON(object.pagination); } else { message.pagination = undefined; } return message; }, toJSON(message: QuerySigningInfosResponse): unknown { const obj: any = {}; if (message.info) { obj.info = message.info.map((e) => (e ? ValidatorSigningInfo.toJSON(e) : undefined)); } else { obj.info = []; } message.pagination !== undefined && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined); return obj; }, fromPartial(object: DeepPartial): QuerySigningInfosResponse { const message = { ...baseQuerySigningInfosResponse } as QuerySigningInfosResponse; message.info = []; if (object.info !== undefined && object.info !== null) { for (const e of object.info) { message.info.push(ValidatorSigningInfo.fromPartial(e)); } } if (object.pagination !== undefined && object.pagination !== null) { message.pagination = PageResponse.fromPartial(object.pagination); } else { message.pagination = undefined; } return message; }, }; /** Query provides defines the gRPC querier service */ export interface Query { /** Params queries the parameters of slashing module */ Params(request: QueryParamsRequest): Promise; /** SigningInfo queries the signing info of given cons address */ SigningInfo(request: QuerySigningInfoRequest): Promise; /** SigningInfos queries signing info of all validators */ SigningInfos(request: QuerySigningInfosRequest): Promise; } export class QueryClientImpl implements Query { private readonly rpc: Rpc; constructor(rpc: Rpc) { this.rpc = rpc; this.Params = this.Params.bind(this); this.SigningInfo = this.SigningInfo.bind(this); this.SigningInfos = this.SigningInfos.bind(this); } Params(request: QueryParamsRequest): Promise { const data = QueryParamsRequest.encode(request).finish(); const promise = this.rpc.request('cosmos.slashing.v1beta1.Query', 'Params', data); return promise.then((data) => QueryParamsResponse.decode(new _m0.Reader(data))); } SigningInfo(request: QuerySigningInfoRequest): Promise { const data = QuerySigningInfoRequest.encode(request).finish(); const promise = this.rpc.request('cosmos.slashing.v1beta1.Query', 'SigningInfo', data); return promise.then((data) => QuerySigningInfoResponse.decode(new _m0.Reader(data))); } SigningInfos(request: QuerySigningInfosRequest): Promise { const data = QuerySigningInfosRequest.encode(request).finish(); const promise = this.rpc.request('cosmos.slashing.v1beta1.Query', 'SigningInfos', data); return promise.then((data) => QuerySigningInfosResponse.decode(new _m0.Reader(data))); } } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined | Long; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial } : Partial; if (_m0.util.Long !== Long) { _m0.util.Long = Long as any; _m0.configure(); }