import * as _m0 from "protobufjs/minimal"; import { Long, isSet, DeepPartial } from "@osmonauts/helpers"; /** * App includes the protocol and software version for the application. * This information is included in ResponseInfo. The App.Protocol can be * updated in ResponseEndBlock. */ export interface App { protocol: Long; software: string; } /** * Consensus captures the consensus rules for processing a block in the blockchain, * including all blockchain data structures and the rules of the application's * state transition machine. */ export interface Consensus { block: Long; app: Long; } function createBaseApp(): App { return { protocol: Long.UZERO, software: "" }; } export const App = { encode(message: App, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (!message.protocol.isZero()) { writer.uint32(8).uint64(message.protocol); } if (message.software !== "") { writer.uint32(18).string(message.software); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): App { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseApp(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.protocol = (reader.uint64() as Long); break; case 2: message.software = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): App { return { protocol: isSet(object.protocol) ? Long.fromString(object.protocol) : Long.UZERO, software: isSet(object.software) ? String(object.software) : "" }; }, toJSON(message: App): unknown { const obj: any = {}; message.protocol !== undefined && (obj.protocol = (message.protocol || Long.UZERO).toString()); message.software !== undefined && (obj.software = message.software); return obj; }, fromPartial(object: DeepPartial): App { const message = createBaseApp(); message.protocol = object.protocol !== undefined && object.protocol !== null ? Long.fromValue(object.protocol) : Long.UZERO; message.software = object.software ?? ""; return message; } }; function createBaseConsensus(): Consensus { return { block: Long.UZERO, app: Long.UZERO }; } export const Consensus = { encode(message: Consensus, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer { if (!message.block.isZero()) { writer.uint32(8).uint64(message.block); } if (!message.app.isZero()) { writer.uint32(16).uint64(message.app); } return writer; }, decode(input: _m0.Reader | Uint8Array, length?: number): Consensus { const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseConsensus(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.block = (reader.uint64() as Long); break; case 2: message.app = (reader.uint64() as Long); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object: any): Consensus { return { block: isSet(object.block) ? Long.fromString(object.block) : Long.UZERO, app: isSet(object.app) ? Long.fromString(object.app) : Long.UZERO }; }, toJSON(message: Consensus): unknown { const obj: any = {}; message.block !== undefined && (obj.block = (message.block || Long.UZERO).toString()); message.app !== undefined && (obj.app = (message.app || Long.UZERO).toString()); return obj; }, fromPartial(object: DeepPartial): Consensus { const message = createBaseConsensus(); message.block = object.block !== undefined && object.block !== null ? Long.fromValue(object.block) : Long.UZERO; message.app = object.app !== undefined && object.app !== null ? Long.fromValue(object.app) : Long.UZERO; return message; } };