// @generated by protoc-gen-es v1.3.1 with parameter "target=ts" // @generated from file cosmos/auth/v1beta1/genesis.proto (package cosmos.auth.v1beta1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Any, Message, proto3 } from "@bufbuild/protobuf"; import { Params } from "./auth_pb.js"; /** * GenesisState defines the auth module's genesis state. * * @generated from message cosmos.auth.v1beta1.GenesisState */ export class GenesisState extends Message { /** * params defines all the parameters of the module. * * @generated from field: cosmos.auth.v1beta1.Params params = 1; */ params?: Params; /** * accounts are the accounts present at genesis. * * @generated from field: repeated google.protobuf.Any accounts = 2; */ accounts: Any[] = []; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "cosmos.auth.v1beta1.GenesisState"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "params", kind: "message", T: Params }, { no: 2, name: "accounts", kind: "message", T: Any, repeated: true }, ]); 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); } }