// @generated by protoc-gen-es v1.3.1 with parameter "target=ts" // @generated from file cosmos/mint/v1beta1/genesis.proto (package cosmos.mint.v1beta1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; import { Minter, Params } from "./mint_pb.js"; /** * GenesisState defines the mint module's genesis state. * * @generated from message cosmos.mint.v1beta1.GenesisState */ export class GenesisState extends Message { /** * minter is a space for holding current inflation information. * * @generated from field: cosmos.mint.v1beta1.Minter minter = 1; */ minter?: Minter; /** * params defines all the parameters of the module. * * @generated from field: cosmos.mint.v1beta1.Params params = 2; */ params?: Params; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "cosmos.mint.v1beta1.GenesisState"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "minter", kind: "message", T: Minter }, { no: 2, name: "params", kind: "message", T: Params }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GenesisState { return new GenesisState().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GenesisState { return new GenesisState().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GenesisState { return new GenesisState().fromJsonString(jsonString, options); } static equals(a: GenesisState | PlainMessage | undefined, b: GenesisState | PlainMessage | undefined): boolean { return proto3.util.equals(GenesisState, a, b); } }