diff --git a/package.json b/package.json index c4ff241..1b10f7d 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "lerna": "^3.22.1", "prettier": "2.4.1", "ts-jest": "^26.4.4", + "ts-node": "^10.9.2", "typescript": "^4.0.5" } } diff --git a/packages/api/package.json b/packages/api/package.json index 3d7e4e1..5acd19b 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -31,7 +31,7 @@ "build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"", "build:ts": "tsc --project ./tsconfig.json", "build": "yarn build:module && yarn build:main", - "codegen": "cross-env NODE_ENV=development babel-node scripts/codegen.js" + "codegen": "ts-node scripts/codegen.js" }, "dependencies": { "@babel/runtime": "^7.22.5", diff --git a/packages/api/scripts/codegen.js b/packages/api/scripts/codegen.js index c5cb8c8..641bbe9 100644 --- a/packages/api/scripts/codegen.js +++ b/packages/api/scripts/codegen.js @@ -19,7 +19,7 @@ telescope({ }, interfaces: { enabled: true, - useUnionTypes: false, + useUnionTypes: true, }, prototypes: { includePackageVar: false, diff --git a/packages/api/src/codegen/cosmos/auth/v1beta1/query.ts b/packages/api/src/codegen/cosmos/auth/v1beta1/query.ts index 7e0c7e6..5a5d1fa 100644 --- a/packages/api/src/codegen/cosmos/auth/v1beta1/query.ts +++ b/packages/api/src/codegen/cosmos/auth/v1beta1/query.ts @@ -44,7 +44,7 @@ export interface QueryAccountsRequestSDKType { */ export interface QueryAccountsResponse { /** accounts are the existing accounts */ - accounts: (BaseAccount & Any)[] | Any[]; + accounts: (BaseAccount | Any)[] | Any[]; /** pagination defines the pagination in the response. */ pagination?: PageResponse; } @@ -104,7 +104,7 @@ export interface QueryAccountRequestSDKType { /** QueryAccountResponse is the response type for the Query/Account RPC method. */ export interface QueryAccountResponse { /** account defines the account of the corresponding address. */ - account?: (BaseAccount & Any) | undefined; + account?: BaseAccount | Any | undefined; } export interface QueryAccountResponseProtoMsg { typeUrl: "/cosmos.auth.v1beta1.QueryAccountResponse"; @@ -194,7 +194,7 @@ export interface QueryModuleAccountsRequestSDKType {} * Since: cosmos-sdk 0.46 */ export interface QueryModuleAccountsResponse { - accounts: (ModuleAccount & Any)[] | Any[]; + accounts: (ModuleAccount | Any)[] | Any[]; } export interface QueryModuleAccountsResponseProtoMsg { typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountsResponse"; @@ -245,7 +245,7 @@ export interface QueryModuleAccountByNameRequestSDKType { } /** QueryModuleAccountByNameResponse is the response type for the Query/ModuleAccountByName RPC method. */ export interface QueryModuleAccountByNameResponse { - account?: (ModuleAccount & Any) | undefined; + account?: ModuleAccount | Any | undefined; } export interface QueryModuleAccountByNameResponseProtoMsg { typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountByNameResponse"; diff --git a/packages/api/src/codegen/cosmos/authz/v1beta1/authz.ts b/packages/api/src/codegen/cosmos/authz/v1beta1/authz.ts index fa50470..f572ece 100644 --- a/packages/api/src/codegen/cosmos/authz/v1beta1/authz.ts +++ b/packages/api/src/codegen/cosmos/authz/v1beta1/authz.ts @@ -42,7 +42,7 @@ export interface GenericAuthorizationSDKType { * the provide method with expiration time. */ export interface Grant { - authorization?: (GenericAuthorization & SendAuthorization & StakeAuthorization & Any) | undefined; + authorization?: GenericAuthorization | SendAuthorization | StakeAuthorization | Any | undefined; /** * time when the grant will expire and will be pruned. If null, then the grant * doesn't have a time expiration (other conditions in `authorization` @@ -89,7 +89,7 @@ export interface GrantSDKType { export interface GrantAuthorization { granter: string; grantee: string; - authorization?: (GenericAuthorization & SendAuthorization & StakeAuthorization & Any) | undefined; + authorization?: GenericAuthorization | SendAuthorization | StakeAuthorization | Any | undefined; expiration?: Timestamp; } export interface GrantAuthorizationProtoMsg { diff --git a/packages/api/src/codegen/cosmos/evidence/v1beta1/tx.ts b/packages/api/src/codegen/cosmos/evidence/v1beta1/tx.ts index 51d1c8c..4708579 100644 --- a/packages/api/src/codegen/cosmos/evidence/v1beta1/tx.ts +++ b/packages/api/src/codegen/cosmos/evidence/v1beta1/tx.ts @@ -7,7 +7,7 @@ import { isSet, bytesFromBase64, base64FromBytes } from "../../../helpers"; */ export interface MsgSubmitEvidence { submitter: string; - evidence?: (Any) | undefined; + evidence?: Any | undefined; } export interface MsgSubmitEvidenceProtoMsg { typeUrl: "/cosmos.evidence.v1beta1.MsgSubmitEvidence"; diff --git a/packages/api/src/codegen/cosmos/feegrant/v1beta1/feegrant.ts b/packages/api/src/codegen/cosmos/feegrant/v1beta1/feegrant.ts index b8d2887..e75e3ef 100644 --- a/packages/api/src/codegen/cosmos/feegrant/v1beta1/feegrant.ts +++ b/packages/api/src/codegen/cosmos/feegrant/v1beta1/feegrant.ts @@ -127,7 +127,7 @@ export interface PeriodicAllowanceSDKType { export interface AllowedMsgAllowance { $typeUrl?: "/cosmos.feegrant.v1beta1.AllowedMsgAllowance"; /** allowance can be any of basic and periodic fee allowance. */ - allowance?: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; + allowance?: BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any | undefined; /** allowed_messages are the messages for which the grantee has the access. */ allowedMessages: string[]; } @@ -162,7 +162,7 @@ export interface Grant { /** grantee is the address of the user being granted an allowance of another user's funds. */ grantee: string; /** allowance can be any of basic, periodic, allowed fee allowance. */ - allowance?: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; + allowance?: BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any | undefined; } export interface GrantProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.Grant"; diff --git a/packages/api/src/codegen/cosmos/feegrant/v1beta1/tx.ts b/packages/api/src/codegen/cosmos/feegrant/v1beta1/tx.ts index b298431..b08c278 100644 --- a/packages/api/src/codegen/cosmos/feegrant/v1beta1/tx.ts +++ b/packages/api/src/codegen/cosmos/feegrant/v1beta1/tx.ts @@ -12,7 +12,7 @@ export interface MsgGrantAllowance { /** grantee is the address of the user being granted an allowance of another user's funds. */ grantee: string; /** allowance can be any of basic, periodic, allowed fee allowance. */ - allowance?: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; + allowance?: BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any | undefined; } export interface MsgGrantAllowanceProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.MsgGrantAllowance"; diff --git a/packages/api/src/codegen/cosmos/gov/v1/tx.ts b/packages/api/src/codegen/cosmos/gov/v1/tx.ts index f21b8d6..7019301 100644 --- a/packages/api/src/codegen/cosmos/gov/v1/tx.ts +++ b/packages/api/src/codegen/cosmos/gov/v1/tx.ts @@ -70,7 +70,7 @@ export interface MsgSubmitProposalResponseSDKType { */ export interface MsgExecLegacyContent { /** content is the proposal's content. */ - content?: (TextProposal & Any) | undefined; + content?: TextProposal | Any | undefined; /** authority must be the gov module address. */ authority: string; } diff --git a/packages/api/src/codegen/cosmos/gov/v1beta1/gov.ts b/packages/api/src/codegen/cosmos/gov/v1beta1/gov.ts index b5b8301..35a08ce 100644 --- a/packages/api/src/codegen/cosmos/gov/v1beta1/gov.ts +++ b/packages/api/src/codegen/cosmos/gov/v1beta1/gov.ts @@ -246,7 +246,7 @@ export interface DepositSDKType { /** Proposal defines the core field members of a governance proposal. */ export interface Proposal { proposalId: bigint; - content?: (TextProposal & Any) | undefined; + content?: TextProposal | Any | undefined; status: ProposalStatus; /** * final_tally_result is the final tally result of the proposal. When diff --git a/packages/api/src/codegen/cosmos/gov/v1beta1/tx.ts b/packages/api/src/codegen/cosmos/gov/v1beta1/tx.ts index de04834..41de5ea 100644 --- a/packages/api/src/codegen/cosmos/gov/v1beta1/tx.ts +++ b/packages/api/src/codegen/cosmos/gov/v1beta1/tx.ts @@ -8,7 +8,7 @@ import { isSet } from "../../../helpers"; * proposal Content. */ export interface MsgSubmitProposal { - content?: (TextProposal & Any) | undefined; + content?: TextProposal | Any | undefined; initialDeposit: Coin[]; proposer: string; } diff --git a/packages/api/src/codegen/cosmos/group/v1/tx.ts b/packages/api/src/codegen/cosmos/group/v1/tx.ts index 5b9235a..174e065 100644 --- a/packages/api/src/codegen/cosmos/group/v1/tx.ts +++ b/packages/api/src/codegen/cosmos/group/v1/tx.ts @@ -252,7 +252,7 @@ export interface MsgCreateGroupPolicy { /** metadata is any arbitrary metadata attached to the group policy. */ metadata: string; /** decision_policy specifies the group policy's decision policy. */ - decisionPolicy?: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; + decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined; } export interface MsgCreateGroupPolicyProtoMsg { typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicy"; @@ -367,7 +367,7 @@ export interface MsgCreateGroupWithPolicy { */ groupPolicyAsAdmin: boolean; /** decision_policy specifies the group policy's decision policy. */ - decisionPolicy?: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; + decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined; } export interface MsgCreateGroupWithPolicyProtoMsg { typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicy"; @@ -441,7 +441,7 @@ export interface MsgUpdateGroupPolicyDecisionPolicy { /** group_policy_address is the account address of group policy. */ groupPolicyAddress: string; /** decision_policy is the updated group policy's decision policy. */ - decisionPolicy?: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; + decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined; } export interface MsgUpdateGroupPolicyDecisionPolicyProtoMsg { typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy"; diff --git a/packages/api/src/codegen/cosmos/group/v1/types.ts b/packages/api/src/codegen/cosmos/group/v1/types.ts index de0bc27..18f824a 100644 --- a/packages/api/src/codegen/cosmos/group/v1/types.ts +++ b/packages/api/src/codegen/cosmos/group/v1/types.ts @@ -545,7 +545,7 @@ export interface GroupPolicyInfo { */ version: bigint; /** decision_policy specifies the group policy's decision policy. */ - decisionPolicy?: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; + decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined; /** created_at is a timestamp specifying when a group policy was created. */ createdAt: Timestamp; } diff --git a/packages/api/src/codegen/cosmos/staking/v1beta1/staking.ts b/packages/api/src/codegen/cosmos/staking/v1beta1/staking.ts index 28c3366..2455755 100644 --- a/packages/api/src/codegen/cosmos/staking/v1beta1/staking.ts +++ b/packages/api/src/codegen/cosmos/staking/v1beta1/staking.ts @@ -219,7 +219,7 @@ export interface Validator { /** operator_address defines the address of the validator's operator; bech encoded in JSON. */ operatorAddress: string; /** consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. */ - consensusPubkey?: (Any) | undefined; + consensusPubkey?: Any | undefined; /** jailed defined whether the validator has been jailed from bonded status or not. */ jailed: boolean; /** status is the validator status (bonded/unbonding/unbonded). */ diff --git a/packages/api/src/codegen/cosmos/staking/v1beta1/tx.ts b/packages/api/src/codegen/cosmos/staking/v1beta1/tx.ts index a6064a4..c312b56 100644 --- a/packages/api/src/codegen/cosmos/staking/v1beta1/tx.ts +++ b/packages/api/src/codegen/cosmos/staking/v1beta1/tx.ts @@ -14,7 +14,7 @@ export interface MsgCreateValidator { minSelfDelegation: string; delegatorAddress: string; validatorAddress: string; - pubkey?: (Any) | undefined; + pubkey?: Any | undefined; value: Coin; } export interface MsgCreateValidatorProtoMsg { diff --git a/packages/api/types/codegen/cosmos/app/module/v1alpha1/module.d.ts b/packages/api/types/codegen/cosmos/app/module/v1alpha1/module.d.ts index 2e39c74..3bad71a 100644 --- a/packages/api/types/codegen/cosmos/app/module/v1alpha1/module.d.ts +++ b/packages/api/types/codegen/cosmos/app/module/v1alpha1/module.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** Module is the module config object for the cosmos.app v1 app module. */ export interface Module { } @@ -17,8 +17,9 @@ export interface ModuleAminoMsg { export interface ModuleSDKType { } export declare const Module: { - encode(_: Module, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Module; + typeUrl: string; + encode(_: Module, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Module; fromJSON(_: any): Module; toJSON(_: Module): unknown; fromPartial(_: Partial): Module; diff --git a/packages/api/types/codegen/cosmos/app/v1alpha1/config.d.ts b/packages/api/types/codegen/cosmos/app/v1alpha1/config.d.ts index cfb8235..5d154fc 100644 --- a/packages/api/types/codegen/cosmos/app/v1alpha1/config.d.ts +++ b/packages/api/types/codegen/cosmos/app/v1alpha1/config.d.ts @@ -1,5 +1,5 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * Config represents the configuration for a Cosmos SDK ABCI app. * It is intended that all state machine logic including the version of @@ -28,7 +28,7 @@ export interface ConfigProtoMsg { */ export interface ConfigAmino { /** modules are the module configurations for the app. */ - modules: ModuleConfigAmino[]; + modules?: ModuleConfigAmino[]; } export interface ConfigAminoMsg { type: "cosmos-sdk/Config"; @@ -65,7 +65,7 @@ export interface ModuleConfig { * config is the config object for the module. Module config messages should * define a ModuleDescriptor using the cosmos.app.v1alpha1.is_module extension. */ - config: Any; + config?: Any; } export interface ModuleConfigProtoMsg { typeUrl: "/cosmos.app.v1alpha1.ModuleConfig"; @@ -85,7 +85,7 @@ export interface ModuleConfigAmino { * that the v1 module had. Note: modules should provide info on which versions * they can migrate from in the ModuleDescriptor.can_migration_from field. */ - name: string; + name?: string; /** * config is the config object for the module. Module config messages should * define a ModuleDescriptor using the cosmos.app.v1alpha1.is_module extension. @@ -99,11 +99,12 @@ export interface ModuleConfigAminoMsg { /** ModuleConfig is a module configuration for an app. */ export interface ModuleConfigSDKType { name: string; - config: AnySDKType; + config?: AnySDKType; } export declare const Config: { - encode(message: Config, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Config; + typeUrl: string; + encode(message: Config, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Config; fromJSON(object: any): Config; toJSON(message: Config): unknown; fromPartial(object: Partial): Config; @@ -116,8 +117,9 @@ export declare const Config: { toProtoMsg(message: Config): ConfigProtoMsg; }; export declare const ModuleConfig: { - encode(message: ModuleConfig, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModuleConfig; + typeUrl: string; + encode(message: ModuleConfig, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModuleConfig; fromJSON(object: any): ModuleConfig; toJSON(message: ModuleConfig): unknown; fromPartial(object: Partial): ModuleConfig; diff --git a/packages/api/types/codegen/cosmos/app/v1alpha1/module.d.ts b/packages/api/types/codegen/cosmos/app/v1alpha1/module.d.ts index 9c1204b..bb3f836 100644 --- a/packages/api/types/codegen/cosmos/app/v1alpha1/module.d.ts +++ b/packages/api/types/codegen/cosmos/app/v1alpha1/module.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** ModuleDescriptor describes an app module. */ export interface ModuleDescriptor { /** @@ -36,14 +36,14 @@ export interface ModuleDescriptorAmino { * module in the runtime module registry. It is required to make debugging * of configuration errors easier for users. */ - go_import: string; + go_import?: string; /** * use_package refers to a protobuf package that this module * uses and exposes to the world. In an app, only one module should "use" * or own a single protobuf package. It is assumed that the module uses * all of the .proto files in a single package. */ - use_package: PackageReferenceAmino[]; + use_package?: PackageReferenceAmino[]; /** * can_migrate_from defines which module versions this module can migrate * state from. The framework will check that one module version is able to @@ -53,7 +53,7 @@ export interface ModuleDescriptorAmino { * declares it can migrate from v1, the framework knows how to migrate * from v1 to v3, assuming all 3 module versions are registered at runtime. */ - can_migrate_from: MigrateFromInfoAmino[]; + can_migrate_from?: MigrateFromInfoAmino[]; } export interface ModuleDescriptorAminoMsg { type: "cosmos-sdk/ModuleDescriptor"; @@ -115,7 +115,7 @@ export interface PackageReferenceProtoMsg { /** PackageReference is a reference to a protobuf package used by a module. */ export interface PackageReferenceAmino { /** name is the fully-qualified name of the package. */ - name: string; + name?: string; /** * revision is the optional revision of the package that is being used. * Protobuf packages used in Cosmos should generally have a major version @@ -153,7 +153,7 @@ export interface PackageReferenceAmino { * are important good client UX * * protobuf files are changed in backwards and forwards compatible ways */ - revision: number; + revision?: number; } export interface PackageReferenceAminoMsg { type: "cosmos-sdk/PackageReference"; @@ -188,7 +188,7 @@ export interface MigrateFromInfoAmino { * module is the fully-qualified protobuf name of the module config object * for the previous module version, ex: "cosmos.group.module.v1.Module". */ - module: string; + module?: string; } export interface MigrateFromInfoAminoMsg { type: "cosmos-sdk/MigrateFromInfo"; @@ -202,8 +202,9 @@ export interface MigrateFromInfoSDKType { module: string; } export declare const ModuleDescriptor: { - encode(message: ModuleDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModuleDescriptor; + typeUrl: string; + encode(message: ModuleDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModuleDescriptor; fromJSON(object: any): ModuleDescriptor; toJSON(message: ModuleDescriptor): unknown; fromPartial(object: Partial): ModuleDescriptor; @@ -216,8 +217,9 @@ export declare const ModuleDescriptor: { toProtoMsg(message: ModuleDescriptor): ModuleDescriptorProtoMsg; }; export declare const PackageReference: { - encode(message: PackageReference, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PackageReference; + typeUrl: string; + encode(message: PackageReference, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PackageReference; fromJSON(object: any): PackageReference; toJSON(message: PackageReference): unknown; fromPartial(object: Partial): PackageReference; @@ -230,8 +232,9 @@ export declare const PackageReference: { toProtoMsg(message: PackageReference): PackageReferenceProtoMsg; }; export declare const MigrateFromInfo: { - encode(message: MigrateFromInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MigrateFromInfo; + typeUrl: string; + encode(message: MigrateFromInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MigrateFromInfo; fromJSON(object: any): MigrateFromInfo; toJSON(message: MigrateFromInfo): unknown; fromPartial(object: Partial): MigrateFromInfo; diff --git a/packages/api/types/codegen/cosmos/app/v1alpha1/query.d.ts b/packages/api/types/codegen/cosmos/app/v1alpha1/query.d.ts index 772a7c2..678064f 100644 --- a/packages/api/types/codegen/cosmos/app/v1alpha1/query.d.ts +++ b/packages/api/types/codegen/cosmos/app/v1alpha1/query.d.ts @@ -1,5 +1,5 @@ import { Config, ConfigAmino, ConfigSDKType } from "./config"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryConfigRequest is the Query/Config request type. */ export interface QueryConfigRequest { } @@ -20,7 +20,7 @@ export interface QueryConfigRequestSDKType { /** QueryConfigRequest is the Query/Config response type. */ export interface QueryConfigResponse { /** config is the current app config. */ - config: Config; + config?: Config; } export interface QueryConfigResponseProtoMsg { typeUrl: "/cosmos.app.v1alpha1.QueryConfigResponse"; @@ -37,11 +37,12 @@ export interface QueryConfigResponseAminoMsg { } /** QueryConfigRequest is the Query/Config response type. */ export interface QueryConfigResponseSDKType { - config: ConfigSDKType; + config?: ConfigSDKType; } export declare const QueryConfigRequest: { - encode(_: QueryConfigRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConfigRequest; + typeUrl: string; + encode(_: QueryConfigRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConfigRequest; fromJSON(_: any): QueryConfigRequest; toJSON(_: QueryConfigRequest): unknown; fromPartial(_: Partial): QueryConfigRequest; @@ -54,8 +55,9 @@ export declare const QueryConfigRequest: { toProtoMsg(message: QueryConfigRequest): QueryConfigRequestProtoMsg; }; export declare const QueryConfigResponse: { - encode(message: QueryConfigResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConfigResponse; + typeUrl: string; + encode(message: QueryConfigResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConfigResponse; fromJSON(object: any): QueryConfigResponse; toJSON(message: QueryConfigResponse): unknown; fromPartial(object: Partial): QueryConfigResponse; diff --git a/packages/api/types/codegen/cosmos/auth/v1beta1/auth.d.ts b/packages/api/types/codegen/cosmos/auth/v1beta1/auth.d.ts index 90d4aa8..732ab29 100644 --- a/packages/api/types/codegen/cosmos/auth/v1beta1/auth.d.ts +++ b/packages/api/types/codegen/cosmos/auth/v1beta1/auth.d.ts @@ -1,17 +1,16 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * BaseAccount defines a base account type. It contains all the necessary fields * for basic account functionality. Any custom account type should extend this * type for additional functionality (e.g. vesting). */ export interface BaseAccount { - $typeUrl?: string; + $typeUrl?: "/cosmos.auth.v1beta1.BaseAccount"; address: string; - pubKey: Any; - accountNumber: Long; - sequence: Long; + pubKey?: Any; + accountNumber: bigint; + sequence: bigint; } export interface BaseAccountProtoMsg { typeUrl: "/cosmos.auth.v1beta1.BaseAccount"; @@ -23,10 +22,10 @@ export interface BaseAccountProtoMsg { * type for additional functionality (e.g. vesting). */ export interface BaseAccountAmino { - address: string; + address?: string; pub_key?: AnyAmino; - account_number: string; - sequence: string; + account_number?: string; + sequence?: string; } export interface BaseAccountAminoMsg { type: "cosmos-sdk/BaseAccount"; @@ -38,16 +37,16 @@ export interface BaseAccountAminoMsg { * type for additional functionality (e.g. vesting). */ export interface BaseAccountSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.auth.v1beta1.BaseAccount"; address: string; - pub_key: AnySDKType; - account_number: Long; - sequence: Long; + pub_key?: AnySDKType; + account_number: bigint; + sequence: bigint; } /** ModuleAccount defines an account for modules that holds coins on a pool. */ export interface ModuleAccount { - $typeUrl?: string; - baseAccount: BaseAccount; + $typeUrl?: "/cosmos.auth.v1beta1.ModuleAccount"; + baseAccount?: BaseAccount; name: string; permissions: string[]; } @@ -58,8 +57,8 @@ export interface ModuleAccountProtoMsg { /** ModuleAccount defines an account for modules that holds coins on a pool. */ export interface ModuleAccountAmino { base_account?: BaseAccountAmino; - name: string; - permissions: string[]; + name?: string; + permissions?: string[]; } export interface ModuleAccountAminoMsg { type: "cosmos-sdk/ModuleAccount"; @@ -67,18 +66,18 @@ export interface ModuleAccountAminoMsg { } /** ModuleAccount defines an account for modules that holds coins on a pool. */ export interface ModuleAccountSDKType { - $typeUrl?: string; - base_account: BaseAccountSDKType; + $typeUrl?: "/cosmos.auth.v1beta1.ModuleAccount"; + base_account?: BaseAccountSDKType; name: string; permissions: string[]; } /** Params defines the parameters for the auth module. */ export interface Params { - maxMemoCharacters: Long; - txSigLimit: Long; - txSizeCostPerByte: Long; - sigVerifyCostEd25519: Long; - sigVerifyCostSecp256k1: Long; + maxMemoCharacters: bigint; + txSigLimit: bigint; + txSizeCostPerByte: bigint; + sigVerifyCostEd25519: bigint; + sigVerifyCostSecp256k1: bigint; } export interface ParamsProtoMsg { typeUrl: "/cosmos.auth.v1beta1.Params"; @@ -86,11 +85,11 @@ export interface ParamsProtoMsg { } /** Params defines the parameters for the auth module. */ export interface ParamsAmino { - max_memo_characters: string; - tx_sig_limit: string; - tx_size_cost_per_byte: string; - sig_verify_cost_ed25519: string; - sig_verify_cost_secp256k1: string; + max_memo_characters?: string; + tx_sig_limit?: string; + tx_size_cost_per_byte?: string; + sig_verify_cost_ed25519?: string; + sig_verify_cost_secp256k1?: string; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -98,15 +97,16 @@ export interface ParamsAminoMsg { } /** Params defines the parameters for the auth module. */ export interface ParamsSDKType { - max_memo_characters: Long; - tx_sig_limit: Long; - tx_size_cost_per_byte: Long; - sig_verify_cost_ed25519: Long; - sig_verify_cost_secp256k1: Long; + max_memo_characters: bigint; + tx_sig_limit: bigint; + tx_size_cost_per_byte: bigint; + sig_verify_cost_ed25519: bigint; + sig_verify_cost_secp256k1: bigint; } export declare const BaseAccount: { - encode(message: BaseAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BaseAccount; + typeUrl: string; + encode(message: BaseAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BaseAccount; fromJSON(object: any): BaseAccount; toJSON(message: BaseAccount): unknown; fromPartial(object: Partial): BaseAccount; @@ -119,8 +119,9 @@ export declare const BaseAccount: { toProtoMsg(message: BaseAccount): BaseAccountProtoMsg; }; export declare const ModuleAccount: { - encode(message: ModuleAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModuleAccount; + typeUrl: string; + encode(message: ModuleAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModuleAccount; fromJSON(object: any): ModuleAccount; toJSON(message: ModuleAccount): unknown; fromPartial(object: Partial): ModuleAccount; @@ -133,8 +134,9 @@ export declare const ModuleAccount: { toProtoMsg(message: ModuleAccount): ModuleAccountProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; diff --git a/packages/api/types/codegen/cosmos/auth/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/auth/v1beta1/genesis.d.ts index e93accf..65543b5 100644 --- a/packages/api/types/codegen/cosmos/auth/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/auth/v1beta1/genesis.d.ts @@ -1,6 +1,6 @@ import { Params, ParamsAmino, ParamsSDKType } from "./auth"; import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { /** params defines all the paramaters of the module. */ @@ -17,7 +17,7 @@ export interface GenesisStateAmino { /** params defines all the paramaters of the module. */ params?: ParamsAmino; /** accounts are the accounts present at genesis. */ - accounts: AnyAmino[]; + accounts?: AnyAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -29,8 +29,9 @@ export interface GenesisStateSDKType { accounts: AnySDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/auth/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/auth/v1beta1/query.d.ts index 9fe599f..33b1fef 100644 --- a/packages/api/types/codegen/cosmos/auth/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/auth/v1beta1/query.d.ts @@ -1,8 +1,7 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { Params, ParamsAmino, ParamsSDKType, BaseAccount, BaseAccountProtoMsg, BaseAccountSDKType, ModuleAccount, ModuleAccountProtoMsg, ModuleAccountSDKType } from "./auth"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * QueryAccountsRequest is the request type for the Query/Accounts RPC method. * @@ -10,7 +9,7 @@ import * as _m0 from "protobufjs/minimal"; */ export interface QueryAccountsRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAccountsRequestProtoMsg { typeUrl: "/cosmos.auth.v1beta1.QueryAccountsRequest"; @@ -35,7 +34,7 @@ export interface QueryAccountsRequestAminoMsg { * Since: cosmos-sdk 0.43 */ export interface QueryAccountsRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAccountsResponse is the response type for the Query/Accounts RPC method. @@ -46,7 +45,7 @@ export interface QueryAccountsResponse { /** accounts are the existing accounts */ accounts: (BaseAccount & Any)[] | Any[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAccountsResponseProtoMsg { typeUrl: "/cosmos.auth.v1beta1.QueryAccountsResponse"; @@ -62,7 +61,7 @@ export type QueryAccountsResponseEncoded = Omit): QueryAccountsRequest; @@ -550,8 +550,9 @@ export declare const QueryAccountsRequest: { toProtoMsg(message: QueryAccountsRequest): QueryAccountsRequestProtoMsg; }; export declare const QueryAccountsResponse: { - encode(message: QueryAccountsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAccountsResponse; + typeUrl: string; + encode(message: QueryAccountsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountsResponse; fromJSON(object: any): QueryAccountsResponse; toJSON(message: QueryAccountsResponse): unknown; fromPartial(object: Partial): QueryAccountsResponse; @@ -564,8 +565,9 @@ export declare const QueryAccountsResponse: { toProtoMsg(message: QueryAccountsResponse): QueryAccountsResponseProtoMsg; }; export declare const QueryAccountRequest: { - encode(message: QueryAccountRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAccountRequest; + typeUrl: string; + encode(message: QueryAccountRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountRequest; fromJSON(object: any): QueryAccountRequest; toJSON(message: QueryAccountRequest): unknown; fromPartial(object: Partial): QueryAccountRequest; @@ -578,8 +580,9 @@ export declare const QueryAccountRequest: { toProtoMsg(message: QueryAccountRequest): QueryAccountRequestProtoMsg; }; export declare const QueryAccountResponse: { - encode(message: QueryAccountResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAccountResponse; + typeUrl: string; + encode(message: QueryAccountResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountResponse; fromJSON(object: any): QueryAccountResponse; toJSON(message: QueryAccountResponse): unknown; fromPartial(object: Partial): QueryAccountResponse; @@ -592,8 +595,9 @@ export declare const QueryAccountResponse: { toProtoMsg(message: QueryAccountResponse): QueryAccountResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -606,8 +610,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -620,8 +625,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryModuleAccountsRequest: { - encode(_: QueryModuleAccountsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleAccountsRequest; + typeUrl: string; + encode(_: QueryModuleAccountsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountsRequest; fromJSON(_: any): QueryModuleAccountsRequest; toJSON(_: QueryModuleAccountsRequest): unknown; fromPartial(_: Partial): QueryModuleAccountsRequest; @@ -634,8 +640,9 @@ export declare const QueryModuleAccountsRequest: { toProtoMsg(message: QueryModuleAccountsRequest): QueryModuleAccountsRequestProtoMsg; }; export declare const QueryModuleAccountsResponse: { - encode(message: QueryModuleAccountsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleAccountsResponse; + typeUrl: string; + encode(message: QueryModuleAccountsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountsResponse; fromJSON(object: any): QueryModuleAccountsResponse; toJSON(message: QueryModuleAccountsResponse): unknown; fromPartial(object: Partial): QueryModuleAccountsResponse; @@ -648,8 +655,9 @@ export declare const QueryModuleAccountsResponse: { toProtoMsg(message: QueryModuleAccountsResponse): QueryModuleAccountsResponseProtoMsg; }; export declare const QueryModuleAccountByNameRequest: { - encode(message: QueryModuleAccountByNameRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleAccountByNameRequest; + typeUrl: string; + encode(message: QueryModuleAccountByNameRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountByNameRequest; fromJSON(object: any): QueryModuleAccountByNameRequest; toJSON(message: QueryModuleAccountByNameRequest): unknown; fromPartial(object: Partial): QueryModuleAccountByNameRequest; @@ -662,8 +670,9 @@ export declare const QueryModuleAccountByNameRequest: { toProtoMsg(message: QueryModuleAccountByNameRequest): QueryModuleAccountByNameRequestProtoMsg; }; export declare const QueryModuleAccountByNameResponse: { - encode(message: QueryModuleAccountByNameResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleAccountByNameResponse; + typeUrl: string; + encode(message: QueryModuleAccountByNameResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleAccountByNameResponse; fromJSON(object: any): QueryModuleAccountByNameResponse; toJSON(message: QueryModuleAccountByNameResponse): unknown; fromPartial(object: Partial): QueryModuleAccountByNameResponse; @@ -676,8 +685,9 @@ export declare const QueryModuleAccountByNameResponse: { toProtoMsg(message: QueryModuleAccountByNameResponse): QueryModuleAccountByNameResponseProtoMsg; }; export declare const Bech32PrefixRequest: { - encode(_: Bech32PrefixRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Bech32PrefixRequest; + typeUrl: string; + encode(_: Bech32PrefixRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Bech32PrefixRequest; fromJSON(_: any): Bech32PrefixRequest; toJSON(_: Bech32PrefixRequest): unknown; fromPartial(_: Partial): Bech32PrefixRequest; @@ -690,8 +700,9 @@ export declare const Bech32PrefixRequest: { toProtoMsg(message: Bech32PrefixRequest): Bech32PrefixRequestProtoMsg; }; export declare const Bech32PrefixResponse: { - encode(message: Bech32PrefixResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Bech32PrefixResponse; + typeUrl: string; + encode(message: Bech32PrefixResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Bech32PrefixResponse; fromJSON(object: any): Bech32PrefixResponse; toJSON(message: Bech32PrefixResponse): unknown; fromPartial(object: Partial): Bech32PrefixResponse; @@ -704,8 +715,9 @@ export declare const Bech32PrefixResponse: { toProtoMsg(message: Bech32PrefixResponse): Bech32PrefixResponseProtoMsg; }; export declare const AddressBytesToStringRequest: { - encode(message: AddressBytesToStringRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AddressBytesToStringRequest; + typeUrl: string; + encode(message: AddressBytesToStringRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AddressBytesToStringRequest; fromJSON(object: any): AddressBytesToStringRequest; toJSON(message: AddressBytesToStringRequest): unknown; fromPartial(object: Partial): AddressBytesToStringRequest; @@ -718,8 +730,9 @@ export declare const AddressBytesToStringRequest: { toProtoMsg(message: AddressBytesToStringRequest): AddressBytesToStringRequestProtoMsg; }; export declare const AddressBytesToStringResponse: { - encode(message: AddressBytesToStringResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AddressBytesToStringResponse; + typeUrl: string; + encode(message: AddressBytesToStringResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AddressBytesToStringResponse; fromJSON(object: any): AddressBytesToStringResponse; toJSON(message: AddressBytesToStringResponse): unknown; fromPartial(object: Partial): AddressBytesToStringResponse; @@ -732,8 +745,9 @@ export declare const AddressBytesToStringResponse: { toProtoMsg(message: AddressBytesToStringResponse): AddressBytesToStringResponseProtoMsg; }; export declare const AddressStringToBytesRequest: { - encode(message: AddressStringToBytesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AddressStringToBytesRequest; + typeUrl: string; + encode(message: AddressStringToBytesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AddressStringToBytesRequest; fromJSON(object: any): AddressStringToBytesRequest; toJSON(message: AddressStringToBytesRequest): unknown; fromPartial(object: Partial): AddressStringToBytesRequest; @@ -746,8 +760,9 @@ export declare const AddressStringToBytesRequest: { toProtoMsg(message: AddressStringToBytesRequest): AddressStringToBytesRequestProtoMsg; }; export declare const AddressStringToBytesResponse: { - encode(message: AddressStringToBytesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AddressStringToBytesResponse; + typeUrl: string; + encode(message: AddressStringToBytesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AddressStringToBytesResponse; fromJSON(object: any): AddressStringToBytesResponse; toJSON(message: AddressStringToBytesResponse): unknown; fromPartial(object: Partial): AddressStringToBytesResponse; @@ -760,8 +775,9 @@ export declare const AddressStringToBytesResponse: { toProtoMsg(message: AddressStringToBytesResponse): AddressStringToBytesResponseProtoMsg; }; export declare const QueryAccountAddressByIDRequest: { - encode(message: QueryAccountAddressByIDRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAccountAddressByIDRequest; + typeUrl: string; + encode(message: QueryAccountAddressByIDRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountAddressByIDRequest; fromJSON(object: any): QueryAccountAddressByIDRequest; toJSON(message: QueryAccountAddressByIDRequest): unknown; fromPartial(object: Partial): QueryAccountAddressByIDRequest; @@ -774,8 +790,9 @@ export declare const QueryAccountAddressByIDRequest: { toProtoMsg(message: QueryAccountAddressByIDRequest): QueryAccountAddressByIDRequestProtoMsg; }; export declare const QueryAccountAddressByIDResponse: { - encode(message: QueryAccountAddressByIDResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAccountAddressByIDResponse; + typeUrl: string; + encode(message: QueryAccountAddressByIDResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountAddressByIDResponse; fromJSON(object: any): QueryAccountAddressByIDResponse; toJSON(message: QueryAccountAddressByIDResponse): unknown; fromPartial(object: Partial): QueryAccountAddressByIDResponse; @@ -787,9 +804,9 @@ export declare const QueryAccountAddressByIDResponse: { toProto(message: QueryAccountAddressByIDResponse): Uint8Array; toProtoMsg(message: QueryAccountAddressByIDResponse): QueryAccountAddressByIDResponseProtoMsg; }; -export declare const AccountI_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => BaseAccount | Any; +export declare const AccountI_InterfaceDecoder: (input: BinaryReader | Uint8Array) => BaseAccount | Any; export declare const AccountI_FromAmino: (content: AnyAmino) => Any; export declare const AccountI_ToAmino: (content: Any) => AnyAmino; -export declare const ModuleAccountI_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => ModuleAccount | Any; +export declare const ModuleAccountI_InterfaceDecoder: (input: BinaryReader | Uint8Array) => ModuleAccount | Any; export declare const ModuleAccountI_FromAmino: (content: AnyAmino) => Any; export declare const ModuleAccountI_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/auth/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/auth/v1beta1/query.lcd.d.ts index 5c8c3b9..edc1c86 100644 --- a/packages/api/types/codegen/cosmos/auth/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/auth/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryAccountsRequest, QueryAccountsResponseSDKType, QueryAccountRequest, QueryAccountResponseSDKType, QueryAccountAddressByIDRequest, QueryAccountAddressByIDResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType, QueryModuleAccountsRequest, QueryModuleAccountsResponseSDKType, QueryModuleAccountByNameRequest, QueryModuleAccountByNameResponseSDKType, Bech32PrefixRequest, Bech32PrefixResponseSDKType, AddressBytesToStringRequest, AddressBytesToStringResponseSDKType, AddressStringToBytesRequest, AddressStringToBytesResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/authz/v1beta1/authz.d.ts b/packages/api/types/codegen/cosmos/authz/v1beta1/authz.d.ts index 2a351b4..b3b4628 100644 --- a/packages/api/types/codegen/cosmos/authz/v1beta1/authz.d.ts +++ b/packages/api/types/codegen/cosmos/authz/v1beta1/authz.d.ts @@ -1,14 +1,14 @@ import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { SendAuthorization, SendAuthorizationProtoMsg, SendAuthorizationSDKType } from "../../bank/v1beta1/authz"; import { StakeAuthorization, StakeAuthorizationProtoMsg, StakeAuthorizationSDKType } from "../../staking/v1beta1/authz"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * GenericAuthorization gives the grantee unrestricted permissions to execute * the provided method on behalf of the granter's account. */ export interface GenericAuthorization { - $typeUrl?: string; + $typeUrl?: "/cosmos.authz.v1beta1.GenericAuthorization"; /** Msg, identified by it's type URL, to grant unrestricted permissions to execute */ msg: string; } @@ -22,7 +22,7 @@ export interface GenericAuthorizationProtoMsg { */ export interface GenericAuthorizationAmino { /** Msg, identified by it's type URL, to grant unrestricted permissions to execute */ - msg: string; + msg?: string; } export interface GenericAuthorizationAminoMsg { type: "cosmos-sdk/GenericAuthorization"; @@ -33,7 +33,7 @@ export interface GenericAuthorizationAminoMsg { * the provided method on behalf of the granter's account. */ export interface GenericAuthorizationSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.authz.v1beta1.GenericAuthorization"; msg: string; } /** @@ -41,7 +41,7 @@ export interface GenericAuthorizationSDKType { * the provide method with expiration time. */ export interface Grant { - authorization: (GenericAuthorization & SendAuthorization & StakeAuthorization & Any) | undefined; + authorization?: (GenericAuthorization & SendAuthorization & StakeAuthorization & Any) | undefined; /** * time when the grant will expire and will be pruned. If null, then the grant * doesn't have a time expiration (other conditions in `authorization` @@ -67,7 +67,7 @@ export interface GrantAmino { * doesn't have a time expiration (other conditions in `authorization` * may apply to invalidate the grant) */ - expiration?: TimestampAmino; + expiration?: string; } export interface GrantAminoMsg { type: "cosmos-sdk/Grant"; @@ -78,7 +78,7 @@ export interface GrantAminoMsg { * the provide method with expiration time. */ export interface GrantSDKType { - authorization: GenericAuthorizationSDKType | SendAuthorizationSDKType | StakeAuthorizationSDKType | AnySDKType | undefined; + authorization?: GenericAuthorizationSDKType | SendAuthorizationSDKType | StakeAuthorizationSDKType | AnySDKType | undefined; expiration?: TimestampSDKType; } /** @@ -88,8 +88,8 @@ export interface GrantSDKType { export interface GrantAuthorization { granter: string; grantee: string; - authorization: (GenericAuthorization & SendAuthorization & StakeAuthorization & Any) | undefined; - expiration: Timestamp; + authorization?: (GenericAuthorization & SendAuthorization & StakeAuthorization & Any) | undefined; + expiration?: Timestamp; } export interface GrantAuthorizationProtoMsg { typeUrl: "/cosmos.authz.v1beta1.GrantAuthorization"; @@ -103,10 +103,10 @@ export type GrantAuthorizationEncoded = Omit): GenericAuthorization; @@ -159,8 +160,9 @@ export declare const GenericAuthorization: { toProtoMsg(message: GenericAuthorization): GenericAuthorizationProtoMsg; }; export declare const Grant: { - encode(message: Grant, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Grant; + typeUrl: string; + encode(message: Grant, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Grant; fromJSON(object: any): Grant; toJSON(message: Grant): unknown; fromPartial(object: Partial): Grant; @@ -173,8 +175,9 @@ export declare const Grant: { toProtoMsg(message: Grant): GrantProtoMsg; }; export declare const GrantAuthorization: { - encode(message: GrantAuthorization, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GrantAuthorization; + typeUrl: string; + encode(message: GrantAuthorization, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GrantAuthorization; fromJSON(object: any): GrantAuthorization; toJSON(message: GrantAuthorization): unknown; fromPartial(object: Partial): GrantAuthorization; @@ -187,8 +190,9 @@ export declare const GrantAuthorization: { toProtoMsg(message: GrantAuthorization): GrantAuthorizationProtoMsg; }; export declare const GrantQueueItem: { - encode(message: GrantQueueItem, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GrantQueueItem; + typeUrl: string; + encode(message: GrantQueueItem, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GrantQueueItem; fromJSON(object: any): GrantQueueItem; toJSON(message: GrantQueueItem): unknown; fromPartial(object: Partial): GrantQueueItem; @@ -200,6 +204,6 @@ export declare const GrantQueueItem: { toProto(message: GrantQueueItem): Uint8Array; toProtoMsg(message: GrantQueueItem): GrantQueueItemProtoMsg; }; -export declare const Authorization_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => GenericAuthorization | SendAuthorization | StakeAuthorization | Any; +export declare const Authorization_InterfaceDecoder: (input: BinaryReader | Uint8Array) => GenericAuthorization | SendAuthorization | StakeAuthorization | Any; export declare const Authorization_FromAmino: (content: AnyAmino) => Any; export declare const Authorization_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/authz/v1beta1/event.d.ts b/packages/api/types/codegen/cosmos/authz/v1beta1/event.d.ts index 15b7550..7ec7619 100644 --- a/packages/api/types/codegen/cosmos/authz/v1beta1/event.d.ts +++ b/packages/api/types/codegen/cosmos/authz/v1beta1/event.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** EventGrant is emitted on Msg/Grant */ export interface EventGrant { /** Msg type URL for which an autorization is granted */ @@ -15,11 +15,11 @@ export interface EventGrantProtoMsg { /** EventGrant is emitted on Msg/Grant */ export interface EventGrantAmino { /** Msg type URL for which an autorization is granted */ - msg_type_url: string; + msg_type_url?: string; /** Granter account address */ - granter: string; + granter?: string; /** Grantee account address */ - grantee: string; + grantee?: string; } export interface EventGrantAminoMsg { type: "cosmos-sdk/EventGrant"; @@ -47,11 +47,11 @@ export interface EventRevokeProtoMsg { /** EventRevoke is emitted on Msg/Revoke */ export interface EventRevokeAmino { /** Msg type URL for which an autorization is revoked */ - msg_type_url: string; + msg_type_url?: string; /** Granter account address */ - granter: string; + granter?: string; /** Grantee account address */ - grantee: string; + grantee?: string; } export interface EventRevokeAminoMsg { type: "cosmos-sdk/EventRevoke"; @@ -64,8 +64,9 @@ export interface EventRevokeSDKType { grantee: string; } export declare const EventGrant: { - encode(message: EventGrant, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventGrant; + typeUrl: string; + encode(message: EventGrant, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventGrant; fromJSON(object: any): EventGrant; toJSON(message: EventGrant): unknown; fromPartial(object: Partial): EventGrant; @@ -78,8 +79,9 @@ export declare const EventGrant: { toProtoMsg(message: EventGrant): EventGrantProtoMsg; }; export declare const EventRevoke: { - encode(message: EventRevoke, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventRevoke; + typeUrl: string; + encode(message: EventRevoke, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventRevoke; fromJSON(object: any): EventRevoke; toJSON(message: EventRevoke): unknown; fromPartial(object: Partial): EventRevoke; diff --git a/packages/api/types/codegen/cosmos/authz/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/authz/v1beta1/genesis.d.ts index cda1e0c..0936e1b 100644 --- a/packages/api/types/codegen/cosmos/authz/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/authz/v1beta1/genesis.d.ts @@ -1,5 +1,5 @@ import { GrantAuthorization, GrantAuthorizationAmino, GrantAuthorizationSDKType } from "./authz"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the authz module's genesis state. */ export interface GenesisState { authorization: GrantAuthorization[]; @@ -10,7 +10,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the authz module's genesis state. */ export interface GenesisStateAmino { - authorization: GrantAuthorizationAmino[]; + authorization?: GrantAuthorizationAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -21,8 +21,9 @@ export interface GenesisStateSDKType { authorization: GrantAuthorizationSDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/authz/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/authz/v1beta1/query.d.ts index 7070a02..1ccae75 100644 --- a/packages/api/types/codegen/cosmos/authz/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/authz/v1beta1/query.d.ts @@ -1,6 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Grant, GrantAmino, GrantSDKType, GrantAuthorization, GrantAuthorizationAmino, GrantAuthorizationSDKType } from "./authz"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryGrantsRequest is the request type for the Query/Grants RPC method. */ export interface QueryGrantsRequest { granter: string; @@ -8,7 +8,7 @@ export interface QueryGrantsRequest { /** Optional, msg_type_url, when set, will query only grants matching given msg type. */ msgTypeUrl: string; /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGrantsRequestProtoMsg { typeUrl: "/cosmos.authz.v1beta1.QueryGrantsRequest"; @@ -16,10 +16,10 @@ export interface QueryGrantsRequestProtoMsg { } /** QueryGrantsRequest is the request type for the Query/Grants RPC method. */ export interface QueryGrantsRequestAmino { - granter: string; - grantee: string; + granter?: string; + grantee?: string; /** Optional, msg_type_url, when set, will query only grants matching given msg type. */ - msg_type_url: string; + msg_type_url?: string; /** pagination defines an pagination for the request. */ pagination?: PageRequestAmino; } @@ -32,14 +32,14 @@ export interface QueryGrantsRequestSDKType { granter: string; grantee: string; msg_type_url: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryGrantsResponse is the response type for the Query/Authorizations RPC method. */ export interface QueryGrantsResponse { /** authorizations is a list of grants granted for grantee by granter. */ grants: Grant[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGrantsResponseProtoMsg { typeUrl: "/cosmos.authz.v1beta1.QueryGrantsResponse"; @@ -48,7 +48,7 @@ export interface QueryGrantsResponseProtoMsg { /** QueryGrantsResponse is the response type for the Query/Authorizations RPC method. */ export interface QueryGrantsResponseAmino { /** authorizations is a list of grants granted for grantee by granter. */ - grants: GrantAmino[]; + grants?: GrantAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -59,13 +59,13 @@ export interface QueryGrantsResponseAminoMsg { /** QueryGrantsResponse is the response type for the Query/Authorizations RPC method. */ export interface QueryGrantsResponseSDKType { grants: GrantSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryGranterGrantsRequest is the request type for the Query/GranterGrants RPC method. */ export interface QueryGranterGrantsRequest { granter: string; /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGranterGrantsRequestProtoMsg { typeUrl: "/cosmos.authz.v1beta1.QueryGranterGrantsRequest"; @@ -73,7 +73,7 @@ export interface QueryGranterGrantsRequestProtoMsg { } /** QueryGranterGrantsRequest is the request type for the Query/GranterGrants RPC method. */ export interface QueryGranterGrantsRequestAmino { - granter: string; + granter?: string; /** pagination defines an pagination for the request. */ pagination?: PageRequestAmino; } @@ -84,14 +84,14 @@ export interface QueryGranterGrantsRequestAminoMsg { /** QueryGranterGrantsRequest is the request type for the Query/GranterGrants RPC method. */ export interface QueryGranterGrantsRequestSDKType { granter: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryGranterGrantsResponse is the response type for the Query/GranterGrants RPC method. */ export interface QueryGranterGrantsResponse { /** grants is a list of grants granted by the granter. */ grants: GrantAuthorization[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGranterGrantsResponseProtoMsg { typeUrl: "/cosmos.authz.v1beta1.QueryGranterGrantsResponse"; @@ -100,7 +100,7 @@ export interface QueryGranterGrantsResponseProtoMsg { /** QueryGranterGrantsResponse is the response type for the Query/GranterGrants RPC method. */ export interface QueryGranterGrantsResponseAmino { /** grants is a list of grants granted by the granter. */ - grants: GrantAuthorizationAmino[]; + grants?: GrantAuthorizationAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -111,13 +111,13 @@ export interface QueryGranterGrantsResponseAminoMsg { /** QueryGranterGrantsResponse is the response type for the Query/GranterGrants RPC method. */ export interface QueryGranterGrantsResponseSDKType { grants: GrantAuthorizationSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryGranteeGrantsRequest is the request type for the Query/IssuedGrants RPC method. */ export interface QueryGranteeGrantsRequest { grantee: string; /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGranteeGrantsRequestProtoMsg { typeUrl: "/cosmos.authz.v1beta1.QueryGranteeGrantsRequest"; @@ -125,7 +125,7 @@ export interface QueryGranteeGrantsRequestProtoMsg { } /** QueryGranteeGrantsRequest is the request type for the Query/IssuedGrants RPC method. */ export interface QueryGranteeGrantsRequestAmino { - grantee: string; + grantee?: string; /** pagination defines an pagination for the request. */ pagination?: PageRequestAmino; } @@ -136,14 +136,14 @@ export interface QueryGranteeGrantsRequestAminoMsg { /** QueryGranteeGrantsRequest is the request type for the Query/IssuedGrants RPC method. */ export interface QueryGranteeGrantsRequestSDKType { grantee: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method. */ export interface QueryGranteeGrantsResponse { /** grants is a list of grants granted to the grantee. */ grants: GrantAuthorization[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGranteeGrantsResponseProtoMsg { typeUrl: "/cosmos.authz.v1beta1.QueryGranteeGrantsResponse"; @@ -152,7 +152,7 @@ export interface QueryGranteeGrantsResponseProtoMsg { /** QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method. */ export interface QueryGranteeGrantsResponseAmino { /** grants is a list of grants granted to the grantee. */ - grants: GrantAuthorizationAmino[]; + grants?: GrantAuthorizationAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -163,11 +163,12 @@ export interface QueryGranteeGrantsResponseAminoMsg { /** QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method. */ export interface QueryGranteeGrantsResponseSDKType { grants: GrantAuthorizationSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } export declare const QueryGrantsRequest: { - encode(message: QueryGrantsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGrantsRequest; + typeUrl: string; + encode(message: QueryGrantsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGrantsRequest; fromJSON(object: any): QueryGrantsRequest; toJSON(message: QueryGrantsRequest): unknown; fromPartial(object: Partial): QueryGrantsRequest; @@ -180,8 +181,9 @@ export declare const QueryGrantsRequest: { toProtoMsg(message: QueryGrantsRequest): QueryGrantsRequestProtoMsg; }; export declare const QueryGrantsResponse: { - encode(message: QueryGrantsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGrantsResponse; + typeUrl: string; + encode(message: QueryGrantsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGrantsResponse; fromJSON(object: any): QueryGrantsResponse; toJSON(message: QueryGrantsResponse): unknown; fromPartial(object: Partial): QueryGrantsResponse; @@ -194,8 +196,9 @@ export declare const QueryGrantsResponse: { toProtoMsg(message: QueryGrantsResponse): QueryGrantsResponseProtoMsg; }; export declare const QueryGranterGrantsRequest: { - encode(message: QueryGranterGrantsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGranterGrantsRequest; + typeUrl: string; + encode(message: QueryGranterGrantsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGranterGrantsRequest; fromJSON(object: any): QueryGranterGrantsRequest; toJSON(message: QueryGranterGrantsRequest): unknown; fromPartial(object: Partial): QueryGranterGrantsRequest; @@ -208,8 +211,9 @@ export declare const QueryGranterGrantsRequest: { toProtoMsg(message: QueryGranterGrantsRequest): QueryGranterGrantsRequestProtoMsg; }; export declare const QueryGranterGrantsResponse: { - encode(message: QueryGranterGrantsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGranterGrantsResponse; + typeUrl: string; + encode(message: QueryGranterGrantsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGranterGrantsResponse; fromJSON(object: any): QueryGranterGrantsResponse; toJSON(message: QueryGranterGrantsResponse): unknown; fromPartial(object: Partial): QueryGranterGrantsResponse; @@ -222,8 +226,9 @@ export declare const QueryGranterGrantsResponse: { toProtoMsg(message: QueryGranterGrantsResponse): QueryGranterGrantsResponseProtoMsg; }; export declare const QueryGranteeGrantsRequest: { - encode(message: QueryGranteeGrantsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGranteeGrantsRequest; + typeUrl: string; + encode(message: QueryGranteeGrantsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGranteeGrantsRequest; fromJSON(object: any): QueryGranteeGrantsRequest; toJSON(message: QueryGranteeGrantsRequest): unknown; fromPartial(object: Partial): QueryGranteeGrantsRequest; @@ -236,8 +241,9 @@ export declare const QueryGranteeGrantsRequest: { toProtoMsg(message: QueryGranteeGrantsRequest): QueryGranteeGrantsRequestProtoMsg; }; export declare const QueryGranteeGrantsResponse: { - encode(message: QueryGranteeGrantsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGranteeGrantsResponse; + typeUrl: string; + encode(message: QueryGranteeGrantsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGranteeGrantsResponse; fromJSON(object: any): QueryGranteeGrantsResponse; toJSON(message: QueryGranteeGrantsResponse): unknown; fromPartial(object: Partial): QueryGranteeGrantsResponse; diff --git a/packages/api/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts index 7e4f0a0..9bcb87c 100644 --- a/packages/api/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryGrantsRequest, QueryGrantsResponseSDKType, QueryGranterGrantsRequest, QueryGranterGrantsResponseSDKType, QueryGranteeGrantsRequest, QueryGranteeGrantsResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/authz/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/authz/v1beta1/tx.d.ts index a094115..8db4a93 100644 --- a/packages/api/types/codegen/cosmos/authz/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/authz/v1beta1/tx.d.ts @@ -1,6 +1,6 @@ import { Grant, GrantAmino, GrantSDKType } from "./authz"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgGrant is a request type for Grant method. It declares authorization to the grantee * on behalf of the granter with the provided expiration time. @@ -19,8 +19,8 @@ export interface MsgGrantProtoMsg { * on behalf of the granter with the provided expiration time. */ export interface MsgGrantAmino { - granter: string; - grantee: string; + granter?: string; + grantee?: string; grant?: GrantAmino; } export interface MsgGrantAminoMsg { @@ -46,7 +46,7 @@ export interface MsgExecResponseProtoMsg { } /** MsgExecResponse defines the Msg/MsgExecResponse response type. */ export interface MsgExecResponseAmino { - results: Uint8Array[]; + results?: string[]; } export interface MsgExecResponseAminoMsg { type: "cosmos-sdk/MsgExecResponse"; @@ -88,13 +88,13 @@ export type MsgExecEncoded = Omit & { * one signer corresponding to the granter of the authorization. */ export interface MsgExecAmino { - grantee: string; + grantee?: string; /** * Authorization Msg requests to execute. Each msg must implement Authorization interface * The x/authz will try to find a grant matching (msg.signers[0], grantee, MsgTypeURL(msg)) * triple and validate it. */ - msgs: AnyAmino[]; + msgs?: AnyAmino[]; } export interface MsgExecAminoMsg { type: "cosmos-sdk/MsgExec"; @@ -144,9 +144,9 @@ export interface MsgRevokeProtoMsg { * granter's account with that has been granted to the grantee. */ export interface MsgRevokeAmino { - granter: string; - grantee: string; - msg_type_url: string; + granter?: string; + grantee?: string; + msg_type_url?: string; } export interface MsgRevokeAminoMsg { type: "cosmos-sdk/MsgRevoke"; @@ -179,8 +179,9 @@ export interface MsgRevokeResponseAminoMsg { export interface MsgRevokeResponseSDKType { } export declare const MsgGrant: { - encode(message: MsgGrant, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgGrant; + typeUrl: string; + encode(message: MsgGrant, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgGrant; fromJSON(object: any): MsgGrant; toJSON(message: MsgGrant): unknown; fromPartial(object: Partial): MsgGrant; @@ -193,8 +194,9 @@ export declare const MsgGrant: { toProtoMsg(message: MsgGrant): MsgGrantProtoMsg; }; export declare const MsgExecResponse: { - encode(message: MsgExecResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgExecResponse; + typeUrl: string; + encode(message: MsgExecResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgExecResponse; fromJSON(object: any): MsgExecResponse; toJSON(message: MsgExecResponse): unknown; fromPartial(object: Partial): MsgExecResponse; @@ -207,8 +209,9 @@ export declare const MsgExecResponse: { toProtoMsg(message: MsgExecResponse): MsgExecResponseProtoMsg; }; export declare const MsgExec: { - encode(message: MsgExec, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgExec; + typeUrl: string; + encode(message: MsgExec, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgExec; fromJSON(object: any): MsgExec; toJSON(message: MsgExec): unknown; fromPartial(object: Partial): MsgExec; @@ -221,8 +224,9 @@ export declare const MsgExec: { toProtoMsg(message: MsgExec): MsgExecProtoMsg; }; export declare const MsgGrantResponse: { - encode(_: MsgGrantResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgGrantResponse; + typeUrl: string; + encode(_: MsgGrantResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgGrantResponse; fromJSON(_: any): MsgGrantResponse; toJSON(_: MsgGrantResponse): unknown; fromPartial(_: Partial): MsgGrantResponse; @@ -235,8 +239,9 @@ export declare const MsgGrantResponse: { toProtoMsg(message: MsgGrantResponse): MsgGrantResponseProtoMsg; }; export declare const MsgRevoke: { - encode(message: MsgRevoke, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRevoke; + typeUrl: string; + encode(message: MsgRevoke, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRevoke; fromJSON(object: any): MsgRevoke; toJSON(message: MsgRevoke): unknown; fromPartial(object: Partial): MsgRevoke; @@ -249,8 +254,9 @@ export declare const MsgRevoke: { toProtoMsg(message: MsgRevoke): MsgRevokeProtoMsg; }; export declare const MsgRevokeResponse: { - encode(_: MsgRevokeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRevokeResponse; + typeUrl: string; + encode(_: MsgRevokeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeResponse; fromJSON(_: any): MsgRevokeResponse; toJSON(_: MsgRevokeResponse): unknown; fromPartial(_: Partial): MsgRevokeResponse; @@ -262,9 +268,9 @@ export declare const MsgRevokeResponse: { toProto(message: MsgRevokeResponse): Uint8Array; toProtoMsg(message: MsgRevokeResponse): MsgRevokeResponseProtoMsg; }; -export declare const Sdk_Msg_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => Any; +export declare const Sdk_Msg_InterfaceDecoder: (input: BinaryReader | Uint8Array) => Any; export declare const Sdk_Msg_FromAmino: (content: AnyAmino) => Any; export declare const Sdk_Msg_ToAmino: (content: Any) => AnyAmino; -export declare const Authz_Authorization_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => Any; +export declare const Authz_Authorization_InterfaceDecoder: (input: BinaryReader | Uint8Array) => Any; export declare const Authz_Authorization_FromAmino: (content: AnyAmino) => Any; export declare const Authz_Authorization_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/bank/v1beta1/authz.d.ts b/packages/api/types/codegen/cosmos/bank/v1beta1/authz.d.ts index 92065cf..d6fa02e 100644 --- a/packages/api/types/codegen/cosmos/bank/v1beta1/authz.d.ts +++ b/packages/api/types/codegen/cosmos/bank/v1beta1/authz.d.ts @@ -1,5 +1,5 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * SendAuthorization allows the grantee to spend up to spend_limit coins from * the granter's account. @@ -7,7 +7,7 @@ import * as _m0 from "protobufjs/minimal"; * Since: cosmos-sdk 0.43 */ export interface SendAuthorization { - $typeUrl?: string; + $typeUrl?: "/cosmos.bank.v1beta1.SendAuthorization"; spendLimit: Coin[]; } export interface SendAuthorizationProtoMsg { @@ -21,7 +21,7 @@ export interface SendAuthorizationProtoMsg { * Since: cosmos-sdk 0.43 */ export interface SendAuthorizationAmino { - spend_limit: CoinAmino[]; + spend_limit?: CoinAmino[]; } export interface SendAuthorizationAminoMsg { type: "cosmos-sdk/SendAuthorization"; @@ -34,12 +34,13 @@ export interface SendAuthorizationAminoMsg { * Since: cosmos-sdk 0.43 */ export interface SendAuthorizationSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.bank.v1beta1.SendAuthorization"; spend_limit: CoinSDKType[]; } export declare const SendAuthorization: { - encode(message: SendAuthorization, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SendAuthorization; + typeUrl: string; + encode(message: SendAuthorization, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SendAuthorization; fromJSON(object: any): SendAuthorization; toJSON(message: SendAuthorization): unknown; fromPartial(object: Partial): SendAuthorization; diff --git a/packages/api/types/codegen/cosmos/bank/v1beta1/bank.d.ts b/packages/api/types/codegen/cosmos/bank/v1beta1/bank.d.ts index cbe0e89..b05d4ff 100644 --- a/packages/api/types/codegen/cosmos/bank/v1beta1/bank.d.ts +++ b/packages/api/types/codegen/cosmos/bank/v1beta1/bank.d.ts @@ -1,5 +1,5 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Params defines the parameters for the bank module. */ export interface Params { sendEnabled: SendEnabled[]; @@ -11,8 +11,8 @@ export interface ParamsProtoMsg { } /** Params defines the parameters for the bank module. */ export interface ParamsAmino { - send_enabled: SendEnabledAmino[]; - default_send_enabled: boolean; + send_enabled?: SendEnabledAmino[]; + default_send_enabled?: boolean; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -40,8 +40,8 @@ export interface SendEnabledProtoMsg { * sendable). */ export interface SendEnabledAmino { - denom: string; - enabled: boolean; + denom?: string; + enabled?: boolean; } export interface SendEnabledAminoMsg { type: "cosmos-sdk/SendEnabled"; @@ -66,8 +66,8 @@ export interface InputProtoMsg { } /** Input models transaction input. */ export interface InputAmino { - address: string; - coins: CoinAmino[]; + address?: string; + coins?: CoinAmino[]; } export interface InputAminoMsg { type: "cosmos-sdk/Input"; @@ -89,8 +89,8 @@ export interface OutputProtoMsg { } /** Output models transaction outputs. */ export interface OutputAmino { - address: string; - coins: CoinAmino[]; + address?: string; + coins?: CoinAmino[]; } export interface OutputAminoMsg { type: "cosmos-sdk/Output"; @@ -108,7 +108,7 @@ export interface OutputSDKType { */ /** @deprecated */ export interface Supply { - $typeUrl?: string; + $typeUrl?: "/cosmos.bank.v1beta1.Supply"; total: Coin[]; } export interface SupplyProtoMsg { @@ -122,7 +122,7 @@ export interface SupplyProtoMsg { */ /** @deprecated */ export interface SupplyAmino { - total: CoinAmino[]; + total?: CoinAmino[]; } export interface SupplyAminoMsg { type: "cosmos-sdk/Supply"; @@ -135,7 +135,7 @@ export interface SupplyAminoMsg { */ /** @deprecated */ export interface SupplySDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.bank.v1beta1.Supply"; total: CoinSDKType[]; } /** @@ -166,7 +166,7 @@ export interface DenomUnitProtoMsg { */ export interface DenomUnitAmino { /** denom represents the string name of the given denom unit (e.g uatom). */ - denom: string; + denom?: string; /** * exponent represents power of 10 exponent that one must * raise the base_denom to in order to equal the given DenomUnit's denom @@ -174,9 +174,9 @@ export interface DenomUnitAmino { * (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with * exponent = 6, thus: 1 atom = 10^6 uatom). */ - exponent: number; + exponent?: number; /** aliases is a list of string aliases for the given denom */ - aliases: string[]; + aliases?: string[]; } export interface DenomUnitAminoMsg { type: "cosmos-sdk/DenomUnit"; @@ -242,42 +242,42 @@ export interface MetadataProtoMsg { * a basic token. */ export interface MetadataAmino { - description: string; + description?: string; /** denom_units represents the list of DenomUnit's for a given coin */ - denom_units: DenomUnitAmino[]; + denom_units?: DenomUnitAmino[]; /** base represents the base denom (should be the DenomUnit with exponent = 0). */ - base: string; + base?: string; /** * display indicates the suggested denom that should be * displayed in clients. */ - display: string; + display?: string; /** * name defines the name of the token (eg: Cosmos Atom) * * Since: cosmos-sdk 0.43 */ - name: string; + name?: string; /** * symbol is the token symbol usually shown on exchanges (eg: ATOM). This can * be the same as the display. * * Since: cosmos-sdk 0.43 */ - symbol: string; + symbol?: string; /** * URI to a document (on or off-chain) that contains additional information. Optional. * * Since: cosmos-sdk 0.46 */ - uri: string; + uri?: string; /** * URIHash is a sha256 hash of a document pointed by URI. It's used to verify that * the document didn't change. Optional. * * Since: cosmos-sdk 0.46 */ - uri_hash: string; + uri_hash?: string; } export interface MetadataAminoMsg { type: "cosmos-sdk/Metadata"; @@ -298,8 +298,9 @@ export interface MetadataSDKType { uri_hash: string; } export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; @@ -312,8 +313,9 @@ export declare const Params: { toProtoMsg(message: Params): ParamsProtoMsg; }; export declare const SendEnabled: { - encode(message: SendEnabled, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SendEnabled; + typeUrl: string; + encode(message: SendEnabled, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SendEnabled; fromJSON(object: any): SendEnabled; toJSON(message: SendEnabled): unknown; fromPartial(object: Partial): SendEnabled; @@ -326,8 +328,9 @@ export declare const SendEnabled: { toProtoMsg(message: SendEnabled): SendEnabledProtoMsg; }; export declare const Input: { - encode(message: Input, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Input; + typeUrl: string; + encode(message: Input, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Input; fromJSON(object: any): Input; toJSON(message: Input): unknown; fromPartial(object: Partial): Input; @@ -340,8 +343,9 @@ export declare const Input: { toProtoMsg(message: Input): InputProtoMsg; }; export declare const Output: { - encode(message: Output, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Output; + typeUrl: string; + encode(message: Output, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Output; fromJSON(object: any): Output; toJSON(message: Output): unknown; fromPartial(object: Partial): Output; @@ -354,8 +358,9 @@ export declare const Output: { toProtoMsg(message: Output): OutputProtoMsg; }; export declare const Supply: { - encode(message: Supply, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Supply; + typeUrl: string; + encode(message: Supply, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Supply; fromJSON(object: any): Supply; toJSON(message: Supply): unknown; fromPartial(object: Partial): Supply; @@ -368,8 +373,9 @@ export declare const Supply: { toProtoMsg(message: Supply): SupplyProtoMsg; }; export declare const DenomUnit: { - encode(message: DenomUnit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DenomUnit; + typeUrl: string; + encode(message: DenomUnit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DenomUnit; fromJSON(object: any): DenomUnit; toJSON(message: DenomUnit): unknown; fromPartial(object: Partial): DenomUnit; @@ -382,8 +388,9 @@ export declare const DenomUnit: { toProtoMsg(message: DenomUnit): DenomUnitProtoMsg; }; export declare const Metadata: { - encode(message: Metadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Metadata; + typeUrl: string; + encode(message: Metadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Metadata; fromJSON(object: any): Metadata; toJSON(message: Metadata): unknown; fromPartial(object: Partial): Metadata; diff --git a/packages/api/types/codegen/cosmos/bank/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/bank/v1beta1/genesis.d.ts index b088006..76167c7 100644 --- a/packages/api/types/codegen/cosmos/bank/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/bank/v1beta1/genesis.d.ts @@ -1,6 +1,6 @@ import { Params, ParamsAmino, ParamsSDKType, Metadata, MetadataAmino, MetadataSDKType } from "./bank"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { /** params defines all the paramaters of the module. */ @@ -24,14 +24,14 @@ export interface GenesisStateAmino { /** params defines all the paramaters of the module. */ params?: ParamsAmino; /** balances is an array containing the balances of all the accounts. */ - balances: BalanceAmino[]; + balances?: BalanceAmino[]; /** * supply represents the total supply. If it is left empty, then supply will be calculated based on the provided * balances. Otherwise, it will be used to validate that the sum of the balances equals this amount. */ - supply: CoinAmino[]; + supply?: CoinAmino[]; /** denom_metadata defines the metadata of the differents coins. */ - denom_metadata: MetadataAmino[]; + denom_metadata?: MetadataAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -64,9 +64,9 @@ export interface BalanceProtoMsg { */ export interface BalanceAmino { /** address is the address of the balance holder. */ - address: string; + address?: string; /** coins defines the different coins this balance holds. */ - coins: CoinAmino[]; + coins?: CoinAmino[]; } export interface BalanceAminoMsg { type: "cosmos-sdk/Balance"; @@ -81,8 +81,9 @@ export interface BalanceSDKType { coins: CoinSDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; @@ -95,8 +96,9 @@ export declare const GenesisState: { toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const Balance: { - encode(message: Balance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Balance; + typeUrl: string; + encode(message: Balance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Balance; fromJSON(object: any): Balance; toJSON(message: Balance): unknown; fromPartial(object: Partial): Balance; diff --git a/packages/api/types/codegen/cosmos/bank/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/bank/v1beta1/query.d.ts index 5a48bcb..287626f 100644 --- a/packages/api/types/codegen/cosmos/bank/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/bank/v1beta1/query.d.ts @@ -1,7 +1,7 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { Params, ParamsAmino, ParamsSDKType, Metadata, MetadataAmino, MetadataSDKType } from "./bank"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryBalanceRequest is the request type for the Query/Balance RPC method. */ export interface QueryBalanceRequest { /** address is the address to query balances for. */ @@ -16,9 +16,9 @@ export interface QueryBalanceRequestProtoMsg { /** QueryBalanceRequest is the request type for the Query/Balance RPC method. */ export interface QueryBalanceRequestAmino { /** address is the address to query balances for. */ - address: string; + address?: string; /** denom is the coin denom to query balances for. */ - denom: string; + denom?: string; } export interface QueryBalanceRequestAminoMsg { type: "cosmos-sdk/QueryBalanceRequest"; @@ -32,7 +32,7 @@ export interface QueryBalanceRequestSDKType { /** QueryBalanceResponse is the response type for the Query/Balance RPC method. */ export interface QueryBalanceResponse { /** balance is the balance of the coin. */ - balance: Coin; + balance?: Coin; } export interface QueryBalanceResponseProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryBalanceResponse"; @@ -49,14 +49,14 @@ export interface QueryBalanceResponseAminoMsg { } /** QueryBalanceResponse is the response type for the Query/Balance RPC method. */ export interface QueryBalanceResponseSDKType { - balance: CoinSDKType; + balance?: CoinSDKType; } /** QueryBalanceRequest is the request type for the Query/AllBalances RPC method. */ export interface QueryAllBalancesRequest { /** address is the address to query balances for. */ address: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllBalancesRequestProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest"; @@ -65,7 +65,7 @@ export interface QueryAllBalancesRequestProtoMsg { /** QueryBalanceRequest is the request type for the Query/AllBalances RPC method. */ export interface QueryAllBalancesRequestAmino { /** address is the address to query balances for. */ - address: string; + address?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -76,7 +76,7 @@ export interface QueryAllBalancesRequestAminoMsg { /** QueryBalanceRequest is the request type for the Query/AllBalances RPC method. */ export interface QueryAllBalancesRequestSDKType { address: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAllBalancesResponse is the response type for the Query/AllBalances RPC @@ -86,7 +86,7 @@ export interface QueryAllBalancesResponse { /** balances is the balances of all the coins. */ balances: Coin[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllBalancesResponseProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesResponse"; @@ -98,7 +98,7 @@ export interface QueryAllBalancesResponseProtoMsg { */ export interface QueryAllBalancesResponseAmino { /** balances is the balances of all the coins. */ - balances: CoinAmino[]; + balances?: CoinAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -112,7 +112,7 @@ export interface QueryAllBalancesResponseAminoMsg { */ export interface QueryAllBalancesResponseSDKType { balances: CoinSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QuerySpendableBalancesRequest defines the gRPC request structure for querying @@ -124,7 +124,7 @@ export interface QuerySpendableBalancesRequest { /** address is the address to query spendable balances for. */ address: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QuerySpendableBalancesRequestProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesRequest"; @@ -138,7 +138,7 @@ export interface QuerySpendableBalancesRequestProtoMsg { */ export interface QuerySpendableBalancesRequestAmino { /** address is the address to query spendable balances for. */ - address: string; + address?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -154,7 +154,7 @@ export interface QuerySpendableBalancesRequestAminoMsg { */ export interface QuerySpendableBalancesRequestSDKType { address: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QuerySpendableBalancesResponse defines the gRPC response structure for querying @@ -166,7 +166,7 @@ export interface QuerySpendableBalancesResponse { /** balances is the spendable balances of all the coins. */ balances: Coin[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QuerySpendableBalancesResponseProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesResponse"; @@ -180,7 +180,7 @@ export interface QuerySpendableBalancesResponseProtoMsg { */ export interface QuerySpendableBalancesResponseAmino { /** balances is the spendable balances of all the coins. */ - balances: CoinAmino[]; + balances?: CoinAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -196,7 +196,7 @@ export interface QuerySpendableBalancesResponseAminoMsg { */ export interface QuerySpendableBalancesResponseSDKType { balances: CoinSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC @@ -208,7 +208,7 @@ export interface QueryTotalSupplyRequest { * * Since: cosmos-sdk 0.43 */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryTotalSupplyRequestProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyRequest"; @@ -235,7 +235,7 @@ export interface QueryTotalSupplyRequestAminoMsg { * method. */ export interface QueryTotalSupplyRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC @@ -249,7 +249,7 @@ export interface QueryTotalSupplyResponse { * * Since: cosmos-sdk 0.43 */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryTotalSupplyResponseProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyResponse"; @@ -261,7 +261,7 @@ export interface QueryTotalSupplyResponseProtoMsg { */ export interface QueryTotalSupplyResponseAmino { /** supply is the supply of the coins */ - supply: CoinAmino[]; + supply?: CoinAmino[]; /** * pagination defines the pagination in the response. * @@ -279,7 +279,7 @@ export interface QueryTotalSupplyResponseAminoMsg { */ export interface QueryTotalSupplyResponseSDKType { supply: CoinSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method. */ export interface QuerySupplyOfRequest { @@ -293,7 +293,7 @@ export interface QuerySupplyOfRequestProtoMsg { /** QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method. */ export interface QuerySupplyOfRequestAmino { /** denom is the coin denom to query balances for. */ - denom: string; + denom?: string; } export interface QuerySupplyOfRequestAminoMsg { type: "cosmos-sdk/QuerySupplyOfRequest"; @@ -365,7 +365,7 @@ export interface QueryParamsResponseSDKType { /** QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. */ export interface QueryDenomsMetadataRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDenomsMetadataRequestProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest"; @@ -382,7 +382,7 @@ export interface QueryDenomsMetadataRequestAminoMsg { } /** QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. */ export interface QueryDenomsMetadataRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC @@ -392,7 +392,7 @@ export interface QueryDenomsMetadataResponse { /** metadata provides the client information for all the registered tokens. */ metadatas: Metadata[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDenomsMetadataResponseProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataResponse"; @@ -404,7 +404,7 @@ export interface QueryDenomsMetadataResponseProtoMsg { */ export interface QueryDenomsMetadataResponseAmino { /** metadata provides the client information for all the registered tokens. */ - metadatas: MetadataAmino[]; + metadatas?: MetadataAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -418,7 +418,7 @@ export interface QueryDenomsMetadataResponseAminoMsg { */ export interface QueryDenomsMetadataResponseSDKType { metadatas: MetadataSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. */ export interface QueryDenomMetadataRequest { @@ -432,7 +432,7 @@ export interface QueryDenomMetadataRequestProtoMsg { /** QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. */ export interface QueryDenomMetadataRequestAmino { /** denom is the coin denom to query the metadata for. */ - denom: string; + denom?: string; } export interface QueryDenomMetadataRequestAminoMsg { type: "cosmos-sdk/QueryDenomMetadataRequest"; @@ -482,7 +482,7 @@ export interface QueryDenomOwnersRequest { /** denom defines the coin denomination to query all account holders for. */ denom: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDenomOwnersRequestProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersRequest"; @@ -495,7 +495,7 @@ export interface QueryDenomOwnersRequestProtoMsg { */ export interface QueryDenomOwnersRequestAmino { /** denom defines the coin denomination to query all account holders for. */ - denom: string; + denom?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -510,7 +510,7 @@ export interface QueryDenomOwnersRequestAminoMsg { */ export interface QueryDenomOwnersRequestSDKType { denom: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * DenomOwner defines structure representing an account that owns or holds a @@ -538,7 +538,7 @@ export interface DenomOwnerProtoMsg { */ export interface DenomOwnerAmino { /** address defines the address that owns a particular denomination. */ - address: string; + address?: string; /** balance is the balance of the denominated coin for an account. */ balance?: CoinAmino; } @@ -565,7 +565,7 @@ export interface DenomOwnerSDKType { export interface QueryDenomOwnersResponse { denomOwners: DenomOwner[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDenomOwnersResponseProtoMsg { typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersResponse"; @@ -577,7 +577,7 @@ export interface QueryDenomOwnersResponseProtoMsg { * Since: cosmos-sdk 0.46 */ export interface QueryDenomOwnersResponseAmino { - denom_owners: DenomOwnerAmino[]; + denom_owners?: DenomOwnerAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -592,11 +592,12 @@ export interface QueryDenomOwnersResponseAminoMsg { */ export interface QueryDenomOwnersResponseSDKType { denom_owners: DenomOwnerSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } export declare const QueryBalanceRequest: { - encode(message: QueryBalanceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceRequest; + typeUrl: string; + encode(message: QueryBalanceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceRequest; fromJSON(object: any): QueryBalanceRequest; toJSON(message: QueryBalanceRequest): unknown; fromPartial(object: Partial): QueryBalanceRequest; @@ -609,8 +610,9 @@ export declare const QueryBalanceRequest: { toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg; }; export declare const QueryBalanceResponse: { - encode(message: QueryBalanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceResponse; + typeUrl: string; + encode(message: QueryBalanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceResponse; fromJSON(object: any): QueryBalanceResponse; toJSON(message: QueryBalanceResponse): unknown; fromPartial(object: Partial): QueryBalanceResponse; @@ -623,8 +625,9 @@ export declare const QueryBalanceResponse: { toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg; }; export declare const QueryAllBalancesRequest: { - encode(message: QueryAllBalancesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllBalancesRequest; + typeUrl: string; + encode(message: QueryAllBalancesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllBalancesRequest; fromJSON(object: any): QueryAllBalancesRequest; toJSON(message: QueryAllBalancesRequest): unknown; fromPartial(object: Partial): QueryAllBalancesRequest; @@ -637,8 +640,9 @@ export declare const QueryAllBalancesRequest: { toProtoMsg(message: QueryAllBalancesRequest): QueryAllBalancesRequestProtoMsg; }; export declare const QueryAllBalancesResponse: { - encode(message: QueryAllBalancesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllBalancesResponse; + typeUrl: string; + encode(message: QueryAllBalancesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllBalancesResponse; fromJSON(object: any): QueryAllBalancesResponse; toJSON(message: QueryAllBalancesResponse): unknown; fromPartial(object: Partial): QueryAllBalancesResponse; @@ -651,8 +655,9 @@ export declare const QueryAllBalancesResponse: { toProtoMsg(message: QueryAllBalancesResponse): QueryAllBalancesResponseProtoMsg; }; export declare const QuerySpendableBalancesRequest: { - encode(message: QuerySpendableBalancesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySpendableBalancesRequest; + typeUrl: string; + encode(message: QuerySpendableBalancesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySpendableBalancesRequest; fromJSON(object: any): QuerySpendableBalancesRequest; toJSON(message: QuerySpendableBalancesRequest): unknown; fromPartial(object: Partial): QuerySpendableBalancesRequest; @@ -665,8 +670,9 @@ export declare const QuerySpendableBalancesRequest: { toProtoMsg(message: QuerySpendableBalancesRequest): QuerySpendableBalancesRequestProtoMsg; }; export declare const QuerySpendableBalancesResponse: { - encode(message: QuerySpendableBalancesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySpendableBalancesResponse; + typeUrl: string; + encode(message: QuerySpendableBalancesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySpendableBalancesResponse; fromJSON(object: any): QuerySpendableBalancesResponse; toJSON(message: QuerySpendableBalancesResponse): unknown; fromPartial(object: Partial): QuerySpendableBalancesResponse; @@ -679,8 +685,9 @@ export declare const QuerySpendableBalancesResponse: { toProtoMsg(message: QuerySpendableBalancesResponse): QuerySpendableBalancesResponseProtoMsg; }; export declare const QueryTotalSupplyRequest: { - encode(message: QueryTotalSupplyRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTotalSupplyRequest; + typeUrl: string; + encode(message: QueryTotalSupplyRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTotalSupplyRequest; fromJSON(object: any): QueryTotalSupplyRequest; toJSON(message: QueryTotalSupplyRequest): unknown; fromPartial(object: Partial): QueryTotalSupplyRequest; @@ -693,8 +700,9 @@ export declare const QueryTotalSupplyRequest: { toProtoMsg(message: QueryTotalSupplyRequest): QueryTotalSupplyRequestProtoMsg; }; export declare const QueryTotalSupplyResponse: { - encode(message: QueryTotalSupplyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTotalSupplyResponse; + typeUrl: string; + encode(message: QueryTotalSupplyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTotalSupplyResponse; fromJSON(object: any): QueryTotalSupplyResponse; toJSON(message: QueryTotalSupplyResponse): unknown; fromPartial(object: Partial): QueryTotalSupplyResponse; @@ -707,8 +715,9 @@ export declare const QueryTotalSupplyResponse: { toProtoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseProtoMsg; }; export declare const QuerySupplyOfRequest: { - encode(message: QuerySupplyOfRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyOfRequest; + typeUrl: string; + encode(message: QuerySupplyOfRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyOfRequest; fromJSON(object: any): QuerySupplyOfRequest; toJSON(message: QuerySupplyOfRequest): unknown; fromPartial(object: Partial): QuerySupplyOfRequest; @@ -721,8 +730,9 @@ export declare const QuerySupplyOfRequest: { toProtoMsg(message: QuerySupplyOfRequest): QuerySupplyOfRequestProtoMsg; }; export declare const QuerySupplyOfResponse: { - encode(message: QuerySupplyOfResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyOfResponse; + typeUrl: string; + encode(message: QuerySupplyOfResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyOfResponse; fromJSON(object: any): QuerySupplyOfResponse; toJSON(message: QuerySupplyOfResponse): unknown; fromPartial(object: Partial): QuerySupplyOfResponse; @@ -735,8 +745,9 @@ export declare const QuerySupplyOfResponse: { toProtoMsg(message: QuerySupplyOfResponse): QuerySupplyOfResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -749,8 +760,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -763,8 +775,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryDenomsMetadataRequest: { - encode(message: QueryDenomsMetadataRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomsMetadataRequest; + typeUrl: string; + encode(message: QueryDenomsMetadataRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomsMetadataRequest; fromJSON(object: any): QueryDenomsMetadataRequest; toJSON(message: QueryDenomsMetadataRequest): unknown; fromPartial(object: Partial): QueryDenomsMetadataRequest; @@ -777,8 +790,9 @@ export declare const QueryDenomsMetadataRequest: { toProtoMsg(message: QueryDenomsMetadataRequest): QueryDenomsMetadataRequestProtoMsg; }; export declare const QueryDenomsMetadataResponse: { - encode(message: QueryDenomsMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomsMetadataResponse; + typeUrl: string; + encode(message: QueryDenomsMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomsMetadataResponse; fromJSON(object: any): QueryDenomsMetadataResponse; toJSON(message: QueryDenomsMetadataResponse): unknown; fromPartial(object: Partial): QueryDenomsMetadataResponse; @@ -791,8 +805,9 @@ export declare const QueryDenomsMetadataResponse: { toProtoMsg(message: QueryDenomsMetadataResponse): QueryDenomsMetadataResponseProtoMsg; }; export declare const QueryDenomMetadataRequest: { - encode(message: QueryDenomMetadataRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomMetadataRequest; + typeUrl: string; + encode(message: QueryDenomMetadataRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomMetadataRequest; fromJSON(object: any): QueryDenomMetadataRequest; toJSON(message: QueryDenomMetadataRequest): unknown; fromPartial(object: Partial): QueryDenomMetadataRequest; @@ -805,8 +820,9 @@ export declare const QueryDenomMetadataRequest: { toProtoMsg(message: QueryDenomMetadataRequest): QueryDenomMetadataRequestProtoMsg; }; export declare const QueryDenomMetadataResponse: { - encode(message: QueryDenomMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomMetadataResponse; + typeUrl: string; + encode(message: QueryDenomMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomMetadataResponse; fromJSON(object: any): QueryDenomMetadataResponse; toJSON(message: QueryDenomMetadataResponse): unknown; fromPartial(object: Partial): QueryDenomMetadataResponse; @@ -819,8 +835,9 @@ export declare const QueryDenomMetadataResponse: { toProtoMsg(message: QueryDenomMetadataResponse): QueryDenomMetadataResponseProtoMsg; }; export declare const QueryDenomOwnersRequest: { - encode(message: QueryDenomOwnersRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomOwnersRequest; + typeUrl: string; + encode(message: QueryDenomOwnersRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomOwnersRequest; fromJSON(object: any): QueryDenomOwnersRequest; toJSON(message: QueryDenomOwnersRequest): unknown; fromPartial(object: Partial): QueryDenomOwnersRequest; @@ -833,8 +850,9 @@ export declare const QueryDenomOwnersRequest: { toProtoMsg(message: QueryDenomOwnersRequest): QueryDenomOwnersRequestProtoMsg; }; export declare const DenomOwner: { - encode(message: DenomOwner, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DenomOwner; + typeUrl: string; + encode(message: DenomOwner, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DenomOwner; fromJSON(object: any): DenomOwner; toJSON(message: DenomOwner): unknown; fromPartial(object: Partial): DenomOwner; @@ -847,8 +865,9 @@ export declare const DenomOwner: { toProtoMsg(message: DenomOwner): DenomOwnerProtoMsg; }; export declare const QueryDenomOwnersResponse: { - encode(message: QueryDenomOwnersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomOwnersResponse; + typeUrl: string; + encode(message: QueryDenomOwnersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomOwnersResponse; fromJSON(object: any): QueryDenomOwnersResponse; toJSON(message: QueryDenomOwnersResponse): unknown; fromPartial(object: Partial): QueryDenomOwnersResponse; diff --git a/packages/api/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts index 49fe501..3ae16b2 100644 --- a/packages/api/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryBalanceRequest, QueryBalanceResponseSDKType, QueryAllBalancesRequest, QueryAllBalancesResponseSDKType, QuerySpendableBalancesRequest, QuerySpendableBalancesResponseSDKType, QueryTotalSupplyRequest, QueryTotalSupplyResponseSDKType, QuerySupplyOfRequest, QuerySupplyOfResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType, QueryDenomMetadataRequest, QueryDenomMetadataResponseSDKType, QueryDenomsMetadataRequest, QueryDenomsMetadataResponseSDKType, QueryDenomOwnersRequest, QueryDenomOwnersResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/bank/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/bank/v1beta1/tx.d.ts index 0808a8a..ecde06f 100644 --- a/packages/api/types/codegen/cosmos/bank/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/bank/v1beta1/tx.d.ts @@ -1,6 +1,6 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { Input, InputAmino, InputSDKType, Output, OutputAmino, OutputSDKType } from "./bank"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** MsgSend represents a message to send coins from one account to another. */ export interface MsgSend { fromAddress: string; @@ -13,9 +13,9 @@ export interface MsgSendProtoMsg { } /** MsgSend represents a message to send coins from one account to another. */ export interface MsgSendAmino { - from_address: string; - to_address: string; - amount: CoinAmino[]; + from_address?: string; + to_address?: string; + amount?: CoinAmino[]; } export interface MsgSendAminoMsg { type: "cosmos-sdk/MsgSend"; @@ -55,8 +55,8 @@ export interface MsgMultiSendProtoMsg { } /** MsgMultiSend represents an arbitrary multi-in, multi-out send message. */ export interface MsgMultiSendAmino { - inputs: InputAmino[]; - outputs: OutputAmino[]; + inputs?: InputAmino[]; + outputs?: OutputAmino[]; } export interface MsgMultiSendAminoMsg { type: "cosmos-sdk/MsgMultiSend"; @@ -85,8 +85,9 @@ export interface MsgMultiSendResponseAminoMsg { export interface MsgMultiSendResponseSDKType { } export declare const MsgSend: { - encode(message: MsgSend, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSend; + typeUrl: string; + encode(message: MsgSend, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSend; fromJSON(object: any): MsgSend; toJSON(message: MsgSend): unknown; fromPartial(object: Partial): MsgSend; @@ -99,8 +100,9 @@ export declare const MsgSend: { toProtoMsg(message: MsgSend): MsgSendProtoMsg; }; export declare const MsgSendResponse: { - encode(_: MsgSendResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSendResponse; + typeUrl: string; + encode(_: MsgSendResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSendResponse; fromJSON(_: any): MsgSendResponse; toJSON(_: MsgSendResponse): unknown; fromPartial(_: Partial): MsgSendResponse; @@ -113,8 +115,9 @@ export declare const MsgSendResponse: { toProtoMsg(message: MsgSendResponse): MsgSendResponseProtoMsg; }; export declare const MsgMultiSend: { - encode(message: MsgMultiSend, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgMultiSend; + typeUrl: string; + encode(message: MsgMultiSend, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgMultiSend; fromJSON(object: any): MsgMultiSend; toJSON(message: MsgMultiSend): unknown; fromPartial(object: Partial): MsgMultiSend; @@ -127,8 +130,9 @@ export declare const MsgMultiSend: { toProtoMsg(message: MsgMultiSend): MsgMultiSendProtoMsg; }; export declare const MsgMultiSendResponse: { - encode(_: MsgMultiSendResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgMultiSendResponse; + typeUrl: string; + encode(_: MsgMultiSendResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgMultiSendResponse; fromJSON(_: any): MsgMultiSendResponse; toJSON(_: MsgMultiSendResponse): unknown; fromPartial(_: Partial): MsgMultiSendResponse; diff --git a/packages/api/types/codegen/cosmos/base/abci/v1beta1/abci.d.ts b/packages/api/types/codegen/cosmos/base/abci/v1beta1/abci.d.ts index 17b38e8..9665f9b 100644 --- a/packages/api/types/codegen/cosmos/base/abci/v1beta1/abci.d.ts +++ b/packages/api/types/codegen/cosmos/base/abci/v1beta1/abci.d.ts @@ -1,14 +1,13 @@ import { Any, AnyAmino, AnySDKType } from "../../../../google/protobuf/any"; import { Event, EventAmino, EventSDKType } from "../../../../tendermint/abci/types"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * TxResponse defines a structure containing relevant tx data and metadata. The * tags are stringified and the log is JSON decoded. */ export interface TxResponse { /** The block height */ - height: Long; + height: bigint; /** The transaction hash. */ txhash: string; /** Namespace for the Code */ @@ -27,11 +26,11 @@ export interface TxResponse { /** Additional information. May be non-deterministic. */ info: string; /** Amount of gas requested for transaction. */ - gasWanted: Long; + gasWanted: bigint; /** Amount of gas consumed by transaction. */ - gasUsed: Long; + gasUsed: bigint; /** The request transaction bytes. */ - tx: Any; + tx?: Any; /** * Time of the previous block. For heights > 1, it's the weighted median of * the timestamps of the valid votes in the block.LastCommit. For height == 1, @@ -58,28 +57,28 @@ export interface TxResponseProtoMsg { */ export interface TxResponseAmino { /** The block height */ - height: string; + height?: string; /** The transaction hash. */ - txhash: string; + txhash?: string; /** Namespace for the Code */ - codespace: string; + codespace?: string; /** Response code. */ - code: number; + code?: number; /** Result bytes, if any. */ - data: string; + data?: string; /** * The output of the application's logger (raw string). May be * non-deterministic. */ - raw_log: string; + raw_log?: string; /** The output of the application's logger (typed). May be non-deterministic. */ - logs: ABCIMessageLogAmino[]; + logs?: ABCIMessageLogAmino[]; /** Additional information. May be non-deterministic. */ - info: string; + info?: string; /** Amount of gas requested for transaction. */ - gas_wanted: string; + gas_wanted?: string; /** Amount of gas consumed by transaction. */ - gas_used: string; + gas_used?: string; /** The request transaction bytes. */ tx?: AnyAmino; /** @@ -87,7 +86,7 @@ export interface TxResponseAmino { * the timestamps of the valid votes in the block.LastCommit. For height == 1, * it's genesis time. */ - timestamp: string; + timestamp?: string; /** * Events defines all the events emitted by processing a transaction. Note, * these events include those emitted by processing all the messages and those @@ -96,7 +95,7 @@ export interface TxResponseAmino { * * Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 */ - events: EventAmino[]; + events?: EventAmino[]; } export interface TxResponseAminoMsg { type: "cosmos-sdk/TxResponse"; @@ -107,7 +106,7 @@ export interface TxResponseAminoMsg { * tags are stringified and the log is JSON decoded. */ export interface TxResponseSDKType { - height: Long; + height: bigint; txhash: string; codespace: string; code: number; @@ -115,9 +114,9 @@ export interface TxResponseSDKType { raw_log: string; logs: ABCIMessageLogSDKType[]; info: string; - gas_wanted: Long; - gas_used: Long; - tx: AnySDKType; + gas_wanted: bigint; + gas_used: bigint; + tx?: AnySDKType; timestamp: string; events: EventSDKType[]; } @@ -138,12 +137,12 @@ export interface ABCIMessageLogProtoMsg { /** ABCIMessageLog defines a structure containing an indexed tx ABCI message log. */ export interface ABCIMessageLogAmino { msg_index: number; - log: string; + log?: string; /** * Events contains a slice of Event objects that were emitted during some * execution. */ - events: StringEventAmino[]; + events?: StringEventAmino[]; } export interface ABCIMessageLogAminoMsg { type: "cosmos-sdk/ABCIMessageLog"; @@ -172,8 +171,8 @@ export interface StringEventProtoMsg { * contain key/value pairs that are strings instead of raw bytes. */ export interface StringEventAmino { - type: string; - attributes: AttributeAmino[]; + type?: string; + attributes?: AttributeAmino[]; } export interface StringEventAminoMsg { type: "cosmos-sdk/StringEvent"; @@ -204,8 +203,8 @@ export interface AttributeProtoMsg { * strings instead of raw bytes. */ export interface AttributeAmino { - key: string; - value: string; + key?: string; + value?: string; } export interface AttributeAminoMsg { type: "cosmos-sdk/Attribute"; @@ -222,9 +221,9 @@ export interface AttributeSDKType { /** GasInfo defines tx execution gas context. */ export interface GasInfo { /** GasWanted is the maximum units of work we allow this tx to perform. */ - gasWanted: Long; + gasWanted: bigint; /** GasUsed is the amount of gas actually consumed. */ - gasUsed: Long; + gasUsed: bigint; } export interface GasInfoProtoMsg { typeUrl: "/cosmos.base.abci.v1beta1.GasInfo"; @@ -233,9 +232,9 @@ export interface GasInfoProtoMsg { /** GasInfo defines tx execution gas context. */ export interface GasInfoAmino { /** GasWanted is the maximum units of work we allow this tx to perform. */ - gas_wanted: string; + gas_wanted?: string; /** GasUsed is the amount of gas actually consumed. */ - gas_used: string; + gas_used?: string; } export interface GasInfoAminoMsg { type: "cosmos-sdk/GasInfo"; @@ -243,8 +242,8 @@ export interface GasInfoAminoMsg { } /** GasInfo defines tx execution gas context. */ export interface GasInfoSDKType { - gas_wanted: Long; - gas_used: Long; + gas_wanted: bigint; + gas_used: bigint; } /** Result is the union of ResponseFormat and ResponseCheckTx. */ export interface Result { @@ -283,20 +282,20 @@ export interface ResultAmino { * because it also contains the Msg response typeURL. */ /** @deprecated */ - data: Uint8Array; + data?: string; /** Log contains the log information from message or handler execution. */ - log: string; + log?: string; /** * Events contains a slice of Event objects that were emitted during message * or handler execution. */ - events: EventAmino[]; + events?: EventAmino[]; /** * msg_responses contains the Msg handler responses type packed in Anys. * * Since: cosmos-sdk 0.46 */ - msg_responses: AnyAmino[]; + msg_responses?: AnyAmino[]; } export interface ResultAminoMsg { type: "cosmos-sdk/Result"; @@ -316,7 +315,7 @@ export interface ResultSDKType { */ export interface SimulationResponse { gasInfo: GasInfo; - result: Result; + result?: Result; } export interface SimulationResponseProtoMsg { typeUrl: "/cosmos.base.abci.v1beta1.SimulationResponse"; @@ -340,7 +339,7 @@ export interface SimulationResponseAminoMsg { */ export interface SimulationResponseSDKType { gas_info: GasInfoSDKType; - result: ResultSDKType; + result?: ResultSDKType; } /** * MsgData defines the data returned in a Result object during message @@ -361,8 +360,8 @@ export interface MsgDataProtoMsg { */ /** @deprecated */ export interface MsgDataAmino { - msg_type: string; - data: Uint8Array; + msg_type?: string; + data?: string; } export interface MsgDataAminoMsg { type: "cosmos-sdk/MsgData"; @@ -403,13 +402,13 @@ export interface TxMsgDataProtoMsg { export interface TxMsgDataAmino { /** data field is deprecated and not populated. */ /** @deprecated */ - data: MsgDataAmino[]; + data?: MsgDataAmino[]; /** * msg_responses contains the Msg handler responses packed into Anys. * * Since: cosmos-sdk 0.46 */ - msg_responses: AnyAmino[]; + msg_responses?: AnyAmino[]; } export interface TxMsgDataAminoMsg { type: "cosmos-sdk/TxMsgData"; @@ -427,15 +426,15 @@ export interface TxMsgDataSDKType { /** SearchTxsResult defines a structure for querying txs pageable */ export interface SearchTxsResult { /** Count of all txs */ - totalCount: Long; + totalCount: bigint; /** Count of txs in current page */ - count: Long; + count: bigint; /** Index of current page, start from 1 */ - pageNumber: Long; + pageNumber: bigint; /** Count of total pages */ - pageTotal: Long; + pageTotal: bigint; /** Max count txs per page */ - limit: Long; + limit: bigint; /** List of txs in current page */ txs: TxResponse[]; } @@ -446,17 +445,17 @@ export interface SearchTxsResultProtoMsg { /** SearchTxsResult defines a structure for querying txs pageable */ export interface SearchTxsResultAmino { /** Count of all txs */ - total_count: string; + total_count?: string; /** Count of txs in current page */ - count: string; + count?: string; /** Index of current page, start from 1 */ - page_number: string; + page_number?: string; /** Count of total pages */ - page_total: string; + page_total?: string; /** Max count txs per page */ - limit: string; + limit?: string; /** List of txs in current page */ - txs: TxResponseAmino[]; + txs?: TxResponseAmino[]; } export interface SearchTxsResultAminoMsg { type: "cosmos-sdk/SearchTxsResult"; @@ -464,16 +463,17 @@ export interface SearchTxsResultAminoMsg { } /** SearchTxsResult defines a structure for querying txs pageable */ export interface SearchTxsResultSDKType { - total_count: Long; - count: Long; - page_number: Long; - page_total: Long; - limit: Long; + total_count: bigint; + count: bigint; + page_number: bigint; + page_total: bigint; + limit: bigint; txs: TxResponseSDKType[]; } export declare const TxResponse: { - encode(message: TxResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxResponse; + typeUrl: string; + encode(message: TxResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxResponse; fromJSON(object: any): TxResponse; toJSON(message: TxResponse): unknown; fromPartial(object: Partial): TxResponse; @@ -486,8 +486,9 @@ export declare const TxResponse: { toProtoMsg(message: TxResponse): TxResponseProtoMsg; }; export declare const ABCIMessageLog: { - encode(message: ABCIMessageLog, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ABCIMessageLog; + typeUrl: string; + encode(message: ABCIMessageLog, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ABCIMessageLog; fromJSON(object: any): ABCIMessageLog; toJSON(message: ABCIMessageLog): unknown; fromPartial(object: Partial): ABCIMessageLog; @@ -500,8 +501,9 @@ export declare const ABCIMessageLog: { toProtoMsg(message: ABCIMessageLog): ABCIMessageLogProtoMsg; }; export declare const StringEvent: { - encode(message: StringEvent, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): StringEvent; + typeUrl: string; + encode(message: StringEvent, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): StringEvent; fromJSON(object: any): StringEvent; toJSON(message: StringEvent): unknown; fromPartial(object: Partial): StringEvent; @@ -514,8 +516,9 @@ export declare const StringEvent: { toProtoMsg(message: StringEvent): StringEventProtoMsg; }; export declare const Attribute: { - encode(message: Attribute, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Attribute; + typeUrl: string; + encode(message: Attribute, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Attribute; fromJSON(object: any): Attribute; toJSON(message: Attribute): unknown; fromPartial(object: Partial): Attribute; @@ -528,8 +531,9 @@ export declare const Attribute: { toProtoMsg(message: Attribute): AttributeProtoMsg; }; export declare const GasInfo: { - encode(message: GasInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GasInfo; + typeUrl: string; + encode(message: GasInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GasInfo; fromJSON(object: any): GasInfo; toJSON(message: GasInfo): unknown; fromPartial(object: Partial): GasInfo; @@ -542,8 +546,9 @@ export declare const GasInfo: { toProtoMsg(message: GasInfo): GasInfoProtoMsg; }; export declare const Result: { - encode(message: Result, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Result; + typeUrl: string; + encode(message: Result, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Result; fromJSON(object: any): Result; toJSON(message: Result): unknown; fromPartial(object: Partial): Result; @@ -556,8 +561,9 @@ export declare const Result: { toProtoMsg(message: Result): ResultProtoMsg; }; export declare const SimulationResponse: { - encode(message: SimulationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SimulationResponse; + typeUrl: string; + encode(message: SimulationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SimulationResponse; fromJSON(object: any): SimulationResponse; toJSON(message: SimulationResponse): unknown; fromPartial(object: Partial): SimulationResponse; @@ -570,8 +576,9 @@ export declare const SimulationResponse: { toProtoMsg(message: SimulationResponse): SimulationResponseProtoMsg; }; export declare const MsgData: { - encode(message: MsgData, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgData; + typeUrl: string; + encode(message: MsgData, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgData; fromJSON(object: any): MsgData; toJSON(message: MsgData): unknown; fromPartial(object: Partial): MsgData; @@ -584,8 +591,9 @@ export declare const MsgData: { toProtoMsg(message: MsgData): MsgDataProtoMsg; }; export declare const TxMsgData: { - encode(message: TxMsgData, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxMsgData; + typeUrl: string; + encode(message: TxMsgData, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxMsgData; fromJSON(object: any): TxMsgData; toJSON(message: TxMsgData): unknown; fromPartial(object: Partial): TxMsgData; @@ -598,8 +606,9 @@ export declare const TxMsgData: { toProtoMsg(message: TxMsgData): TxMsgDataProtoMsg; }; export declare const SearchTxsResult: { - encode(message: SearchTxsResult, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SearchTxsResult; + typeUrl: string; + encode(message: SearchTxsResult, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SearchTxsResult; fromJSON(object: any): SearchTxsResult; toJSON(message: SearchTxsResult): unknown; fromPartial(object: Partial): SearchTxsResult; diff --git a/packages/api/types/codegen/cosmos/base/kv/v1beta1/kv.d.ts b/packages/api/types/codegen/cosmos/base/kv/v1beta1/kv.d.ts index 9016cf5..23fb4bd 100644 --- a/packages/api/types/codegen/cosmos/base/kv/v1beta1/kv.d.ts +++ b/packages/api/types/codegen/cosmos/base/kv/v1beta1/kv.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** Pairs defines a repeated slice of Pair objects. */ export interface Pairs { pairs: Pair[]; @@ -9,7 +9,7 @@ export interface PairsProtoMsg { } /** Pairs defines a repeated slice of Pair objects. */ export interface PairsAmino { - pairs: PairAmino[]; + pairs?: PairAmino[]; } export interface PairsAminoMsg { type: "cosmos-sdk/Pairs"; @@ -30,8 +30,8 @@ export interface PairProtoMsg { } /** Pair defines a key/value bytes tuple. */ export interface PairAmino { - key: Uint8Array; - value: Uint8Array; + key?: string; + value?: string; } export interface PairAminoMsg { type: "cosmos-sdk/Pair"; @@ -43,8 +43,9 @@ export interface PairSDKType { value: Uint8Array; } export declare const Pairs: { - encode(message: Pairs, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Pairs; + typeUrl: string; + encode(message: Pairs, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Pairs; fromJSON(object: any): Pairs; toJSON(message: Pairs): unknown; fromPartial(object: Partial): Pairs; @@ -57,8 +58,9 @@ export declare const Pairs: { toProtoMsg(message: Pairs): PairsProtoMsg; }; export declare const Pair: { - encode(message: Pair, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Pair; + typeUrl: string; + encode(message: Pair, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Pair; fromJSON(object: any): Pair; toJSON(message: Pair): unknown; fromPartial(object: Partial): Pair; diff --git a/packages/api/types/codegen/cosmos/base/node/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/base/node/v1beta1/query.d.ts index 0d46348..a8e4a2a 100644 --- a/packages/api/types/codegen/cosmos/base/node/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/base/node/v1beta1/query.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** ConfigRequest defines the request structure for the Config gRPC query. */ export interface ConfigRequest { } @@ -26,7 +26,7 @@ export interface ConfigResponseProtoMsg { } /** ConfigResponse defines the response structure for the Config gRPC query. */ export interface ConfigResponseAmino { - minimum_gas_price: string; + minimum_gas_price?: string; } export interface ConfigResponseAminoMsg { type: "cosmos-sdk/ConfigResponse"; @@ -37,8 +37,9 @@ export interface ConfigResponseSDKType { minimum_gas_price: string; } export declare const ConfigRequest: { - encode(_: ConfigRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConfigRequest; + typeUrl: string; + encode(_: ConfigRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConfigRequest; fromJSON(_: any): ConfigRequest; toJSON(_: ConfigRequest): unknown; fromPartial(_: Partial): ConfigRequest; @@ -51,8 +52,9 @@ export declare const ConfigRequest: { toProtoMsg(message: ConfigRequest): ConfigRequestProtoMsg; }; export declare const ConfigResponse: { - encode(message: ConfigResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConfigResponse; + typeUrl: string; + encode(message: ConfigResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConfigResponse; fromJSON(object: any): ConfigResponse; toJSON(message: ConfigResponse): unknown; fromPartial(object: Partial): ConfigResponse; diff --git a/packages/api/types/codegen/cosmos/base/node/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/base/node/v1beta1/query.lcd.d.ts index b3bffa3..0855fb5 100644 --- a/packages/api/types/codegen/cosmos/base/node/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/base/node/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { ConfigRequest, ConfigResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/base/query/v1beta1/pagination.d.ts b/packages/api/types/codegen/cosmos/base/query/v1beta1/pagination.d.ts index 7569166..c72e3a1 100644 --- a/packages/api/types/codegen/cosmos/base/query/v1beta1/pagination.d.ts +++ b/packages/api/types/codegen/cosmos/base/query/v1beta1/pagination.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * PageRequest is to be embedded in gRPC request messages for efficient * pagination. Ex: @@ -21,12 +20,12 @@ export interface PageRequest { * It is less efficient than using key. Only one of offset or key should * be set. */ - offset: Long; + offset: bigint; /** * limit is the total number of results to be returned in the result page. * If left empty it will default to a value to be set by each app. */ - limit: Long; + limit: bigint; /** * count_total is set to true to indicate that the result set should include * a count of the total number of items available for pagination in UIs. @@ -60,31 +59,31 @@ export interface PageRequestAmino { * querying the next page most efficiently. Only one of offset or key * should be set. */ - key: Uint8Array; + key?: string; /** * offset is a numeric offset that can be used when key is unavailable. * It is less efficient than using key. Only one of offset or key should * be set. */ - offset: string; + offset?: string; /** * limit is the total number of results to be returned in the result page. * If left empty it will default to a value to be set by each app. */ - limit: string; + limit?: string; /** * count_total is set to true to indicate that the result set should include * a count of the total number of items available for pagination in UIs. * count_total is only respected when offset is used. It is ignored when key * is set. */ - count_total: boolean; + count_total?: boolean; /** * reverse is set to true if results are to be returned in the descending order. * * Since: cosmos-sdk 0.43 */ - reverse: boolean; + reverse?: boolean; } export interface PageRequestAminoMsg { type: "cosmos-sdk/PageRequest"; @@ -101,8 +100,8 @@ export interface PageRequestAminoMsg { */ export interface PageRequestSDKType { key: Uint8Array; - offset: Long; - limit: Long; + offset: bigint; + limit: bigint; count_total: boolean; reverse: boolean; } @@ -126,7 +125,7 @@ export interface PageResponse { * total is total number of results available if PageRequest.count_total * was set, its value is undefined otherwise */ - total: Long; + total: bigint; } export interface PageResponseProtoMsg { typeUrl: "/cosmos.base.query.v1beta1.PageResponse"; @@ -147,12 +146,12 @@ export interface PageResponseAmino { * query the next page most efficiently. It will be empty if * there are no more results. */ - next_key: Uint8Array; + next_key?: string; /** * total is total number of results available if PageRequest.count_total * was set, its value is undefined otherwise */ - total: string; + total?: string; } export interface PageResponseAminoMsg { type: "cosmos-sdk/PageResponse"; @@ -169,11 +168,12 @@ export interface PageResponseAminoMsg { */ export interface PageResponseSDKType { next_key: Uint8Array; - total: Long; + total: bigint; } export declare const PageRequest: { - encode(message: PageRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PageRequest; + typeUrl: string; + encode(message: PageRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PageRequest; fromJSON(object: any): PageRequest; toJSON(message: PageRequest): unknown; fromPartial(object: Partial): PageRequest; @@ -186,8 +186,9 @@ export declare const PageRequest: { toProtoMsg(message: PageRequest): PageRequestProtoMsg; }; export declare const PageResponse: { - encode(message: PageResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PageResponse; + typeUrl: string; + encode(message: PageResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PageResponse; fromJSON(object: any): PageResponse; toJSON(message: PageResponse): unknown; fromPartial(object: Partial): PageResponse; diff --git a/packages/api/types/codegen/cosmos/base/reflection/v1beta1/reflection.d.ts b/packages/api/types/codegen/cosmos/base/reflection/v1beta1/reflection.d.ts index 45b978f..05c53b1 100644 --- a/packages/api/types/codegen/cosmos/base/reflection/v1beta1/reflection.d.ts +++ b/packages/api/types/codegen/cosmos/base/reflection/v1beta1/reflection.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** ListAllInterfacesRequest is the request type of the ListAllInterfaces RPC. */ export interface ListAllInterfacesRequest { } @@ -28,7 +28,7 @@ export interface ListAllInterfacesResponseProtoMsg { /** ListAllInterfacesResponse is the response type of the ListAllInterfaces RPC. */ export interface ListAllInterfacesResponseAmino { /** interface_names is an array of all the registered interfaces. */ - interface_names: string[]; + interface_names?: string[]; } export interface ListAllInterfacesResponseAminoMsg { type: "cosmos-sdk/ListAllInterfacesResponse"; @@ -56,7 +56,7 @@ export interface ListImplementationsRequestProtoMsg { */ export interface ListImplementationsRequestAmino { /** interface_name defines the interface to query the implementations for. */ - interface_name: string; + interface_name?: string; } export interface ListImplementationsRequestAminoMsg { type: "cosmos-sdk/ListImplementationsRequest"; @@ -85,7 +85,7 @@ export interface ListImplementationsResponseProtoMsg { * RPC. */ export interface ListImplementationsResponseAmino { - implementation_message_names: string[]; + implementation_message_names?: string[]; } export interface ListImplementationsResponseAminoMsg { type: "cosmos-sdk/ListImplementationsResponse"; @@ -99,8 +99,9 @@ export interface ListImplementationsResponseSDKType { implementation_message_names: string[]; } export declare const ListAllInterfacesRequest: { - encode(_: ListAllInterfacesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ListAllInterfacesRequest; + typeUrl: string; + encode(_: ListAllInterfacesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ListAllInterfacesRequest; fromJSON(_: any): ListAllInterfacesRequest; toJSON(_: ListAllInterfacesRequest): unknown; fromPartial(_: Partial): ListAllInterfacesRequest; @@ -113,8 +114,9 @@ export declare const ListAllInterfacesRequest: { toProtoMsg(message: ListAllInterfacesRequest): ListAllInterfacesRequestProtoMsg; }; export declare const ListAllInterfacesResponse: { - encode(message: ListAllInterfacesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ListAllInterfacesResponse; + typeUrl: string; + encode(message: ListAllInterfacesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ListAllInterfacesResponse; fromJSON(object: any): ListAllInterfacesResponse; toJSON(message: ListAllInterfacesResponse): unknown; fromPartial(object: Partial): ListAllInterfacesResponse; @@ -127,8 +129,9 @@ export declare const ListAllInterfacesResponse: { toProtoMsg(message: ListAllInterfacesResponse): ListAllInterfacesResponseProtoMsg; }; export declare const ListImplementationsRequest: { - encode(message: ListImplementationsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ListImplementationsRequest; + typeUrl: string; + encode(message: ListImplementationsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ListImplementationsRequest; fromJSON(object: any): ListImplementationsRequest; toJSON(message: ListImplementationsRequest): unknown; fromPartial(object: Partial): ListImplementationsRequest; @@ -141,8 +144,9 @@ export declare const ListImplementationsRequest: { toProtoMsg(message: ListImplementationsRequest): ListImplementationsRequestProtoMsg; }; export declare const ListImplementationsResponse: { - encode(message: ListImplementationsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ListImplementationsResponse; + typeUrl: string; + encode(message: ListImplementationsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ListImplementationsResponse; fromJSON(object: any): ListImplementationsResponse; toJSON(message: ListImplementationsResponse): unknown; fromPartial(object: Partial): ListImplementationsResponse; diff --git a/packages/api/types/codegen/cosmos/base/reflection/v2alpha1/reflection.d.ts b/packages/api/types/codegen/cosmos/base/reflection/v2alpha1/reflection.d.ts index d4afc4a..25485ec 100644 --- a/packages/api/types/codegen/cosmos/base/reflection/v2alpha1/reflection.d.ts +++ b/packages/api/types/codegen/cosmos/base/reflection/v2alpha1/reflection.d.ts @@ -1,21 +1,21 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** AppDescriptor describes a cosmos-sdk based application */ export interface AppDescriptor { /** * AuthnDescriptor provides information on how to authenticate transactions on the application * NOTE: experimental and subject to change in future releases. */ - authn: AuthnDescriptor; + authn?: AuthnDescriptor; /** chain provides the chain descriptor */ - chain: ChainDescriptor; + chain?: ChainDescriptor; /** codec provides metadata information regarding codec related types */ - codec: CodecDescriptor; + codec?: CodecDescriptor; /** configuration provides metadata information regarding the sdk.Config type */ - configuration: ConfigurationDescriptor; + configuration?: ConfigurationDescriptor; /** query_services provides metadata information regarding the available queriable endpoints */ - queryServices: QueryServicesDescriptor; + queryServices?: QueryServicesDescriptor; /** tx provides metadata information regarding how to send transactions to the given application */ - tx: TxDescriptor; + tx?: TxDescriptor; } export interface AppDescriptorProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.AppDescriptor"; @@ -45,12 +45,12 @@ export interface AppDescriptorAminoMsg { } /** AppDescriptor describes a cosmos-sdk based application */ export interface AppDescriptorSDKType { - authn: AuthnDescriptorSDKType; - chain: ChainDescriptorSDKType; - codec: CodecDescriptorSDKType; - configuration: ConfigurationDescriptorSDKType; - query_services: QueryServicesDescriptorSDKType; - tx: TxDescriptorSDKType; + authn?: AuthnDescriptorSDKType; + chain?: ChainDescriptorSDKType; + codec?: CodecDescriptorSDKType; + configuration?: ConfigurationDescriptorSDKType; + query_services?: QueryServicesDescriptorSDKType; + tx?: TxDescriptorSDKType; } /** TxDescriptor describes the accepted transaction type */ export interface TxDescriptor { @@ -74,9 +74,9 @@ export interface TxDescriptorAmino { * it is not meant to support polymorphism of transaction types, it is supposed to be used by * reflection clients to understand if they can handle a specific transaction type in an application. */ - fullname: string; + fullname?: string; /** msgs lists the accepted application messages (sdk.Msg) */ - msgs: MsgDescriptorAmino[]; + msgs?: MsgDescriptorAmino[]; } export interface TxDescriptorAminoMsg { type: "cosmos-sdk/TxDescriptor"; @@ -105,7 +105,7 @@ export interface AuthnDescriptorProtoMsg { */ export interface AuthnDescriptorAmino { /** sign_modes defines the supported signature algorithm */ - sign_modes: SigningModeDescriptorAmino[]; + sign_modes?: SigningModeDescriptorAmino[]; } export interface AuthnDescriptorAminoMsg { type: "cosmos-sdk/AuthnDescriptor"; @@ -147,14 +147,14 @@ export interface SigningModeDescriptorProtoMsg { */ export interface SigningModeDescriptorAmino { /** name defines the unique name of the signing mode */ - name: string; + name?: string; /** number is the unique int32 identifier for the sign_mode enum */ - number: number; + number?: number; /** * authn_info_provider_method_fullname defines the fullname of the method to call to get * the metadata required to authenticate using the provided sign_modes */ - authn_info_provider_method_fullname: string; + authn_info_provider_method_fullname?: string; } export interface SigningModeDescriptorAminoMsg { type: "cosmos-sdk/SigningModeDescriptor"; @@ -183,7 +183,7 @@ export interface ChainDescriptorProtoMsg { /** ChainDescriptor describes chain information of the application */ export interface ChainDescriptorAmino { /** id is the chain id */ - id: string; + id?: string; } export interface ChainDescriptorAminoMsg { type: "cosmos-sdk/ChainDescriptor"; @@ -205,7 +205,7 @@ export interface CodecDescriptorProtoMsg { /** CodecDescriptor describes the registered interfaces and provides metadata information on the types */ export interface CodecDescriptorAmino { /** interfaces is a list of the registerted interfaces descriptors */ - interfaces: InterfaceDescriptorAmino[]; + interfaces?: InterfaceDescriptorAmino[]; } export interface CodecDescriptorAminoMsg { type: "cosmos-sdk/CodecDescriptor"; @@ -234,14 +234,14 @@ export interface InterfaceDescriptorProtoMsg { /** InterfaceDescriptor describes the implementation of an interface */ export interface InterfaceDescriptorAmino { /** fullname is the name of the interface */ - fullname: string; + fullname?: string; /** * interface_accepting_messages contains information regarding the proto messages which contain the interface as * google.protobuf.Any field */ - interface_accepting_messages: InterfaceAcceptingMessageDescriptorAmino[]; + interface_accepting_messages?: InterfaceAcceptingMessageDescriptorAmino[]; /** interface_implementers is a list of the descriptors of the interface implementers */ - interface_implementers: InterfaceImplementerDescriptorAmino[]; + interface_implementers?: InterfaceImplementerDescriptorAmino[]; } export interface InterfaceDescriptorAminoMsg { type: "cosmos-sdk/InterfaceDescriptor"; @@ -272,14 +272,14 @@ export interface InterfaceImplementerDescriptorProtoMsg { /** InterfaceImplementerDescriptor describes an interface implementer */ export interface InterfaceImplementerDescriptorAmino { /** fullname is the protobuf queryable name of the interface implementer */ - fullname: string; + fullname?: string; /** * type_url defines the type URL used when marshalling the type as any * this is required so we can provide type safe google.protobuf.Any marshalling and * unmarshalling, making sure that we don't accept just 'any' type * in our interface fields */ - type_url: string; + type_url?: string; } export interface InterfaceImplementerDescriptorAminoMsg { type: "cosmos-sdk/InterfaceImplementerDescriptor"; @@ -314,13 +314,13 @@ export interface InterfaceAcceptingMessageDescriptorProtoMsg { */ export interface InterfaceAcceptingMessageDescriptorAmino { /** fullname is the protobuf fullname of the type containing the interface */ - fullname: string; + fullname?: string; /** * field_descriptor_names is a list of the protobuf name (not fullname) of the field * which contains the interface as google.protobuf.Any (the interface is the same, but * it can be in multiple fields of the same proto message) */ - field_descriptor_names: string[]; + field_descriptor_names?: string[]; } export interface InterfaceAcceptingMessageDescriptorAminoMsg { type: "cosmos-sdk/InterfaceAcceptingMessageDescriptor"; @@ -346,7 +346,7 @@ export interface ConfigurationDescriptorProtoMsg { /** ConfigurationDescriptor contains metadata information on the sdk.Config */ export interface ConfigurationDescriptorAmino { /** bech32_account_address_prefix is the account address prefix */ - bech32_account_address_prefix: string; + bech32_account_address_prefix?: string; } export interface ConfigurationDescriptorAminoMsg { type: "cosmos-sdk/ConfigurationDescriptor"; @@ -368,7 +368,7 @@ export interface MsgDescriptorProtoMsg { /** MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction */ export interface MsgDescriptorAmino { /** msg_type_url contains the TypeURL of a sdk.Msg. */ - msg_type_url: string; + msg_type_url?: string; } export interface MsgDescriptorAminoMsg { type: "cosmos-sdk/MsgDescriptor"; @@ -398,7 +398,7 @@ export interface GetAuthnDescriptorRequestSDKType { /** GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC */ export interface GetAuthnDescriptorResponse { /** authn describes how to authenticate to the application when sending transactions */ - authn: AuthnDescriptor; + authn?: AuthnDescriptor; } export interface GetAuthnDescriptorResponseProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse"; @@ -415,7 +415,7 @@ export interface GetAuthnDescriptorResponseAminoMsg { } /** GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC */ export interface GetAuthnDescriptorResponseSDKType { - authn: AuthnDescriptorSDKType; + authn?: AuthnDescriptorSDKType; } /** GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC */ export interface GetChainDescriptorRequest { @@ -437,7 +437,7 @@ export interface GetChainDescriptorRequestSDKType { /** GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC */ export interface GetChainDescriptorResponse { /** chain describes application chain information */ - chain: ChainDescriptor; + chain?: ChainDescriptor; } export interface GetChainDescriptorResponseProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse"; @@ -454,7 +454,7 @@ export interface GetChainDescriptorResponseAminoMsg { } /** GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC */ export interface GetChainDescriptorResponseSDKType { - chain: ChainDescriptorSDKType; + chain?: ChainDescriptorSDKType; } /** GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC */ export interface GetCodecDescriptorRequest { @@ -476,7 +476,7 @@ export interface GetCodecDescriptorRequestSDKType { /** GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC */ export interface GetCodecDescriptorResponse { /** codec describes the application codec such as registered interfaces and implementations */ - codec: CodecDescriptor; + codec?: CodecDescriptor; } export interface GetCodecDescriptorResponseProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse"; @@ -493,7 +493,7 @@ export interface GetCodecDescriptorResponseAminoMsg { } /** GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC */ export interface GetCodecDescriptorResponseSDKType { - codec: CodecDescriptorSDKType; + codec?: CodecDescriptorSDKType; } /** GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC */ export interface GetConfigurationDescriptorRequest { @@ -515,7 +515,7 @@ export interface GetConfigurationDescriptorRequestSDKType { /** GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC */ export interface GetConfigurationDescriptorResponse { /** config describes the application's sdk.Config */ - config: ConfigurationDescriptor; + config?: ConfigurationDescriptor; } export interface GetConfigurationDescriptorResponseProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse"; @@ -532,7 +532,7 @@ export interface GetConfigurationDescriptorResponseAminoMsg { } /** GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC */ export interface GetConfigurationDescriptorResponseSDKType { - config: ConfigurationDescriptorSDKType; + config?: ConfigurationDescriptorSDKType; } /** GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC */ export interface GetQueryServicesDescriptorRequest { @@ -554,7 +554,7 @@ export interface GetQueryServicesDescriptorRequestSDKType { /** GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC */ export interface GetQueryServicesDescriptorResponse { /** queries provides information on the available queryable services */ - queries: QueryServicesDescriptor; + queries?: QueryServicesDescriptor; } export interface GetQueryServicesDescriptorResponseProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse"; @@ -571,7 +571,7 @@ export interface GetQueryServicesDescriptorResponseAminoMsg { } /** GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC */ export interface GetQueryServicesDescriptorResponseSDKType { - queries: QueryServicesDescriptorSDKType; + queries?: QueryServicesDescriptorSDKType; } /** GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC */ export interface GetTxDescriptorRequest { @@ -596,7 +596,7 @@ export interface GetTxDescriptorResponse { * tx provides information on msgs that can be forwarded to the application * alongside the accepted transaction protobuf type */ - tx: TxDescriptor; + tx?: TxDescriptor; } export interface GetTxDescriptorResponseProtoMsg { typeUrl: "/cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse"; @@ -616,7 +616,7 @@ export interface GetTxDescriptorResponseAminoMsg { } /** GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC */ export interface GetTxDescriptorResponseSDKType { - tx: TxDescriptorSDKType; + tx?: TxDescriptorSDKType; } /** QueryServicesDescriptor contains the list of cosmos-sdk queriable services */ export interface QueryServicesDescriptor { @@ -630,7 +630,7 @@ export interface QueryServicesDescriptorProtoMsg { /** QueryServicesDescriptor contains the list of cosmos-sdk queriable services */ export interface QueryServicesDescriptorAmino { /** query_services is a list of cosmos-sdk QueryServiceDescriptor */ - query_services: QueryServiceDescriptorAmino[]; + query_services?: QueryServiceDescriptorAmino[]; } export interface QueryServicesDescriptorAminoMsg { type: "cosmos-sdk/QueryServicesDescriptor"; @@ -656,11 +656,11 @@ export interface QueryServiceDescriptorProtoMsg { /** QueryServiceDescriptor describes a cosmos-sdk queryable service */ export interface QueryServiceDescriptorAmino { /** fullname is the protobuf fullname of the service descriptor */ - fullname: string; + fullname?: string; /** is_module describes if this service is actually exposed by an application's module */ - is_module: boolean; + is_module?: boolean; /** methods provides a list of query service methods */ - methods: QueryMethodDescriptorAmino[]; + methods?: QueryMethodDescriptorAmino[]; } export interface QueryServiceDescriptorAminoMsg { type: "cosmos-sdk/QueryServiceDescriptor"; @@ -697,12 +697,12 @@ export interface QueryMethodDescriptorProtoMsg { */ export interface QueryMethodDescriptorAmino { /** name is the protobuf name (not fullname) of the method */ - name: string; + name?: string; /** * full_query_path is the path that can be used to query * this method via tendermint abci.Query */ - full_query_path: string; + full_query_path?: string; } export interface QueryMethodDescriptorAminoMsg { type: "cosmos-sdk/QueryMethodDescriptor"; @@ -718,8 +718,9 @@ export interface QueryMethodDescriptorSDKType { full_query_path: string; } export declare const AppDescriptor: { - encode(message: AppDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AppDescriptor; + typeUrl: string; + encode(message: AppDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AppDescriptor; fromJSON(object: any): AppDescriptor; toJSON(message: AppDescriptor): unknown; fromPartial(object: Partial): AppDescriptor; @@ -732,8 +733,9 @@ export declare const AppDescriptor: { toProtoMsg(message: AppDescriptor): AppDescriptorProtoMsg; }; export declare const TxDescriptor: { - encode(message: TxDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxDescriptor; + typeUrl: string; + encode(message: TxDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxDescriptor; fromJSON(object: any): TxDescriptor; toJSON(message: TxDescriptor): unknown; fromPartial(object: Partial): TxDescriptor; @@ -746,8 +748,9 @@ export declare const TxDescriptor: { toProtoMsg(message: TxDescriptor): TxDescriptorProtoMsg; }; export declare const AuthnDescriptor: { - encode(message: AuthnDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AuthnDescriptor; + typeUrl: string; + encode(message: AuthnDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AuthnDescriptor; fromJSON(object: any): AuthnDescriptor; toJSON(message: AuthnDescriptor): unknown; fromPartial(object: Partial): AuthnDescriptor; @@ -760,8 +763,9 @@ export declare const AuthnDescriptor: { toProtoMsg(message: AuthnDescriptor): AuthnDescriptorProtoMsg; }; export declare const SigningModeDescriptor: { - encode(message: SigningModeDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SigningModeDescriptor; + typeUrl: string; + encode(message: SigningModeDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SigningModeDescriptor; fromJSON(object: any): SigningModeDescriptor; toJSON(message: SigningModeDescriptor): unknown; fromPartial(object: Partial): SigningModeDescriptor; @@ -774,8 +778,9 @@ export declare const SigningModeDescriptor: { toProtoMsg(message: SigningModeDescriptor): SigningModeDescriptorProtoMsg; }; export declare const ChainDescriptor: { - encode(message: ChainDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ChainDescriptor; + typeUrl: string; + encode(message: ChainDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ChainDescriptor; fromJSON(object: any): ChainDescriptor; toJSON(message: ChainDescriptor): unknown; fromPartial(object: Partial): ChainDescriptor; @@ -788,8 +793,9 @@ export declare const ChainDescriptor: { toProtoMsg(message: ChainDescriptor): ChainDescriptorProtoMsg; }; export declare const CodecDescriptor: { - encode(message: CodecDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CodecDescriptor; + typeUrl: string; + encode(message: CodecDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CodecDescriptor; fromJSON(object: any): CodecDescriptor; toJSON(message: CodecDescriptor): unknown; fromPartial(object: Partial): CodecDescriptor; @@ -802,8 +808,9 @@ export declare const CodecDescriptor: { toProtoMsg(message: CodecDescriptor): CodecDescriptorProtoMsg; }; export declare const InterfaceDescriptor: { - encode(message: InterfaceDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): InterfaceDescriptor; + typeUrl: string; + encode(message: InterfaceDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): InterfaceDescriptor; fromJSON(object: any): InterfaceDescriptor; toJSON(message: InterfaceDescriptor): unknown; fromPartial(object: Partial): InterfaceDescriptor; @@ -816,8 +823,9 @@ export declare const InterfaceDescriptor: { toProtoMsg(message: InterfaceDescriptor): InterfaceDescriptorProtoMsg; }; export declare const InterfaceImplementerDescriptor: { - encode(message: InterfaceImplementerDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): InterfaceImplementerDescriptor; + typeUrl: string; + encode(message: InterfaceImplementerDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): InterfaceImplementerDescriptor; fromJSON(object: any): InterfaceImplementerDescriptor; toJSON(message: InterfaceImplementerDescriptor): unknown; fromPartial(object: Partial): InterfaceImplementerDescriptor; @@ -830,8 +838,9 @@ export declare const InterfaceImplementerDescriptor: { toProtoMsg(message: InterfaceImplementerDescriptor): InterfaceImplementerDescriptorProtoMsg; }; export declare const InterfaceAcceptingMessageDescriptor: { - encode(message: InterfaceAcceptingMessageDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): InterfaceAcceptingMessageDescriptor; + typeUrl: string; + encode(message: InterfaceAcceptingMessageDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): InterfaceAcceptingMessageDescriptor; fromJSON(object: any): InterfaceAcceptingMessageDescriptor; toJSON(message: InterfaceAcceptingMessageDescriptor): unknown; fromPartial(object: Partial): InterfaceAcceptingMessageDescriptor; @@ -844,8 +853,9 @@ export declare const InterfaceAcceptingMessageDescriptor: { toProtoMsg(message: InterfaceAcceptingMessageDescriptor): InterfaceAcceptingMessageDescriptorProtoMsg; }; export declare const ConfigurationDescriptor: { - encode(message: ConfigurationDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConfigurationDescriptor; + typeUrl: string; + encode(message: ConfigurationDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConfigurationDescriptor; fromJSON(object: any): ConfigurationDescriptor; toJSON(message: ConfigurationDescriptor): unknown; fromPartial(object: Partial): ConfigurationDescriptor; @@ -858,8 +868,9 @@ export declare const ConfigurationDescriptor: { toProtoMsg(message: ConfigurationDescriptor): ConfigurationDescriptorProtoMsg; }; export declare const MsgDescriptor: { - encode(message: MsgDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDescriptor; + typeUrl: string; + encode(message: MsgDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDescriptor; fromJSON(object: any): MsgDescriptor; toJSON(message: MsgDescriptor): unknown; fromPartial(object: Partial): MsgDescriptor; @@ -872,8 +883,9 @@ export declare const MsgDescriptor: { toProtoMsg(message: MsgDescriptor): MsgDescriptorProtoMsg; }; export declare const GetAuthnDescriptorRequest: { - encode(_: GetAuthnDescriptorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetAuthnDescriptorRequest; + typeUrl: string; + encode(_: GetAuthnDescriptorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetAuthnDescriptorRequest; fromJSON(_: any): GetAuthnDescriptorRequest; toJSON(_: GetAuthnDescriptorRequest): unknown; fromPartial(_: Partial): GetAuthnDescriptorRequest; @@ -886,8 +898,9 @@ export declare const GetAuthnDescriptorRequest: { toProtoMsg(message: GetAuthnDescriptorRequest): GetAuthnDescriptorRequestProtoMsg; }; export declare const GetAuthnDescriptorResponse: { - encode(message: GetAuthnDescriptorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetAuthnDescriptorResponse; + typeUrl: string; + encode(message: GetAuthnDescriptorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetAuthnDescriptorResponse; fromJSON(object: any): GetAuthnDescriptorResponse; toJSON(message: GetAuthnDescriptorResponse): unknown; fromPartial(object: Partial): GetAuthnDescriptorResponse; @@ -900,8 +913,9 @@ export declare const GetAuthnDescriptorResponse: { toProtoMsg(message: GetAuthnDescriptorResponse): GetAuthnDescriptorResponseProtoMsg; }; export declare const GetChainDescriptorRequest: { - encode(_: GetChainDescriptorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetChainDescriptorRequest; + typeUrl: string; + encode(_: GetChainDescriptorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetChainDescriptorRequest; fromJSON(_: any): GetChainDescriptorRequest; toJSON(_: GetChainDescriptorRequest): unknown; fromPartial(_: Partial): GetChainDescriptorRequest; @@ -914,8 +928,9 @@ export declare const GetChainDescriptorRequest: { toProtoMsg(message: GetChainDescriptorRequest): GetChainDescriptorRequestProtoMsg; }; export declare const GetChainDescriptorResponse: { - encode(message: GetChainDescriptorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetChainDescriptorResponse; + typeUrl: string; + encode(message: GetChainDescriptorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetChainDescriptorResponse; fromJSON(object: any): GetChainDescriptorResponse; toJSON(message: GetChainDescriptorResponse): unknown; fromPartial(object: Partial): GetChainDescriptorResponse; @@ -928,8 +943,9 @@ export declare const GetChainDescriptorResponse: { toProtoMsg(message: GetChainDescriptorResponse): GetChainDescriptorResponseProtoMsg; }; export declare const GetCodecDescriptorRequest: { - encode(_: GetCodecDescriptorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetCodecDescriptorRequest; + typeUrl: string; + encode(_: GetCodecDescriptorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetCodecDescriptorRequest; fromJSON(_: any): GetCodecDescriptorRequest; toJSON(_: GetCodecDescriptorRequest): unknown; fromPartial(_: Partial): GetCodecDescriptorRequest; @@ -942,8 +958,9 @@ export declare const GetCodecDescriptorRequest: { toProtoMsg(message: GetCodecDescriptorRequest): GetCodecDescriptorRequestProtoMsg; }; export declare const GetCodecDescriptorResponse: { - encode(message: GetCodecDescriptorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetCodecDescriptorResponse; + typeUrl: string; + encode(message: GetCodecDescriptorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetCodecDescriptorResponse; fromJSON(object: any): GetCodecDescriptorResponse; toJSON(message: GetCodecDescriptorResponse): unknown; fromPartial(object: Partial): GetCodecDescriptorResponse; @@ -956,8 +973,9 @@ export declare const GetCodecDescriptorResponse: { toProtoMsg(message: GetCodecDescriptorResponse): GetCodecDescriptorResponseProtoMsg; }; export declare const GetConfigurationDescriptorRequest: { - encode(_: GetConfigurationDescriptorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetConfigurationDescriptorRequest; + typeUrl: string; + encode(_: GetConfigurationDescriptorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetConfigurationDescriptorRequest; fromJSON(_: any): GetConfigurationDescriptorRequest; toJSON(_: GetConfigurationDescriptorRequest): unknown; fromPartial(_: Partial): GetConfigurationDescriptorRequest; @@ -970,8 +988,9 @@ export declare const GetConfigurationDescriptorRequest: { toProtoMsg(message: GetConfigurationDescriptorRequest): GetConfigurationDescriptorRequestProtoMsg; }; export declare const GetConfigurationDescriptorResponse: { - encode(message: GetConfigurationDescriptorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetConfigurationDescriptorResponse; + typeUrl: string; + encode(message: GetConfigurationDescriptorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetConfigurationDescriptorResponse; fromJSON(object: any): GetConfigurationDescriptorResponse; toJSON(message: GetConfigurationDescriptorResponse): unknown; fromPartial(object: Partial): GetConfigurationDescriptorResponse; @@ -984,8 +1003,9 @@ export declare const GetConfigurationDescriptorResponse: { toProtoMsg(message: GetConfigurationDescriptorResponse): GetConfigurationDescriptorResponseProtoMsg; }; export declare const GetQueryServicesDescriptorRequest: { - encode(_: GetQueryServicesDescriptorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetQueryServicesDescriptorRequest; + typeUrl: string; + encode(_: GetQueryServicesDescriptorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetQueryServicesDescriptorRequest; fromJSON(_: any): GetQueryServicesDescriptorRequest; toJSON(_: GetQueryServicesDescriptorRequest): unknown; fromPartial(_: Partial): GetQueryServicesDescriptorRequest; @@ -998,8 +1018,9 @@ export declare const GetQueryServicesDescriptorRequest: { toProtoMsg(message: GetQueryServicesDescriptorRequest): GetQueryServicesDescriptorRequestProtoMsg; }; export declare const GetQueryServicesDescriptorResponse: { - encode(message: GetQueryServicesDescriptorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetQueryServicesDescriptorResponse; + typeUrl: string; + encode(message: GetQueryServicesDescriptorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetQueryServicesDescriptorResponse; fromJSON(object: any): GetQueryServicesDescriptorResponse; toJSON(message: GetQueryServicesDescriptorResponse): unknown; fromPartial(object: Partial): GetQueryServicesDescriptorResponse; @@ -1012,8 +1033,9 @@ export declare const GetQueryServicesDescriptorResponse: { toProtoMsg(message: GetQueryServicesDescriptorResponse): GetQueryServicesDescriptorResponseProtoMsg; }; export declare const GetTxDescriptorRequest: { - encode(_: GetTxDescriptorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetTxDescriptorRequest; + typeUrl: string; + encode(_: GetTxDescriptorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetTxDescriptorRequest; fromJSON(_: any): GetTxDescriptorRequest; toJSON(_: GetTxDescriptorRequest): unknown; fromPartial(_: Partial): GetTxDescriptorRequest; @@ -1026,8 +1048,9 @@ export declare const GetTxDescriptorRequest: { toProtoMsg(message: GetTxDescriptorRequest): GetTxDescriptorRequestProtoMsg; }; export declare const GetTxDescriptorResponse: { - encode(message: GetTxDescriptorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetTxDescriptorResponse; + typeUrl: string; + encode(message: GetTxDescriptorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetTxDescriptorResponse; fromJSON(object: any): GetTxDescriptorResponse; toJSON(message: GetTxDescriptorResponse): unknown; fromPartial(object: Partial): GetTxDescriptorResponse; @@ -1040,8 +1063,9 @@ export declare const GetTxDescriptorResponse: { toProtoMsg(message: GetTxDescriptorResponse): GetTxDescriptorResponseProtoMsg; }; export declare const QueryServicesDescriptor: { - encode(message: QueryServicesDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryServicesDescriptor; + typeUrl: string; + encode(message: QueryServicesDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryServicesDescriptor; fromJSON(object: any): QueryServicesDescriptor; toJSON(message: QueryServicesDescriptor): unknown; fromPartial(object: Partial): QueryServicesDescriptor; @@ -1054,8 +1078,9 @@ export declare const QueryServicesDescriptor: { toProtoMsg(message: QueryServicesDescriptor): QueryServicesDescriptorProtoMsg; }; export declare const QueryServiceDescriptor: { - encode(message: QueryServiceDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryServiceDescriptor; + typeUrl: string; + encode(message: QueryServiceDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryServiceDescriptor; fromJSON(object: any): QueryServiceDescriptor; toJSON(message: QueryServiceDescriptor): unknown; fromPartial(object: Partial): QueryServiceDescriptor; @@ -1068,8 +1093,9 @@ export declare const QueryServiceDescriptor: { toProtoMsg(message: QueryServiceDescriptor): QueryServiceDescriptorProtoMsg; }; export declare const QueryMethodDescriptor: { - encode(message: QueryMethodDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryMethodDescriptor; + typeUrl: string; + encode(message: QueryMethodDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryMethodDescriptor; fromJSON(object: any): QueryMethodDescriptor; toJSON(message: QueryMethodDescriptor): unknown; fromPartial(object: Partial): QueryMethodDescriptor; diff --git a/packages/api/types/codegen/cosmos/base/snapshots/v1beta1/snapshot.d.ts b/packages/api/types/codegen/cosmos/base/snapshots/v1beta1/snapshot.d.ts index 9282863..5c8444d 100644 --- a/packages/api/types/codegen/cosmos/base/snapshots/v1beta1/snapshot.d.ts +++ b/packages/api/types/codegen/cosmos/base/snapshots/v1beta1/snapshot.d.ts @@ -1,8 +1,7 @@ -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** Snapshot contains Tendermint state sync snapshot info. */ export interface Snapshot { - height: Long; + height: bigint; format: number; chunks: number; hash: Uint8Array; @@ -14,10 +13,10 @@ export interface SnapshotProtoMsg { } /** Snapshot contains Tendermint state sync snapshot info. */ export interface SnapshotAmino { - height: string; - format: number; - chunks: number; - hash: Uint8Array; + height?: string; + format?: number; + chunks?: number; + hash?: string; metadata?: MetadataAmino; } export interface SnapshotAminoMsg { @@ -26,7 +25,7 @@ export interface SnapshotAminoMsg { } /** Snapshot contains Tendermint state sync snapshot info. */ export interface SnapshotSDKType { - height: Long; + height: bigint; format: number; chunks: number; hash: Uint8Array; @@ -44,7 +43,7 @@ export interface MetadataProtoMsg { /** Metadata contains SDK-specific snapshot metadata. */ export interface MetadataAmino { /** SHA-256 chunk hashes */ - chunk_hashes: Uint8Array[]; + chunk_hashes?: string[]; } export interface MetadataAminoMsg { type: "cosmos-sdk/Metadata"; @@ -119,7 +118,7 @@ export interface SnapshotStoreItemProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SnapshotStoreItemAmino { - name: string; + name?: string; } export interface SnapshotStoreItemAminoMsg { type: "cosmos-sdk/SnapshotStoreItem"; @@ -142,7 +141,7 @@ export interface SnapshotIAVLItem { key: Uint8Array; value: Uint8Array; /** version is block height */ - version: Long; + version: bigint; /** height is depth of the tree. */ height: number; } @@ -156,12 +155,12 @@ export interface SnapshotIAVLItemProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SnapshotIAVLItemAmino { - key: Uint8Array; - value: Uint8Array; + key?: string; + value?: string; /** version is block height */ - version: string; + version?: string; /** height is depth of the tree. */ - height: number; + height?: number; } export interface SnapshotIAVLItemAminoMsg { type: "cosmos-sdk/SnapshotIAVLItem"; @@ -175,7 +174,7 @@ export interface SnapshotIAVLItemAminoMsg { export interface SnapshotIAVLItemSDKType { key: Uint8Array; value: Uint8Array; - version: Long; + version: bigint; height: number; } /** @@ -197,8 +196,8 @@ export interface SnapshotExtensionMetaProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SnapshotExtensionMetaAmino { - name: string; - format: number; + name?: string; + format?: number; } export interface SnapshotExtensionMetaAminoMsg { type: "cosmos-sdk/SnapshotExtensionMeta"; @@ -231,7 +230,7 @@ export interface SnapshotExtensionPayloadProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SnapshotExtensionPayloadAmino { - payload: Uint8Array; + payload?: string; } export interface SnapshotExtensionPayloadAminoMsg { type: "cosmos-sdk/SnapshotExtensionPayload"; @@ -264,8 +263,8 @@ export interface SnapshotKVItemProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SnapshotKVItemAmino { - key: Uint8Array; - value: Uint8Array; + key?: string; + value?: string; } export interface SnapshotKVItemAminoMsg { type: "cosmos-sdk/SnapshotKVItem"; @@ -298,7 +297,7 @@ export interface SnapshotSchemaProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SnapshotSchemaAmino { - keys: Uint8Array[]; + keys?: string[]; } export interface SnapshotSchemaAminoMsg { type: "cosmos-sdk/SnapshotSchema"; @@ -313,8 +312,9 @@ export interface SnapshotSchemaSDKType { keys: Uint8Array[]; } export declare const Snapshot: { - encode(message: Snapshot, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Snapshot; + typeUrl: string; + encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Snapshot; fromJSON(object: any): Snapshot; toJSON(message: Snapshot): unknown; fromPartial(object: Partial): Snapshot; @@ -327,8 +327,9 @@ export declare const Snapshot: { toProtoMsg(message: Snapshot): SnapshotProtoMsg; }; export declare const Metadata: { - encode(message: Metadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Metadata; + typeUrl: string; + encode(message: Metadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Metadata; fromJSON(object: any): Metadata; toJSON(message: Metadata): unknown; fromPartial(object: Partial): Metadata; @@ -341,8 +342,9 @@ export declare const Metadata: { toProtoMsg(message: Metadata): MetadataProtoMsg; }; export declare const SnapshotItem: { - encode(message: SnapshotItem, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotItem; + typeUrl: string; + encode(message: SnapshotItem, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotItem; fromJSON(object: any): SnapshotItem; toJSON(message: SnapshotItem): unknown; fromPartial(object: Partial): SnapshotItem; @@ -355,8 +357,9 @@ export declare const SnapshotItem: { toProtoMsg(message: SnapshotItem): SnapshotItemProtoMsg; }; export declare const SnapshotStoreItem: { - encode(message: SnapshotStoreItem, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotStoreItem; + typeUrl: string; + encode(message: SnapshotStoreItem, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotStoreItem; fromJSON(object: any): SnapshotStoreItem; toJSON(message: SnapshotStoreItem): unknown; fromPartial(object: Partial): SnapshotStoreItem; @@ -369,8 +372,9 @@ export declare const SnapshotStoreItem: { toProtoMsg(message: SnapshotStoreItem): SnapshotStoreItemProtoMsg; }; export declare const SnapshotIAVLItem: { - encode(message: SnapshotIAVLItem, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotIAVLItem; + typeUrl: string; + encode(message: SnapshotIAVLItem, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotIAVLItem; fromJSON(object: any): SnapshotIAVLItem; toJSON(message: SnapshotIAVLItem): unknown; fromPartial(object: Partial): SnapshotIAVLItem; @@ -383,8 +387,9 @@ export declare const SnapshotIAVLItem: { toProtoMsg(message: SnapshotIAVLItem): SnapshotIAVLItemProtoMsg; }; export declare const SnapshotExtensionMeta: { - encode(message: SnapshotExtensionMeta, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotExtensionMeta; + typeUrl: string; + encode(message: SnapshotExtensionMeta, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotExtensionMeta; fromJSON(object: any): SnapshotExtensionMeta; toJSON(message: SnapshotExtensionMeta): unknown; fromPartial(object: Partial): SnapshotExtensionMeta; @@ -397,8 +402,9 @@ export declare const SnapshotExtensionMeta: { toProtoMsg(message: SnapshotExtensionMeta): SnapshotExtensionMetaProtoMsg; }; export declare const SnapshotExtensionPayload: { - encode(message: SnapshotExtensionPayload, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotExtensionPayload; + typeUrl: string; + encode(message: SnapshotExtensionPayload, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotExtensionPayload; fromJSON(object: any): SnapshotExtensionPayload; toJSON(message: SnapshotExtensionPayload): unknown; fromPartial(object: Partial): SnapshotExtensionPayload; @@ -411,8 +417,9 @@ export declare const SnapshotExtensionPayload: { toProtoMsg(message: SnapshotExtensionPayload): SnapshotExtensionPayloadProtoMsg; }; export declare const SnapshotKVItem: { - encode(message: SnapshotKVItem, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotKVItem; + typeUrl: string; + encode(message: SnapshotKVItem, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotKVItem; fromJSON(object: any): SnapshotKVItem; toJSON(message: SnapshotKVItem): unknown; fromPartial(object: Partial): SnapshotKVItem; @@ -425,8 +432,9 @@ export declare const SnapshotKVItem: { toProtoMsg(message: SnapshotKVItem): SnapshotKVItemProtoMsg; }; export declare const SnapshotSchema: { - encode(message: SnapshotSchema, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SnapshotSchema; + typeUrl: string; + encode(message: SnapshotSchema, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SnapshotSchema; fromJSON(object: any): SnapshotSchema; toJSON(message: SnapshotSchema): unknown; fromPartial(object: Partial): SnapshotSchema; diff --git a/packages/api/types/codegen/cosmos/base/store/v1beta1/commit_info.d.ts b/packages/api/types/codegen/cosmos/base/store/v1beta1/commit_info.d.ts index 603d5ce..d407e8d 100644 --- a/packages/api/types/codegen/cosmos/base/store/v1beta1/commit_info.d.ts +++ b/packages/api/types/codegen/cosmos/base/store/v1beta1/commit_info.d.ts @@ -1,11 +1,10 @@ -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * CommitInfo defines commit information used by the multi-store when committing * a version/height. */ export interface CommitInfo { - version: Long; + version: bigint; storeInfos: StoreInfo[]; } export interface CommitInfoProtoMsg { @@ -17,8 +16,8 @@ export interface CommitInfoProtoMsg { * a version/height. */ export interface CommitInfoAmino { - version: string; - store_infos: StoreInfoAmino[]; + version?: string; + store_infos?: StoreInfoAmino[]; } export interface CommitInfoAminoMsg { type: "cosmos-sdk/CommitInfo"; @@ -29,7 +28,7 @@ export interface CommitInfoAminoMsg { * a version/height. */ export interface CommitInfoSDKType { - version: Long; + version: bigint; store_infos: StoreInfoSDKType[]; } /** @@ -49,7 +48,7 @@ export interface StoreInfoProtoMsg { * between a store name and the commit ID. */ export interface StoreInfoAmino { - name: string; + name?: string; commit_id?: CommitIDAmino; } export interface StoreInfoAminoMsg { @@ -69,7 +68,7 @@ export interface StoreInfoSDKType { * committed. */ export interface CommitID { - version: Long; + version: bigint; hash: Uint8Array; } export interface CommitIDProtoMsg { @@ -81,8 +80,8 @@ export interface CommitIDProtoMsg { * committed. */ export interface CommitIDAmino { - version: string; - hash: Uint8Array; + version?: string; + hash?: string; } export interface CommitIDAminoMsg { type: "cosmos-sdk/CommitID"; @@ -93,12 +92,13 @@ export interface CommitIDAminoMsg { * committed. */ export interface CommitIDSDKType { - version: Long; + version: bigint; hash: Uint8Array; } export declare const CommitInfo: { - encode(message: CommitInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommitInfo; + typeUrl: string; + encode(message: CommitInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommitInfo; fromJSON(object: any): CommitInfo; toJSON(message: CommitInfo): unknown; fromPartial(object: Partial): CommitInfo; @@ -111,8 +111,9 @@ export declare const CommitInfo: { toProtoMsg(message: CommitInfo): CommitInfoProtoMsg; }; export declare const StoreInfo: { - encode(message: StoreInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): StoreInfo; + typeUrl: string; + encode(message: StoreInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): StoreInfo; fromJSON(object: any): StoreInfo; toJSON(message: StoreInfo): unknown; fromPartial(object: Partial): StoreInfo; @@ -125,8 +126,9 @@ export declare const StoreInfo: { toProtoMsg(message: StoreInfo): StoreInfoProtoMsg; }; export declare const CommitID: { - encode(message: CommitID, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommitID; + typeUrl: string; + encode(message: CommitID, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommitID; fromJSON(object: any): CommitID; toJSON(message: CommitID): unknown; fromPartial(object: Partial): CommitID; diff --git a/packages/api/types/codegen/cosmos/base/store/v1beta1/listening.d.ts b/packages/api/types/codegen/cosmos/base/store/v1beta1/listening.d.ts index 8bac8aa..6cb28fc 100644 --- a/packages/api/types/codegen/cosmos/base/store/v1beta1/listening.d.ts +++ b/packages/api/types/codegen/cosmos/base/store/v1beta1/listening.d.ts @@ -1,5 +1,5 @@ import { RequestDeliverTx, RequestDeliverTxAmino, RequestDeliverTxSDKType, ResponseDeliverTx, ResponseDeliverTxAmino, ResponseDeliverTxSDKType, RequestBeginBlock, RequestBeginBlockAmino, RequestBeginBlockSDKType, ResponseBeginBlock, ResponseBeginBlockAmino, ResponseBeginBlockSDKType, RequestEndBlock, RequestEndBlockAmino, RequestEndBlockSDKType, ResponseEndBlock, ResponseEndBlockAmino, ResponseEndBlockSDKType, ResponseCommit, ResponseCommitAmino, ResponseCommitSDKType } from "../../../../tendermint/abci/types"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * StoreKVPair is a KVStore KVPair used for listening to state changes (Sets and Deletes) * It optionally includes the StoreKey for the originating KVStore and a Boolean flag to distinguish between Sets and @@ -28,11 +28,11 @@ export interface StoreKVPairProtoMsg { */ export interface StoreKVPairAmino { /** the store key for the KVStore this pair originates from */ - store_key: string; + store_key?: string; /** true indicates a delete operation, false indicates a set operation */ - delete: boolean; - key: Uint8Array; - value: Uint8Array; + delete?: boolean; + key?: string; + value?: string; } export interface StoreKVPairAminoMsg { type: "cosmos-sdk/StoreKVPair"; @@ -56,12 +56,12 @@ export interface StoreKVPairSDKType { * the file streamer dump them into files together with the state changes. */ export interface BlockMetadata { - requestBeginBlock: RequestBeginBlock; - responseBeginBlock: ResponseBeginBlock; + requestBeginBlock?: RequestBeginBlock; + responseBeginBlock?: ResponseBeginBlock; deliverTxs: BlockMetadata_DeliverTx[]; - requestEndBlock: RequestEndBlock; - responseEndBlock: ResponseEndBlock; - responseCommit: ResponseCommit; + requestEndBlock?: RequestEndBlock; + responseEndBlock?: ResponseEndBlock; + responseCommit?: ResponseCommit; } export interface BlockMetadataProtoMsg { typeUrl: "/cosmos.base.store.v1beta1.BlockMetadata"; @@ -74,7 +74,7 @@ export interface BlockMetadataProtoMsg { export interface BlockMetadataAmino { request_begin_block?: RequestBeginBlockAmino; response_begin_block?: ResponseBeginBlockAmino; - deliver_txs: BlockMetadata_DeliverTxAmino[]; + deliver_txs?: BlockMetadata_DeliverTxAmino[]; request_end_block?: RequestEndBlockAmino; response_end_block?: ResponseEndBlockAmino; response_commit?: ResponseCommitAmino; @@ -88,17 +88,17 @@ export interface BlockMetadataAminoMsg { * the file streamer dump them into files together with the state changes. */ export interface BlockMetadataSDKType { - request_begin_block: RequestBeginBlockSDKType; - response_begin_block: ResponseBeginBlockSDKType; + request_begin_block?: RequestBeginBlockSDKType; + response_begin_block?: ResponseBeginBlockSDKType; deliver_txs: BlockMetadata_DeliverTxSDKType[]; - request_end_block: RequestEndBlockSDKType; - response_end_block: ResponseEndBlockSDKType; - response_commit: ResponseCommitSDKType; + request_end_block?: RequestEndBlockSDKType; + response_end_block?: ResponseEndBlockSDKType; + response_commit?: ResponseCommitSDKType; } /** DeliverTx encapulate deliver tx request and response. */ export interface BlockMetadata_DeliverTx { - request: RequestDeliverTx; - response: ResponseDeliverTx; + request?: RequestDeliverTx; + response?: ResponseDeliverTx; } export interface BlockMetadata_DeliverTxProtoMsg { typeUrl: "/cosmos.base.store.v1beta1.DeliverTx"; @@ -115,12 +115,13 @@ export interface BlockMetadata_DeliverTxAminoMsg { } /** DeliverTx encapulate deliver tx request and response. */ export interface BlockMetadata_DeliverTxSDKType { - request: RequestDeliverTxSDKType; - response: ResponseDeliverTxSDKType; + request?: RequestDeliverTxSDKType; + response?: ResponseDeliverTxSDKType; } export declare const StoreKVPair: { - encode(message: StoreKVPair, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): StoreKVPair; + typeUrl: string; + encode(message: StoreKVPair, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): StoreKVPair; fromJSON(object: any): StoreKVPair; toJSON(message: StoreKVPair): unknown; fromPartial(object: Partial): StoreKVPair; @@ -133,8 +134,9 @@ export declare const StoreKVPair: { toProtoMsg(message: StoreKVPair): StoreKVPairProtoMsg; }; export declare const BlockMetadata: { - encode(message: BlockMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BlockMetadata; + typeUrl: string; + encode(message: BlockMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BlockMetadata; fromJSON(object: any): BlockMetadata; toJSON(message: BlockMetadata): unknown; fromPartial(object: Partial): BlockMetadata; @@ -147,8 +149,9 @@ export declare const BlockMetadata: { toProtoMsg(message: BlockMetadata): BlockMetadataProtoMsg; }; export declare const BlockMetadata_DeliverTx: { - encode(message: BlockMetadata_DeliverTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BlockMetadata_DeliverTx; + typeUrl: string; + encode(message: BlockMetadata_DeliverTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BlockMetadata_DeliverTx; fromJSON(object: any): BlockMetadata_DeliverTx; toJSON(message: BlockMetadata_DeliverTx): unknown; fromPartial(object: Partial): BlockMetadata_DeliverTx; diff --git a/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.d.ts index 8a92410..3e3982f 100644 --- a/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.d.ts @@ -8,16 +8,15 @@ import { Block as Block2 } from "./types"; import { BlockAmino as Block2Amino } from "./types"; import { BlockSDKType as Block2SDKType } from "./types"; import { DefaultNodeInfo, DefaultNodeInfoAmino, DefaultNodeInfoSDKType } from "../../../../tendermint/p2p/types"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * GetValidatorSetByHeightRequest is the request type for the * Query/GetValidatorSetByHeight RPC method. */ export interface GetValidatorSetByHeightRequest { - height: Long; + height: bigint; /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface GetValidatorSetByHeightRequestProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightRequest"; @@ -28,7 +27,7 @@ export interface GetValidatorSetByHeightRequestProtoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetValidatorSetByHeightRequestAmino { - height: string; + height?: string; /** pagination defines an pagination for the request. */ pagination?: PageRequestAmino; } @@ -41,18 +40,18 @@ export interface GetValidatorSetByHeightRequestAminoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetValidatorSetByHeightRequestSDKType { - height: Long; - pagination: PageRequestSDKType; + height: bigint; + pagination?: PageRequestSDKType; } /** * GetValidatorSetByHeightResponse is the response type for the * Query/GetValidatorSetByHeight RPC method. */ export interface GetValidatorSetByHeightResponse { - blockHeight: Long; + blockHeight: bigint; validators: Validator[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface GetValidatorSetByHeightResponseProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse"; @@ -63,8 +62,8 @@ export interface GetValidatorSetByHeightResponseProtoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetValidatorSetByHeightResponseAmino { - block_height: string; - validators: ValidatorAmino[]; + block_height?: string; + validators?: ValidatorAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -77,9 +76,9 @@ export interface GetValidatorSetByHeightResponseAminoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetValidatorSetByHeightResponseSDKType { - block_height: Long; + block_height: bigint; validators: ValidatorSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * GetLatestValidatorSetRequest is the request type for the @@ -87,7 +86,7 @@ export interface GetValidatorSetByHeightResponseSDKType { */ export interface GetLatestValidatorSetRequest { /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface GetLatestValidatorSetRequestProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestValidatorSetRequest"; @@ -110,17 +109,17 @@ export interface GetLatestValidatorSetRequestAminoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetLatestValidatorSetRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * GetLatestValidatorSetResponse is the response type for the * Query/GetValidatorSetByHeight RPC method. */ export interface GetLatestValidatorSetResponse { - blockHeight: Long; + blockHeight: bigint; validators: Validator[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface GetLatestValidatorSetResponseProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse"; @@ -131,8 +130,8 @@ export interface GetLatestValidatorSetResponseProtoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetLatestValidatorSetResponseAmino { - block_height: string; - validators: ValidatorAmino[]; + block_height?: string; + validators?: ValidatorAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -145,16 +144,16 @@ export interface GetLatestValidatorSetResponseAminoMsg { * Query/GetValidatorSetByHeight RPC method. */ export interface GetLatestValidatorSetResponseSDKType { - block_height: Long; + block_height: bigint; validators: ValidatorSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** Validator is the type for the validator-set. */ export interface Validator { address: string; - pubKey: Any; - votingPower: Long; - proposerPriority: Long; + pubKey?: Any; + votingPower: bigint; + proposerPriority: bigint; } export interface ValidatorProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.Validator"; @@ -162,10 +161,10 @@ export interface ValidatorProtoMsg { } /** Validator is the type for the validator-set. */ export interface ValidatorAmino { - address: string; + address?: string; pub_key?: AnyAmino; - voting_power: string; - proposer_priority: string; + voting_power?: string; + proposer_priority?: string; } export interface ValidatorAminoMsg { type: "cosmos-sdk/Validator"; @@ -174,16 +173,16 @@ export interface ValidatorAminoMsg { /** Validator is the type for the validator-set. */ export interface ValidatorSDKType { address: string; - pub_key: AnySDKType; - voting_power: Long; - proposer_priority: Long; + pub_key?: AnySDKType; + voting_power: bigint; + proposer_priority: bigint; } /** * GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight * RPC method. */ export interface GetBlockByHeightRequest { - height: Long; + height: bigint; } export interface GetBlockByHeightRequestProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetBlockByHeightRequest"; @@ -194,7 +193,7 @@ export interface GetBlockByHeightRequestProtoMsg { * RPC method. */ export interface GetBlockByHeightRequestAmino { - height: string; + height?: string; } export interface GetBlockByHeightRequestAminoMsg { type: "cosmos-sdk/GetBlockByHeightRequest"; @@ -205,18 +204,18 @@ export interface GetBlockByHeightRequestAminoMsg { * RPC method. */ export interface GetBlockByHeightRequestSDKType { - height: Long; + height: bigint; } /** * GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight * RPC method. */ export interface GetBlockByHeightResponse { - blockId: BlockID; + blockId?: BlockID; /** Deprecated: please use `sdk_block` instead */ - block: Block1; + block?: Block1; /** Since: cosmos-sdk 0.47 */ - sdkBlock: Block2; + sdkBlock?: Block2; } export interface GetBlockByHeightResponseProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse"; @@ -242,9 +241,9 @@ export interface GetBlockByHeightResponseAminoMsg { * RPC method. */ export interface GetBlockByHeightResponseSDKType { - block_id: BlockIDSDKType; - block: Block1SDKType; - sdk_block: Block2SDKType; + block_id?: BlockIDSDKType; + block?: Block1SDKType; + sdk_block?: Block2SDKType; } /** * GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC @@ -277,11 +276,11 @@ export interface GetLatestBlockRequestSDKType { * method. */ export interface GetLatestBlockResponse { - blockId: BlockID; + blockId?: BlockID; /** Deprecated: please use `sdk_block` instead */ - block: Block1; + block?: Block1; /** Since: cosmos-sdk 0.47 */ - sdkBlock: Block2; + sdkBlock?: Block2; } export interface GetLatestBlockResponseProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestBlockResponse"; @@ -307,9 +306,9 @@ export interface GetLatestBlockResponseAminoMsg { * method. */ export interface GetLatestBlockResponseSDKType { - block_id: BlockIDSDKType; - block: Block1SDKType; - sdk_block: Block2SDKType; + block_id?: BlockIDSDKType; + block?: Block1SDKType; + sdk_block?: Block2SDKType; } /** GetSyncingRequest is the request type for the Query/GetSyncing RPC method. */ export interface GetSyncingRequest { @@ -338,7 +337,7 @@ export interface GetSyncingResponseProtoMsg { } /** GetSyncingResponse is the response type for the Query/GetSyncing RPC method. */ export interface GetSyncingResponseAmino { - syncing: boolean; + syncing?: boolean; } export interface GetSyncingResponseAminoMsg { type: "cosmos-sdk/GetSyncingResponse"; @@ -370,8 +369,8 @@ export interface GetNodeInfoRequestSDKType { * method. */ export interface GetNodeInfoResponse { - defaultNodeInfo: DefaultNodeInfo; - applicationVersion: VersionInfo; + defaultNodeInfo?: DefaultNodeInfo; + applicationVersion?: VersionInfo; } export interface GetNodeInfoResponseProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.GetNodeInfoResponse"; @@ -394,8 +393,8 @@ export interface GetNodeInfoResponseAminoMsg { * method. */ export interface GetNodeInfoResponseSDKType { - default_node_info: DefaultNodeInfoSDKType; - application_version: VersionInfoSDKType; + default_node_info?: DefaultNodeInfoSDKType; + application_version?: VersionInfoSDKType; } /** VersionInfo is the type for the GetNodeInfoResponse message. */ export interface VersionInfo { @@ -415,15 +414,15 @@ export interface VersionInfoProtoMsg { } /** VersionInfo is the type for the GetNodeInfoResponse message. */ export interface VersionInfoAmino { - name: string; - app_name: string; - version: string; - git_commit: string; - build_tags: string; - go_version: string; - build_deps: ModuleAmino[]; + name?: string; + app_name?: string; + version?: string; + git_commit?: string; + build_tags?: string; + go_version?: string; + build_deps?: ModuleAmino[]; /** Since: cosmos-sdk 0.43 */ - cosmos_sdk_version: string; + cosmos_sdk_version?: string; } export interface VersionInfoAminoMsg { type: "cosmos-sdk/VersionInfo"; @@ -456,11 +455,11 @@ export interface ModuleProtoMsg { /** Module is the type for VersionInfo */ export interface ModuleAmino { /** module path */ - path: string; + path?: string; /** module version */ - version: string; + version?: string; /** checksum */ - sum: string; + sum?: string; } export interface ModuleAminoMsg { type: "cosmos-sdk/Module"; @@ -476,7 +475,7 @@ export interface ModuleSDKType { export interface ABCIQueryRequest { data: Uint8Array; path: string; - height: Long; + height: bigint; prove: boolean; } export interface ABCIQueryRequestProtoMsg { @@ -485,10 +484,10 @@ export interface ABCIQueryRequestProtoMsg { } /** ABCIQueryRequest defines the request structure for the ABCIQuery gRPC query. */ export interface ABCIQueryRequestAmino { - data: Uint8Array; - path: string; - height: string; - prove: boolean; + data?: string; + path?: string; + height?: string; + prove?: boolean; } export interface ABCIQueryRequestAminoMsg { type: "cosmos-sdk/ABCIQueryRequest"; @@ -498,7 +497,7 @@ export interface ABCIQueryRequestAminoMsg { export interface ABCIQueryRequestSDKType { data: Uint8Array; path: string; - height: Long; + height: bigint; prove: boolean; } /** @@ -514,11 +513,11 @@ export interface ABCIQueryResponse { log: string; /** nondeterministic */ info: string; - index: Long; + index: bigint; key: Uint8Array; value: Uint8Array; - proofOps: ProofOps; - height: Long; + proofOps?: ProofOps; + height: bigint; codespace: string; } export interface ABCIQueryResponseProtoMsg { @@ -533,17 +532,17 @@ export interface ABCIQueryResponseProtoMsg { * Tendermint. */ export interface ABCIQueryResponseAmino { - code: number; + code?: number; /** nondeterministic */ - log: string; + log?: string; /** nondeterministic */ - info: string; - index: string; - key: Uint8Array; - value: Uint8Array; + info?: string; + index?: string; + key?: string; + value?: string; proof_ops?: ProofOpsAmino; - height: string; - codespace: string; + height?: string; + codespace?: string; } export interface ABCIQueryResponseAminoMsg { type: "cosmos-sdk/ABCIQueryResponse"; @@ -560,11 +559,11 @@ export interface ABCIQueryResponseSDKType { code: number; log: string; info: string; - index: Long; + index: bigint; key: Uint8Array; value: Uint8Array; - proof_ops: ProofOpsSDKType; - height: Long; + proof_ops?: ProofOpsSDKType; + height: bigint; codespace: string; } /** @@ -593,9 +592,9 @@ export interface ProofOpProtoMsg { * Tendermint. */ export interface ProofOpAmino { - type: string; - key: Uint8Array; - data: Uint8Array; + type?: string; + key?: string; + data?: string; } export interface ProofOpAminoMsg { type: "cosmos-sdk/ProofOp"; @@ -634,7 +633,7 @@ export interface ProofOpsProtoMsg { * Tendermint. */ export interface ProofOpsAmino { - ops: ProofOpAmino[]; + ops?: ProofOpAmino[]; } export interface ProofOpsAminoMsg { type: "cosmos-sdk/ProofOps"; @@ -650,8 +649,9 @@ export interface ProofOpsSDKType { ops: ProofOpSDKType[]; } export declare const GetValidatorSetByHeightRequest: { - encode(message: GetValidatorSetByHeightRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetValidatorSetByHeightRequest; + typeUrl: string; + encode(message: GetValidatorSetByHeightRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetValidatorSetByHeightRequest; fromJSON(object: any): GetValidatorSetByHeightRequest; toJSON(message: GetValidatorSetByHeightRequest): unknown; fromPartial(object: Partial): GetValidatorSetByHeightRequest; @@ -664,8 +664,9 @@ export declare const GetValidatorSetByHeightRequest: { toProtoMsg(message: GetValidatorSetByHeightRequest): GetValidatorSetByHeightRequestProtoMsg; }; export declare const GetValidatorSetByHeightResponse: { - encode(message: GetValidatorSetByHeightResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetValidatorSetByHeightResponse; + typeUrl: string; + encode(message: GetValidatorSetByHeightResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetValidatorSetByHeightResponse; fromJSON(object: any): GetValidatorSetByHeightResponse; toJSON(message: GetValidatorSetByHeightResponse): unknown; fromPartial(object: Partial): GetValidatorSetByHeightResponse; @@ -678,8 +679,9 @@ export declare const GetValidatorSetByHeightResponse: { toProtoMsg(message: GetValidatorSetByHeightResponse): GetValidatorSetByHeightResponseProtoMsg; }; export declare const GetLatestValidatorSetRequest: { - encode(message: GetLatestValidatorSetRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetLatestValidatorSetRequest; + typeUrl: string; + encode(message: GetLatestValidatorSetRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetLatestValidatorSetRequest; fromJSON(object: any): GetLatestValidatorSetRequest; toJSON(message: GetLatestValidatorSetRequest): unknown; fromPartial(object: Partial): GetLatestValidatorSetRequest; @@ -692,8 +694,9 @@ export declare const GetLatestValidatorSetRequest: { toProtoMsg(message: GetLatestValidatorSetRequest): GetLatestValidatorSetRequestProtoMsg; }; export declare const GetLatestValidatorSetResponse: { - encode(message: GetLatestValidatorSetResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetLatestValidatorSetResponse; + typeUrl: string; + encode(message: GetLatestValidatorSetResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetLatestValidatorSetResponse; fromJSON(object: any): GetLatestValidatorSetResponse; toJSON(message: GetLatestValidatorSetResponse): unknown; fromPartial(object: Partial): GetLatestValidatorSetResponse; @@ -706,8 +709,9 @@ export declare const GetLatestValidatorSetResponse: { toProtoMsg(message: GetLatestValidatorSetResponse): GetLatestValidatorSetResponseProtoMsg; }; export declare const Validator: { - encode(message: Validator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Validator; + typeUrl: string; + encode(message: Validator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Validator; fromJSON(object: any): Validator; toJSON(message: Validator): unknown; fromPartial(object: Partial): Validator; @@ -720,8 +724,9 @@ export declare const Validator: { toProtoMsg(message: Validator): ValidatorProtoMsg; }; export declare const GetBlockByHeightRequest: { - encode(message: GetBlockByHeightRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockByHeightRequest; + typeUrl: string; + encode(message: GetBlockByHeightRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetBlockByHeightRequest; fromJSON(object: any): GetBlockByHeightRequest; toJSON(message: GetBlockByHeightRequest): unknown; fromPartial(object: Partial): GetBlockByHeightRequest; @@ -734,8 +739,9 @@ export declare const GetBlockByHeightRequest: { toProtoMsg(message: GetBlockByHeightRequest): GetBlockByHeightRequestProtoMsg; }; export declare const GetBlockByHeightResponse: { - encode(message: GetBlockByHeightResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockByHeightResponse; + typeUrl: string; + encode(message: GetBlockByHeightResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetBlockByHeightResponse; fromJSON(object: any): GetBlockByHeightResponse; toJSON(message: GetBlockByHeightResponse): unknown; fromPartial(object: Partial): GetBlockByHeightResponse; @@ -748,8 +754,9 @@ export declare const GetBlockByHeightResponse: { toProtoMsg(message: GetBlockByHeightResponse): GetBlockByHeightResponseProtoMsg; }; export declare const GetLatestBlockRequest: { - encode(_: GetLatestBlockRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetLatestBlockRequest; + typeUrl: string; + encode(_: GetLatestBlockRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetLatestBlockRequest; fromJSON(_: any): GetLatestBlockRequest; toJSON(_: GetLatestBlockRequest): unknown; fromPartial(_: Partial): GetLatestBlockRequest; @@ -762,8 +769,9 @@ export declare const GetLatestBlockRequest: { toProtoMsg(message: GetLatestBlockRequest): GetLatestBlockRequestProtoMsg; }; export declare const GetLatestBlockResponse: { - encode(message: GetLatestBlockResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetLatestBlockResponse; + typeUrl: string; + encode(message: GetLatestBlockResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetLatestBlockResponse; fromJSON(object: any): GetLatestBlockResponse; toJSON(message: GetLatestBlockResponse): unknown; fromPartial(object: Partial): GetLatestBlockResponse; @@ -776,8 +784,9 @@ export declare const GetLatestBlockResponse: { toProtoMsg(message: GetLatestBlockResponse): GetLatestBlockResponseProtoMsg; }; export declare const GetSyncingRequest: { - encode(_: GetSyncingRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetSyncingRequest; + typeUrl: string; + encode(_: GetSyncingRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetSyncingRequest; fromJSON(_: any): GetSyncingRequest; toJSON(_: GetSyncingRequest): unknown; fromPartial(_: Partial): GetSyncingRequest; @@ -790,8 +799,9 @@ export declare const GetSyncingRequest: { toProtoMsg(message: GetSyncingRequest): GetSyncingRequestProtoMsg; }; export declare const GetSyncingResponse: { - encode(message: GetSyncingResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetSyncingResponse; + typeUrl: string; + encode(message: GetSyncingResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetSyncingResponse; fromJSON(object: any): GetSyncingResponse; toJSON(message: GetSyncingResponse): unknown; fromPartial(object: Partial): GetSyncingResponse; @@ -804,8 +814,9 @@ export declare const GetSyncingResponse: { toProtoMsg(message: GetSyncingResponse): GetSyncingResponseProtoMsg; }; export declare const GetNodeInfoRequest: { - encode(_: GetNodeInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetNodeInfoRequest; + typeUrl: string; + encode(_: GetNodeInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetNodeInfoRequest; fromJSON(_: any): GetNodeInfoRequest; toJSON(_: GetNodeInfoRequest): unknown; fromPartial(_: Partial): GetNodeInfoRequest; @@ -818,8 +829,9 @@ export declare const GetNodeInfoRequest: { toProtoMsg(message: GetNodeInfoRequest): GetNodeInfoRequestProtoMsg; }; export declare const GetNodeInfoResponse: { - encode(message: GetNodeInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetNodeInfoResponse; + typeUrl: string; + encode(message: GetNodeInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetNodeInfoResponse; fromJSON(object: any): GetNodeInfoResponse; toJSON(message: GetNodeInfoResponse): unknown; fromPartial(object: Partial): GetNodeInfoResponse; @@ -832,8 +844,9 @@ export declare const GetNodeInfoResponse: { toProtoMsg(message: GetNodeInfoResponse): GetNodeInfoResponseProtoMsg; }; export declare const VersionInfo: { - encode(message: VersionInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): VersionInfo; + typeUrl: string; + encode(message: VersionInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): VersionInfo; fromJSON(object: any): VersionInfo; toJSON(message: VersionInfo): unknown; fromPartial(object: Partial): VersionInfo; @@ -846,8 +859,9 @@ export declare const VersionInfo: { toProtoMsg(message: VersionInfo): VersionInfoProtoMsg; }; export declare const Module: { - encode(message: Module, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Module; + typeUrl: string; + encode(message: Module, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Module; fromJSON(object: any): Module; toJSON(message: Module): unknown; fromPartial(object: Partial): Module; @@ -860,8 +874,9 @@ export declare const Module: { toProtoMsg(message: Module): ModuleProtoMsg; }; export declare const ABCIQueryRequest: { - encode(message: ABCIQueryRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ABCIQueryRequest; + typeUrl: string; + encode(message: ABCIQueryRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ABCIQueryRequest; fromJSON(object: any): ABCIQueryRequest; toJSON(message: ABCIQueryRequest): unknown; fromPartial(object: Partial): ABCIQueryRequest; @@ -874,8 +889,9 @@ export declare const ABCIQueryRequest: { toProtoMsg(message: ABCIQueryRequest): ABCIQueryRequestProtoMsg; }; export declare const ABCIQueryResponse: { - encode(message: ABCIQueryResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ABCIQueryResponse; + typeUrl: string; + encode(message: ABCIQueryResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ABCIQueryResponse; fromJSON(object: any): ABCIQueryResponse; toJSON(message: ABCIQueryResponse): unknown; fromPartial(object: Partial): ABCIQueryResponse; @@ -888,8 +904,9 @@ export declare const ABCIQueryResponse: { toProtoMsg(message: ABCIQueryResponse): ABCIQueryResponseProtoMsg; }; export declare const ProofOp: { - encode(message: ProofOp, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProofOp; + typeUrl: string; + encode(message: ProofOp, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProofOp; fromJSON(object: any): ProofOp; toJSON(message: ProofOp): unknown; fromPartial(object: Partial): ProofOp; @@ -902,8 +919,9 @@ export declare const ProofOp: { toProtoMsg(message: ProofOp): ProofOpProtoMsg; }; export declare const ProofOps: { - encode(message: ProofOps, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProofOps; + typeUrl: string; + encode(message: ProofOps, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProofOps; fromJSON(object: any): ProofOps; toJSON(message: ProofOps): unknown; fromPartial(object: Partial): ProofOps; diff --git a/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.lcd.d.ts index f4fed4b..68c1b44 100644 --- a/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { GetNodeInfoRequest, GetNodeInfoResponseSDKType, GetSyncingRequest, GetSyncingResponseSDKType, GetLatestBlockRequest, GetLatestBlockResponseSDKType, GetBlockByHeightRequest, GetBlockByHeightResponseSDKType, GetLatestValidatorSetRequest, GetLatestValidatorSetResponseSDKType, GetValidatorSetByHeightRequest, GetValidatorSetByHeightResponseSDKType, ABCIQueryRequest, ABCIQueryResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/types.d.ts b/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/types.d.ts index cb87717..757f589 100644 --- a/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/types.d.ts +++ b/packages/api/types/codegen/cosmos/base/tendermint/v1beta1/types.d.ts @@ -1,9 +1,8 @@ import { Data, DataAmino, DataSDKType, Commit, CommitAmino, CommitSDKType, BlockID, BlockIDAmino, BlockIDSDKType } from "../../../../tendermint/types/types"; import { EvidenceList, EvidenceListAmino, EvidenceListSDKType } from "../../../../tendermint/types/evidence"; import { Consensus, ConsensusAmino, ConsensusSDKType } from "../../../../tendermint/version/types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * Block is tendermint type Block, with the Header proposer address * field converted to bech32 string. @@ -12,7 +11,7 @@ export interface Block { header: Header; data: Data; evidence: EvidenceList; - lastCommit: Commit; + lastCommit?: Commit; } export interface BlockProtoMsg { typeUrl: "/cosmos.base.tendermint.v1beta1.Block"; @@ -40,14 +39,14 @@ export interface BlockSDKType { header: HeaderSDKType; data: DataSDKType; evidence: EvidenceListSDKType; - last_commit: CommitSDKType; + last_commit?: CommitSDKType; } /** Header defines the structure of a Tendermint block header. */ export interface Header { /** basic block info */ version: Consensus; chainId: string; - height: Long; + height: bigint; time: Timestamp; /** prev block info */ lastBlockId: BlockID; @@ -80,31 +79,31 @@ export interface HeaderProtoMsg { export interface HeaderAmino { /** basic block info */ version?: ConsensusAmino; - chain_id: string; - height: string; - time?: TimestampAmino; + chain_id?: string; + height?: string; + time?: string; /** prev block info */ last_block_id?: BlockIDAmino; /** hashes of block data */ - last_commit_hash: Uint8Array; - data_hash: Uint8Array; + last_commit_hash?: string; + data_hash?: string; /** hashes from the app output from the prev block */ - validators_hash: Uint8Array; + validators_hash?: string; /** validators for the next block */ - next_validators_hash: Uint8Array; + next_validators_hash?: string; /** consensus params for current block */ - consensus_hash: Uint8Array; + consensus_hash?: string; /** state after txs from the previous block */ - app_hash: Uint8Array; - last_results_hash: Uint8Array; + app_hash?: string; + last_results_hash?: string; /** consensus info */ - evidence_hash: Uint8Array; + evidence_hash?: string; /** * proposer_address is the original block proposer address, formatted as a Bech32 string. * In Tendermint, this type is `bytes`, but in the SDK, we convert it to a Bech32 string * for better UX. */ - proposer_address: string; + proposer_address?: string; } export interface HeaderAminoMsg { type: "cosmos-sdk/Header"; @@ -114,7 +113,7 @@ export interface HeaderAminoMsg { export interface HeaderSDKType { version: ConsensusSDKType; chain_id: string; - height: Long; + height: bigint; time: TimestampSDKType; last_block_id: BlockIDSDKType; last_commit_hash: Uint8Array; @@ -128,8 +127,9 @@ export interface HeaderSDKType { proposer_address: string; } export declare const Block: { - encode(message: Block, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Block; + typeUrl: string; + encode(message: Block, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Block; fromJSON(object: any): Block; toJSON(message: Block): unknown; fromPartial(object: Partial): Block; @@ -142,8 +142,9 @@ export declare const Block: { toProtoMsg(message: Block): BlockProtoMsg; }; export declare const Header: { - encode(message: Header, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Header; + typeUrl: string; + encode(message: Header, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Header; fromJSON(object: any): Header; toJSON(message: Header): unknown; fromPartial(object: Partial
): Header; diff --git a/packages/api/types/codegen/cosmos/base/v1beta1/coin.d.ts b/packages/api/types/codegen/cosmos/base/v1beta1/coin.d.ts index a8c3c12..a1018ca 100644 --- a/packages/api/types/codegen/cosmos/base/v1beta1/coin.d.ts +++ b/packages/api/types/codegen/cosmos/base/v1beta1/coin.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * Coin defines a token with a denomination and an amount. * @@ -20,8 +20,8 @@ export interface CoinProtoMsg { * signatures required by gogoproto. */ export interface CoinAmino { - denom: string; - amount: string; + denom?: string; + amount?: string; } export interface CoinAminoMsg { type: "cosmos-sdk/Coin"; @@ -58,8 +58,8 @@ export interface DecCoinProtoMsg { * signatures required by gogoproto. */ export interface DecCoinAmino { - denom: string; - amount: string; + denom?: string; + amount?: string; } export interface DecCoinAminoMsg { type: "cosmos-sdk/DecCoin"; @@ -85,7 +85,7 @@ export interface IntProtoProtoMsg { } /** IntProto defines a Protobuf wrapper around an Int object. */ export interface IntProtoAmino { - int: string; + int?: string; } export interface IntProtoAminoMsg { type: "cosmos-sdk/IntProto"; @@ -105,7 +105,7 @@ export interface DecProtoProtoMsg { } /** DecProto defines a Protobuf wrapper around a Dec object. */ export interface DecProtoAmino { - dec: string; + dec?: string; } export interface DecProtoAminoMsg { type: "cosmos-sdk/DecProto"; @@ -116,8 +116,9 @@ export interface DecProtoSDKType { dec: string; } export declare const Coin: { - encode(message: Coin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Coin; + typeUrl: string; + encode(message: Coin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Coin; fromJSON(object: any): Coin; toJSON(message: Coin): unknown; fromPartial(object: Partial): Coin; @@ -130,8 +131,9 @@ export declare const Coin: { toProtoMsg(message: Coin): CoinProtoMsg; }; export declare const DecCoin: { - encode(message: DecCoin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DecCoin; + typeUrl: string; + encode(message: DecCoin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DecCoin; fromJSON(object: any): DecCoin; toJSON(message: DecCoin): unknown; fromPartial(object: Partial): DecCoin; @@ -144,8 +146,9 @@ export declare const DecCoin: { toProtoMsg(message: DecCoin): DecCoinProtoMsg; }; export declare const IntProto: { - encode(message: IntProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): IntProto; + typeUrl: string; + encode(message: IntProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): IntProto; fromJSON(object: any): IntProto; toJSON(message: IntProto): unknown; fromPartial(object: Partial): IntProto; @@ -158,8 +161,9 @@ export declare const IntProto: { toProtoMsg(message: IntProto): IntProtoProtoMsg; }; export declare const DecProto: { - encode(message: DecProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DecProto; + typeUrl: string; + encode(message: DecProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DecProto; fromJSON(object: any): DecProto; toJSON(message: DecProto): unknown; fromPartial(object: Partial): DecProto; diff --git a/packages/api/types/codegen/cosmos/bundle.d.ts b/packages/api/types/codegen/cosmos/bundle.d.ts index faa22a2..a4088c4 100644 --- a/packages/api/types/codegen/cosmos/bundle.d.ts +++ b/packages/api/types/codegen/cosmos/bundle.d.ts @@ -93,64 +93,65 @@ import * as _94 from "./upgrade/v1beta1/tx"; import * as _95 from "./upgrade/v1beta1/upgrade"; import * as _96 from "./vesting/v1beta1/tx"; import * as _97 from "./vesting/v1beta1/vesting"; -import * as _179 from "./auth/v1beta1/query.lcd"; -import * as _180 from "./authz/v1beta1/query.lcd"; -import * as _181 from "./bank/v1beta1/query.lcd"; -import * as _182 from "./base/node/v1beta1/query.lcd"; -import * as _183 from "./base/tendermint/v1beta1/query.lcd"; -import * as _184 from "./distribution/v1beta1/query.lcd"; -import * as _185 from "./evidence/v1beta1/query.lcd"; -import * as _186 from "./feegrant/v1beta1/query.lcd"; -import * as _187 from "./gov/v1/query.lcd"; -import * as _188 from "./gov/v1beta1/query.lcd"; -import * as _189 from "./group/v1/query.lcd"; -import * as _190 from "./mint/v1beta1/query.lcd"; -import * as _191 from "./nft/v1beta1/query.lcd"; -import * as _192 from "./params/v1beta1/query.lcd"; -import * as _193 from "./slashing/v1beta1/query.lcd"; -import * as _194 from "./staking/v1beta1/query.lcd"; -import * as _195 from "./tx/v1beta1/service.lcd"; -import * as _196 from "./upgrade/v1beta1/query.lcd"; -import * as _197 from "./app/v1alpha1/query.rpc.Query"; -import * as _198 from "./auth/v1beta1/query.rpc.Query"; -import * as _199 from "./authz/v1beta1/query.rpc.Query"; -import * as _200 from "./bank/v1beta1/query.rpc.Query"; -import * as _201 from "./base/node/v1beta1/query.rpc.Service"; -import * as _202 from "./base/tendermint/v1beta1/query.rpc.Service"; -import * as _203 from "./distribution/v1beta1/query.rpc.Query"; -import * as _204 from "./evidence/v1beta1/query.rpc.Query"; -import * as _205 from "./feegrant/v1beta1/query.rpc.Query"; -import * as _206 from "./gov/v1/query.rpc.Query"; -import * as _207 from "./gov/v1beta1/query.rpc.Query"; -import * as _208 from "./group/v1/query.rpc.Query"; -import * as _209 from "./mint/v1beta1/query.rpc.Query"; -import * as _210 from "./nft/v1beta1/query.rpc.Query"; -import * as _211 from "./params/v1beta1/query.rpc.Query"; -import * as _212 from "./slashing/v1beta1/query.rpc.Query"; -import * as _213 from "./staking/v1beta1/query.rpc.Query"; -import * as _214 from "./tx/v1beta1/service.rpc.Service"; -import * as _215 from "./upgrade/v1beta1/query.rpc.Query"; -import * as _216 from "./authz/v1beta1/tx.rpc.msg"; -import * as _217 from "./bank/v1beta1/tx.rpc.msg"; -import * as _218 from "./crisis/v1beta1/tx.rpc.msg"; -import * as _219 from "./distribution/v1beta1/tx.rpc.msg"; -import * as _220 from "./evidence/v1beta1/tx.rpc.msg"; -import * as _221 from "./feegrant/v1beta1/tx.rpc.msg"; -import * as _222 from "./gov/v1/tx.rpc.msg"; -import * as _223 from "./gov/v1beta1/tx.rpc.msg"; -import * as _224 from "./group/v1/tx.rpc.msg"; -import * as _225 from "./nft/v1beta1/tx.rpc.msg"; -import * as _226 from "./slashing/v1beta1/tx.rpc.msg"; -import * as _227 from "./staking/v1beta1/tx.rpc.msg"; -import * as _228 from "./upgrade/v1beta1/tx.rpc.msg"; -import * as _229 from "./vesting/v1beta1/tx.rpc.msg"; +import * as _180 from "./auth/v1beta1/query.lcd"; +import * as _181 from "./authz/v1beta1/query.lcd"; +import * as _182 from "./bank/v1beta1/query.lcd"; +import * as _183 from "./base/node/v1beta1/query.lcd"; +import * as _184 from "./base/tendermint/v1beta1/query.lcd"; +import * as _185 from "./distribution/v1beta1/query.lcd"; +import * as _186 from "./evidence/v1beta1/query.lcd"; +import * as _187 from "./feegrant/v1beta1/query.lcd"; +import * as _188 from "./gov/v1/query.lcd"; +import * as _189 from "./gov/v1beta1/query.lcd"; +import * as _190 from "./group/v1/query.lcd"; +import * as _191 from "./mint/v1beta1/query.lcd"; +import * as _192 from "./nft/v1beta1/query.lcd"; +import * as _193 from "./params/v1beta1/query.lcd"; +import * as _194 from "./slashing/v1beta1/query.lcd"; +import * as _195 from "./staking/v1beta1/query.lcd"; +import * as _196 from "./tx/v1beta1/service.lcd"; +import * as _197 from "./upgrade/v1beta1/query.lcd"; +import * as _198 from "./app/v1alpha1/query.rpc.Query"; +import * as _199 from "./auth/v1beta1/query.rpc.Query"; +import * as _200 from "./authz/v1beta1/query.rpc.Query"; +import * as _201 from "./bank/v1beta1/query.rpc.Query"; +import * as _202 from "./base/node/v1beta1/query.rpc.Service"; +import * as _203 from "./base/tendermint/v1beta1/query.rpc.Service"; +import * as _204 from "./distribution/v1beta1/query.rpc.Query"; +import * as _205 from "./evidence/v1beta1/query.rpc.Query"; +import * as _206 from "./feegrant/v1beta1/query.rpc.Query"; +import * as _207 from "./gov/v1/query.rpc.Query"; +import * as _208 from "./gov/v1beta1/query.rpc.Query"; +import * as _209 from "./group/v1/query.rpc.Query"; +import * as _210 from "./mint/v1beta1/query.rpc.Query"; +import * as _211 from "./nft/v1beta1/query.rpc.Query"; +import * as _212 from "./params/v1beta1/query.rpc.Query"; +import * as _213 from "./slashing/v1beta1/query.rpc.Query"; +import * as _214 from "./staking/v1beta1/query.rpc.Query"; +import * as _215 from "./tx/v1beta1/service.rpc.Service"; +import * as _216 from "./upgrade/v1beta1/query.rpc.Query"; +import * as _217 from "./authz/v1beta1/tx.rpc.msg"; +import * as _218 from "./bank/v1beta1/tx.rpc.msg"; +import * as _219 from "./crisis/v1beta1/tx.rpc.msg"; +import * as _220 from "./distribution/v1beta1/tx.rpc.msg"; +import * as _221 from "./evidence/v1beta1/tx.rpc.msg"; +import * as _222 from "./feegrant/v1beta1/tx.rpc.msg"; +import * as _223 from "./gov/v1/tx.rpc.msg"; +import * as _224 from "./gov/v1beta1/tx.rpc.msg"; +import * as _225 from "./group/v1/tx.rpc.msg"; +import * as _226 from "./nft/v1beta1/tx.rpc.msg"; +import * as _227 from "./slashing/v1beta1/tx.rpc.msg"; +import * as _228 from "./staking/v1beta1/tx.rpc.msg"; +import * as _229 from "./upgrade/v1beta1/tx.rpc.msg"; +import * as _230 from "./vesting/v1beta1/tx.rpc.msg"; export declare namespace cosmos { namespace app { namespace module { const v1alpha1: { Module: { - encode(_: _2.Module, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _2.Module; + typeUrl: string; + encode(_: _2.Module, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _2.Module; fromJSON(_: any): _2.Module; toJSON(_: _2.Module): unknown; fromPartial(_: Partial<_2.Module>): _2.Module; @@ -165,13 +166,14 @@ export declare namespace cosmos { }; } const v1alpha1: { - QueryClientImpl: typeof _197.QueryClientImpl; + QueryClientImpl: typeof _198.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { config(request?: _5.QueryConfigRequest | undefined): Promise<_5.QueryConfigResponse>; }; QueryConfigRequest: { - encode(_: _5.QueryConfigRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _5.QueryConfigRequest; + typeUrl: string; + encode(_: _5.QueryConfigRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _5.QueryConfigRequest; fromJSON(_: any): _5.QueryConfigRequest; toJSON(_: _5.QueryConfigRequest): unknown; fromPartial(_: Partial<_5.QueryConfigRequest>): _5.QueryConfigRequest; @@ -184,8 +186,9 @@ export declare namespace cosmos { toProtoMsg(message: _5.QueryConfigRequest): _5.QueryConfigRequestProtoMsg; }; QueryConfigResponse: { - encode(message: _5.QueryConfigResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _5.QueryConfigResponse; + typeUrl: string; + encode(message: _5.QueryConfigResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _5.QueryConfigResponse; fromJSON(object: any): _5.QueryConfigResponse; toJSON(message: _5.QueryConfigResponse): unknown; fromPartial(object: Partial<_5.QueryConfigResponse>): _5.QueryConfigResponse; @@ -198,8 +201,9 @@ export declare namespace cosmos { toProtoMsg(message: _5.QueryConfigResponse): _5.QueryConfigResponseProtoMsg; }; ModuleDescriptor: { - encode(message: _4.ModuleDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _4.ModuleDescriptor; + typeUrl: string; + encode(message: _4.ModuleDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _4.ModuleDescriptor; fromJSON(object: any): _4.ModuleDescriptor; toJSON(message: _4.ModuleDescriptor): unknown; fromPartial(object: Partial<_4.ModuleDescriptor>): _4.ModuleDescriptor; @@ -212,8 +216,9 @@ export declare namespace cosmos { toProtoMsg(message: _4.ModuleDescriptor): _4.ModuleDescriptorProtoMsg; }; PackageReference: { - encode(message: _4.PackageReference, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _4.PackageReference; + typeUrl: string; + encode(message: _4.PackageReference, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _4.PackageReference; fromJSON(object: any): _4.PackageReference; toJSON(message: _4.PackageReference): unknown; fromPartial(object: Partial<_4.PackageReference>): _4.PackageReference; @@ -226,8 +231,9 @@ export declare namespace cosmos { toProtoMsg(message: _4.PackageReference): _4.PackageReferenceProtoMsg; }; MigrateFromInfo: { - encode(message: _4.MigrateFromInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _4.MigrateFromInfo; + typeUrl: string; + encode(message: _4.MigrateFromInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _4.MigrateFromInfo; fromJSON(object: any): _4.MigrateFromInfo; toJSON(message: _4.MigrateFromInfo): unknown; fromPartial(object: Partial<_4.MigrateFromInfo>): _4.MigrateFromInfo; @@ -240,8 +246,9 @@ export declare namespace cosmos { toProtoMsg(message: _4.MigrateFromInfo): _4.MigrateFromInfoProtoMsg; }; Config: { - encode(message: _3.Config, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _3.Config; + typeUrl: string; + encode(message: _3.Config, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _3.Config; fromJSON(object: any): _3.Config; toJSON(message: _3.Config): unknown; fromPartial(object: Partial<_3.Config>): _3.Config; @@ -254,8 +261,9 @@ export declare namespace cosmos { toProtoMsg(message: _3.Config): _3.ConfigProtoMsg; }; ModuleConfig: { - encode(message: _3.ModuleConfig, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _3.ModuleConfig; + typeUrl: string; + encode(message: _3.ModuleConfig, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _3.ModuleConfig; fromJSON(object: any): _3.ModuleConfig; toJSON(message: _3.ModuleConfig): unknown; fromPartial(object: Partial<_3.ModuleConfig>): _3.ModuleConfig; @@ -271,7 +279,7 @@ export declare namespace cosmos { } namespace auth { const v1beta1: { - QueryClientImpl: typeof _198.QueryClientImpl; + QueryClientImpl: typeof _199.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { accounts(request?: _8.QueryAccountsRequest | undefined): Promise<_8.QueryAccountsResponse>; account(request: _8.QueryAccountRequest): Promise<_8.QueryAccountResponse>; @@ -283,10 +291,11 @@ export declare namespace cosmos { addressBytesToString(request: _8.AddressBytesToStringRequest): Promise<_8.AddressBytesToStringResponse>; addressStringToBytes(request: _8.AddressStringToBytesRequest): Promise<_8.AddressStringToBytesResponse>; }; - LCDQueryClient: typeof _179.LCDQueryClient; + LCDQueryClient: typeof _180.LCDQueryClient; QueryAccountsRequest: { - encode(message: _8.QueryAccountsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryAccountsRequest; + typeUrl: string; + encode(message: _8.QueryAccountsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryAccountsRequest; fromJSON(object: any): _8.QueryAccountsRequest; toJSON(message: _8.QueryAccountsRequest): unknown; fromPartial(object: Partial<_8.QueryAccountsRequest>): _8.QueryAccountsRequest; @@ -299,8 +308,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryAccountsRequest): _8.QueryAccountsRequestProtoMsg; }; QueryAccountsResponse: { - encode(message: _8.QueryAccountsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryAccountsResponse; + typeUrl: string; + encode(message: _8.QueryAccountsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryAccountsResponse; fromJSON(object: any): _8.QueryAccountsResponse; toJSON(message: _8.QueryAccountsResponse): unknown; fromPartial(object: Partial<_8.QueryAccountsResponse>): _8.QueryAccountsResponse; @@ -313,8 +323,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryAccountsResponse): _8.QueryAccountsResponseProtoMsg; }; QueryAccountRequest: { - encode(message: _8.QueryAccountRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryAccountRequest; + typeUrl: string; + encode(message: _8.QueryAccountRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryAccountRequest; fromJSON(object: any): _8.QueryAccountRequest; toJSON(message: _8.QueryAccountRequest): unknown; fromPartial(object: Partial<_8.QueryAccountRequest>): _8.QueryAccountRequest; @@ -327,8 +338,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryAccountRequest): _8.QueryAccountRequestProtoMsg; }; QueryAccountResponse: { - encode(message: _8.QueryAccountResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryAccountResponse; + typeUrl: string; + encode(message: _8.QueryAccountResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryAccountResponse; fromJSON(object: any): _8.QueryAccountResponse; toJSON(message: _8.QueryAccountResponse): unknown; fromPartial(object: Partial<_8.QueryAccountResponse>): _8.QueryAccountResponse; @@ -341,8 +353,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryAccountResponse): _8.QueryAccountResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _8.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryParamsRequest; + typeUrl: string; + encode(_: _8.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryParamsRequest; fromJSON(_: any): _8.QueryParamsRequest; toJSON(_: _8.QueryParamsRequest): unknown; fromPartial(_: Partial<_8.QueryParamsRequest>): _8.QueryParamsRequest; @@ -355,8 +368,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryParamsRequest): _8.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _8.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryParamsResponse; + typeUrl: string; + encode(message: _8.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryParamsResponse; fromJSON(object: any): _8.QueryParamsResponse; toJSON(message: _8.QueryParamsResponse): unknown; fromPartial(object: Partial<_8.QueryParamsResponse>): _8.QueryParamsResponse; @@ -369,8 +383,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryParamsResponse): _8.QueryParamsResponseProtoMsg; }; QueryModuleAccountsRequest: { - encode(_: _8.QueryModuleAccountsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryModuleAccountsRequest; + typeUrl: string; + encode(_: _8.QueryModuleAccountsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryModuleAccountsRequest; fromJSON(_: any): _8.QueryModuleAccountsRequest; toJSON(_: _8.QueryModuleAccountsRequest): unknown; fromPartial(_: Partial<_8.QueryModuleAccountsRequest>): _8.QueryModuleAccountsRequest; @@ -383,8 +398,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryModuleAccountsRequest): _8.QueryModuleAccountsRequestProtoMsg; }; QueryModuleAccountsResponse: { - encode(message: _8.QueryModuleAccountsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryModuleAccountsResponse; + typeUrl: string; + encode(message: _8.QueryModuleAccountsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryModuleAccountsResponse; fromJSON(object: any): _8.QueryModuleAccountsResponse; toJSON(message: _8.QueryModuleAccountsResponse): unknown; fromPartial(object: Partial<_8.QueryModuleAccountsResponse>): _8.QueryModuleAccountsResponse; @@ -397,8 +413,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryModuleAccountsResponse): _8.QueryModuleAccountsResponseProtoMsg; }; QueryModuleAccountByNameRequest: { - encode(message: _8.QueryModuleAccountByNameRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryModuleAccountByNameRequest; + typeUrl: string; + encode(message: _8.QueryModuleAccountByNameRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryModuleAccountByNameRequest; fromJSON(object: any): _8.QueryModuleAccountByNameRequest; toJSON(message: _8.QueryModuleAccountByNameRequest): unknown; fromPartial(object: Partial<_8.QueryModuleAccountByNameRequest>): _8.QueryModuleAccountByNameRequest; @@ -411,8 +428,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryModuleAccountByNameRequest): _8.QueryModuleAccountByNameRequestProtoMsg; }; QueryModuleAccountByNameResponse: { - encode(message: _8.QueryModuleAccountByNameResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryModuleAccountByNameResponse; + typeUrl: string; + encode(message: _8.QueryModuleAccountByNameResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryModuleAccountByNameResponse; fromJSON(object: any): _8.QueryModuleAccountByNameResponse; toJSON(message: _8.QueryModuleAccountByNameResponse): unknown; fromPartial(object: Partial<_8.QueryModuleAccountByNameResponse>): _8.QueryModuleAccountByNameResponse; @@ -425,8 +443,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryModuleAccountByNameResponse): _8.QueryModuleAccountByNameResponseProtoMsg; }; Bech32PrefixRequest: { - encode(_: _8.Bech32PrefixRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.Bech32PrefixRequest; + typeUrl: string; + encode(_: _8.Bech32PrefixRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.Bech32PrefixRequest; fromJSON(_: any): _8.Bech32PrefixRequest; toJSON(_: _8.Bech32PrefixRequest): unknown; fromPartial(_: Partial<_8.Bech32PrefixRequest>): _8.Bech32PrefixRequest; @@ -439,8 +458,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.Bech32PrefixRequest): _8.Bech32PrefixRequestProtoMsg; }; Bech32PrefixResponse: { - encode(message: _8.Bech32PrefixResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.Bech32PrefixResponse; + typeUrl: string; + encode(message: _8.Bech32PrefixResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.Bech32PrefixResponse; fromJSON(object: any): _8.Bech32PrefixResponse; toJSON(message: _8.Bech32PrefixResponse): unknown; fromPartial(object: Partial<_8.Bech32PrefixResponse>): _8.Bech32PrefixResponse; @@ -453,8 +473,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.Bech32PrefixResponse): _8.Bech32PrefixResponseProtoMsg; }; AddressBytesToStringRequest: { - encode(message: _8.AddressBytesToStringRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.AddressBytesToStringRequest; + typeUrl: string; + encode(message: _8.AddressBytesToStringRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.AddressBytesToStringRequest; fromJSON(object: any): _8.AddressBytesToStringRequest; toJSON(message: _8.AddressBytesToStringRequest): unknown; fromPartial(object: Partial<_8.AddressBytesToStringRequest>): _8.AddressBytesToStringRequest; @@ -467,8 +488,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.AddressBytesToStringRequest): _8.AddressBytesToStringRequestProtoMsg; }; AddressBytesToStringResponse: { - encode(message: _8.AddressBytesToStringResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.AddressBytesToStringResponse; + typeUrl: string; + encode(message: _8.AddressBytesToStringResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.AddressBytesToStringResponse; fromJSON(object: any): _8.AddressBytesToStringResponse; toJSON(message: _8.AddressBytesToStringResponse): unknown; fromPartial(object: Partial<_8.AddressBytesToStringResponse>): _8.AddressBytesToStringResponse; @@ -481,8 +503,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.AddressBytesToStringResponse): _8.AddressBytesToStringResponseProtoMsg; }; AddressStringToBytesRequest: { - encode(message: _8.AddressStringToBytesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.AddressStringToBytesRequest; + typeUrl: string; + encode(message: _8.AddressStringToBytesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.AddressStringToBytesRequest; fromJSON(object: any): _8.AddressStringToBytesRequest; toJSON(message: _8.AddressStringToBytesRequest): unknown; fromPartial(object: Partial<_8.AddressStringToBytesRequest>): _8.AddressStringToBytesRequest; @@ -495,8 +518,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.AddressStringToBytesRequest): _8.AddressStringToBytesRequestProtoMsg; }; AddressStringToBytesResponse: { - encode(message: _8.AddressStringToBytesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.AddressStringToBytesResponse; + typeUrl: string; + encode(message: _8.AddressStringToBytesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.AddressStringToBytesResponse; fromJSON(object: any): _8.AddressStringToBytesResponse; toJSON(message: _8.AddressStringToBytesResponse): unknown; fromPartial(object: Partial<_8.AddressStringToBytesResponse>): _8.AddressStringToBytesResponse; @@ -509,8 +533,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.AddressStringToBytesResponse): _8.AddressStringToBytesResponseProtoMsg; }; QueryAccountAddressByIDRequest: { - encode(message: _8.QueryAccountAddressByIDRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryAccountAddressByIDRequest; + typeUrl: string; + encode(message: _8.QueryAccountAddressByIDRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryAccountAddressByIDRequest; fromJSON(object: any): _8.QueryAccountAddressByIDRequest; toJSON(message: _8.QueryAccountAddressByIDRequest): unknown; fromPartial(object: Partial<_8.QueryAccountAddressByIDRequest>): _8.QueryAccountAddressByIDRequest; @@ -523,8 +548,9 @@ export declare namespace cosmos { toProtoMsg(message: _8.QueryAccountAddressByIDRequest): _8.QueryAccountAddressByIDRequestProtoMsg; }; QueryAccountAddressByIDResponse: { - encode(message: _8.QueryAccountAddressByIDResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _8.QueryAccountAddressByIDResponse; + typeUrl: string; + encode(message: _8.QueryAccountAddressByIDResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _8.QueryAccountAddressByIDResponse; fromJSON(object: any): _8.QueryAccountAddressByIDResponse; toJSON(message: _8.QueryAccountAddressByIDResponse): unknown; fromPartial(object: Partial<_8.QueryAccountAddressByIDResponse>): _8.QueryAccountAddressByIDResponse; @@ -536,15 +562,16 @@ export declare namespace cosmos { toProto(message: _8.QueryAccountAddressByIDResponse): Uint8Array; toProtoMsg(message: _8.QueryAccountAddressByIDResponse): _8.QueryAccountAddressByIDResponseProtoMsg; }; - AccountI_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _6.BaseAccount; + AccountI_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _6.BaseAccount; AccountI_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; AccountI_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; - ModuleAccountI_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _6.ModuleAccount; + ModuleAccountI_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _6.ModuleAccount; ModuleAccountI_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; ModuleAccountI_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; GenesisState: { - encode(message: _7.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _7.GenesisState; + typeUrl: string; + encode(message: _7.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _7.GenesisState; fromJSON(object: any): _7.GenesisState; toJSON(message: _7.GenesisState): unknown; fromPartial(object: Partial<_7.GenesisState>): _7.GenesisState; @@ -557,8 +584,9 @@ export declare namespace cosmos { toProtoMsg(message: _7.GenesisState): _7.GenesisStateProtoMsg; }; BaseAccount: { - encode(message: _6.BaseAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _6.BaseAccount; + typeUrl: string; + encode(message: _6.BaseAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _6.BaseAccount; fromJSON(object: any): _6.BaseAccount; toJSON(message: _6.BaseAccount): unknown; fromPartial(object: Partial<_6.BaseAccount>): _6.BaseAccount; @@ -571,8 +599,9 @@ export declare namespace cosmos { toProtoMsg(message: _6.BaseAccount): _6.BaseAccountProtoMsg; }; ModuleAccount: { - encode(message: _6.ModuleAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _6.ModuleAccount; + typeUrl: string; + encode(message: _6.ModuleAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _6.ModuleAccount; fromJSON(object: any): _6.ModuleAccount; toJSON(message: _6.ModuleAccount): unknown; fromPartial(object: Partial<_6.ModuleAccount>): _6.ModuleAccount; @@ -585,8 +614,9 @@ export declare namespace cosmos { toProtoMsg(message: _6.ModuleAccount): _6.ModuleAccountProtoMsg; }; Params: { - encode(message: _6.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _6.Params; + typeUrl: string; + encode(message: _6.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _6.Params; fromJSON(object: any): _6.Params; toJSON(message: _6.Params): unknown; fromPartial(object: Partial<_6.Params>): _6.Params; @@ -602,14 +632,14 @@ export declare namespace cosmos { } namespace authz { const v1beta1: { - MsgClientImpl: typeof _216.MsgClientImpl; - QueryClientImpl: typeof _199.QueryClientImpl; + MsgClientImpl: typeof _217.MsgClientImpl; + QueryClientImpl: typeof _200.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { grants(request: _12.QueryGrantsRequest): Promise<_12.QueryGrantsResponse>; granterGrants(request: _12.QueryGranterGrantsRequest): Promise<_12.QueryGranterGrantsResponse>; granteeGrants(request: _12.QueryGranteeGrantsRequest): Promise<_12.QueryGranteeGrantsResponse>; }; - LCDQueryClient: typeof _180.LCDQueryClient; + LCDQueryClient: typeof _181.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -702,8 +732,9 @@ export declare namespace cosmos { }; }; MsgGrant: { - encode(message: _13.MsgGrant, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _13.MsgGrant; + typeUrl: string; + encode(message: _13.MsgGrant, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _13.MsgGrant; fromJSON(object: any): _13.MsgGrant; toJSON(message: _13.MsgGrant): unknown; fromPartial(object: Partial<_13.MsgGrant>): _13.MsgGrant; @@ -716,8 +747,9 @@ export declare namespace cosmos { toProtoMsg(message: _13.MsgGrant): _13.MsgGrantProtoMsg; }; MsgExecResponse: { - encode(message: _13.MsgExecResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _13.MsgExecResponse; + typeUrl: string; + encode(message: _13.MsgExecResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _13.MsgExecResponse; fromJSON(object: any): _13.MsgExecResponse; toJSON(message: _13.MsgExecResponse): unknown; fromPartial(object: Partial<_13.MsgExecResponse>): _13.MsgExecResponse; @@ -730,8 +762,9 @@ export declare namespace cosmos { toProtoMsg(message: _13.MsgExecResponse): _13.MsgExecResponseProtoMsg; }; MsgExec: { - encode(message: _13.MsgExec, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _13.MsgExec; + typeUrl: string; + encode(message: _13.MsgExec, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _13.MsgExec; fromJSON(object: any): _13.MsgExec; toJSON(message: _13.MsgExec): unknown; fromPartial(object: Partial<_13.MsgExec>): _13.MsgExec; @@ -744,8 +777,9 @@ export declare namespace cosmos { toProtoMsg(message: _13.MsgExec): _13.MsgExecProtoMsg; }; MsgGrantResponse: { - encode(_: _13.MsgGrantResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _13.MsgGrantResponse; + typeUrl: string; + encode(_: _13.MsgGrantResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _13.MsgGrantResponse; fromJSON(_: any): _13.MsgGrantResponse; toJSON(_: _13.MsgGrantResponse): unknown; fromPartial(_: Partial<_13.MsgGrantResponse>): _13.MsgGrantResponse; @@ -758,8 +792,9 @@ export declare namespace cosmos { toProtoMsg(message: _13.MsgGrantResponse): _13.MsgGrantResponseProtoMsg; }; MsgRevoke: { - encode(message: _13.MsgRevoke, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _13.MsgRevoke; + typeUrl: string; + encode(message: _13.MsgRevoke, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _13.MsgRevoke; fromJSON(object: any): _13.MsgRevoke; toJSON(message: _13.MsgRevoke): unknown; fromPartial(object: Partial<_13.MsgRevoke>): _13.MsgRevoke; @@ -772,8 +807,9 @@ export declare namespace cosmos { toProtoMsg(message: _13.MsgRevoke): _13.MsgRevokeProtoMsg; }; MsgRevokeResponse: { - encode(_: _13.MsgRevokeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _13.MsgRevokeResponse; + typeUrl: string; + encode(_: _13.MsgRevokeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _13.MsgRevokeResponse; fromJSON(_: any): _13.MsgRevokeResponse; toJSON(_: _13.MsgRevokeResponse): unknown; fromPartial(_: Partial<_13.MsgRevokeResponse>): _13.MsgRevokeResponse; @@ -785,15 +821,16 @@ export declare namespace cosmos { toProto(message: _13.MsgRevokeResponse): Uint8Array; toProtoMsg(message: _13.MsgRevokeResponse): _13.MsgRevokeResponseProtoMsg; }; - Sdk_Msg_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any; + Sdk_Msg_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any; Sdk_Msg_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; Sdk_Msg_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; - Authz_Authorization_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any; + Authz_Authorization_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any; Authz_Authorization_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; Authz_Authorization_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; QueryGrantsRequest: { - encode(message: _12.QueryGrantsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _12.QueryGrantsRequest; + typeUrl: string; + encode(message: _12.QueryGrantsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _12.QueryGrantsRequest; fromJSON(object: any): _12.QueryGrantsRequest; toJSON(message: _12.QueryGrantsRequest): unknown; fromPartial(object: Partial<_12.QueryGrantsRequest>): _12.QueryGrantsRequest; @@ -806,8 +843,9 @@ export declare namespace cosmos { toProtoMsg(message: _12.QueryGrantsRequest): _12.QueryGrantsRequestProtoMsg; }; QueryGrantsResponse: { - encode(message: _12.QueryGrantsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _12.QueryGrantsResponse; + typeUrl: string; + encode(message: _12.QueryGrantsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _12.QueryGrantsResponse; fromJSON(object: any): _12.QueryGrantsResponse; toJSON(message: _12.QueryGrantsResponse): unknown; fromPartial(object: Partial<_12.QueryGrantsResponse>): _12.QueryGrantsResponse; @@ -820,8 +858,9 @@ export declare namespace cosmos { toProtoMsg(message: _12.QueryGrantsResponse): _12.QueryGrantsResponseProtoMsg; }; QueryGranterGrantsRequest: { - encode(message: _12.QueryGranterGrantsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _12.QueryGranterGrantsRequest; + typeUrl: string; + encode(message: _12.QueryGranterGrantsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _12.QueryGranterGrantsRequest; fromJSON(object: any): _12.QueryGranterGrantsRequest; toJSON(message: _12.QueryGranterGrantsRequest): unknown; fromPartial(object: Partial<_12.QueryGranterGrantsRequest>): _12.QueryGranterGrantsRequest; @@ -834,8 +873,9 @@ export declare namespace cosmos { toProtoMsg(message: _12.QueryGranterGrantsRequest): _12.QueryGranterGrantsRequestProtoMsg; }; QueryGranterGrantsResponse: { - encode(message: _12.QueryGranterGrantsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _12.QueryGranterGrantsResponse; + typeUrl: string; + encode(message: _12.QueryGranterGrantsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _12.QueryGranterGrantsResponse; fromJSON(object: any): _12.QueryGranterGrantsResponse; toJSON(message: _12.QueryGranterGrantsResponse): unknown; fromPartial(object: Partial<_12.QueryGranterGrantsResponse>): _12.QueryGranterGrantsResponse; @@ -848,8 +888,9 @@ export declare namespace cosmos { toProtoMsg(message: _12.QueryGranterGrantsResponse): _12.QueryGranterGrantsResponseProtoMsg; }; QueryGranteeGrantsRequest: { - encode(message: _12.QueryGranteeGrantsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _12.QueryGranteeGrantsRequest; + typeUrl: string; + encode(message: _12.QueryGranteeGrantsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _12.QueryGranteeGrantsRequest; fromJSON(object: any): _12.QueryGranteeGrantsRequest; toJSON(message: _12.QueryGranteeGrantsRequest): unknown; fromPartial(object: Partial<_12.QueryGranteeGrantsRequest>): _12.QueryGranteeGrantsRequest; @@ -862,8 +903,9 @@ export declare namespace cosmos { toProtoMsg(message: _12.QueryGranteeGrantsRequest): _12.QueryGranteeGrantsRequestProtoMsg; }; QueryGranteeGrantsResponse: { - encode(message: _12.QueryGranteeGrantsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _12.QueryGranteeGrantsResponse; + typeUrl: string; + encode(message: _12.QueryGranteeGrantsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _12.QueryGranteeGrantsResponse; fromJSON(object: any): _12.QueryGranteeGrantsResponse; toJSON(message: _12.QueryGranteeGrantsResponse): unknown; fromPartial(object: Partial<_12.QueryGranteeGrantsResponse>): _12.QueryGranteeGrantsResponse; @@ -876,8 +918,9 @@ export declare namespace cosmos { toProtoMsg(message: _12.QueryGranteeGrantsResponse): _12.QueryGranteeGrantsResponseProtoMsg; }; GenesisState: { - encode(message: _11.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _11.GenesisState; + typeUrl: string; + encode(message: _11.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _11.GenesisState; fromJSON(object: any): _11.GenesisState; toJSON(message: _11.GenesisState): unknown; fromPartial(object: Partial<_11.GenesisState>): _11.GenesisState; @@ -890,8 +933,9 @@ export declare namespace cosmos { toProtoMsg(message: _11.GenesisState): _11.GenesisStateProtoMsg; }; EventGrant: { - encode(message: _10.EventGrant, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _10.EventGrant; + typeUrl: string; + encode(message: _10.EventGrant, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _10.EventGrant; fromJSON(object: any): _10.EventGrant; toJSON(message: _10.EventGrant): unknown; fromPartial(object: Partial<_10.EventGrant>): _10.EventGrant; @@ -904,8 +948,9 @@ export declare namespace cosmos { toProtoMsg(message: _10.EventGrant): _10.EventGrantProtoMsg; }; EventRevoke: { - encode(message: _10.EventRevoke, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _10.EventRevoke; + typeUrl: string; + encode(message: _10.EventRevoke, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _10.EventRevoke; fromJSON(object: any): _10.EventRevoke; toJSON(message: _10.EventRevoke): unknown; fromPartial(object: Partial<_10.EventRevoke>): _10.EventRevoke; @@ -918,8 +963,9 @@ export declare namespace cosmos { toProtoMsg(message: _10.EventRevoke): _10.EventRevokeProtoMsg; }; GenericAuthorization: { - encode(message: _9.GenericAuthorization, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _9.GenericAuthorization; + typeUrl: string; + encode(message: _9.GenericAuthorization, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _9.GenericAuthorization; fromJSON(object: any): _9.GenericAuthorization; toJSON(message: _9.GenericAuthorization): unknown; fromPartial(object: Partial<_9.GenericAuthorization>): _9.GenericAuthorization; @@ -932,8 +978,9 @@ export declare namespace cosmos { toProtoMsg(message: _9.GenericAuthorization): _9.GenericAuthorizationProtoMsg; }; Grant: { - encode(message: _9.Grant, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _9.Grant; + typeUrl: string; + encode(message: _9.Grant, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _9.Grant; fromJSON(object: any): _9.Grant; toJSON(message: _9.Grant): unknown; fromPartial(object: Partial<_9.Grant>): _9.Grant; @@ -946,8 +993,9 @@ export declare namespace cosmos { toProtoMsg(message: _9.Grant): _9.GrantProtoMsg; }; GrantAuthorization: { - encode(message: _9.GrantAuthorization, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _9.GrantAuthorization; + typeUrl: string; + encode(message: _9.GrantAuthorization, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _9.GrantAuthorization; fromJSON(object: any): _9.GrantAuthorization; toJSON(message: _9.GrantAuthorization): unknown; fromPartial(object: Partial<_9.GrantAuthorization>): _9.GrantAuthorization; @@ -960,8 +1008,9 @@ export declare namespace cosmos { toProtoMsg(message: _9.GrantAuthorization): _9.GrantAuthorizationProtoMsg; }; GrantQueueItem: { - encode(message: _9.GrantQueueItem, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _9.GrantQueueItem; + typeUrl: string; + encode(message: _9.GrantQueueItem, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _9.GrantQueueItem; fromJSON(object: any): _9.GrantQueueItem; toJSON(message: _9.GrantQueueItem): unknown; fromPartial(object: Partial<_9.GrantQueueItem>): _9.GrantQueueItem; @@ -973,15 +1022,15 @@ export declare namespace cosmos { toProto(message: _9.GrantQueueItem): Uint8Array; toProtoMsg(message: _9.GrantQueueItem): _9.GrantQueueItemProtoMsg; }; - Authorization_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _14.SendAuthorization | _85.StakeAuthorization | _9.GenericAuthorization; + Authorization_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _14.SendAuthorization | _85.StakeAuthorization | _9.GenericAuthorization; Authorization_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; Authorization_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; }; } namespace bank { const v1beta1: { - MsgClientImpl: typeof _217.MsgClientImpl; - QueryClientImpl: typeof _200.QueryClientImpl; + MsgClientImpl: typeof _218.MsgClientImpl; + QueryClientImpl: typeof _201.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { balance(request: _17.QueryBalanceRequest): Promise<_17.QueryBalanceResponse>; allBalances(request: _17.QueryAllBalancesRequest): Promise<_17.QueryAllBalancesResponse>; @@ -993,7 +1042,7 @@ export declare namespace cosmos { denomsMetadata(request?: _17.QueryDenomsMetadataRequest | undefined): Promise<_17.QueryDenomsMetadataResponse>; denomOwners(request: _17.QueryDenomOwnersRequest): Promise<_17.QueryDenomOwnersResponse>; }; - LCDQueryClient: typeof _181.LCDQueryClient; + LCDQueryClient: typeof _182.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -1061,8 +1110,9 @@ export declare namespace cosmos { }; }; MsgSend: { - encode(message: _18.MsgSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _18.MsgSend; + typeUrl: string; + encode(message: _18.MsgSend, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _18.MsgSend; fromJSON(object: any): _18.MsgSend; toJSON(message: _18.MsgSend): unknown; fromPartial(object: Partial<_18.MsgSend>): _18.MsgSend; @@ -1075,8 +1125,9 @@ export declare namespace cosmos { toProtoMsg(message: _18.MsgSend): _18.MsgSendProtoMsg; }; MsgSendResponse: { - encode(_: _18.MsgSendResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _18.MsgSendResponse; + typeUrl: string; + encode(_: _18.MsgSendResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _18.MsgSendResponse; fromJSON(_: any): _18.MsgSendResponse; toJSON(_: _18.MsgSendResponse): unknown; fromPartial(_: Partial<_18.MsgSendResponse>): _18.MsgSendResponse; @@ -1089,8 +1140,9 @@ export declare namespace cosmos { toProtoMsg(message: _18.MsgSendResponse): _18.MsgSendResponseProtoMsg; }; MsgMultiSend: { - encode(message: _18.MsgMultiSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _18.MsgMultiSend; + typeUrl: string; + encode(message: _18.MsgMultiSend, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _18.MsgMultiSend; fromJSON(object: any): _18.MsgMultiSend; toJSON(message: _18.MsgMultiSend): unknown; fromPartial(object: Partial<_18.MsgMultiSend>): _18.MsgMultiSend; @@ -1103,8 +1155,9 @@ export declare namespace cosmos { toProtoMsg(message: _18.MsgMultiSend): _18.MsgMultiSendProtoMsg; }; MsgMultiSendResponse: { - encode(_: _18.MsgMultiSendResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _18.MsgMultiSendResponse; + typeUrl: string; + encode(_: _18.MsgMultiSendResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _18.MsgMultiSendResponse; fromJSON(_: any): _18.MsgMultiSendResponse; toJSON(_: _18.MsgMultiSendResponse): unknown; fromPartial(_: Partial<_18.MsgMultiSendResponse>): _18.MsgMultiSendResponse; @@ -1117,8 +1170,9 @@ export declare namespace cosmos { toProtoMsg(message: _18.MsgMultiSendResponse): _18.MsgMultiSendResponseProtoMsg; }; QueryBalanceRequest: { - encode(message: _17.QueryBalanceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryBalanceRequest; + typeUrl: string; + encode(message: _17.QueryBalanceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryBalanceRequest; fromJSON(object: any): _17.QueryBalanceRequest; toJSON(message: _17.QueryBalanceRequest): unknown; fromPartial(object: Partial<_17.QueryBalanceRequest>): _17.QueryBalanceRequest; @@ -1131,8 +1185,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryBalanceRequest): _17.QueryBalanceRequestProtoMsg; }; QueryBalanceResponse: { - encode(message: _17.QueryBalanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryBalanceResponse; + typeUrl: string; + encode(message: _17.QueryBalanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryBalanceResponse; fromJSON(object: any): _17.QueryBalanceResponse; toJSON(message: _17.QueryBalanceResponse): unknown; fromPartial(object: Partial<_17.QueryBalanceResponse>): _17.QueryBalanceResponse; @@ -1145,8 +1200,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryBalanceResponse): _17.QueryBalanceResponseProtoMsg; }; QueryAllBalancesRequest: { - encode(message: _17.QueryAllBalancesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryAllBalancesRequest; + typeUrl: string; + encode(message: _17.QueryAllBalancesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryAllBalancesRequest; fromJSON(object: any): _17.QueryAllBalancesRequest; toJSON(message: _17.QueryAllBalancesRequest): unknown; fromPartial(object: Partial<_17.QueryAllBalancesRequest>): _17.QueryAllBalancesRequest; @@ -1159,8 +1215,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryAllBalancesRequest): _17.QueryAllBalancesRequestProtoMsg; }; QueryAllBalancesResponse: { - encode(message: _17.QueryAllBalancesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryAllBalancesResponse; + typeUrl: string; + encode(message: _17.QueryAllBalancesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryAllBalancesResponse; fromJSON(object: any): _17.QueryAllBalancesResponse; toJSON(message: _17.QueryAllBalancesResponse): unknown; fromPartial(object: Partial<_17.QueryAllBalancesResponse>): _17.QueryAllBalancesResponse; @@ -1173,8 +1230,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryAllBalancesResponse): _17.QueryAllBalancesResponseProtoMsg; }; QuerySpendableBalancesRequest: { - encode(message: _17.QuerySpendableBalancesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QuerySpendableBalancesRequest; + typeUrl: string; + encode(message: _17.QuerySpendableBalancesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QuerySpendableBalancesRequest; fromJSON(object: any): _17.QuerySpendableBalancesRequest; toJSON(message: _17.QuerySpendableBalancesRequest): unknown; fromPartial(object: Partial<_17.QuerySpendableBalancesRequest>): _17.QuerySpendableBalancesRequest; @@ -1187,8 +1245,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QuerySpendableBalancesRequest): _17.QuerySpendableBalancesRequestProtoMsg; }; QuerySpendableBalancesResponse: { - encode(message: _17.QuerySpendableBalancesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QuerySpendableBalancesResponse; + typeUrl: string; + encode(message: _17.QuerySpendableBalancesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QuerySpendableBalancesResponse; fromJSON(object: any): _17.QuerySpendableBalancesResponse; toJSON(message: _17.QuerySpendableBalancesResponse): unknown; fromPartial(object: Partial<_17.QuerySpendableBalancesResponse>): _17.QuerySpendableBalancesResponse; @@ -1201,8 +1260,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QuerySpendableBalancesResponse): _17.QuerySpendableBalancesResponseProtoMsg; }; QueryTotalSupplyRequest: { - encode(message: _17.QueryTotalSupplyRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryTotalSupplyRequest; + typeUrl: string; + encode(message: _17.QueryTotalSupplyRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryTotalSupplyRequest; fromJSON(object: any): _17.QueryTotalSupplyRequest; toJSON(message: _17.QueryTotalSupplyRequest): unknown; fromPartial(object: Partial<_17.QueryTotalSupplyRequest>): _17.QueryTotalSupplyRequest; @@ -1215,8 +1275,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryTotalSupplyRequest): _17.QueryTotalSupplyRequestProtoMsg; }; QueryTotalSupplyResponse: { - encode(message: _17.QueryTotalSupplyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryTotalSupplyResponse; + typeUrl: string; + encode(message: _17.QueryTotalSupplyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryTotalSupplyResponse; fromJSON(object: any): _17.QueryTotalSupplyResponse; toJSON(message: _17.QueryTotalSupplyResponse): unknown; fromPartial(object: Partial<_17.QueryTotalSupplyResponse>): _17.QueryTotalSupplyResponse; @@ -1229,8 +1290,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryTotalSupplyResponse): _17.QueryTotalSupplyResponseProtoMsg; }; QuerySupplyOfRequest: { - encode(message: _17.QuerySupplyOfRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QuerySupplyOfRequest; + typeUrl: string; + encode(message: _17.QuerySupplyOfRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QuerySupplyOfRequest; fromJSON(object: any): _17.QuerySupplyOfRequest; toJSON(message: _17.QuerySupplyOfRequest): unknown; fromPartial(object: Partial<_17.QuerySupplyOfRequest>): _17.QuerySupplyOfRequest; @@ -1243,8 +1305,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QuerySupplyOfRequest): _17.QuerySupplyOfRequestProtoMsg; }; QuerySupplyOfResponse: { - encode(message: _17.QuerySupplyOfResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QuerySupplyOfResponse; + typeUrl: string; + encode(message: _17.QuerySupplyOfResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QuerySupplyOfResponse; fromJSON(object: any): _17.QuerySupplyOfResponse; toJSON(message: _17.QuerySupplyOfResponse): unknown; fromPartial(object: Partial<_17.QuerySupplyOfResponse>): _17.QuerySupplyOfResponse; @@ -1257,8 +1320,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QuerySupplyOfResponse): _17.QuerySupplyOfResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _17.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryParamsRequest; + typeUrl: string; + encode(_: _17.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryParamsRequest; fromJSON(_: any): _17.QueryParamsRequest; toJSON(_: _17.QueryParamsRequest): unknown; fromPartial(_: Partial<_17.QueryParamsRequest>): _17.QueryParamsRequest; @@ -1271,8 +1335,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryParamsRequest): _17.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _17.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryParamsResponse; + typeUrl: string; + encode(message: _17.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryParamsResponse; fromJSON(object: any): _17.QueryParamsResponse; toJSON(message: _17.QueryParamsResponse): unknown; fromPartial(object: Partial<_17.QueryParamsResponse>): _17.QueryParamsResponse; @@ -1285,8 +1350,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryParamsResponse): _17.QueryParamsResponseProtoMsg; }; QueryDenomsMetadataRequest: { - encode(message: _17.QueryDenomsMetadataRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryDenomsMetadataRequest; + typeUrl: string; + encode(message: _17.QueryDenomsMetadataRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryDenomsMetadataRequest; fromJSON(object: any): _17.QueryDenomsMetadataRequest; toJSON(message: _17.QueryDenomsMetadataRequest): unknown; fromPartial(object: Partial<_17.QueryDenomsMetadataRequest>): _17.QueryDenomsMetadataRequest; @@ -1299,8 +1365,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryDenomsMetadataRequest): _17.QueryDenomsMetadataRequestProtoMsg; }; QueryDenomsMetadataResponse: { - encode(message: _17.QueryDenomsMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryDenomsMetadataResponse; + typeUrl: string; + encode(message: _17.QueryDenomsMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryDenomsMetadataResponse; fromJSON(object: any): _17.QueryDenomsMetadataResponse; toJSON(message: _17.QueryDenomsMetadataResponse): unknown; fromPartial(object: Partial<_17.QueryDenomsMetadataResponse>): _17.QueryDenomsMetadataResponse; @@ -1313,8 +1380,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryDenomsMetadataResponse): _17.QueryDenomsMetadataResponseProtoMsg; }; QueryDenomMetadataRequest: { - encode(message: _17.QueryDenomMetadataRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryDenomMetadataRequest; + typeUrl: string; + encode(message: _17.QueryDenomMetadataRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryDenomMetadataRequest; fromJSON(object: any): _17.QueryDenomMetadataRequest; toJSON(message: _17.QueryDenomMetadataRequest): unknown; fromPartial(object: Partial<_17.QueryDenomMetadataRequest>): _17.QueryDenomMetadataRequest; @@ -1327,8 +1395,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryDenomMetadataRequest): _17.QueryDenomMetadataRequestProtoMsg; }; QueryDenomMetadataResponse: { - encode(message: _17.QueryDenomMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryDenomMetadataResponse; + typeUrl: string; + encode(message: _17.QueryDenomMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryDenomMetadataResponse; fromJSON(object: any): _17.QueryDenomMetadataResponse; toJSON(message: _17.QueryDenomMetadataResponse): unknown; fromPartial(object: Partial<_17.QueryDenomMetadataResponse>): _17.QueryDenomMetadataResponse; @@ -1341,8 +1410,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryDenomMetadataResponse): _17.QueryDenomMetadataResponseProtoMsg; }; QueryDenomOwnersRequest: { - encode(message: _17.QueryDenomOwnersRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryDenomOwnersRequest; + typeUrl: string; + encode(message: _17.QueryDenomOwnersRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryDenomOwnersRequest; fromJSON(object: any): _17.QueryDenomOwnersRequest; toJSON(message: _17.QueryDenomOwnersRequest): unknown; fromPartial(object: Partial<_17.QueryDenomOwnersRequest>): _17.QueryDenomOwnersRequest; @@ -1355,8 +1425,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryDenomOwnersRequest): _17.QueryDenomOwnersRequestProtoMsg; }; DenomOwner: { - encode(message: _17.DenomOwner, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.DenomOwner; + typeUrl: string; + encode(message: _17.DenomOwner, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.DenomOwner; fromJSON(object: any): _17.DenomOwner; toJSON(message: _17.DenomOwner): unknown; fromPartial(object: Partial<_17.DenomOwner>): _17.DenomOwner; @@ -1369,8 +1440,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.DenomOwner): _17.DenomOwnerProtoMsg; }; QueryDenomOwnersResponse: { - encode(message: _17.QueryDenomOwnersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _17.QueryDenomOwnersResponse; + typeUrl: string; + encode(message: _17.QueryDenomOwnersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _17.QueryDenomOwnersResponse; fromJSON(object: any): _17.QueryDenomOwnersResponse; toJSON(message: _17.QueryDenomOwnersResponse): unknown; fromPartial(object: Partial<_17.QueryDenomOwnersResponse>): _17.QueryDenomOwnersResponse; @@ -1383,8 +1455,9 @@ export declare namespace cosmos { toProtoMsg(message: _17.QueryDenomOwnersResponse): _17.QueryDenomOwnersResponseProtoMsg; }; GenesisState: { - encode(message: _16.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _16.GenesisState; + typeUrl: string; + encode(message: _16.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _16.GenesisState; fromJSON(object: any): _16.GenesisState; toJSON(message: _16.GenesisState): unknown; fromPartial(object: Partial<_16.GenesisState>): _16.GenesisState; @@ -1397,8 +1470,9 @@ export declare namespace cosmos { toProtoMsg(message: _16.GenesisState): _16.GenesisStateProtoMsg; }; Balance: { - encode(message: _16.Balance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _16.Balance; + typeUrl: string; + encode(message: _16.Balance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _16.Balance; fromJSON(object: any): _16.Balance; toJSON(message: _16.Balance): unknown; fromPartial(object: Partial<_16.Balance>): _16.Balance; @@ -1411,8 +1485,9 @@ export declare namespace cosmos { toProtoMsg(message: _16.Balance): _16.BalanceProtoMsg; }; Params: { - encode(message: _15.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.Params; + typeUrl: string; + encode(message: _15.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.Params; fromJSON(object: any): _15.Params; toJSON(message: _15.Params): unknown; fromPartial(object: Partial<_15.Params>): _15.Params; @@ -1425,8 +1500,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.Params): _15.ParamsProtoMsg; }; SendEnabled: { - encode(message: _15.SendEnabled, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.SendEnabled; + typeUrl: string; + encode(message: _15.SendEnabled, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.SendEnabled; fromJSON(object: any): _15.SendEnabled; toJSON(message: _15.SendEnabled): unknown; fromPartial(object: Partial<_15.SendEnabled>): _15.SendEnabled; @@ -1439,8 +1515,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.SendEnabled): _15.SendEnabledProtoMsg; }; Input: { - encode(message: _15.Input, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.Input; + typeUrl: string; + encode(message: _15.Input, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.Input; fromJSON(object: any): _15.Input; toJSON(message: _15.Input): unknown; fromPartial(object: Partial<_15.Input>): _15.Input; @@ -1453,8 +1530,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.Input): _15.InputProtoMsg; }; Output: { - encode(message: _15.Output, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.Output; + typeUrl: string; + encode(message: _15.Output, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.Output; fromJSON(object: any): _15.Output; toJSON(message: _15.Output): unknown; fromPartial(object: Partial<_15.Output>): _15.Output; @@ -1467,8 +1545,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.Output): _15.OutputProtoMsg; }; Supply: { - encode(message: _15.Supply, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.Supply; + typeUrl: string; + encode(message: _15.Supply, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.Supply; fromJSON(object: any): _15.Supply; toJSON(message: _15.Supply): unknown; fromPartial(object: Partial<_15.Supply>): _15.Supply; @@ -1481,8 +1560,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.Supply): _15.SupplyProtoMsg; }; DenomUnit: { - encode(message: _15.DenomUnit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.DenomUnit; + typeUrl: string; + encode(message: _15.DenomUnit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.DenomUnit; fromJSON(object: any): _15.DenomUnit; toJSON(message: _15.DenomUnit): unknown; fromPartial(object: Partial<_15.DenomUnit>): _15.DenomUnit; @@ -1495,8 +1575,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.DenomUnit): _15.DenomUnitProtoMsg; }; Metadata: { - encode(message: _15.Metadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _15.Metadata; + typeUrl: string; + encode(message: _15.Metadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _15.Metadata; fromJSON(object: any): _15.Metadata; toJSON(message: _15.Metadata): unknown; fromPartial(object: Partial<_15.Metadata>): _15.Metadata; @@ -1509,8 +1590,9 @@ export declare namespace cosmos { toProtoMsg(message: _15.Metadata): _15.MetadataProtoMsg; }; SendAuthorization: { - encode(message: _14.SendAuthorization, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _14.SendAuthorization; + typeUrl: string; + encode(message: _14.SendAuthorization, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _14.SendAuthorization; fromJSON(object: any): _14.SendAuthorization; toJSON(message: _14.SendAuthorization): unknown; fromPartial(object: Partial<_14.SendAuthorization>): _14.SendAuthorization; @@ -1528,8 +1610,9 @@ export declare namespace cosmos { namespace abci { const v1beta1: { TxResponse: { - encode(message: _19.TxResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.TxResponse; + typeUrl: string; + encode(message: _19.TxResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.TxResponse; fromJSON(object: any): _19.TxResponse; toJSON(message: _19.TxResponse): unknown; fromPartial(object: Partial<_19.TxResponse>): _19.TxResponse; @@ -1542,8 +1625,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.TxResponse): _19.TxResponseProtoMsg; }; ABCIMessageLog: { - encode(message: _19.ABCIMessageLog, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.ABCIMessageLog; + typeUrl: string; + encode(message: _19.ABCIMessageLog, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.ABCIMessageLog; fromJSON(object: any): _19.ABCIMessageLog; toJSON(message: _19.ABCIMessageLog): unknown; fromPartial(object: Partial<_19.ABCIMessageLog>): _19.ABCIMessageLog; @@ -1556,8 +1640,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.ABCIMessageLog): _19.ABCIMessageLogProtoMsg; }; StringEvent: { - encode(message: _19.StringEvent, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.StringEvent; + typeUrl: string; + encode(message: _19.StringEvent, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.StringEvent; fromJSON(object: any): _19.StringEvent; toJSON(message: _19.StringEvent): unknown; fromPartial(object: Partial<_19.StringEvent>): _19.StringEvent; @@ -1570,8 +1655,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.StringEvent): _19.StringEventProtoMsg; }; Attribute: { - encode(message: _19.Attribute, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.Attribute; + typeUrl: string; + encode(message: _19.Attribute, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.Attribute; fromJSON(object: any): _19.Attribute; toJSON(message: _19.Attribute): unknown; fromPartial(object: Partial<_19.Attribute>): _19.Attribute; @@ -1584,8 +1670,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.Attribute): _19.AttributeProtoMsg; }; GasInfo: { - encode(message: _19.GasInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.GasInfo; + typeUrl: string; + encode(message: _19.GasInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.GasInfo; fromJSON(object: any): _19.GasInfo; toJSON(message: _19.GasInfo): unknown; fromPartial(object: Partial<_19.GasInfo>): _19.GasInfo; @@ -1598,8 +1685,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.GasInfo): _19.GasInfoProtoMsg; }; Result: { - encode(message: _19.Result, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.Result; + typeUrl: string; + encode(message: _19.Result, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.Result; fromJSON(object: any): _19.Result; toJSON(message: _19.Result): unknown; fromPartial(object: Partial<_19.Result>): _19.Result; @@ -1612,8 +1700,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.Result): _19.ResultProtoMsg; }; SimulationResponse: { - encode(message: _19.SimulationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.SimulationResponse; + typeUrl: string; + encode(message: _19.SimulationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.SimulationResponse; fromJSON(object: any): _19.SimulationResponse; toJSON(message: _19.SimulationResponse): unknown; fromPartial(object: Partial<_19.SimulationResponse>): _19.SimulationResponse; @@ -1626,8 +1715,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.SimulationResponse): _19.SimulationResponseProtoMsg; }; MsgData: { - encode(message: _19.MsgData, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.MsgData; + typeUrl: string; + encode(message: _19.MsgData, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.MsgData; fromJSON(object: any): _19.MsgData; toJSON(message: _19.MsgData): unknown; fromPartial(object: Partial<_19.MsgData>): _19.MsgData; @@ -1640,8 +1730,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.MsgData): _19.MsgDataProtoMsg; }; TxMsgData: { - encode(message: _19.TxMsgData, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.TxMsgData; + typeUrl: string; + encode(message: _19.TxMsgData, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.TxMsgData; fromJSON(object: any): _19.TxMsgData; toJSON(message: _19.TxMsgData): unknown; fromPartial(object: Partial<_19.TxMsgData>): _19.TxMsgData; @@ -1654,8 +1745,9 @@ export declare namespace cosmos { toProtoMsg(message: _19.TxMsgData): _19.TxMsgDataProtoMsg; }; SearchTxsResult: { - encode(message: _19.SearchTxsResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _19.SearchTxsResult; + typeUrl: string; + encode(message: _19.SearchTxsResult, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _19.SearchTxsResult; fromJSON(object: any): _19.SearchTxsResult; toJSON(message: _19.SearchTxsResult): unknown; fromPartial(object: Partial<_19.SearchTxsResult>): _19.SearchTxsResult; @@ -1672,8 +1764,9 @@ export declare namespace cosmos { namespace kv { const v1beta1: { Pairs: { - encode(message: _20.Pairs, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _20.Pairs; + typeUrl: string; + encode(message: _20.Pairs, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _20.Pairs; fromJSON(object: any): _20.Pairs; toJSON(message: _20.Pairs): unknown; fromPartial(object: Partial<_20.Pairs>): _20.Pairs; @@ -1686,8 +1779,9 @@ export declare namespace cosmos { toProtoMsg(message: _20.Pairs): _20.PairsProtoMsg; }; Pair: { - encode(message: _20.Pair, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _20.Pair; + typeUrl: string; + encode(message: _20.Pair, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _20.Pair; fromJSON(object: any): _20.Pair; toJSON(message: _20.Pair): unknown; fromPartial(object: Partial<_20.Pair>): _20.Pair; @@ -1703,14 +1797,15 @@ export declare namespace cosmos { } namespace node { const v1beta1: { - ServiceClientImpl: typeof _201.ServiceClientImpl; + ServiceClientImpl: typeof _202.ServiceClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { config(request?: _21.ConfigRequest | undefined): Promise<_21.ConfigResponse>; }; - LCDQueryClient: typeof _182.LCDQueryClient; + LCDQueryClient: typeof _183.LCDQueryClient; ConfigRequest: { - encode(_: _21.ConfigRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _21.ConfigRequest; + typeUrl: string; + encode(_: _21.ConfigRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _21.ConfigRequest; fromJSON(_: any): _21.ConfigRequest; toJSON(_: _21.ConfigRequest): unknown; fromPartial(_: Partial<_21.ConfigRequest>): _21.ConfigRequest; @@ -1723,8 +1818,9 @@ export declare namespace cosmos { toProtoMsg(message: _21.ConfigRequest): _21.ConfigRequestProtoMsg; }; ConfigResponse: { - encode(message: _21.ConfigResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _21.ConfigResponse; + typeUrl: string; + encode(message: _21.ConfigResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _21.ConfigResponse; fromJSON(object: any): _21.ConfigResponse; toJSON(message: _21.ConfigResponse): unknown; fromPartial(object: Partial<_21.ConfigResponse>): _21.ConfigResponse; @@ -1741,8 +1837,9 @@ export declare namespace cosmos { namespace query { const v1beta1: { PageRequest: { - encode(message: _22.PageRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _22.PageRequest; + typeUrl: string; + encode(message: _22.PageRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _22.PageRequest; fromJSON(object: any): _22.PageRequest; toJSON(message: _22.PageRequest): unknown; fromPartial(object: Partial<_22.PageRequest>): _22.PageRequest; @@ -1755,8 +1852,9 @@ export declare namespace cosmos { toProtoMsg(message: _22.PageRequest): _22.PageRequestProtoMsg; }; PageResponse: { - encode(message: _22.PageResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _22.PageResponse; + typeUrl: string; + encode(message: _22.PageResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _22.PageResponse; fromJSON(object: any): _22.PageResponse; toJSON(message: _22.PageResponse): unknown; fromPartial(object: Partial<_22.PageResponse>): _22.PageResponse; @@ -1773,8 +1871,9 @@ export declare namespace cosmos { namespace reflection { const v1beta1: { ListAllInterfacesRequest: { - encode(_: _23.ListAllInterfacesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _23.ListAllInterfacesRequest; + typeUrl: string; + encode(_: _23.ListAllInterfacesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _23.ListAllInterfacesRequest; fromJSON(_: any): _23.ListAllInterfacesRequest; toJSON(_: _23.ListAllInterfacesRequest): unknown; fromPartial(_: Partial<_23.ListAllInterfacesRequest>): _23.ListAllInterfacesRequest; @@ -1787,8 +1886,9 @@ export declare namespace cosmos { toProtoMsg(message: _23.ListAllInterfacesRequest): _23.ListAllInterfacesRequestProtoMsg; }; ListAllInterfacesResponse: { - encode(message: _23.ListAllInterfacesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _23.ListAllInterfacesResponse; + typeUrl: string; + encode(message: _23.ListAllInterfacesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _23.ListAllInterfacesResponse; fromJSON(object: any): _23.ListAllInterfacesResponse; toJSON(message: _23.ListAllInterfacesResponse): unknown; fromPartial(object: Partial<_23.ListAllInterfacesResponse>): _23.ListAllInterfacesResponse; @@ -1801,8 +1901,9 @@ export declare namespace cosmos { toProtoMsg(message: _23.ListAllInterfacesResponse): _23.ListAllInterfacesResponseProtoMsg; }; ListImplementationsRequest: { - encode(message: _23.ListImplementationsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _23.ListImplementationsRequest; + typeUrl: string; + encode(message: _23.ListImplementationsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _23.ListImplementationsRequest; fromJSON(object: any): _23.ListImplementationsRequest; toJSON(message: _23.ListImplementationsRequest): unknown; fromPartial(object: Partial<_23.ListImplementationsRequest>): _23.ListImplementationsRequest; @@ -1815,8 +1916,9 @@ export declare namespace cosmos { toProtoMsg(message: _23.ListImplementationsRequest): _23.ListImplementationsRequestProtoMsg; }; ListImplementationsResponse: { - encode(message: _23.ListImplementationsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _23.ListImplementationsResponse; + typeUrl: string; + encode(message: _23.ListImplementationsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _23.ListImplementationsResponse; fromJSON(object: any): _23.ListImplementationsResponse; toJSON(message: _23.ListImplementationsResponse): unknown; fromPartial(object: Partial<_23.ListImplementationsResponse>): _23.ListImplementationsResponse; @@ -1831,8 +1933,9 @@ export declare namespace cosmos { }; const v2alpha1: { AppDescriptor: { - encode(message: _24.AppDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.AppDescriptor; + typeUrl: string; + encode(message: _24.AppDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.AppDescriptor; fromJSON(object: any): _24.AppDescriptor; toJSON(message: _24.AppDescriptor): unknown; fromPartial(object: Partial<_24.AppDescriptor>): _24.AppDescriptor; @@ -1845,8 +1948,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.AppDescriptor): _24.AppDescriptorProtoMsg; }; TxDescriptor: { - encode(message: _24.TxDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.TxDescriptor; + typeUrl: string; + encode(message: _24.TxDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.TxDescriptor; fromJSON(object: any): _24.TxDescriptor; toJSON(message: _24.TxDescriptor): unknown; fromPartial(object: Partial<_24.TxDescriptor>): _24.TxDescriptor; @@ -1859,8 +1963,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.TxDescriptor): _24.TxDescriptorProtoMsg; }; AuthnDescriptor: { - encode(message: _24.AuthnDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.AuthnDescriptor; + typeUrl: string; + encode(message: _24.AuthnDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.AuthnDescriptor; fromJSON(object: any): _24.AuthnDescriptor; toJSON(message: _24.AuthnDescriptor): unknown; fromPartial(object: Partial<_24.AuthnDescriptor>): _24.AuthnDescriptor; @@ -1873,8 +1978,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.AuthnDescriptor): _24.AuthnDescriptorProtoMsg; }; SigningModeDescriptor: { - encode(message: _24.SigningModeDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.SigningModeDescriptor; + typeUrl: string; + encode(message: _24.SigningModeDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.SigningModeDescriptor; fromJSON(object: any): _24.SigningModeDescriptor; toJSON(message: _24.SigningModeDescriptor): unknown; fromPartial(object: Partial<_24.SigningModeDescriptor>): _24.SigningModeDescriptor; @@ -1887,8 +1993,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.SigningModeDescriptor): _24.SigningModeDescriptorProtoMsg; }; ChainDescriptor: { - encode(message: _24.ChainDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.ChainDescriptor; + typeUrl: string; + encode(message: _24.ChainDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.ChainDescriptor; fromJSON(object: any): _24.ChainDescriptor; toJSON(message: _24.ChainDescriptor): unknown; fromPartial(object: Partial<_24.ChainDescriptor>): _24.ChainDescriptor; @@ -1901,8 +2008,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.ChainDescriptor): _24.ChainDescriptorProtoMsg; }; CodecDescriptor: { - encode(message: _24.CodecDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.CodecDescriptor; + typeUrl: string; + encode(message: _24.CodecDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.CodecDescriptor; fromJSON(object: any): _24.CodecDescriptor; toJSON(message: _24.CodecDescriptor): unknown; fromPartial(object: Partial<_24.CodecDescriptor>): _24.CodecDescriptor; @@ -1915,8 +2023,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.CodecDescriptor): _24.CodecDescriptorProtoMsg; }; InterfaceDescriptor: { - encode(message: _24.InterfaceDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.InterfaceDescriptor; + typeUrl: string; + encode(message: _24.InterfaceDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.InterfaceDescriptor; fromJSON(object: any): _24.InterfaceDescriptor; toJSON(message: _24.InterfaceDescriptor): unknown; fromPartial(object: Partial<_24.InterfaceDescriptor>): _24.InterfaceDescriptor; @@ -1929,8 +2038,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.InterfaceDescriptor): _24.InterfaceDescriptorProtoMsg; }; InterfaceImplementerDescriptor: { - encode(message: _24.InterfaceImplementerDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.InterfaceImplementerDescriptor; + typeUrl: string; + encode(message: _24.InterfaceImplementerDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.InterfaceImplementerDescriptor; fromJSON(object: any): _24.InterfaceImplementerDescriptor; toJSON(message: _24.InterfaceImplementerDescriptor): unknown; fromPartial(object: Partial<_24.InterfaceImplementerDescriptor>): _24.InterfaceImplementerDescriptor; @@ -1943,8 +2053,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.InterfaceImplementerDescriptor): _24.InterfaceImplementerDescriptorProtoMsg; }; InterfaceAcceptingMessageDescriptor: { - encode(message: _24.InterfaceAcceptingMessageDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.InterfaceAcceptingMessageDescriptor; + typeUrl: string; + encode(message: _24.InterfaceAcceptingMessageDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.InterfaceAcceptingMessageDescriptor; fromJSON(object: any): _24.InterfaceAcceptingMessageDescriptor; toJSON(message: _24.InterfaceAcceptingMessageDescriptor): unknown; fromPartial(object: Partial<_24.InterfaceAcceptingMessageDescriptor>): _24.InterfaceAcceptingMessageDescriptor; @@ -1957,8 +2068,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.InterfaceAcceptingMessageDescriptor): _24.InterfaceAcceptingMessageDescriptorProtoMsg; }; ConfigurationDescriptor: { - encode(message: _24.ConfigurationDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.ConfigurationDescriptor; + typeUrl: string; + encode(message: _24.ConfigurationDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.ConfigurationDescriptor; fromJSON(object: any): _24.ConfigurationDescriptor; toJSON(message: _24.ConfigurationDescriptor): unknown; fromPartial(object: Partial<_24.ConfigurationDescriptor>): _24.ConfigurationDescriptor; @@ -1971,8 +2083,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.ConfigurationDescriptor): _24.ConfigurationDescriptorProtoMsg; }; MsgDescriptor: { - encode(message: _24.MsgDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.MsgDescriptor; + typeUrl: string; + encode(message: _24.MsgDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.MsgDescriptor; fromJSON(object: any): _24.MsgDescriptor; toJSON(message: _24.MsgDescriptor): unknown; fromPartial(object: Partial<_24.MsgDescriptor>): _24.MsgDescriptor; @@ -1985,8 +2098,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.MsgDescriptor): _24.MsgDescriptorProtoMsg; }; GetAuthnDescriptorRequest: { - encode(_: _24.GetAuthnDescriptorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetAuthnDescriptorRequest; + typeUrl: string; + encode(_: _24.GetAuthnDescriptorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetAuthnDescriptorRequest; fromJSON(_: any): _24.GetAuthnDescriptorRequest; toJSON(_: _24.GetAuthnDescriptorRequest): unknown; fromPartial(_: Partial<_24.GetAuthnDescriptorRequest>): _24.GetAuthnDescriptorRequest; @@ -1999,8 +2113,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetAuthnDescriptorRequest): _24.GetAuthnDescriptorRequestProtoMsg; }; GetAuthnDescriptorResponse: { - encode(message: _24.GetAuthnDescriptorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetAuthnDescriptorResponse; + typeUrl: string; + encode(message: _24.GetAuthnDescriptorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetAuthnDescriptorResponse; fromJSON(object: any): _24.GetAuthnDescriptorResponse; toJSON(message: _24.GetAuthnDescriptorResponse): unknown; fromPartial(object: Partial<_24.GetAuthnDescriptorResponse>): _24.GetAuthnDescriptorResponse; @@ -2013,8 +2128,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetAuthnDescriptorResponse): _24.GetAuthnDescriptorResponseProtoMsg; }; GetChainDescriptorRequest: { - encode(_: _24.GetChainDescriptorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetChainDescriptorRequest; + typeUrl: string; + encode(_: _24.GetChainDescriptorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetChainDescriptorRequest; fromJSON(_: any): _24.GetChainDescriptorRequest; toJSON(_: _24.GetChainDescriptorRequest): unknown; fromPartial(_: Partial<_24.GetChainDescriptorRequest>): _24.GetChainDescriptorRequest; @@ -2027,8 +2143,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetChainDescriptorRequest): _24.GetChainDescriptorRequestProtoMsg; }; GetChainDescriptorResponse: { - encode(message: _24.GetChainDescriptorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetChainDescriptorResponse; + typeUrl: string; + encode(message: _24.GetChainDescriptorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetChainDescriptorResponse; fromJSON(object: any): _24.GetChainDescriptorResponse; toJSON(message: _24.GetChainDescriptorResponse): unknown; fromPartial(object: Partial<_24.GetChainDescriptorResponse>): _24.GetChainDescriptorResponse; @@ -2041,8 +2158,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetChainDescriptorResponse): _24.GetChainDescriptorResponseProtoMsg; }; GetCodecDescriptorRequest: { - encode(_: _24.GetCodecDescriptorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetCodecDescriptorRequest; + typeUrl: string; + encode(_: _24.GetCodecDescriptorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetCodecDescriptorRequest; fromJSON(_: any): _24.GetCodecDescriptorRequest; toJSON(_: _24.GetCodecDescriptorRequest): unknown; fromPartial(_: Partial<_24.GetCodecDescriptorRequest>): _24.GetCodecDescriptorRequest; @@ -2055,8 +2173,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetCodecDescriptorRequest): _24.GetCodecDescriptorRequestProtoMsg; }; GetCodecDescriptorResponse: { - encode(message: _24.GetCodecDescriptorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetCodecDescriptorResponse; + typeUrl: string; + encode(message: _24.GetCodecDescriptorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetCodecDescriptorResponse; fromJSON(object: any): _24.GetCodecDescriptorResponse; toJSON(message: _24.GetCodecDescriptorResponse): unknown; fromPartial(object: Partial<_24.GetCodecDescriptorResponse>): _24.GetCodecDescriptorResponse; @@ -2069,8 +2188,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetCodecDescriptorResponse): _24.GetCodecDescriptorResponseProtoMsg; }; GetConfigurationDescriptorRequest: { - encode(_: _24.GetConfigurationDescriptorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetConfigurationDescriptorRequest; + typeUrl: string; + encode(_: _24.GetConfigurationDescriptorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetConfigurationDescriptorRequest; fromJSON(_: any): _24.GetConfigurationDescriptorRequest; toJSON(_: _24.GetConfigurationDescriptorRequest): unknown; fromPartial(_: Partial<_24.GetConfigurationDescriptorRequest>): _24.GetConfigurationDescriptorRequest; @@ -2083,8 +2203,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetConfigurationDescriptorRequest): _24.GetConfigurationDescriptorRequestProtoMsg; }; GetConfigurationDescriptorResponse: { - encode(message: _24.GetConfigurationDescriptorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetConfigurationDescriptorResponse; + typeUrl: string; + encode(message: _24.GetConfigurationDescriptorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetConfigurationDescriptorResponse; fromJSON(object: any): _24.GetConfigurationDescriptorResponse; toJSON(message: _24.GetConfigurationDescriptorResponse): unknown; fromPartial(object: Partial<_24.GetConfigurationDescriptorResponse>): _24.GetConfigurationDescriptorResponse; @@ -2097,8 +2218,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetConfigurationDescriptorResponse): _24.GetConfigurationDescriptorResponseProtoMsg; }; GetQueryServicesDescriptorRequest: { - encode(_: _24.GetQueryServicesDescriptorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetQueryServicesDescriptorRequest; + typeUrl: string; + encode(_: _24.GetQueryServicesDescriptorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetQueryServicesDescriptorRequest; fromJSON(_: any): _24.GetQueryServicesDescriptorRequest; toJSON(_: _24.GetQueryServicesDescriptorRequest): unknown; fromPartial(_: Partial<_24.GetQueryServicesDescriptorRequest>): _24.GetQueryServicesDescriptorRequest; @@ -2111,8 +2233,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetQueryServicesDescriptorRequest): _24.GetQueryServicesDescriptorRequestProtoMsg; }; GetQueryServicesDescriptorResponse: { - encode(message: _24.GetQueryServicesDescriptorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetQueryServicesDescriptorResponse; + typeUrl: string; + encode(message: _24.GetQueryServicesDescriptorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetQueryServicesDescriptorResponse; fromJSON(object: any): _24.GetQueryServicesDescriptorResponse; toJSON(message: _24.GetQueryServicesDescriptorResponse): unknown; fromPartial(object: Partial<_24.GetQueryServicesDescriptorResponse>): _24.GetQueryServicesDescriptorResponse; @@ -2125,8 +2248,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetQueryServicesDescriptorResponse): _24.GetQueryServicesDescriptorResponseProtoMsg; }; GetTxDescriptorRequest: { - encode(_: _24.GetTxDescriptorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetTxDescriptorRequest; + typeUrl: string; + encode(_: _24.GetTxDescriptorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetTxDescriptorRequest; fromJSON(_: any): _24.GetTxDescriptorRequest; toJSON(_: _24.GetTxDescriptorRequest): unknown; fromPartial(_: Partial<_24.GetTxDescriptorRequest>): _24.GetTxDescriptorRequest; @@ -2139,8 +2263,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetTxDescriptorRequest): _24.GetTxDescriptorRequestProtoMsg; }; GetTxDescriptorResponse: { - encode(message: _24.GetTxDescriptorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.GetTxDescriptorResponse; + typeUrl: string; + encode(message: _24.GetTxDescriptorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.GetTxDescriptorResponse; fromJSON(object: any): _24.GetTxDescriptorResponse; toJSON(message: _24.GetTxDescriptorResponse): unknown; fromPartial(object: Partial<_24.GetTxDescriptorResponse>): _24.GetTxDescriptorResponse; @@ -2153,8 +2278,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.GetTxDescriptorResponse): _24.GetTxDescriptorResponseProtoMsg; }; QueryServicesDescriptor: { - encode(message: _24.QueryServicesDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.QueryServicesDescriptor; + typeUrl: string; + encode(message: _24.QueryServicesDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.QueryServicesDescriptor; fromJSON(object: any): _24.QueryServicesDescriptor; toJSON(message: _24.QueryServicesDescriptor): unknown; fromPartial(object: Partial<_24.QueryServicesDescriptor>): _24.QueryServicesDescriptor; @@ -2167,8 +2293,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.QueryServicesDescriptor): _24.QueryServicesDescriptorProtoMsg; }; QueryServiceDescriptor: { - encode(message: _24.QueryServiceDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.QueryServiceDescriptor; + typeUrl: string; + encode(message: _24.QueryServiceDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.QueryServiceDescriptor; fromJSON(object: any): _24.QueryServiceDescriptor; toJSON(message: _24.QueryServiceDescriptor): unknown; fromPartial(object: Partial<_24.QueryServiceDescriptor>): _24.QueryServiceDescriptor; @@ -2181,8 +2308,9 @@ export declare namespace cosmos { toProtoMsg(message: _24.QueryServiceDescriptor): _24.QueryServiceDescriptorProtoMsg; }; QueryMethodDescriptor: { - encode(message: _24.QueryMethodDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _24.QueryMethodDescriptor; + typeUrl: string; + encode(message: _24.QueryMethodDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _24.QueryMethodDescriptor; fromJSON(object: any): _24.QueryMethodDescriptor; toJSON(message: _24.QueryMethodDescriptor): unknown; fromPartial(object: Partial<_24.QueryMethodDescriptor>): _24.QueryMethodDescriptor; @@ -2199,8 +2327,9 @@ export declare namespace cosmos { namespace snapshots { const v1beta1: { Snapshot: { - encode(message: _25.Snapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.Snapshot; + typeUrl: string; + encode(message: _25.Snapshot, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.Snapshot; fromJSON(object: any): _25.Snapshot; toJSON(message: _25.Snapshot): unknown; fromPartial(object: Partial<_25.Snapshot>): _25.Snapshot; @@ -2213,8 +2342,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.Snapshot): _25.SnapshotProtoMsg; }; Metadata: { - encode(message: _25.Metadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.Metadata; + typeUrl: string; + encode(message: _25.Metadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.Metadata; fromJSON(object: any): _25.Metadata; toJSON(message: _25.Metadata): unknown; fromPartial(object: Partial<_25.Metadata>): _25.Metadata; @@ -2227,8 +2357,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.Metadata): _25.MetadataProtoMsg; }; SnapshotItem: { - encode(message: _25.SnapshotItem, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotItem; + typeUrl: string; + encode(message: _25.SnapshotItem, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotItem; fromJSON(object: any): _25.SnapshotItem; toJSON(message: _25.SnapshotItem): unknown; fromPartial(object: Partial<_25.SnapshotItem>): _25.SnapshotItem; @@ -2241,8 +2372,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.SnapshotItem): _25.SnapshotItemProtoMsg; }; SnapshotStoreItem: { - encode(message: _25.SnapshotStoreItem, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotStoreItem; + typeUrl: string; + encode(message: _25.SnapshotStoreItem, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotStoreItem; fromJSON(object: any): _25.SnapshotStoreItem; toJSON(message: _25.SnapshotStoreItem): unknown; fromPartial(object: Partial<_25.SnapshotStoreItem>): _25.SnapshotStoreItem; @@ -2255,8 +2387,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.SnapshotStoreItem): _25.SnapshotStoreItemProtoMsg; }; SnapshotIAVLItem: { - encode(message: _25.SnapshotIAVLItem, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotIAVLItem; + typeUrl: string; + encode(message: _25.SnapshotIAVLItem, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotIAVLItem; fromJSON(object: any): _25.SnapshotIAVLItem; toJSON(message: _25.SnapshotIAVLItem): unknown; fromPartial(object: Partial<_25.SnapshotIAVLItem>): _25.SnapshotIAVLItem; @@ -2269,8 +2402,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.SnapshotIAVLItem): _25.SnapshotIAVLItemProtoMsg; }; SnapshotExtensionMeta: { - encode(message: _25.SnapshotExtensionMeta, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotExtensionMeta; + typeUrl: string; + encode(message: _25.SnapshotExtensionMeta, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotExtensionMeta; fromJSON(object: any): _25.SnapshotExtensionMeta; toJSON(message: _25.SnapshotExtensionMeta): unknown; fromPartial(object: Partial<_25.SnapshotExtensionMeta>): _25.SnapshotExtensionMeta; @@ -2283,8 +2417,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.SnapshotExtensionMeta): _25.SnapshotExtensionMetaProtoMsg; }; SnapshotExtensionPayload: { - encode(message: _25.SnapshotExtensionPayload, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotExtensionPayload; + typeUrl: string; + encode(message: _25.SnapshotExtensionPayload, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotExtensionPayload; fromJSON(object: any): _25.SnapshotExtensionPayload; toJSON(message: _25.SnapshotExtensionPayload): unknown; fromPartial(object: Partial<_25.SnapshotExtensionPayload>): _25.SnapshotExtensionPayload; @@ -2297,8 +2432,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.SnapshotExtensionPayload): _25.SnapshotExtensionPayloadProtoMsg; }; SnapshotKVItem: { - encode(message: _25.SnapshotKVItem, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotKVItem; + typeUrl: string; + encode(message: _25.SnapshotKVItem, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotKVItem; fromJSON(object: any): _25.SnapshotKVItem; toJSON(message: _25.SnapshotKVItem): unknown; fromPartial(object: Partial<_25.SnapshotKVItem>): _25.SnapshotKVItem; @@ -2311,8 +2447,9 @@ export declare namespace cosmos { toProtoMsg(message: _25.SnapshotKVItem): _25.SnapshotKVItemProtoMsg; }; SnapshotSchema: { - encode(message: _25.SnapshotSchema, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _25.SnapshotSchema; + typeUrl: string; + encode(message: _25.SnapshotSchema, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _25.SnapshotSchema; fromJSON(object: any): _25.SnapshotSchema; toJSON(message: _25.SnapshotSchema): unknown; fromPartial(object: Partial<_25.SnapshotSchema>): _25.SnapshotSchema; @@ -2329,8 +2466,9 @@ export declare namespace cosmos { namespace store { const v1beta1: { StoreKVPair: { - encode(message: _27.StoreKVPair, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _27.StoreKVPair; + typeUrl: string; + encode(message: _27.StoreKVPair, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _27.StoreKVPair; fromJSON(object: any): _27.StoreKVPair; toJSON(message: _27.StoreKVPair): unknown; fromPartial(object: Partial<_27.StoreKVPair>): _27.StoreKVPair; @@ -2343,8 +2481,9 @@ export declare namespace cosmos { toProtoMsg(message: _27.StoreKVPair): _27.StoreKVPairProtoMsg; }; BlockMetadata: { - encode(message: _27.BlockMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _27.BlockMetadata; + typeUrl: string; + encode(message: _27.BlockMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _27.BlockMetadata; fromJSON(object: any): _27.BlockMetadata; toJSON(message: _27.BlockMetadata): unknown; fromPartial(object: Partial<_27.BlockMetadata>): _27.BlockMetadata; @@ -2357,8 +2496,9 @@ export declare namespace cosmos { toProtoMsg(message: _27.BlockMetadata): _27.BlockMetadataProtoMsg; }; BlockMetadata_DeliverTx: { - encode(message: _27.BlockMetadata_DeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _27.BlockMetadata_DeliverTx; + typeUrl: string; + encode(message: _27.BlockMetadata_DeliverTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _27.BlockMetadata_DeliverTx; fromJSON(object: any): _27.BlockMetadata_DeliverTx; toJSON(message: _27.BlockMetadata_DeliverTx): unknown; fromPartial(object: Partial<_27.BlockMetadata_DeliverTx>): _27.BlockMetadata_DeliverTx; @@ -2371,8 +2511,9 @@ export declare namespace cosmos { toProtoMsg(message: _27.BlockMetadata_DeliverTx): _27.BlockMetadata_DeliverTxProtoMsg; }; CommitInfo: { - encode(message: _26.CommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _26.CommitInfo; + typeUrl: string; + encode(message: _26.CommitInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _26.CommitInfo; fromJSON(object: any): _26.CommitInfo; toJSON(message: _26.CommitInfo): unknown; fromPartial(object: Partial<_26.CommitInfo>): _26.CommitInfo; @@ -2385,8 +2526,9 @@ export declare namespace cosmos { toProtoMsg(message: _26.CommitInfo): _26.CommitInfoProtoMsg; }; StoreInfo: { - encode(message: _26.StoreInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _26.StoreInfo; + typeUrl: string; + encode(message: _26.StoreInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _26.StoreInfo; fromJSON(object: any): _26.StoreInfo; toJSON(message: _26.StoreInfo): unknown; fromPartial(object: Partial<_26.StoreInfo>): _26.StoreInfo; @@ -2399,8 +2541,9 @@ export declare namespace cosmos { toProtoMsg(message: _26.StoreInfo): _26.StoreInfoProtoMsg; }; CommitID: { - encode(message: _26.CommitID, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _26.CommitID; + typeUrl: string; + encode(message: _26.CommitID, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _26.CommitID; fromJSON(object: any): _26.CommitID; toJSON(message: _26.CommitID): unknown; fromPartial(object: Partial<_26.CommitID>): _26.CommitID; @@ -2416,7 +2559,7 @@ export declare namespace cosmos { } namespace tendermint { const v1beta1: { - ServiceClientImpl: typeof _202.ServiceClientImpl; + ServiceClientImpl: typeof _203.ServiceClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { getNodeInfo(request?: _28.GetNodeInfoRequest | undefined): Promise<_28.GetNodeInfoResponse>; getSyncing(request?: _28.GetSyncingRequest | undefined): Promise<_28.GetSyncingResponse>; @@ -2426,10 +2569,11 @@ export declare namespace cosmos { getValidatorSetByHeight(request: _28.GetValidatorSetByHeightRequest): Promise<_28.GetValidatorSetByHeightResponse>; aBCIQuery(request: _28.ABCIQueryRequest): Promise<_28.ABCIQueryResponse>; }; - LCDQueryClient: typeof _183.LCDQueryClient; + LCDQueryClient: typeof _184.LCDQueryClient; Block: { - encode(message: _29.Block, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _29.Block; + typeUrl: string; + encode(message: _29.Block, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _29.Block; fromJSON(object: any): _29.Block; toJSON(message: _29.Block): unknown; fromPartial(object: Partial<_29.Block>): _29.Block; @@ -2442,8 +2586,9 @@ export declare namespace cosmos { toProtoMsg(message: _29.Block): _29.BlockProtoMsg; }; Header: { - encode(message: _29.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _29.Header; + typeUrl: string; + encode(message: _29.Header, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _29.Header; fromJSON(object: any): _29.Header; toJSON(message: _29.Header): unknown; fromPartial(object: Partial<_29.Header>): _29.Header; @@ -2456,8 +2601,9 @@ export declare namespace cosmos { toProtoMsg(message: _29.Header): _29.HeaderProtoMsg; }; GetValidatorSetByHeightRequest: { - encode(message: _28.GetValidatorSetByHeightRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetValidatorSetByHeightRequest; + typeUrl: string; + encode(message: _28.GetValidatorSetByHeightRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetValidatorSetByHeightRequest; fromJSON(object: any): _28.GetValidatorSetByHeightRequest; toJSON(message: _28.GetValidatorSetByHeightRequest): unknown; fromPartial(object: Partial<_28.GetValidatorSetByHeightRequest>): _28.GetValidatorSetByHeightRequest; @@ -2470,8 +2616,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetValidatorSetByHeightRequest): _28.GetValidatorSetByHeightRequestProtoMsg; }; GetValidatorSetByHeightResponse: { - encode(message: _28.GetValidatorSetByHeightResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetValidatorSetByHeightResponse; + typeUrl: string; + encode(message: _28.GetValidatorSetByHeightResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetValidatorSetByHeightResponse; fromJSON(object: any): _28.GetValidatorSetByHeightResponse; toJSON(message: _28.GetValidatorSetByHeightResponse): unknown; fromPartial(object: Partial<_28.GetValidatorSetByHeightResponse>): _28.GetValidatorSetByHeightResponse; @@ -2484,8 +2631,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetValidatorSetByHeightResponse): _28.GetValidatorSetByHeightResponseProtoMsg; }; GetLatestValidatorSetRequest: { - encode(message: _28.GetLatestValidatorSetRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetLatestValidatorSetRequest; + typeUrl: string; + encode(message: _28.GetLatestValidatorSetRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetLatestValidatorSetRequest; fromJSON(object: any): _28.GetLatestValidatorSetRequest; toJSON(message: _28.GetLatestValidatorSetRequest): unknown; fromPartial(object: Partial<_28.GetLatestValidatorSetRequest>): _28.GetLatestValidatorSetRequest; @@ -2498,8 +2646,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetLatestValidatorSetRequest): _28.GetLatestValidatorSetRequestProtoMsg; }; GetLatestValidatorSetResponse: { - encode(message: _28.GetLatestValidatorSetResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetLatestValidatorSetResponse; + typeUrl: string; + encode(message: _28.GetLatestValidatorSetResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetLatestValidatorSetResponse; fromJSON(object: any): _28.GetLatestValidatorSetResponse; toJSON(message: _28.GetLatestValidatorSetResponse): unknown; fromPartial(object: Partial<_28.GetLatestValidatorSetResponse>): _28.GetLatestValidatorSetResponse; @@ -2512,8 +2661,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetLatestValidatorSetResponse): _28.GetLatestValidatorSetResponseProtoMsg; }; Validator: { - encode(message: _28.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.Validator; + typeUrl: string; + encode(message: _28.Validator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.Validator; fromJSON(object: any): _28.Validator; toJSON(message: _28.Validator): unknown; fromPartial(object: Partial<_28.Validator>): _28.Validator; @@ -2526,8 +2676,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.Validator): _28.ValidatorProtoMsg; }; GetBlockByHeightRequest: { - encode(message: _28.GetBlockByHeightRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetBlockByHeightRequest; + typeUrl: string; + encode(message: _28.GetBlockByHeightRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetBlockByHeightRequest; fromJSON(object: any): _28.GetBlockByHeightRequest; toJSON(message: _28.GetBlockByHeightRequest): unknown; fromPartial(object: Partial<_28.GetBlockByHeightRequest>): _28.GetBlockByHeightRequest; @@ -2540,8 +2691,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetBlockByHeightRequest): _28.GetBlockByHeightRequestProtoMsg; }; GetBlockByHeightResponse: { - encode(message: _28.GetBlockByHeightResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetBlockByHeightResponse; + typeUrl: string; + encode(message: _28.GetBlockByHeightResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetBlockByHeightResponse; fromJSON(object: any): _28.GetBlockByHeightResponse; toJSON(message: _28.GetBlockByHeightResponse): unknown; fromPartial(object: Partial<_28.GetBlockByHeightResponse>): _28.GetBlockByHeightResponse; @@ -2554,8 +2706,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetBlockByHeightResponse): _28.GetBlockByHeightResponseProtoMsg; }; GetLatestBlockRequest: { - encode(_: _28.GetLatestBlockRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetLatestBlockRequest; + typeUrl: string; + encode(_: _28.GetLatestBlockRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetLatestBlockRequest; fromJSON(_: any): _28.GetLatestBlockRequest; toJSON(_: _28.GetLatestBlockRequest): unknown; fromPartial(_: Partial<_28.GetLatestBlockRequest>): _28.GetLatestBlockRequest; @@ -2568,8 +2721,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetLatestBlockRequest): _28.GetLatestBlockRequestProtoMsg; }; GetLatestBlockResponse: { - encode(message: _28.GetLatestBlockResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetLatestBlockResponse; + typeUrl: string; + encode(message: _28.GetLatestBlockResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetLatestBlockResponse; fromJSON(object: any): _28.GetLatestBlockResponse; toJSON(message: _28.GetLatestBlockResponse): unknown; fromPartial(object: Partial<_28.GetLatestBlockResponse>): _28.GetLatestBlockResponse; @@ -2582,8 +2736,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetLatestBlockResponse): _28.GetLatestBlockResponseProtoMsg; }; GetSyncingRequest: { - encode(_: _28.GetSyncingRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetSyncingRequest; + typeUrl: string; + encode(_: _28.GetSyncingRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetSyncingRequest; fromJSON(_: any): _28.GetSyncingRequest; toJSON(_: _28.GetSyncingRequest): unknown; fromPartial(_: Partial<_28.GetSyncingRequest>): _28.GetSyncingRequest; @@ -2596,8 +2751,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetSyncingRequest): _28.GetSyncingRequestProtoMsg; }; GetSyncingResponse: { - encode(message: _28.GetSyncingResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetSyncingResponse; + typeUrl: string; + encode(message: _28.GetSyncingResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetSyncingResponse; fromJSON(object: any): _28.GetSyncingResponse; toJSON(message: _28.GetSyncingResponse): unknown; fromPartial(object: Partial<_28.GetSyncingResponse>): _28.GetSyncingResponse; @@ -2610,8 +2766,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetSyncingResponse): _28.GetSyncingResponseProtoMsg; }; GetNodeInfoRequest: { - encode(_: _28.GetNodeInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetNodeInfoRequest; + typeUrl: string; + encode(_: _28.GetNodeInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetNodeInfoRequest; fromJSON(_: any): _28.GetNodeInfoRequest; toJSON(_: _28.GetNodeInfoRequest): unknown; fromPartial(_: Partial<_28.GetNodeInfoRequest>): _28.GetNodeInfoRequest; @@ -2624,8 +2781,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetNodeInfoRequest): _28.GetNodeInfoRequestProtoMsg; }; GetNodeInfoResponse: { - encode(message: _28.GetNodeInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.GetNodeInfoResponse; + typeUrl: string; + encode(message: _28.GetNodeInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.GetNodeInfoResponse; fromJSON(object: any): _28.GetNodeInfoResponse; toJSON(message: _28.GetNodeInfoResponse): unknown; fromPartial(object: Partial<_28.GetNodeInfoResponse>): _28.GetNodeInfoResponse; @@ -2638,8 +2796,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.GetNodeInfoResponse): _28.GetNodeInfoResponseProtoMsg; }; VersionInfo: { - encode(message: _28.VersionInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.VersionInfo; + typeUrl: string; + encode(message: _28.VersionInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.VersionInfo; fromJSON(object: any): _28.VersionInfo; toJSON(message: _28.VersionInfo): unknown; fromPartial(object: Partial<_28.VersionInfo>): _28.VersionInfo; @@ -2652,8 +2811,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.VersionInfo): _28.VersionInfoProtoMsg; }; Module: { - encode(message: _28.Module, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.Module; + typeUrl: string; + encode(message: _28.Module, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.Module; fromJSON(object: any): _28.Module; toJSON(message: _28.Module): unknown; fromPartial(object: Partial<_28.Module>): _28.Module; @@ -2666,8 +2826,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.Module): _28.ModuleProtoMsg; }; ABCIQueryRequest: { - encode(message: _28.ABCIQueryRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.ABCIQueryRequest; + typeUrl: string; + encode(message: _28.ABCIQueryRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.ABCIQueryRequest; fromJSON(object: any): _28.ABCIQueryRequest; toJSON(message: _28.ABCIQueryRequest): unknown; fromPartial(object: Partial<_28.ABCIQueryRequest>): _28.ABCIQueryRequest; @@ -2680,8 +2841,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.ABCIQueryRequest): _28.ABCIQueryRequestProtoMsg; }; ABCIQueryResponse: { - encode(message: _28.ABCIQueryResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.ABCIQueryResponse; + typeUrl: string; + encode(message: _28.ABCIQueryResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.ABCIQueryResponse; fromJSON(object: any): _28.ABCIQueryResponse; toJSON(message: _28.ABCIQueryResponse): unknown; fromPartial(object: Partial<_28.ABCIQueryResponse>): _28.ABCIQueryResponse; @@ -2694,8 +2856,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.ABCIQueryResponse): _28.ABCIQueryResponseProtoMsg; }; ProofOp: { - encode(message: _28.ProofOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.ProofOp; + typeUrl: string; + encode(message: _28.ProofOp, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.ProofOp; fromJSON(object: any): _28.ProofOp; toJSON(message: _28.ProofOp): unknown; fromPartial(object: Partial<_28.ProofOp>): _28.ProofOp; @@ -2708,8 +2871,9 @@ export declare namespace cosmos { toProtoMsg(message: _28.ProofOp): _28.ProofOpProtoMsg; }; ProofOps: { - encode(message: _28.ProofOps, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _28.ProofOps; + typeUrl: string; + encode(message: _28.ProofOps, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _28.ProofOps; fromJSON(object: any): _28.ProofOps; toJSON(message: _28.ProofOps): unknown; fromPartial(object: Partial<_28.ProofOps>): _28.ProofOps; @@ -2725,8 +2889,9 @@ export declare namespace cosmos { } const v1beta1: { Coin: { - encode(message: _30.Coin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _30.Coin; + typeUrl: string; + encode(message: _30.Coin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _30.Coin; fromJSON(object: any): _30.Coin; toJSON(message: _30.Coin): unknown; fromPartial(object: Partial<_30.Coin>): _30.Coin; @@ -2739,8 +2904,9 @@ export declare namespace cosmos { toProtoMsg(message: _30.Coin): _30.CoinProtoMsg; }; DecCoin: { - encode(message: _30.DecCoin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _30.DecCoin; + typeUrl: string; + encode(message: _30.DecCoin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _30.DecCoin; fromJSON(object: any): _30.DecCoin; toJSON(message: _30.DecCoin): unknown; fromPartial(object: Partial<_30.DecCoin>): _30.DecCoin; @@ -2753,8 +2919,9 @@ export declare namespace cosmos { toProtoMsg(message: _30.DecCoin): _30.DecCoinProtoMsg; }; IntProto: { - encode(message: _30.IntProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _30.IntProto; + typeUrl: string; + encode(message: _30.IntProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _30.IntProto; fromJSON(object: any): _30.IntProto; toJSON(message: _30.IntProto): unknown; fromPartial(object: Partial<_30.IntProto>): _30.IntProto; @@ -2767,8 +2934,9 @@ export declare namespace cosmos { toProtoMsg(message: _30.IntProto): _30.IntProtoProtoMsg; }; DecProto: { - encode(message: _30.DecProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _30.DecProto; + typeUrl: string; + encode(message: _30.DecProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _30.DecProto; fromJSON(object: any): _30.DecProto; toJSON(message: _30.DecProto): unknown; fromPartial(object: Partial<_30.DecProto>): _30.DecProto; @@ -2785,8 +2953,9 @@ export declare namespace cosmos { namespace capability { const v1beta1: { GenesisOwners: { - encode(message: _32.GenesisOwners, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _32.GenesisOwners; + typeUrl: string; + encode(message: _32.GenesisOwners, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _32.GenesisOwners; fromJSON(object: any): _32.GenesisOwners; toJSON(message: _32.GenesisOwners): unknown; fromPartial(object: Partial<_32.GenesisOwners>): _32.GenesisOwners; @@ -2799,8 +2968,9 @@ export declare namespace cosmos { toProtoMsg(message: _32.GenesisOwners): _32.GenesisOwnersProtoMsg; }; GenesisState: { - encode(message: _32.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _32.GenesisState; + typeUrl: string; + encode(message: _32.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _32.GenesisState; fromJSON(object: any): _32.GenesisState; toJSON(message: _32.GenesisState): unknown; fromPartial(object: Partial<_32.GenesisState>): _32.GenesisState; @@ -2813,8 +2983,9 @@ export declare namespace cosmos { toProtoMsg(message: _32.GenesisState): _32.GenesisStateProtoMsg; }; Capability: { - encode(message: _31.Capability, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _31.Capability; + typeUrl: string; + encode(message: _31.Capability, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _31.Capability; fromJSON(object: any): _31.Capability; toJSON(message: _31.Capability): unknown; fromPartial(object: Partial<_31.Capability>): _31.Capability; @@ -2827,8 +2998,9 @@ export declare namespace cosmos { toProtoMsg(message: _31.Capability): _31.CapabilityProtoMsg; }; Owner: { - encode(message: _31.Owner, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _31.Owner; + typeUrl: string; + encode(message: _31.Owner, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _31.Owner; fromJSON(object: any): _31.Owner; toJSON(message: _31.Owner): unknown; fromPartial(object: Partial<_31.Owner>): _31.Owner; @@ -2841,8 +3013,9 @@ export declare namespace cosmos { toProtoMsg(message: _31.Owner): _31.OwnerProtoMsg; }; CapabilityOwners: { - encode(message: _31.CapabilityOwners, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _31.CapabilityOwners; + typeUrl: string; + encode(message: _31.CapabilityOwners, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _31.CapabilityOwners; fromJSON(object: any): _31.CapabilityOwners; toJSON(message: _31.CapabilityOwners): unknown; fromPartial(object: Partial<_31.CapabilityOwners>): _31.CapabilityOwners; @@ -2858,7 +3031,7 @@ export declare namespace cosmos { } namespace crisis { const v1beta1: { - MsgClientImpl: typeof _218.MsgClientImpl; + MsgClientImpl: typeof _219.MsgClientImpl; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -2901,8 +3074,9 @@ export declare namespace cosmos { }; }; MsgVerifyInvariant: { - encode(message: _34.MsgVerifyInvariant, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _34.MsgVerifyInvariant; + typeUrl: string; + encode(message: _34.MsgVerifyInvariant, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _34.MsgVerifyInvariant; fromJSON(object: any): _34.MsgVerifyInvariant; toJSON(message: _34.MsgVerifyInvariant): unknown; fromPartial(object: Partial<_34.MsgVerifyInvariant>): _34.MsgVerifyInvariant; @@ -2915,8 +3089,9 @@ export declare namespace cosmos { toProtoMsg(message: _34.MsgVerifyInvariant): _34.MsgVerifyInvariantProtoMsg; }; MsgVerifyInvariantResponse: { - encode(_: _34.MsgVerifyInvariantResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _34.MsgVerifyInvariantResponse; + typeUrl: string; + encode(_: _34.MsgVerifyInvariantResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _34.MsgVerifyInvariantResponse; fromJSON(_: any): _34.MsgVerifyInvariantResponse; toJSON(_: _34.MsgVerifyInvariantResponse): unknown; fromPartial(_: Partial<_34.MsgVerifyInvariantResponse>): _34.MsgVerifyInvariantResponse; @@ -2929,8 +3104,9 @@ export declare namespace cosmos { toProtoMsg(message: _34.MsgVerifyInvariantResponse): _34.MsgVerifyInvariantResponseProtoMsg; }; GenesisState: { - encode(message: _33.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _33.GenesisState; + typeUrl: string; + encode(message: _33.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _33.GenesisState; fromJSON(object: any): _33.GenesisState; toJSON(message: _33.GenesisState): unknown; fromPartial(object: Partial<_33.GenesisState>): _33.GenesisState; @@ -2947,8 +3123,9 @@ export declare namespace cosmos { namespace crypto { const ed25519: { PubKey: { - encode(message: _35.PubKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _35.PubKey; + typeUrl: string; + encode(message: _35.PubKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _35.PubKey; fromJSON(object: any): _35.PubKey; toJSON(message: _35.PubKey): unknown; fromPartial(object: Partial<_35.PubKey>): _35.PubKey; @@ -2961,8 +3138,9 @@ export declare namespace cosmos { toProtoMsg(message: _35.PubKey): _35.PubKeyProtoMsg; }; PrivKey: { - encode(message: _35.PrivKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _35.PrivKey; + typeUrl: string; + encode(message: _35.PrivKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _35.PrivKey; fromJSON(object: any): _35.PrivKey; toJSON(message: _35.PrivKey): unknown; fromPartial(object: Partial<_35.PrivKey>): _35.PrivKey; @@ -2978,8 +3156,9 @@ export declare namespace cosmos { namespace hd { const v1: { BIP44Params: { - encode(message: _36.BIP44Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _36.BIP44Params; + typeUrl: string; + encode(message: _36.BIP44Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _36.BIP44Params; fromJSON(object: any): _36.BIP44Params; toJSON(message: _36.BIP44Params): unknown; fromPartial(object: Partial<_36.BIP44Params>): _36.BIP44Params; @@ -2996,8 +3175,9 @@ export declare namespace cosmos { namespace keyring { const v1: { Record: { - encode(message: _37.Record, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _37.Record; + typeUrl: string; + encode(message: _37.Record, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _37.Record; fromJSON(object: any): _37.Record; toJSON(message: _37.Record): unknown; fromPartial(object: Partial<_37.Record>): _37.Record; @@ -3010,8 +3190,9 @@ export declare namespace cosmos { toProtoMsg(message: _37.Record): _37.RecordProtoMsg; }; Record_Local: { - encode(message: _37.Record_Local, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _37.Record_Local; + typeUrl: string; + encode(message: _37.Record_Local, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _37.Record_Local; fromJSON(object: any): _37.Record_Local; toJSON(message: _37.Record_Local): unknown; fromPartial(object: Partial<_37.Record_Local>): _37.Record_Local; @@ -3024,8 +3205,9 @@ export declare namespace cosmos { toProtoMsg(message: _37.Record_Local): _37.Record_LocalProtoMsg; }; Record_Ledger: { - encode(message: _37.Record_Ledger, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _37.Record_Ledger; + typeUrl: string; + encode(message: _37.Record_Ledger, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _37.Record_Ledger; fromJSON(object: any): _37.Record_Ledger; toJSON(message: _37.Record_Ledger): unknown; fromPartial(object: Partial<_37.Record_Ledger>): _37.Record_Ledger; @@ -3038,8 +3220,9 @@ export declare namespace cosmos { toProtoMsg(message: _37.Record_Ledger): _37.Record_LedgerProtoMsg; }; Record_Multi: { - encode(_: _37.Record_Multi, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _37.Record_Multi; + typeUrl: string; + encode(_: _37.Record_Multi, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _37.Record_Multi; fromJSON(_: any): _37.Record_Multi; toJSON(_: _37.Record_Multi): unknown; fromPartial(_: Partial<_37.Record_Multi>): _37.Record_Multi; @@ -3052,8 +3235,9 @@ export declare namespace cosmos { toProtoMsg(message: _37.Record_Multi): _37.Record_MultiProtoMsg; }; Record_Offline: { - encode(_: _37.Record_Offline, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _37.Record_Offline; + typeUrl: string; + encode(_: _37.Record_Offline, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _37.Record_Offline; fromJSON(_: any): _37.Record_Offline; toJSON(_: _37.Record_Offline): unknown; fromPartial(_: Partial<_37.Record_Offline>): _37.Record_Offline; @@ -3069,8 +3253,9 @@ export declare namespace cosmos { } const multisig: { LegacyAminoPubKey: { - encode(message: _38.LegacyAminoPubKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _38.LegacyAminoPubKey; + typeUrl: string; + encode(message: _38.LegacyAminoPubKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _38.LegacyAminoPubKey; fromJSON(object: any): _38.LegacyAminoPubKey; toJSON(message: _38.LegacyAminoPubKey): unknown; fromPartial(object: Partial<_38.LegacyAminoPubKey>): _38.LegacyAminoPubKey; @@ -3085,8 +3270,9 @@ export declare namespace cosmos { }; const secp256k1: { PubKey: { - encode(message: _39.PubKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _39.PubKey; + typeUrl: string; + encode(message: _39.PubKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _39.PubKey; fromJSON(object: any): _39.PubKey; toJSON(message: _39.PubKey): unknown; fromPartial(object: Partial<_39.PubKey>): _39.PubKey; @@ -3099,8 +3285,9 @@ export declare namespace cosmos { toProtoMsg(message: _39.PubKey): _39.PubKeyProtoMsg; }; PrivKey: { - encode(message: _39.PrivKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _39.PrivKey; + typeUrl: string; + encode(message: _39.PrivKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _39.PrivKey; fromJSON(object: any): _39.PrivKey; toJSON(message: _39.PrivKey): unknown; fromPartial(object: Partial<_39.PrivKey>): _39.PrivKey; @@ -3115,8 +3302,9 @@ export declare namespace cosmos { }; const secp256r1: { PubKey: { - encode(message: _40.PubKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _40.PubKey; + typeUrl: string; + encode(message: _40.PubKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _40.PubKey; fromJSON(object: any): _40.PubKey; toJSON(message: _40.PubKey): unknown; fromPartial(object: Partial<_40.PubKey>): _40.PubKey; @@ -3129,8 +3317,9 @@ export declare namespace cosmos { toProtoMsg(message: _40.PubKey): _40.PubKeyProtoMsg; }; PrivKey: { - encode(message: _40.PrivKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _40.PrivKey; + typeUrl: string; + encode(message: _40.PrivKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _40.PrivKey; fromJSON(object: any): _40.PrivKey; toJSON(message: _40.PrivKey): unknown; fromPartial(object: Partial<_40.PrivKey>): _40.PrivKey; @@ -3146,8 +3335,8 @@ export declare namespace cosmos { } namespace distribution { const v1beta1: { - MsgClientImpl: typeof _219.MsgClientImpl; - QueryClientImpl: typeof _203.QueryClientImpl; + MsgClientImpl: typeof _220.MsgClientImpl; + QueryClientImpl: typeof _204.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { params(request?: _43.QueryParamsRequest | undefined): Promise<_43.QueryParamsResponse>; validatorOutstandingRewards(request: _43.QueryValidatorOutstandingRewardsRequest): Promise<_43.QueryValidatorOutstandingRewardsResponse>; @@ -3159,7 +3348,7 @@ export declare namespace cosmos { delegatorWithdrawAddress(request: _43.QueryDelegatorWithdrawAddressRequest): Promise<_43.QueryDelegatorWithdrawAddressResponse>; communityPool(request?: _43.QueryCommunityPoolRequest | undefined): Promise<_43.QueryCommunityPoolResponse>; }; - LCDQueryClient: typeof _184.LCDQueryClient; + LCDQueryClient: typeof _185.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -3277,8 +3466,9 @@ export declare namespace cosmos { }; }; MsgSetWithdrawAddress: { - encode(message: _44.MsgSetWithdrawAddress, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgSetWithdrawAddress; + typeUrl: string; + encode(message: _44.MsgSetWithdrawAddress, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgSetWithdrawAddress; fromJSON(object: any): _44.MsgSetWithdrawAddress; toJSON(message: _44.MsgSetWithdrawAddress): unknown; fromPartial(object: Partial<_44.MsgSetWithdrawAddress>): _44.MsgSetWithdrawAddress; @@ -3291,8 +3481,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgSetWithdrawAddress): _44.MsgSetWithdrawAddressProtoMsg; }; MsgSetWithdrawAddressResponse: { - encode(_: _44.MsgSetWithdrawAddressResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgSetWithdrawAddressResponse; + typeUrl: string; + encode(_: _44.MsgSetWithdrawAddressResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgSetWithdrawAddressResponse; fromJSON(_: any): _44.MsgSetWithdrawAddressResponse; toJSON(_: _44.MsgSetWithdrawAddressResponse): unknown; fromPartial(_: Partial<_44.MsgSetWithdrawAddressResponse>): _44.MsgSetWithdrawAddressResponse; @@ -3305,8 +3496,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgSetWithdrawAddressResponse): _44.MsgSetWithdrawAddressResponseProtoMsg; }; MsgWithdrawDelegatorReward: { - encode(message: _44.MsgWithdrawDelegatorReward, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgWithdrawDelegatorReward; + typeUrl: string; + encode(message: _44.MsgWithdrawDelegatorReward, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgWithdrawDelegatorReward; fromJSON(object: any): _44.MsgWithdrawDelegatorReward; toJSON(message: _44.MsgWithdrawDelegatorReward): unknown; fromPartial(object: Partial<_44.MsgWithdrawDelegatorReward>): _44.MsgWithdrawDelegatorReward; @@ -3319,8 +3511,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgWithdrawDelegatorReward): _44.MsgWithdrawDelegatorRewardProtoMsg; }; MsgWithdrawDelegatorRewardResponse: { - encode(message: _44.MsgWithdrawDelegatorRewardResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgWithdrawDelegatorRewardResponse; + typeUrl: string; + encode(message: _44.MsgWithdrawDelegatorRewardResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgWithdrawDelegatorRewardResponse; fromJSON(object: any): _44.MsgWithdrawDelegatorRewardResponse; toJSON(message: _44.MsgWithdrawDelegatorRewardResponse): unknown; fromPartial(object: Partial<_44.MsgWithdrawDelegatorRewardResponse>): _44.MsgWithdrawDelegatorRewardResponse; @@ -3333,8 +3526,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgWithdrawDelegatorRewardResponse): _44.MsgWithdrawDelegatorRewardResponseProtoMsg; }; MsgWithdrawValidatorCommission: { - encode(message: _44.MsgWithdrawValidatorCommission, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgWithdrawValidatorCommission; + typeUrl: string; + encode(message: _44.MsgWithdrawValidatorCommission, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgWithdrawValidatorCommission; fromJSON(object: any): _44.MsgWithdrawValidatorCommission; toJSON(message: _44.MsgWithdrawValidatorCommission): unknown; fromPartial(object: Partial<_44.MsgWithdrawValidatorCommission>): _44.MsgWithdrawValidatorCommission; @@ -3347,8 +3541,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgWithdrawValidatorCommission): _44.MsgWithdrawValidatorCommissionProtoMsg; }; MsgWithdrawValidatorCommissionResponse: { - encode(message: _44.MsgWithdrawValidatorCommissionResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgWithdrawValidatorCommissionResponse; + typeUrl: string; + encode(message: _44.MsgWithdrawValidatorCommissionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgWithdrawValidatorCommissionResponse; fromJSON(object: any): _44.MsgWithdrawValidatorCommissionResponse; toJSON(message: _44.MsgWithdrawValidatorCommissionResponse): unknown; fromPartial(object: Partial<_44.MsgWithdrawValidatorCommissionResponse>): _44.MsgWithdrawValidatorCommissionResponse; @@ -3361,8 +3556,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgWithdrawValidatorCommissionResponse): _44.MsgWithdrawValidatorCommissionResponseProtoMsg; }; MsgFundCommunityPool: { - encode(message: _44.MsgFundCommunityPool, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgFundCommunityPool; + typeUrl: string; + encode(message: _44.MsgFundCommunityPool, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgFundCommunityPool; fromJSON(object: any): _44.MsgFundCommunityPool; toJSON(message: _44.MsgFundCommunityPool): unknown; fromPartial(object: Partial<_44.MsgFundCommunityPool>): _44.MsgFundCommunityPool; @@ -3375,8 +3571,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgFundCommunityPool): _44.MsgFundCommunityPoolProtoMsg; }; MsgFundCommunityPoolResponse: { - encode(_: _44.MsgFundCommunityPoolResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _44.MsgFundCommunityPoolResponse; + typeUrl: string; + encode(_: _44.MsgFundCommunityPoolResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _44.MsgFundCommunityPoolResponse; fromJSON(_: any): _44.MsgFundCommunityPoolResponse; toJSON(_: _44.MsgFundCommunityPoolResponse): unknown; fromPartial(_: Partial<_44.MsgFundCommunityPoolResponse>): _44.MsgFundCommunityPoolResponse; @@ -3389,8 +3586,9 @@ export declare namespace cosmos { toProtoMsg(message: _44.MsgFundCommunityPoolResponse): _44.MsgFundCommunityPoolResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _43.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryParamsRequest; + typeUrl: string; + encode(_: _43.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryParamsRequest; fromJSON(_: any): _43.QueryParamsRequest; toJSON(_: _43.QueryParamsRequest): unknown; fromPartial(_: Partial<_43.QueryParamsRequest>): _43.QueryParamsRequest; @@ -3403,8 +3601,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryParamsRequest): _43.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _43.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryParamsResponse; + typeUrl: string; + encode(message: _43.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryParamsResponse; fromJSON(object: any): _43.QueryParamsResponse; toJSON(message: _43.QueryParamsResponse): unknown; fromPartial(object: Partial<_43.QueryParamsResponse>): _43.QueryParamsResponse; @@ -3417,8 +3616,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryParamsResponse): _43.QueryParamsResponseProtoMsg; }; QueryValidatorOutstandingRewardsRequest: { - encode(message: _43.QueryValidatorOutstandingRewardsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryValidatorOutstandingRewardsRequest; + typeUrl: string; + encode(message: _43.QueryValidatorOutstandingRewardsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryValidatorOutstandingRewardsRequest; fromJSON(object: any): _43.QueryValidatorOutstandingRewardsRequest; toJSON(message: _43.QueryValidatorOutstandingRewardsRequest): unknown; fromPartial(object: Partial<_43.QueryValidatorOutstandingRewardsRequest>): _43.QueryValidatorOutstandingRewardsRequest; @@ -3431,8 +3631,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryValidatorOutstandingRewardsRequest): _43.QueryValidatorOutstandingRewardsRequestProtoMsg; }; QueryValidatorOutstandingRewardsResponse: { - encode(message: _43.QueryValidatorOutstandingRewardsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryValidatorOutstandingRewardsResponse; + typeUrl: string; + encode(message: _43.QueryValidatorOutstandingRewardsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryValidatorOutstandingRewardsResponse; fromJSON(object: any): _43.QueryValidatorOutstandingRewardsResponse; toJSON(message: _43.QueryValidatorOutstandingRewardsResponse): unknown; fromPartial(object: Partial<_43.QueryValidatorOutstandingRewardsResponse>): _43.QueryValidatorOutstandingRewardsResponse; @@ -3445,8 +3646,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryValidatorOutstandingRewardsResponse): _43.QueryValidatorOutstandingRewardsResponseProtoMsg; }; QueryValidatorCommissionRequest: { - encode(message: _43.QueryValidatorCommissionRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryValidatorCommissionRequest; + typeUrl: string; + encode(message: _43.QueryValidatorCommissionRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryValidatorCommissionRequest; fromJSON(object: any): _43.QueryValidatorCommissionRequest; toJSON(message: _43.QueryValidatorCommissionRequest): unknown; fromPartial(object: Partial<_43.QueryValidatorCommissionRequest>): _43.QueryValidatorCommissionRequest; @@ -3459,8 +3661,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryValidatorCommissionRequest): _43.QueryValidatorCommissionRequestProtoMsg; }; QueryValidatorCommissionResponse: { - encode(message: _43.QueryValidatorCommissionResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryValidatorCommissionResponse; + typeUrl: string; + encode(message: _43.QueryValidatorCommissionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryValidatorCommissionResponse; fromJSON(object: any): _43.QueryValidatorCommissionResponse; toJSON(message: _43.QueryValidatorCommissionResponse): unknown; fromPartial(object: Partial<_43.QueryValidatorCommissionResponse>): _43.QueryValidatorCommissionResponse; @@ -3473,8 +3676,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryValidatorCommissionResponse): _43.QueryValidatorCommissionResponseProtoMsg; }; QueryValidatorSlashesRequest: { - encode(message: _43.QueryValidatorSlashesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryValidatorSlashesRequest; + typeUrl: string; + encode(message: _43.QueryValidatorSlashesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryValidatorSlashesRequest; fromJSON(object: any): _43.QueryValidatorSlashesRequest; toJSON(message: _43.QueryValidatorSlashesRequest): unknown; fromPartial(object: Partial<_43.QueryValidatorSlashesRequest>): _43.QueryValidatorSlashesRequest; @@ -3487,8 +3691,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryValidatorSlashesRequest): _43.QueryValidatorSlashesRequestProtoMsg; }; QueryValidatorSlashesResponse: { - encode(message: _43.QueryValidatorSlashesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryValidatorSlashesResponse; + typeUrl: string; + encode(message: _43.QueryValidatorSlashesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryValidatorSlashesResponse; fromJSON(object: any): _43.QueryValidatorSlashesResponse; toJSON(message: _43.QueryValidatorSlashesResponse): unknown; fromPartial(object: Partial<_43.QueryValidatorSlashesResponse>): _43.QueryValidatorSlashesResponse; @@ -3501,8 +3706,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryValidatorSlashesResponse): _43.QueryValidatorSlashesResponseProtoMsg; }; QueryDelegationRewardsRequest: { - encode(message: _43.QueryDelegationRewardsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegationRewardsRequest; + typeUrl: string; + encode(message: _43.QueryDelegationRewardsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegationRewardsRequest; fromJSON(object: any): _43.QueryDelegationRewardsRequest; toJSON(message: _43.QueryDelegationRewardsRequest): unknown; fromPartial(object: Partial<_43.QueryDelegationRewardsRequest>): _43.QueryDelegationRewardsRequest; @@ -3515,8 +3721,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegationRewardsRequest): _43.QueryDelegationRewardsRequestProtoMsg; }; QueryDelegationRewardsResponse: { - encode(message: _43.QueryDelegationRewardsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegationRewardsResponse; + typeUrl: string; + encode(message: _43.QueryDelegationRewardsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegationRewardsResponse; fromJSON(object: any): _43.QueryDelegationRewardsResponse; toJSON(message: _43.QueryDelegationRewardsResponse): unknown; fromPartial(object: Partial<_43.QueryDelegationRewardsResponse>): _43.QueryDelegationRewardsResponse; @@ -3529,8 +3736,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegationRewardsResponse): _43.QueryDelegationRewardsResponseProtoMsg; }; QueryDelegationTotalRewardsRequest: { - encode(message: _43.QueryDelegationTotalRewardsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegationTotalRewardsRequest; + typeUrl: string; + encode(message: _43.QueryDelegationTotalRewardsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegationTotalRewardsRequest; fromJSON(object: any): _43.QueryDelegationTotalRewardsRequest; toJSON(message: _43.QueryDelegationTotalRewardsRequest): unknown; fromPartial(object: Partial<_43.QueryDelegationTotalRewardsRequest>): _43.QueryDelegationTotalRewardsRequest; @@ -3543,8 +3751,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegationTotalRewardsRequest): _43.QueryDelegationTotalRewardsRequestProtoMsg; }; QueryDelegationTotalRewardsResponse: { - encode(message: _43.QueryDelegationTotalRewardsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegationTotalRewardsResponse; + typeUrl: string; + encode(message: _43.QueryDelegationTotalRewardsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegationTotalRewardsResponse; fromJSON(object: any): _43.QueryDelegationTotalRewardsResponse; toJSON(message: _43.QueryDelegationTotalRewardsResponse): unknown; fromPartial(object: Partial<_43.QueryDelegationTotalRewardsResponse>): _43.QueryDelegationTotalRewardsResponse; @@ -3557,8 +3766,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegationTotalRewardsResponse): _43.QueryDelegationTotalRewardsResponseProtoMsg; }; QueryDelegatorValidatorsRequest: { - encode(message: _43.QueryDelegatorValidatorsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegatorValidatorsRequest; + typeUrl: string; + encode(message: _43.QueryDelegatorValidatorsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegatorValidatorsRequest; fromJSON(object: any): _43.QueryDelegatorValidatorsRequest; toJSON(message: _43.QueryDelegatorValidatorsRequest): unknown; fromPartial(object: Partial<_43.QueryDelegatorValidatorsRequest>): _43.QueryDelegatorValidatorsRequest; @@ -3571,8 +3781,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegatorValidatorsRequest): _43.QueryDelegatorValidatorsRequestProtoMsg; }; QueryDelegatorValidatorsResponse: { - encode(message: _43.QueryDelegatorValidatorsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegatorValidatorsResponse; + typeUrl: string; + encode(message: _43.QueryDelegatorValidatorsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegatorValidatorsResponse; fromJSON(object: any): _43.QueryDelegatorValidatorsResponse; toJSON(message: _43.QueryDelegatorValidatorsResponse): unknown; fromPartial(object: Partial<_43.QueryDelegatorValidatorsResponse>): _43.QueryDelegatorValidatorsResponse; @@ -3585,8 +3796,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegatorValidatorsResponse): _43.QueryDelegatorValidatorsResponseProtoMsg; }; QueryDelegatorWithdrawAddressRequest: { - encode(message: _43.QueryDelegatorWithdrawAddressRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegatorWithdrawAddressRequest; + typeUrl: string; + encode(message: _43.QueryDelegatorWithdrawAddressRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegatorWithdrawAddressRequest; fromJSON(object: any): _43.QueryDelegatorWithdrawAddressRequest; toJSON(message: _43.QueryDelegatorWithdrawAddressRequest): unknown; fromPartial(object: Partial<_43.QueryDelegatorWithdrawAddressRequest>): _43.QueryDelegatorWithdrawAddressRequest; @@ -3599,8 +3811,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegatorWithdrawAddressRequest): _43.QueryDelegatorWithdrawAddressRequestProtoMsg; }; QueryDelegatorWithdrawAddressResponse: { - encode(message: _43.QueryDelegatorWithdrawAddressResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryDelegatorWithdrawAddressResponse; + typeUrl: string; + encode(message: _43.QueryDelegatorWithdrawAddressResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryDelegatorWithdrawAddressResponse; fromJSON(object: any): _43.QueryDelegatorWithdrawAddressResponse; toJSON(message: _43.QueryDelegatorWithdrawAddressResponse): unknown; fromPartial(object: Partial<_43.QueryDelegatorWithdrawAddressResponse>): _43.QueryDelegatorWithdrawAddressResponse; @@ -3613,8 +3826,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryDelegatorWithdrawAddressResponse): _43.QueryDelegatorWithdrawAddressResponseProtoMsg; }; QueryCommunityPoolRequest: { - encode(_: _43.QueryCommunityPoolRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryCommunityPoolRequest; + typeUrl: string; + encode(_: _43.QueryCommunityPoolRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryCommunityPoolRequest; fromJSON(_: any): _43.QueryCommunityPoolRequest; toJSON(_: _43.QueryCommunityPoolRequest): unknown; fromPartial(_: Partial<_43.QueryCommunityPoolRequest>): _43.QueryCommunityPoolRequest; @@ -3627,8 +3841,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryCommunityPoolRequest): _43.QueryCommunityPoolRequestProtoMsg; }; QueryCommunityPoolResponse: { - encode(message: _43.QueryCommunityPoolResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _43.QueryCommunityPoolResponse; + typeUrl: string; + encode(message: _43.QueryCommunityPoolResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _43.QueryCommunityPoolResponse; fromJSON(object: any): _43.QueryCommunityPoolResponse; toJSON(message: _43.QueryCommunityPoolResponse): unknown; fromPartial(object: Partial<_43.QueryCommunityPoolResponse>): _43.QueryCommunityPoolResponse; @@ -3641,8 +3856,9 @@ export declare namespace cosmos { toProtoMsg(message: _43.QueryCommunityPoolResponse): _43.QueryCommunityPoolResponseProtoMsg; }; DelegatorWithdrawInfo: { - encode(message: _42.DelegatorWithdrawInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.DelegatorWithdrawInfo; + typeUrl: string; + encode(message: _42.DelegatorWithdrawInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.DelegatorWithdrawInfo; fromJSON(object: any): _42.DelegatorWithdrawInfo; toJSON(message: _42.DelegatorWithdrawInfo): unknown; fromPartial(object: Partial<_42.DelegatorWithdrawInfo>): _42.DelegatorWithdrawInfo; @@ -3655,8 +3871,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.DelegatorWithdrawInfo): _42.DelegatorWithdrawInfoProtoMsg; }; ValidatorOutstandingRewardsRecord: { - encode(message: _42.ValidatorOutstandingRewardsRecord, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.ValidatorOutstandingRewardsRecord; + typeUrl: string; + encode(message: _42.ValidatorOutstandingRewardsRecord, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.ValidatorOutstandingRewardsRecord; fromJSON(object: any): _42.ValidatorOutstandingRewardsRecord; toJSON(message: _42.ValidatorOutstandingRewardsRecord): unknown; fromPartial(object: Partial<_42.ValidatorOutstandingRewardsRecord>): _42.ValidatorOutstandingRewardsRecord; @@ -3669,8 +3886,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.ValidatorOutstandingRewardsRecord): _42.ValidatorOutstandingRewardsRecordProtoMsg; }; ValidatorAccumulatedCommissionRecord: { - encode(message: _42.ValidatorAccumulatedCommissionRecord, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.ValidatorAccumulatedCommissionRecord; + typeUrl: string; + encode(message: _42.ValidatorAccumulatedCommissionRecord, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.ValidatorAccumulatedCommissionRecord; fromJSON(object: any): _42.ValidatorAccumulatedCommissionRecord; toJSON(message: _42.ValidatorAccumulatedCommissionRecord): unknown; fromPartial(object: Partial<_42.ValidatorAccumulatedCommissionRecord>): _42.ValidatorAccumulatedCommissionRecord; @@ -3683,8 +3901,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.ValidatorAccumulatedCommissionRecord): _42.ValidatorAccumulatedCommissionRecordProtoMsg; }; ValidatorHistoricalRewardsRecord: { - encode(message: _42.ValidatorHistoricalRewardsRecord, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.ValidatorHistoricalRewardsRecord; + typeUrl: string; + encode(message: _42.ValidatorHistoricalRewardsRecord, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.ValidatorHistoricalRewardsRecord; fromJSON(object: any): _42.ValidatorHistoricalRewardsRecord; toJSON(message: _42.ValidatorHistoricalRewardsRecord): unknown; fromPartial(object: Partial<_42.ValidatorHistoricalRewardsRecord>): _42.ValidatorHistoricalRewardsRecord; @@ -3697,8 +3916,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.ValidatorHistoricalRewardsRecord): _42.ValidatorHistoricalRewardsRecordProtoMsg; }; ValidatorCurrentRewardsRecord: { - encode(message: _42.ValidatorCurrentRewardsRecord, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.ValidatorCurrentRewardsRecord; + typeUrl: string; + encode(message: _42.ValidatorCurrentRewardsRecord, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.ValidatorCurrentRewardsRecord; fromJSON(object: any): _42.ValidatorCurrentRewardsRecord; toJSON(message: _42.ValidatorCurrentRewardsRecord): unknown; fromPartial(object: Partial<_42.ValidatorCurrentRewardsRecord>): _42.ValidatorCurrentRewardsRecord; @@ -3711,8 +3931,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.ValidatorCurrentRewardsRecord): _42.ValidatorCurrentRewardsRecordProtoMsg; }; DelegatorStartingInfoRecord: { - encode(message: _42.DelegatorStartingInfoRecord, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.DelegatorStartingInfoRecord; + typeUrl: string; + encode(message: _42.DelegatorStartingInfoRecord, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.DelegatorStartingInfoRecord; fromJSON(object: any): _42.DelegatorStartingInfoRecord; toJSON(message: _42.DelegatorStartingInfoRecord): unknown; fromPartial(object: Partial<_42.DelegatorStartingInfoRecord>): _42.DelegatorStartingInfoRecord; @@ -3725,8 +3946,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.DelegatorStartingInfoRecord): _42.DelegatorStartingInfoRecordProtoMsg; }; ValidatorSlashEventRecord: { - encode(message: _42.ValidatorSlashEventRecord, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.ValidatorSlashEventRecord; + typeUrl: string; + encode(message: _42.ValidatorSlashEventRecord, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.ValidatorSlashEventRecord; fromJSON(object: any): _42.ValidatorSlashEventRecord; toJSON(message: _42.ValidatorSlashEventRecord): unknown; fromPartial(object: Partial<_42.ValidatorSlashEventRecord>): _42.ValidatorSlashEventRecord; @@ -3739,8 +3961,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.ValidatorSlashEventRecord): _42.ValidatorSlashEventRecordProtoMsg; }; GenesisState: { - encode(message: _42.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _42.GenesisState; + typeUrl: string; + encode(message: _42.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _42.GenesisState; fromJSON(object: any): _42.GenesisState; toJSON(message: _42.GenesisState): unknown; fromPartial(object: Partial<_42.GenesisState>): _42.GenesisState; @@ -3753,8 +3976,9 @@ export declare namespace cosmos { toProtoMsg(message: _42.GenesisState): _42.GenesisStateProtoMsg; }; Params: { - encode(message: _41.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.Params; + typeUrl: string; + encode(message: _41.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.Params; fromJSON(object: any): _41.Params; toJSON(message: _41.Params): unknown; fromPartial(object: Partial<_41.Params>): _41.Params; @@ -3767,8 +3991,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.Params): _41.ParamsProtoMsg; }; ValidatorHistoricalRewards: { - encode(message: _41.ValidatorHistoricalRewards, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.ValidatorHistoricalRewards; + typeUrl: string; + encode(message: _41.ValidatorHistoricalRewards, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.ValidatorHistoricalRewards; fromJSON(object: any): _41.ValidatorHistoricalRewards; toJSON(message: _41.ValidatorHistoricalRewards): unknown; fromPartial(object: Partial<_41.ValidatorHistoricalRewards>): _41.ValidatorHistoricalRewards; @@ -3781,8 +4006,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.ValidatorHistoricalRewards): _41.ValidatorHistoricalRewardsProtoMsg; }; ValidatorCurrentRewards: { - encode(message: _41.ValidatorCurrentRewards, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.ValidatorCurrentRewards; + typeUrl: string; + encode(message: _41.ValidatorCurrentRewards, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.ValidatorCurrentRewards; fromJSON(object: any): _41.ValidatorCurrentRewards; toJSON(message: _41.ValidatorCurrentRewards): unknown; fromPartial(object: Partial<_41.ValidatorCurrentRewards>): _41.ValidatorCurrentRewards; @@ -3795,8 +4021,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.ValidatorCurrentRewards): _41.ValidatorCurrentRewardsProtoMsg; }; ValidatorAccumulatedCommission: { - encode(message: _41.ValidatorAccumulatedCommission, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.ValidatorAccumulatedCommission; + typeUrl: string; + encode(message: _41.ValidatorAccumulatedCommission, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.ValidatorAccumulatedCommission; fromJSON(object: any): _41.ValidatorAccumulatedCommission; toJSON(message: _41.ValidatorAccumulatedCommission): unknown; fromPartial(object: Partial<_41.ValidatorAccumulatedCommission>): _41.ValidatorAccumulatedCommission; @@ -3809,8 +4036,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.ValidatorAccumulatedCommission): _41.ValidatorAccumulatedCommissionProtoMsg; }; ValidatorOutstandingRewards: { - encode(message: _41.ValidatorOutstandingRewards, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.ValidatorOutstandingRewards; + typeUrl: string; + encode(message: _41.ValidatorOutstandingRewards, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.ValidatorOutstandingRewards; fromJSON(object: any): _41.ValidatorOutstandingRewards; toJSON(message: _41.ValidatorOutstandingRewards): unknown; fromPartial(object: Partial<_41.ValidatorOutstandingRewards>): _41.ValidatorOutstandingRewards; @@ -3823,8 +4051,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.ValidatorOutstandingRewards): _41.ValidatorOutstandingRewardsProtoMsg; }; ValidatorSlashEvent: { - encode(message: _41.ValidatorSlashEvent, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.ValidatorSlashEvent; + typeUrl: string; + encode(message: _41.ValidatorSlashEvent, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.ValidatorSlashEvent; fromJSON(object: any): _41.ValidatorSlashEvent; toJSON(message: _41.ValidatorSlashEvent): unknown; fromPartial(object: Partial<_41.ValidatorSlashEvent>): _41.ValidatorSlashEvent; @@ -3837,8 +4066,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.ValidatorSlashEvent): _41.ValidatorSlashEventProtoMsg; }; ValidatorSlashEvents: { - encode(message: _41.ValidatorSlashEvents, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.ValidatorSlashEvents; + typeUrl: string; + encode(message: _41.ValidatorSlashEvents, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.ValidatorSlashEvents; fromJSON(object: any): _41.ValidatorSlashEvents; toJSON(message: _41.ValidatorSlashEvents): unknown; fromPartial(object: Partial<_41.ValidatorSlashEvents>): _41.ValidatorSlashEvents; @@ -3851,8 +4081,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.ValidatorSlashEvents): _41.ValidatorSlashEventsProtoMsg; }; FeePool: { - encode(message: _41.FeePool, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.FeePool; + typeUrl: string; + encode(message: _41.FeePool, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.FeePool; fromJSON(object: any): _41.FeePool; toJSON(message: _41.FeePool): unknown; fromPartial(object: Partial<_41.FeePool>): _41.FeePool; @@ -3865,8 +4096,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.FeePool): _41.FeePoolProtoMsg; }; CommunityPoolSpendProposal: { - encode(message: _41.CommunityPoolSpendProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.CommunityPoolSpendProposal; + typeUrl: string; + encode(message: _41.CommunityPoolSpendProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.CommunityPoolSpendProposal; fromJSON(object: any): _41.CommunityPoolSpendProposal; toJSON(message: _41.CommunityPoolSpendProposal): unknown; fromPartial(object: Partial<_41.CommunityPoolSpendProposal>): _41.CommunityPoolSpendProposal; @@ -3879,8 +4111,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.CommunityPoolSpendProposal): _41.CommunityPoolSpendProposalProtoMsg; }; DelegatorStartingInfo: { - encode(message: _41.DelegatorStartingInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.DelegatorStartingInfo; + typeUrl: string; + encode(message: _41.DelegatorStartingInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.DelegatorStartingInfo; fromJSON(object: any): _41.DelegatorStartingInfo; toJSON(message: _41.DelegatorStartingInfo): unknown; fromPartial(object: Partial<_41.DelegatorStartingInfo>): _41.DelegatorStartingInfo; @@ -3893,8 +4126,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.DelegatorStartingInfo): _41.DelegatorStartingInfoProtoMsg; }; DelegationDelegatorReward: { - encode(message: _41.DelegationDelegatorReward, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.DelegationDelegatorReward; + typeUrl: string; + encode(message: _41.DelegationDelegatorReward, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.DelegationDelegatorReward; fromJSON(object: any): _41.DelegationDelegatorReward; toJSON(message: _41.DelegationDelegatorReward): unknown; fromPartial(object: Partial<_41.DelegationDelegatorReward>): _41.DelegationDelegatorReward; @@ -3907,8 +4141,9 @@ export declare namespace cosmos { toProtoMsg(message: _41.DelegationDelegatorReward): _41.DelegationDelegatorRewardProtoMsg; }; CommunityPoolSpendProposalWithDeposit: { - encode(message: _41.CommunityPoolSpendProposalWithDeposit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _41.CommunityPoolSpendProposalWithDeposit; + typeUrl: string; + encode(message: _41.CommunityPoolSpendProposalWithDeposit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _41.CommunityPoolSpendProposalWithDeposit; fromJSON(object: any): _41.CommunityPoolSpendProposalWithDeposit; toJSON(message: _41.CommunityPoolSpendProposalWithDeposit): unknown; fromPartial(object: Partial<_41.CommunityPoolSpendProposalWithDeposit>): _41.CommunityPoolSpendProposalWithDeposit; @@ -3924,13 +4159,13 @@ export declare namespace cosmos { } namespace evidence { const v1beta1: { - MsgClientImpl: typeof _220.MsgClientImpl; - QueryClientImpl: typeof _204.QueryClientImpl; + MsgClientImpl: typeof _221.MsgClientImpl; + QueryClientImpl: typeof _205.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { evidence(request: _47.QueryEvidenceRequest): Promise<_47.QueryEvidenceResponse>; allEvidence(request?: _47.QueryAllEvidenceRequest | undefined): Promise<_47.QueryAllEvidenceResponse>; }; - LCDQueryClient: typeof _185.LCDQueryClient; + LCDQueryClient: typeof _186.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -3973,8 +4208,9 @@ export declare namespace cosmos { }; }; MsgSubmitEvidence: { - encode(message: _48.MsgSubmitEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _48.MsgSubmitEvidence; + typeUrl: string; + encode(message: _48.MsgSubmitEvidence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _48.MsgSubmitEvidence; fromJSON(object: any): _48.MsgSubmitEvidence; toJSON(message: _48.MsgSubmitEvidence): unknown; fromPartial(object: Partial<_48.MsgSubmitEvidence>): _48.MsgSubmitEvidence; @@ -3987,8 +4223,9 @@ export declare namespace cosmos { toProtoMsg(message: _48.MsgSubmitEvidence): _48.MsgSubmitEvidenceProtoMsg; }; MsgSubmitEvidenceResponse: { - encode(message: _48.MsgSubmitEvidenceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _48.MsgSubmitEvidenceResponse; + typeUrl: string; + encode(message: _48.MsgSubmitEvidenceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _48.MsgSubmitEvidenceResponse; fromJSON(object: any): _48.MsgSubmitEvidenceResponse; toJSON(message: _48.MsgSubmitEvidenceResponse): unknown; fromPartial(object: Partial<_48.MsgSubmitEvidenceResponse>): _48.MsgSubmitEvidenceResponse; @@ -4000,12 +4237,13 @@ export declare namespace cosmos { toProto(message: _48.MsgSubmitEvidenceResponse): Uint8Array; toProtoMsg(message: _48.MsgSubmitEvidenceResponse): _48.MsgSubmitEvidenceResponseProtoMsg; }; - Evidence_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any; + Evidence_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any; Evidence_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; Evidence_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; QueryEvidenceRequest: { - encode(message: _47.QueryEvidenceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _47.QueryEvidenceRequest; + typeUrl: string; + encode(message: _47.QueryEvidenceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _47.QueryEvidenceRequest; fromJSON(object: any): _47.QueryEvidenceRequest; toJSON(message: _47.QueryEvidenceRequest): unknown; fromPartial(object: Partial<_47.QueryEvidenceRequest>): _47.QueryEvidenceRequest; @@ -4018,8 +4256,9 @@ export declare namespace cosmos { toProtoMsg(message: _47.QueryEvidenceRequest): _47.QueryEvidenceRequestProtoMsg; }; QueryEvidenceResponse: { - encode(message: _47.QueryEvidenceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _47.QueryEvidenceResponse; + typeUrl: string; + encode(message: _47.QueryEvidenceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _47.QueryEvidenceResponse; fromJSON(object: any): _47.QueryEvidenceResponse; toJSON(message: _47.QueryEvidenceResponse): unknown; fromPartial(object: Partial<_47.QueryEvidenceResponse>): _47.QueryEvidenceResponse; @@ -4032,8 +4271,9 @@ export declare namespace cosmos { toProtoMsg(message: _47.QueryEvidenceResponse): _47.QueryEvidenceResponseProtoMsg; }; QueryAllEvidenceRequest: { - encode(message: _47.QueryAllEvidenceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _47.QueryAllEvidenceRequest; + typeUrl: string; + encode(message: _47.QueryAllEvidenceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _47.QueryAllEvidenceRequest; fromJSON(object: any): _47.QueryAllEvidenceRequest; toJSON(message: _47.QueryAllEvidenceRequest): unknown; fromPartial(object: Partial<_47.QueryAllEvidenceRequest>): _47.QueryAllEvidenceRequest; @@ -4046,8 +4286,9 @@ export declare namespace cosmos { toProtoMsg(message: _47.QueryAllEvidenceRequest): _47.QueryAllEvidenceRequestProtoMsg; }; QueryAllEvidenceResponse: { - encode(message: _47.QueryAllEvidenceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _47.QueryAllEvidenceResponse; + typeUrl: string; + encode(message: _47.QueryAllEvidenceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _47.QueryAllEvidenceResponse; fromJSON(object: any): _47.QueryAllEvidenceResponse; toJSON(message: _47.QueryAllEvidenceResponse): unknown; fromPartial(object: Partial<_47.QueryAllEvidenceResponse>): _47.QueryAllEvidenceResponse; @@ -4060,8 +4301,9 @@ export declare namespace cosmos { toProtoMsg(message: _47.QueryAllEvidenceResponse): _47.QueryAllEvidenceResponseProtoMsg; }; GenesisState: { - encode(message: _46.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _46.GenesisState; + typeUrl: string; + encode(message: _46.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _46.GenesisState; fromJSON(object: any): _46.GenesisState; toJSON(message: _46.GenesisState): unknown; fromPartial(object: Partial<_46.GenesisState>): _46.GenesisState; @@ -4074,8 +4316,9 @@ export declare namespace cosmos { toProtoMsg(message: _46.GenesisState): _46.GenesisStateProtoMsg; }; Equivocation: { - encode(message: _45.Equivocation, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _45.Equivocation; + typeUrl: string; + encode(message: _45.Equivocation, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _45.Equivocation; fromJSON(object: any): _45.Equivocation; toJSON(message: _45.Equivocation): unknown; fromPartial(object: Partial<_45.Equivocation>): _45.Equivocation; @@ -4091,14 +4334,14 @@ export declare namespace cosmos { } namespace feegrant { const v1beta1: { - MsgClientImpl: typeof _221.MsgClientImpl; - QueryClientImpl: typeof _205.QueryClientImpl; + MsgClientImpl: typeof _222.MsgClientImpl; + QueryClientImpl: typeof _206.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { allowance(request: _51.QueryAllowanceRequest): Promise<_51.QueryAllowanceResponse>; allowances(request: _51.QueryAllowancesRequest): Promise<_51.QueryAllowancesResponse>; allowancesByGranter(request: _51.QueryAllowancesByGranterRequest): Promise<_51.QueryAllowancesByGranterResponse>; }; - LCDQueryClient: typeof _186.LCDQueryClient; + LCDQueryClient: typeof _187.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -4166,8 +4409,9 @@ export declare namespace cosmos { }; }; MsgGrantAllowance: { - encode(message: _52.MsgGrantAllowance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _52.MsgGrantAllowance; + typeUrl: string; + encode(message: _52.MsgGrantAllowance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _52.MsgGrantAllowance; fromJSON(object: any): _52.MsgGrantAllowance; toJSON(message: _52.MsgGrantAllowance): unknown; fromPartial(object: Partial<_52.MsgGrantAllowance>): _52.MsgGrantAllowance; @@ -4180,8 +4424,9 @@ export declare namespace cosmos { toProtoMsg(message: _52.MsgGrantAllowance): _52.MsgGrantAllowanceProtoMsg; }; MsgGrantAllowanceResponse: { - encode(_: _52.MsgGrantAllowanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _52.MsgGrantAllowanceResponse; + typeUrl: string; + encode(_: _52.MsgGrantAllowanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _52.MsgGrantAllowanceResponse; fromJSON(_: any): _52.MsgGrantAllowanceResponse; toJSON(_: _52.MsgGrantAllowanceResponse): unknown; fromPartial(_: Partial<_52.MsgGrantAllowanceResponse>): _52.MsgGrantAllowanceResponse; @@ -4194,8 +4439,9 @@ export declare namespace cosmos { toProtoMsg(message: _52.MsgGrantAllowanceResponse): _52.MsgGrantAllowanceResponseProtoMsg; }; MsgRevokeAllowance: { - encode(message: _52.MsgRevokeAllowance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _52.MsgRevokeAllowance; + typeUrl: string; + encode(message: _52.MsgRevokeAllowance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _52.MsgRevokeAllowance; fromJSON(object: any): _52.MsgRevokeAllowance; toJSON(message: _52.MsgRevokeAllowance): unknown; fromPartial(object: Partial<_52.MsgRevokeAllowance>): _52.MsgRevokeAllowance; @@ -4208,8 +4454,9 @@ export declare namespace cosmos { toProtoMsg(message: _52.MsgRevokeAllowance): _52.MsgRevokeAllowanceProtoMsg; }; MsgRevokeAllowanceResponse: { - encode(_: _52.MsgRevokeAllowanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _52.MsgRevokeAllowanceResponse; + typeUrl: string; + encode(_: _52.MsgRevokeAllowanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _52.MsgRevokeAllowanceResponse; fromJSON(_: any): _52.MsgRevokeAllowanceResponse; toJSON(_: _52.MsgRevokeAllowanceResponse): unknown; fromPartial(_: Partial<_52.MsgRevokeAllowanceResponse>): _52.MsgRevokeAllowanceResponse; @@ -4221,12 +4468,13 @@ export declare namespace cosmos { toProto(message: _52.MsgRevokeAllowanceResponse): Uint8Array; toProtoMsg(message: _52.MsgRevokeAllowanceResponse): _52.MsgRevokeAllowanceResponseProtoMsg; }; - FeeAllowanceI_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _49.BasicAllowance | _49.PeriodicAllowance | _49.AllowedMsgAllowance; + FeeAllowanceI_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _49.BasicAllowance | _49.PeriodicAllowance | _49.AllowedMsgAllowance; FeeAllowanceI_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; FeeAllowanceI_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; QueryAllowanceRequest: { - encode(message: _51.QueryAllowanceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _51.QueryAllowanceRequest; + typeUrl: string; + encode(message: _51.QueryAllowanceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _51.QueryAllowanceRequest; fromJSON(object: any): _51.QueryAllowanceRequest; toJSON(message: _51.QueryAllowanceRequest): unknown; fromPartial(object: Partial<_51.QueryAllowanceRequest>): _51.QueryAllowanceRequest; @@ -4239,8 +4487,9 @@ export declare namespace cosmos { toProtoMsg(message: _51.QueryAllowanceRequest): _51.QueryAllowanceRequestProtoMsg; }; QueryAllowanceResponse: { - encode(message: _51.QueryAllowanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _51.QueryAllowanceResponse; + typeUrl: string; + encode(message: _51.QueryAllowanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _51.QueryAllowanceResponse; fromJSON(object: any): _51.QueryAllowanceResponse; toJSON(message: _51.QueryAllowanceResponse): unknown; fromPartial(object: Partial<_51.QueryAllowanceResponse>): _51.QueryAllowanceResponse; @@ -4253,8 +4502,9 @@ export declare namespace cosmos { toProtoMsg(message: _51.QueryAllowanceResponse): _51.QueryAllowanceResponseProtoMsg; }; QueryAllowancesRequest: { - encode(message: _51.QueryAllowancesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _51.QueryAllowancesRequest; + typeUrl: string; + encode(message: _51.QueryAllowancesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _51.QueryAllowancesRequest; fromJSON(object: any): _51.QueryAllowancesRequest; toJSON(message: _51.QueryAllowancesRequest): unknown; fromPartial(object: Partial<_51.QueryAllowancesRequest>): _51.QueryAllowancesRequest; @@ -4267,8 +4517,9 @@ export declare namespace cosmos { toProtoMsg(message: _51.QueryAllowancesRequest): _51.QueryAllowancesRequestProtoMsg; }; QueryAllowancesResponse: { - encode(message: _51.QueryAllowancesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _51.QueryAllowancesResponse; + typeUrl: string; + encode(message: _51.QueryAllowancesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _51.QueryAllowancesResponse; fromJSON(object: any): _51.QueryAllowancesResponse; toJSON(message: _51.QueryAllowancesResponse): unknown; fromPartial(object: Partial<_51.QueryAllowancesResponse>): _51.QueryAllowancesResponse; @@ -4281,8 +4532,9 @@ export declare namespace cosmos { toProtoMsg(message: _51.QueryAllowancesResponse): _51.QueryAllowancesResponseProtoMsg; }; QueryAllowancesByGranterRequest: { - encode(message: _51.QueryAllowancesByGranterRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _51.QueryAllowancesByGranterRequest; + typeUrl: string; + encode(message: _51.QueryAllowancesByGranterRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _51.QueryAllowancesByGranterRequest; fromJSON(object: any): _51.QueryAllowancesByGranterRequest; toJSON(message: _51.QueryAllowancesByGranterRequest): unknown; fromPartial(object: Partial<_51.QueryAllowancesByGranterRequest>): _51.QueryAllowancesByGranterRequest; @@ -4295,8 +4547,9 @@ export declare namespace cosmos { toProtoMsg(message: _51.QueryAllowancesByGranterRequest): _51.QueryAllowancesByGranterRequestProtoMsg; }; QueryAllowancesByGranterResponse: { - encode(message: _51.QueryAllowancesByGranterResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _51.QueryAllowancesByGranterResponse; + typeUrl: string; + encode(message: _51.QueryAllowancesByGranterResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _51.QueryAllowancesByGranterResponse; fromJSON(object: any): _51.QueryAllowancesByGranterResponse; toJSON(message: _51.QueryAllowancesByGranterResponse): unknown; fromPartial(object: Partial<_51.QueryAllowancesByGranterResponse>): _51.QueryAllowancesByGranterResponse; @@ -4309,8 +4562,9 @@ export declare namespace cosmos { toProtoMsg(message: _51.QueryAllowancesByGranterResponse): _51.QueryAllowancesByGranterResponseProtoMsg; }; GenesisState: { - encode(message: _50.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _50.GenesisState; + typeUrl: string; + encode(message: _50.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _50.GenesisState; fromJSON(object: any): _50.GenesisState; toJSON(message: _50.GenesisState): unknown; fromPartial(object: Partial<_50.GenesisState>): _50.GenesisState; @@ -4323,8 +4577,9 @@ export declare namespace cosmos { toProtoMsg(message: _50.GenesisState): _50.GenesisStateProtoMsg; }; BasicAllowance: { - encode(message: _49.BasicAllowance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _49.BasicAllowance; + typeUrl: string; + encode(message: _49.BasicAllowance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _49.BasicAllowance; fromJSON(object: any): _49.BasicAllowance; toJSON(message: _49.BasicAllowance): unknown; fromPartial(object: Partial<_49.BasicAllowance>): _49.BasicAllowance; @@ -4337,8 +4592,9 @@ export declare namespace cosmos { toProtoMsg(message: _49.BasicAllowance): _49.BasicAllowanceProtoMsg; }; PeriodicAllowance: { - encode(message: _49.PeriodicAllowance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _49.PeriodicAllowance; + typeUrl: string; + encode(message: _49.PeriodicAllowance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _49.PeriodicAllowance; fromJSON(object: any): _49.PeriodicAllowance; toJSON(message: _49.PeriodicAllowance): unknown; fromPartial(object: Partial<_49.PeriodicAllowance>): _49.PeriodicAllowance; @@ -4351,8 +4607,9 @@ export declare namespace cosmos { toProtoMsg(message: _49.PeriodicAllowance): _49.PeriodicAllowanceProtoMsg; }; AllowedMsgAllowance: { - encode(message: _49.AllowedMsgAllowance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _49.AllowedMsgAllowance; + typeUrl: string; + encode(message: _49.AllowedMsgAllowance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _49.AllowedMsgAllowance; fromJSON(object: any): _49.AllowedMsgAllowance; toJSON(message: _49.AllowedMsgAllowance): unknown; fromPartial(object: Partial<_49.AllowedMsgAllowance>): _49.AllowedMsgAllowance; @@ -4365,8 +4622,9 @@ export declare namespace cosmos { toProtoMsg(message: _49.AllowedMsgAllowance): _49.AllowedMsgAllowanceProtoMsg; }; Grant: { - encode(message: _49.Grant, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _49.Grant; + typeUrl: string; + encode(message: _49.Grant, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _49.Grant; fromJSON(object: any): _49.Grant; toJSON(message: _49.Grant): unknown; fromPartial(object: Partial<_49.Grant>): _49.Grant; @@ -4383,8 +4641,9 @@ export declare namespace cosmos { namespace genutil { const v1beta1: { GenesisState: { - encode(message: _53.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _53.GenesisState; + typeUrl: string; + encode(message: _53.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _53.GenesisState; fromJSON(object: any): _53.GenesisState; toJSON(message: _53.GenesisState): unknown; fromPartial(object: Partial<_53.GenesisState>): _53.GenesisState; @@ -4400,8 +4659,8 @@ export declare namespace cosmos { } namespace gov { const v1: { - MsgClientImpl: typeof _222.MsgClientImpl; - QueryClientImpl: typeof _206.QueryClientImpl; + MsgClientImpl: typeof _223.MsgClientImpl; + QueryClientImpl: typeof _207.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { proposal(request: _56.QueryProposalRequest): Promise<_56.QueryProposalResponse>; proposals(request: _56.QueryProposalsRequest): Promise<_56.QueryProposalsResponse>; @@ -4412,7 +4671,7 @@ export declare namespace cosmos { deposits(request: _56.QueryDepositsRequest): Promise<_56.QueryDepositsResponse>; tallyResult(request: _56.QueryTallyResultRequest): Promise<_56.QueryTallyResultResponse>; }; - LCDQueryClient: typeof _187.LCDQueryClient; + LCDQueryClient: typeof _188.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -4555,8 +4814,9 @@ export declare namespace cosmos { }; }; MsgSubmitProposal: { - encode(message: _57.MsgSubmitProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgSubmitProposal; + typeUrl: string; + encode(message: _57.MsgSubmitProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgSubmitProposal; fromJSON(object: any): _57.MsgSubmitProposal; toJSON(message: _57.MsgSubmitProposal): unknown; fromPartial(object: Partial<_57.MsgSubmitProposal>): _57.MsgSubmitProposal; @@ -4569,8 +4829,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgSubmitProposal): _57.MsgSubmitProposalProtoMsg; }; MsgSubmitProposalResponse: { - encode(message: _57.MsgSubmitProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgSubmitProposalResponse; + typeUrl: string; + encode(message: _57.MsgSubmitProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgSubmitProposalResponse; fromJSON(object: any): _57.MsgSubmitProposalResponse; toJSON(message: _57.MsgSubmitProposalResponse): unknown; fromPartial(object: Partial<_57.MsgSubmitProposalResponse>): _57.MsgSubmitProposalResponse; @@ -4583,8 +4844,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgSubmitProposalResponse): _57.MsgSubmitProposalResponseProtoMsg; }; MsgExecLegacyContent: { - encode(message: _57.MsgExecLegacyContent, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgExecLegacyContent; + typeUrl: string; + encode(message: _57.MsgExecLegacyContent, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgExecLegacyContent; fromJSON(object: any): _57.MsgExecLegacyContent; toJSON(message: _57.MsgExecLegacyContent): unknown; fromPartial(object: Partial<_57.MsgExecLegacyContent>): _57.MsgExecLegacyContent; @@ -4597,8 +4859,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgExecLegacyContent): _57.MsgExecLegacyContentProtoMsg; }; MsgExecLegacyContentResponse: { - encode(_: _57.MsgExecLegacyContentResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgExecLegacyContentResponse; + typeUrl: string; + encode(_: _57.MsgExecLegacyContentResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgExecLegacyContentResponse; fromJSON(_: any): _57.MsgExecLegacyContentResponse; toJSON(_: _57.MsgExecLegacyContentResponse): unknown; fromPartial(_: Partial<_57.MsgExecLegacyContentResponse>): _57.MsgExecLegacyContentResponse; @@ -4611,8 +4874,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgExecLegacyContentResponse): _57.MsgExecLegacyContentResponseProtoMsg; }; MsgVote: { - encode(message: _57.MsgVote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgVote; + typeUrl: string; + encode(message: _57.MsgVote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgVote; fromJSON(object: any): _57.MsgVote; toJSON(message: _57.MsgVote): unknown; fromPartial(object: Partial<_57.MsgVote>): _57.MsgVote; @@ -4625,8 +4889,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgVote): _57.MsgVoteProtoMsg; }; MsgVoteResponse: { - encode(_: _57.MsgVoteResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgVoteResponse; + typeUrl: string; + encode(_: _57.MsgVoteResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgVoteResponse; fromJSON(_: any): _57.MsgVoteResponse; toJSON(_: _57.MsgVoteResponse): unknown; fromPartial(_: Partial<_57.MsgVoteResponse>): _57.MsgVoteResponse; @@ -4639,8 +4904,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgVoteResponse): _57.MsgVoteResponseProtoMsg; }; MsgVoteWeighted: { - encode(message: _57.MsgVoteWeighted, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgVoteWeighted; + typeUrl: string; + encode(message: _57.MsgVoteWeighted, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgVoteWeighted; fromJSON(object: any): _57.MsgVoteWeighted; toJSON(message: _57.MsgVoteWeighted): unknown; fromPartial(object: Partial<_57.MsgVoteWeighted>): _57.MsgVoteWeighted; @@ -4653,8 +4919,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgVoteWeighted): _57.MsgVoteWeightedProtoMsg; }; MsgVoteWeightedResponse: { - encode(_: _57.MsgVoteWeightedResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgVoteWeightedResponse; + typeUrl: string; + encode(_: _57.MsgVoteWeightedResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgVoteWeightedResponse; fromJSON(_: any): _57.MsgVoteWeightedResponse; toJSON(_: _57.MsgVoteWeightedResponse): unknown; fromPartial(_: Partial<_57.MsgVoteWeightedResponse>): _57.MsgVoteWeightedResponse; @@ -4667,8 +4934,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgVoteWeightedResponse): _57.MsgVoteWeightedResponseProtoMsg; }; MsgDeposit: { - encode(message: _57.MsgDeposit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgDeposit; + typeUrl: string; + encode(message: _57.MsgDeposit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgDeposit; fromJSON(object: any): _57.MsgDeposit; toJSON(message: _57.MsgDeposit): unknown; fromPartial(object: Partial<_57.MsgDeposit>): _57.MsgDeposit; @@ -4681,8 +4949,9 @@ export declare namespace cosmos { toProtoMsg(message: _57.MsgDeposit): _57.MsgDepositProtoMsg; }; MsgDepositResponse: { - encode(_: _57.MsgDepositResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _57.MsgDepositResponse; + typeUrl: string; + encode(_: _57.MsgDepositResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _57.MsgDepositResponse; fromJSON(_: any): _57.MsgDepositResponse; toJSON(_: _57.MsgDepositResponse): unknown; fromPartial(_: Partial<_57.MsgDepositResponse>): _57.MsgDepositResponse; @@ -4694,12 +4963,13 @@ export declare namespace cosmos { toProto(message: _57.MsgDepositResponse): Uint8Array; toProtoMsg(message: _57.MsgDepositResponse): _57.MsgDepositResponseProtoMsg; }; - Content_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _59.TextProposal; + Content_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _59.TextProposal; Content_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; Content_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; QueryProposalRequest: { - encode(message: _56.QueryProposalRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryProposalRequest; + typeUrl: string; + encode(message: _56.QueryProposalRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryProposalRequest; fromJSON(object: any): _56.QueryProposalRequest; toJSON(message: _56.QueryProposalRequest): unknown; fromPartial(object: Partial<_56.QueryProposalRequest>): _56.QueryProposalRequest; @@ -4712,8 +4982,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryProposalRequest): _56.QueryProposalRequestProtoMsg; }; QueryProposalResponse: { - encode(message: _56.QueryProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryProposalResponse; + typeUrl: string; + encode(message: _56.QueryProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryProposalResponse; fromJSON(object: any): _56.QueryProposalResponse; toJSON(message: _56.QueryProposalResponse): unknown; fromPartial(object: Partial<_56.QueryProposalResponse>): _56.QueryProposalResponse; @@ -4726,8 +4997,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryProposalResponse): _56.QueryProposalResponseProtoMsg; }; QueryProposalsRequest: { - encode(message: _56.QueryProposalsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryProposalsRequest; + typeUrl: string; + encode(message: _56.QueryProposalsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryProposalsRequest; fromJSON(object: any): _56.QueryProposalsRequest; toJSON(message: _56.QueryProposalsRequest): unknown; fromPartial(object: Partial<_56.QueryProposalsRequest>): _56.QueryProposalsRequest; @@ -4740,8 +5012,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryProposalsRequest): _56.QueryProposalsRequestProtoMsg; }; QueryProposalsResponse: { - encode(message: _56.QueryProposalsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryProposalsResponse; + typeUrl: string; + encode(message: _56.QueryProposalsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryProposalsResponse; fromJSON(object: any): _56.QueryProposalsResponse; toJSON(message: _56.QueryProposalsResponse): unknown; fromPartial(object: Partial<_56.QueryProposalsResponse>): _56.QueryProposalsResponse; @@ -4754,8 +5027,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryProposalsResponse): _56.QueryProposalsResponseProtoMsg; }; QueryVoteRequest: { - encode(message: _56.QueryVoteRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryVoteRequest; + typeUrl: string; + encode(message: _56.QueryVoteRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryVoteRequest; fromJSON(object: any): _56.QueryVoteRequest; toJSON(message: _56.QueryVoteRequest): unknown; fromPartial(object: Partial<_56.QueryVoteRequest>): _56.QueryVoteRequest; @@ -4768,8 +5042,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryVoteRequest): _56.QueryVoteRequestProtoMsg; }; QueryVoteResponse: { - encode(message: _56.QueryVoteResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryVoteResponse; + typeUrl: string; + encode(message: _56.QueryVoteResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryVoteResponse; fromJSON(object: any): _56.QueryVoteResponse; toJSON(message: _56.QueryVoteResponse): unknown; fromPartial(object: Partial<_56.QueryVoteResponse>): _56.QueryVoteResponse; @@ -4782,8 +5057,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryVoteResponse): _56.QueryVoteResponseProtoMsg; }; QueryVotesRequest: { - encode(message: _56.QueryVotesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryVotesRequest; + typeUrl: string; + encode(message: _56.QueryVotesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryVotesRequest; fromJSON(object: any): _56.QueryVotesRequest; toJSON(message: _56.QueryVotesRequest): unknown; fromPartial(object: Partial<_56.QueryVotesRequest>): _56.QueryVotesRequest; @@ -4796,8 +5072,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryVotesRequest): _56.QueryVotesRequestProtoMsg; }; QueryVotesResponse: { - encode(message: _56.QueryVotesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryVotesResponse; + typeUrl: string; + encode(message: _56.QueryVotesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryVotesResponse; fromJSON(object: any): _56.QueryVotesResponse; toJSON(message: _56.QueryVotesResponse): unknown; fromPartial(object: Partial<_56.QueryVotesResponse>): _56.QueryVotesResponse; @@ -4810,8 +5087,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryVotesResponse): _56.QueryVotesResponseProtoMsg; }; QueryParamsRequest: { - encode(message: _56.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryParamsRequest; + typeUrl: string; + encode(message: _56.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryParamsRequest; fromJSON(object: any): _56.QueryParamsRequest; toJSON(message: _56.QueryParamsRequest): unknown; fromPartial(object: Partial<_56.QueryParamsRequest>): _56.QueryParamsRequest; @@ -4824,8 +5102,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryParamsRequest): _56.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _56.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryParamsResponse; + typeUrl: string; + encode(message: _56.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryParamsResponse; fromJSON(object: any): _56.QueryParamsResponse; toJSON(message: _56.QueryParamsResponse): unknown; fromPartial(object: Partial<_56.QueryParamsResponse>): _56.QueryParamsResponse; @@ -4838,8 +5117,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryParamsResponse): _56.QueryParamsResponseProtoMsg; }; QueryDepositRequest: { - encode(message: _56.QueryDepositRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryDepositRequest; + typeUrl: string; + encode(message: _56.QueryDepositRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryDepositRequest; fromJSON(object: any): _56.QueryDepositRequest; toJSON(message: _56.QueryDepositRequest): unknown; fromPartial(object: Partial<_56.QueryDepositRequest>): _56.QueryDepositRequest; @@ -4852,8 +5132,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryDepositRequest): _56.QueryDepositRequestProtoMsg; }; QueryDepositResponse: { - encode(message: _56.QueryDepositResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryDepositResponse; + typeUrl: string; + encode(message: _56.QueryDepositResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryDepositResponse; fromJSON(object: any): _56.QueryDepositResponse; toJSON(message: _56.QueryDepositResponse): unknown; fromPartial(object: Partial<_56.QueryDepositResponse>): _56.QueryDepositResponse; @@ -4866,8 +5147,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryDepositResponse): _56.QueryDepositResponseProtoMsg; }; QueryDepositsRequest: { - encode(message: _56.QueryDepositsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryDepositsRequest; + typeUrl: string; + encode(message: _56.QueryDepositsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryDepositsRequest; fromJSON(object: any): _56.QueryDepositsRequest; toJSON(message: _56.QueryDepositsRequest): unknown; fromPartial(object: Partial<_56.QueryDepositsRequest>): _56.QueryDepositsRequest; @@ -4880,8 +5162,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryDepositsRequest): _56.QueryDepositsRequestProtoMsg; }; QueryDepositsResponse: { - encode(message: _56.QueryDepositsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryDepositsResponse; + typeUrl: string; + encode(message: _56.QueryDepositsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryDepositsResponse; fromJSON(object: any): _56.QueryDepositsResponse; toJSON(message: _56.QueryDepositsResponse): unknown; fromPartial(object: Partial<_56.QueryDepositsResponse>): _56.QueryDepositsResponse; @@ -4894,8 +5177,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryDepositsResponse): _56.QueryDepositsResponseProtoMsg; }; QueryTallyResultRequest: { - encode(message: _56.QueryTallyResultRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryTallyResultRequest; + typeUrl: string; + encode(message: _56.QueryTallyResultRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryTallyResultRequest; fromJSON(object: any): _56.QueryTallyResultRequest; toJSON(message: _56.QueryTallyResultRequest): unknown; fromPartial(object: Partial<_56.QueryTallyResultRequest>): _56.QueryTallyResultRequest; @@ -4908,8 +5192,9 @@ export declare namespace cosmos { toProtoMsg(message: _56.QueryTallyResultRequest): _56.QueryTallyResultRequestProtoMsg; }; QueryTallyResultResponse: { - encode(message: _56.QueryTallyResultResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _56.QueryTallyResultResponse; + typeUrl: string; + encode(message: _56.QueryTallyResultResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _56.QueryTallyResultResponse; fromJSON(object: any): _56.QueryTallyResultResponse; toJSON(message: _56.QueryTallyResultResponse): unknown; fromPartial(object: Partial<_56.QueryTallyResultResponse>): _56.QueryTallyResultResponse; @@ -4932,8 +5217,9 @@ export declare namespace cosmos { ProposalStatusSDKType: typeof _55.ProposalStatus; ProposalStatusAmino: typeof _55.ProposalStatus; WeightedVoteOption: { - encode(message: _55.WeightedVoteOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.WeightedVoteOption; + typeUrl: string; + encode(message: _55.WeightedVoteOption, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.WeightedVoteOption; fromJSON(object: any): _55.WeightedVoteOption; toJSON(message: _55.WeightedVoteOption): unknown; fromPartial(object: Partial<_55.WeightedVoteOption>): _55.WeightedVoteOption; @@ -4946,8 +5232,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.WeightedVoteOption): _55.WeightedVoteOptionProtoMsg; }; Deposit: { - encode(message: _55.Deposit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.Deposit; + typeUrl: string; + encode(message: _55.Deposit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.Deposit; fromJSON(object: any): _55.Deposit; toJSON(message: _55.Deposit): unknown; fromPartial(object: Partial<_55.Deposit>): _55.Deposit; @@ -4960,8 +5247,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.Deposit): _55.DepositProtoMsg; }; Proposal: { - encode(message: _55.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.Proposal; + typeUrl: string; + encode(message: _55.Proposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.Proposal; fromJSON(object: any): _55.Proposal; toJSON(message: _55.Proposal): unknown; fromPartial(object: Partial<_55.Proposal>): _55.Proposal; @@ -4974,8 +5262,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.Proposal): _55.ProposalProtoMsg; }; TallyResult: { - encode(message: _55.TallyResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.TallyResult; + typeUrl: string; + encode(message: _55.TallyResult, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.TallyResult; fromJSON(object: any): _55.TallyResult; toJSON(message: _55.TallyResult): unknown; fromPartial(object: Partial<_55.TallyResult>): _55.TallyResult; @@ -4988,8 +5277,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.TallyResult): _55.TallyResultProtoMsg; }; Vote: { - encode(message: _55.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.Vote; + typeUrl: string; + encode(message: _55.Vote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.Vote; fromJSON(object: any): _55.Vote; toJSON(message: _55.Vote): unknown; fromPartial(object: Partial<_55.Vote>): _55.Vote; @@ -5002,8 +5292,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.Vote): _55.VoteProtoMsg; }; DepositParams: { - encode(message: _55.DepositParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.DepositParams; + typeUrl: string; + encode(message: _55.DepositParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.DepositParams; fromJSON(object: any): _55.DepositParams; toJSON(message: _55.DepositParams): unknown; fromPartial(object: Partial<_55.DepositParams>): _55.DepositParams; @@ -5016,8 +5307,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.DepositParams): _55.DepositParamsProtoMsg; }; VotingParams: { - encode(message: _55.VotingParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.VotingParams; + typeUrl: string; + encode(message: _55.VotingParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.VotingParams; fromJSON(object: any): _55.VotingParams; toJSON(message: _55.VotingParams): unknown; fromPartial(object: Partial<_55.VotingParams>): _55.VotingParams; @@ -5030,8 +5322,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.VotingParams): _55.VotingParamsProtoMsg; }; TallyParams: { - encode(message: _55.TallyParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _55.TallyParams; + typeUrl: string; + encode(message: _55.TallyParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _55.TallyParams; fromJSON(object: any): _55.TallyParams; toJSON(message: _55.TallyParams): unknown; fromPartial(object: Partial<_55.TallyParams>): _55.TallyParams; @@ -5044,8 +5337,9 @@ export declare namespace cosmos { toProtoMsg(message: _55.TallyParams): _55.TallyParamsProtoMsg; }; GenesisState: { - encode(message: _54.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _54.GenesisState; + typeUrl: string; + encode(message: _54.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _54.GenesisState; fromJSON(object: any): _54.GenesisState; toJSON(message: _54.GenesisState): unknown; fromPartial(object: Partial<_54.GenesisState>): _54.GenesisState; @@ -5059,8 +5353,8 @@ export declare namespace cosmos { }; }; const v1beta1: { - MsgClientImpl: typeof _223.MsgClientImpl; - QueryClientImpl: typeof _207.QueryClientImpl; + MsgClientImpl: typeof _224.MsgClientImpl; + QueryClientImpl: typeof _208.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { proposal(request: _60.QueryProposalRequest): Promise<_60.QueryProposalResponse>; proposals(request: _60.QueryProposalsRequest): Promise<_60.QueryProposalsResponse>; @@ -5071,7 +5365,7 @@ export declare namespace cosmos { deposits(request: _60.QueryDepositsRequest): Promise<_60.QueryDepositsResponse>; tallyResult(request: _60.QueryTallyResultRequest): Promise<_60.QueryTallyResultResponse>; }; - LCDQueryClient: typeof _188.LCDQueryClient; + LCDQueryClient: typeof _189.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -5189,8 +5483,9 @@ export declare namespace cosmos { }; }; MsgSubmitProposal: { - encode(message: _61.MsgSubmitProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgSubmitProposal; + typeUrl: string; + encode(message: _61.MsgSubmitProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgSubmitProposal; fromJSON(object: any): _61.MsgSubmitProposal; toJSON(message: _61.MsgSubmitProposal): unknown; fromPartial(object: Partial<_61.MsgSubmitProposal>): _61.MsgSubmitProposal; @@ -5203,8 +5498,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgSubmitProposal): _61.MsgSubmitProposalProtoMsg; }; MsgSubmitProposalResponse: { - encode(message: _61.MsgSubmitProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgSubmitProposalResponse; + typeUrl: string; + encode(message: _61.MsgSubmitProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgSubmitProposalResponse; fromJSON(object: any): _61.MsgSubmitProposalResponse; toJSON(message: _61.MsgSubmitProposalResponse): unknown; fromPartial(object: Partial<_61.MsgSubmitProposalResponse>): _61.MsgSubmitProposalResponse; @@ -5217,8 +5513,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgSubmitProposalResponse): _61.MsgSubmitProposalResponseProtoMsg; }; MsgVote: { - encode(message: _61.MsgVote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgVote; + typeUrl: string; + encode(message: _61.MsgVote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgVote; fromJSON(object: any): _61.MsgVote; toJSON(message: _61.MsgVote): unknown; fromPartial(object: Partial<_61.MsgVote>): _61.MsgVote; @@ -5231,8 +5528,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgVote): _61.MsgVoteProtoMsg; }; MsgVoteResponse: { - encode(_: _61.MsgVoteResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgVoteResponse; + typeUrl: string; + encode(_: _61.MsgVoteResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgVoteResponse; fromJSON(_: any): _61.MsgVoteResponse; toJSON(_: _61.MsgVoteResponse): unknown; fromPartial(_: Partial<_61.MsgVoteResponse>): _61.MsgVoteResponse; @@ -5245,8 +5543,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgVoteResponse): _61.MsgVoteResponseProtoMsg; }; MsgVoteWeighted: { - encode(message: _61.MsgVoteWeighted, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgVoteWeighted; + typeUrl: string; + encode(message: _61.MsgVoteWeighted, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgVoteWeighted; fromJSON(object: any): _61.MsgVoteWeighted; toJSON(message: _61.MsgVoteWeighted): unknown; fromPartial(object: Partial<_61.MsgVoteWeighted>): _61.MsgVoteWeighted; @@ -5259,8 +5558,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgVoteWeighted): _61.MsgVoteWeightedProtoMsg; }; MsgVoteWeightedResponse: { - encode(_: _61.MsgVoteWeightedResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgVoteWeightedResponse; + typeUrl: string; + encode(_: _61.MsgVoteWeightedResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgVoteWeightedResponse; fromJSON(_: any): _61.MsgVoteWeightedResponse; toJSON(_: _61.MsgVoteWeightedResponse): unknown; fromPartial(_: Partial<_61.MsgVoteWeightedResponse>): _61.MsgVoteWeightedResponse; @@ -5273,8 +5573,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgVoteWeightedResponse): _61.MsgVoteWeightedResponseProtoMsg; }; MsgDeposit: { - encode(message: _61.MsgDeposit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgDeposit; + typeUrl: string; + encode(message: _61.MsgDeposit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgDeposit; fromJSON(object: any): _61.MsgDeposit; toJSON(message: _61.MsgDeposit): unknown; fromPartial(object: Partial<_61.MsgDeposit>): _61.MsgDeposit; @@ -5287,8 +5588,9 @@ export declare namespace cosmos { toProtoMsg(message: _61.MsgDeposit): _61.MsgDepositProtoMsg; }; MsgDepositResponse: { - encode(_: _61.MsgDepositResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _61.MsgDepositResponse; + typeUrl: string; + encode(_: _61.MsgDepositResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _61.MsgDepositResponse; fromJSON(_: any): _61.MsgDepositResponse; toJSON(_: _61.MsgDepositResponse): unknown; fromPartial(_: Partial<_61.MsgDepositResponse>): _61.MsgDepositResponse; @@ -5300,12 +5602,13 @@ export declare namespace cosmos { toProto(message: _61.MsgDepositResponse): Uint8Array; toProtoMsg(message: _61.MsgDepositResponse): _61.MsgDepositResponseProtoMsg; }; - Content_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _59.TextProposal; + Content_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _59.TextProposal; Content_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; Content_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; QueryProposalRequest: { - encode(message: _60.QueryProposalRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryProposalRequest; + typeUrl: string; + encode(message: _60.QueryProposalRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryProposalRequest; fromJSON(object: any): _60.QueryProposalRequest; toJSON(message: _60.QueryProposalRequest): unknown; fromPartial(object: Partial<_60.QueryProposalRequest>): _60.QueryProposalRequest; @@ -5318,8 +5621,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryProposalRequest): _60.QueryProposalRequestProtoMsg; }; QueryProposalResponse: { - encode(message: _60.QueryProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryProposalResponse; + typeUrl: string; + encode(message: _60.QueryProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryProposalResponse; fromJSON(object: any): _60.QueryProposalResponse; toJSON(message: _60.QueryProposalResponse): unknown; fromPartial(object: Partial<_60.QueryProposalResponse>): _60.QueryProposalResponse; @@ -5332,8 +5636,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryProposalResponse): _60.QueryProposalResponseProtoMsg; }; QueryProposalsRequest: { - encode(message: _60.QueryProposalsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryProposalsRequest; + typeUrl: string; + encode(message: _60.QueryProposalsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryProposalsRequest; fromJSON(object: any): _60.QueryProposalsRequest; toJSON(message: _60.QueryProposalsRequest): unknown; fromPartial(object: Partial<_60.QueryProposalsRequest>): _60.QueryProposalsRequest; @@ -5346,8 +5651,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryProposalsRequest): _60.QueryProposalsRequestProtoMsg; }; QueryProposalsResponse: { - encode(message: _60.QueryProposalsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryProposalsResponse; + typeUrl: string; + encode(message: _60.QueryProposalsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryProposalsResponse; fromJSON(object: any): _60.QueryProposalsResponse; toJSON(message: _60.QueryProposalsResponse): unknown; fromPartial(object: Partial<_60.QueryProposalsResponse>): _60.QueryProposalsResponse; @@ -5360,8 +5666,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryProposalsResponse): _60.QueryProposalsResponseProtoMsg; }; QueryVoteRequest: { - encode(message: _60.QueryVoteRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryVoteRequest; + typeUrl: string; + encode(message: _60.QueryVoteRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryVoteRequest; fromJSON(object: any): _60.QueryVoteRequest; toJSON(message: _60.QueryVoteRequest): unknown; fromPartial(object: Partial<_60.QueryVoteRequest>): _60.QueryVoteRequest; @@ -5374,8 +5681,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryVoteRequest): _60.QueryVoteRequestProtoMsg; }; QueryVoteResponse: { - encode(message: _60.QueryVoteResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryVoteResponse; + typeUrl: string; + encode(message: _60.QueryVoteResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryVoteResponse; fromJSON(object: any): _60.QueryVoteResponse; toJSON(message: _60.QueryVoteResponse): unknown; fromPartial(object: Partial<_60.QueryVoteResponse>): _60.QueryVoteResponse; @@ -5388,8 +5696,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryVoteResponse): _60.QueryVoteResponseProtoMsg; }; QueryVotesRequest: { - encode(message: _60.QueryVotesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryVotesRequest; + typeUrl: string; + encode(message: _60.QueryVotesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryVotesRequest; fromJSON(object: any): _60.QueryVotesRequest; toJSON(message: _60.QueryVotesRequest): unknown; fromPartial(object: Partial<_60.QueryVotesRequest>): _60.QueryVotesRequest; @@ -5402,8 +5711,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryVotesRequest): _60.QueryVotesRequestProtoMsg; }; QueryVotesResponse: { - encode(message: _60.QueryVotesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryVotesResponse; + typeUrl: string; + encode(message: _60.QueryVotesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryVotesResponse; fromJSON(object: any): _60.QueryVotesResponse; toJSON(message: _60.QueryVotesResponse): unknown; fromPartial(object: Partial<_60.QueryVotesResponse>): _60.QueryVotesResponse; @@ -5416,8 +5726,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryVotesResponse): _60.QueryVotesResponseProtoMsg; }; QueryParamsRequest: { - encode(message: _60.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryParamsRequest; + typeUrl: string; + encode(message: _60.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryParamsRequest; fromJSON(object: any): _60.QueryParamsRequest; toJSON(message: _60.QueryParamsRequest): unknown; fromPartial(object: Partial<_60.QueryParamsRequest>): _60.QueryParamsRequest; @@ -5430,8 +5741,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryParamsRequest): _60.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _60.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryParamsResponse; + typeUrl: string; + encode(message: _60.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryParamsResponse; fromJSON(object: any): _60.QueryParamsResponse; toJSON(message: _60.QueryParamsResponse): unknown; fromPartial(object: Partial<_60.QueryParamsResponse>): _60.QueryParamsResponse; @@ -5444,8 +5756,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryParamsResponse): _60.QueryParamsResponseProtoMsg; }; QueryDepositRequest: { - encode(message: _60.QueryDepositRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryDepositRequest; + typeUrl: string; + encode(message: _60.QueryDepositRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryDepositRequest; fromJSON(object: any): _60.QueryDepositRequest; toJSON(message: _60.QueryDepositRequest): unknown; fromPartial(object: Partial<_60.QueryDepositRequest>): _60.QueryDepositRequest; @@ -5458,8 +5771,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryDepositRequest): _60.QueryDepositRequestProtoMsg; }; QueryDepositResponse: { - encode(message: _60.QueryDepositResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryDepositResponse; + typeUrl: string; + encode(message: _60.QueryDepositResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryDepositResponse; fromJSON(object: any): _60.QueryDepositResponse; toJSON(message: _60.QueryDepositResponse): unknown; fromPartial(object: Partial<_60.QueryDepositResponse>): _60.QueryDepositResponse; @@ -5472,8 +5786,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryDepositResponse): _60.QueryDepositResponseProtoMsg; }; QueryDepositsRequest: { - encode(message: _60.QueryDepositsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryDepositsRequest; + typeUrl: string; + encode(message: _60.QueryDepositsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryDepositsRequest; fromJSON(object: any): _60.QueryDepositsRequest; toJSON(message: _60.QueryDepositsRequest): unknown; fromPartial(object: Partial<_60.QueryDepositsRequest>): _60.QueryDepositsRequest; @@ -5486,8 +5801,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryDepositsRequest): _60.QueryDepositsRequestProtoMsg; }; QueryDepositsResponse: { - encode(message: _60.QueryDepositsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryDepositsResponse; + typeUrl: string; + encode(message: _60.QueryDepositsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryDepositsResponse; fromJSON(object: any): _60.QueryDepositsResponse; toJSON(message: _60.QueryDepositsResponse): unknown; fromPartial(object: Partial<_60.QueryDepositsResponse>): _60.QueryDepositsResponse; @@ -5500,8 +5816,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryDepositsResponse): _60.QueryDepositsResponseProtoMsg; }; QueryTallyResultRequest: { - encode(message: _60.QueryTallyResultRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryTallyResultRequest; + typeUrl: string; + encode(message: _60.QueryTallyResultRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryTallyResultRequest; fromJSON(object: any): _60.QueryTallyResultRequest; toJSON(message: _60.QueryTallyResultRequest): unknown; fromPartial(object: Partial<_60.QueryTallyResultRequest>): _60.QueryTallyResultRequest; @@ -5514,8 +5831,9 @@ export declare namespace cosmos { toProtoMsg(message: _60.QueryTallyResultRequest): _60.QueryTallyResultRequestProtoMsg; }; QueryTallyResultResponse: { - encode(message: _60.QueryTallyResultResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _60.QueryTallyResultResponse; + typeUrl: string; + encode(message: _60.QueryTallyResultResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _60.QueryTallyResultResponse; fromJSON(object: any): _60.QueryTallyResultResponse; toJSON(message: _60.QueryTallyResultResponse): unknown; fromPartial(object: Partial<_60.QueryTallyResultResponse>): _60.QueryTallyResultResponse; @@ -5538,8 +5856,9 @@ export declare namespace cosmos { ProposalStatusSDKType: typeof _59.ProposalStatus; ProposalStatusAmino: typeof _59.ProposalStatus; WeightedVoteOption: { - encode(message: _59.WeightedVoteOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.WeightedVoteOption; + typeUrl: string; + encode(message: _59.WeightedVoteOption, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.WeightedVoteOption; fromJSON(object: any): _59.WeightedVoteOption; toJSON(message: _59.WeightedVoteOption): unknown; fromPartial(object: Partial<_59.WeightedVoteOption>): _59.WeightedVoteOption; @@ -5552,8 +5871,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.WeightedVoteOption): _59.WeightedVoteOptionProtoMsg; }; TextProposal: { - encode(message: _59.TextProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.TextProposal; + typeUrl: string; + encode(message: _59.TextProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.TextProposal; fromJSON(object: any): _59.TextProposal; toJSON(message: _59.TextProposal): unknown; fromPartial(object: Partial<_59.TextProposal>): _59.TextProposal; @@ -5566,8 +5886,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.TextProposal): _59.TextProposalProtoMsg; }; Deposit: { - encode(message: _59.Deposit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.Deposit; + typeUrl: string; + encode(message: _59.Deposit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.Deposit; fromJSON(object: any): _59.Deposit; toJSON(message: _59.Deposit): unknown; fromPartial(object: Partial<_59.Deposit>): _59.Deposit; @@ -5580,8 +5901,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.Deposit): _59.DepositProtoMsg; }; Proposal: { - encode(message: _59.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.Proposal; + typeUrl: string; + encode(message: _59.Proposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.Proposal; fromJSON(object: any): _59.Proposal; toJSON(message: _59.Proposal): unknown; fromPartial(object: Partial<_59.Proposal>): _59.Proposal; @@ -5594,8 +5916,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.Proposal): _59.ProposalProtoMsg; }; TallyResult: { - encode(message: _59.TallyResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.TallyResult; + typeUrl: string; + encode(message: _59.TallyResult, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.TallyResult; fromJSON(object: any): _59.TallyResult; toJSON(message: _59.TallyResult): unknown; fromPartial(object: Partial<_59.TallyResult>): _59.TallyResult; @@ -5608,8 +5931,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.TallyResult): _59.TallyResultProtoMsg; }; Vote: { - encode(message: _59.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.Vote; + typeUrl: string; + encode(message: _59.Vote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.Vote; fromJSON(object: any): _59.Vote; toJSON(message: _59.Vote): unknown; fromPartial(object: Partial<_59.Vote>): _59.Vote; @@ -5622,8 +5946,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.Vote): _59.VoteProtoMsg; }; DepositParams: { - encode(message: _59.DepositParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.DepositParams; + typeUrl: string; + encode(message: _59.DepositParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.DepositParams; fromJSON(object: any): _59.DepositParams; toJSON(message: _59.DepositParams): unknown; fromPartial(object: Partial<_59.DepositParams>): _59.DepositParams; @@ -5636,8 +5961,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.DepositParams): _59.DepositParamsProtoMsg; }; VotingParams: { - encode(message: _59.VotingParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.VotingParams; + typeUrl: string; + encode(message: _59.VotingParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.VotingParams; fromJSON(object: any): _59.VotingParams; toJSON(message: _59.VotingParams): unknown; fromPartial(object: Partial<_59.VotingParams>): _59.VotingParams; @@ -5650,8 +5976,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.VotingParams): _59.VotingParamsProtoMsg; }; TallyParams: { - encode(message: _59.TallyParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _59.TallyParams; + typeUrl: string; + encode(message: _59.TallyParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _59.TallyParams; fromJSON(object: any): _59.TallyParams; toJSON(message: _59.TallyParams): unknown; fromPartial(object: Partial<_59.TallyParams>): _59.TallyParams; @@ -5664,8 +5991,9 @@ export declare namespace cosmos { toProtoMsg(message: _59.TallyParams): _59.TallyParamsProtoMsg; }; GenesisState: { - encode(message: _58.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _58.GenesisState; + typeUrl: string; + encode(message: _58.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _58.GenesisState; fromJSON(object: any): _58.GenesisState; toJSON(message: _58.GenesisState): unknown; fromPartial(object: Partial<_58.GenesisState>): _58.GenesisState; @@ -5681,8 +6009,8 @@ export declare namespace cosmos { } namespace group { const v1: { - MsgClientImpl: typeof _224.MsgClientImpl; - QueryClientImpl: typeof _208.QueryClientImpl; + MsgClientImpl: typeof _225.MsgClientImpl; + QueryClientImpl: typeof _209.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { groupInfo(request: _64.QueryGroupInfoRequest): Promise<_64.QueryGroupInfoResponse>; groupPolicyInfo(request: _64.QueryGroupPolicyInfoRequest): Promise<_64.QueryGroupPolicyInfoResponse>; @@ -5698,7 +6026,7 @@ export declare namespace cosmos { groupsByMember(request: _64.QueryGroupsByMemberRequest): Promise<_64.QueryGroupsByMemberResponse>; tallyResult(request: _64.QueryTallyResultRequest): Promise<_64.QueryTallyResultResponse>; }; - LCDQueryClient: typeof _189.LCDQueryClient; + LCDQueryClient: typeof _190.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -6081,8 +6409,9 @@ export declare namespace cosmos { ProposalExecutorResultSDKType: typeof _66.ProposalExecutorResult; ProposalExecutorResultAmino: typeof _66.ProposalExecutorResult; Member: { - encode(message: _66.Member, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.Member; + typeUrl: string; + encode(message: _66.Member, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.Member; fromJSON(object: any): _66.Member; toJSON(message: _66.Member): unknown; fromPartial(object: Partial<_66.Member>): _66.Member; @@ -6095,8 +6424,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.Member): _66.MemberProtoMsg; }; MemberRequest: { - encode(message: _66.MemberRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.MemberRequest; + typeUrl: string; + encode(message: _66.MemberRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.MemberRequest; fromJSON(object: any): _66.MemberRequest; toJSON(message: _66.MemberRequest): unknown; fromPartial(object: Partial<_66.MemberRequest>): _66.MemberRequest; @@ -6109,8 +6439,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.MemberRequest): _66.MemberRequestProtoMsg; }; ThresholdDecisionPolicy: { - encode(message: _66.ThresholdDecisionPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.ThresholdDecisionPolicy; + typeUrl: string; + encode(message: _66.ThresholdDecisionPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.ThresholdDecisionPolicy; fromJSON(object: any): _66.ThresholdDecisionPolicy; toJSON(message: _66.ThresholdDecisionPolicy): unknown; fromPartial(object: Partial<_66.ThresholdDecisionPolicy>): _66.ThresholdDecisionPolicy; @@ -6123,8 +6454,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.ThresholdDecisionPolicy): _66.ThresholdDecisionPolicyProtoMsg; }; PercentageDecisionPolicy: { - encode(message: _66.PercentageDecisionPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.PercentageDecisionPolicy; + typeUrl: string; + encode(message: _66.PercentageDecisionPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.PercentageDecisionPolicy; fromJSON(object: any): _66.PercentageDecisionPolicy; toJSON(message: _66.PercentageDecisionPolicy): unknown; fromPartial(object: Partial<_66.PercentageDecisionPolicy>): _66.PercentageDecisionPolicy; @@ -6137,8 +6469,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.PercentageDecisionPolicy): _66.PercentageDecisionPolicyProtoMsg; }; DecisionPolicyWindows: { - encode(message: _66.DecisionPolicyWindows, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.DecisionPolicyWindows; + typeUrl: string; + encode(message: _66.DecisionPolicyWindows, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.DecisionPolicyWindows; fromJSON(object: any): _66.DecisionPolicyWindows; toJSON(message: _66.DecisionPolicyWindows): unknown; fromPartial(object: Partial<_66.DecisionPolicyWindows>): _66.DecisionPolicyWindows; @@ -6151,8 +6484,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.DecisionPolicyWindows): _66.DecisionPolicyWindowsProtoMsg; }; GroupInfo: { - encode(message: _66.GroupInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.GroupInfo; + typeUrl: string; + encode(message: _66.GroupInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.GroupInfo; fromJSON(object: any): _66.GroupInfo; toJSON(message: _66.GroupInfo): unknown; fromPartial(object: Partial<_66.GroupInfo>): _66.GroupInfo; @@ -6165,8 +6499,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.GroupInfo): _66.GroupInfoProtoMsg; }; GroupMember: { - encode(message: _66.GroupMember, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.GroupMember; + typeUrl: string; + encode(message: _66.GroupMember, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.GroupMember; fromJSON(object: any): _66.GroupMember; toJSON(message: _66.GroupMember): unknown; fromPartial(object: Partial<_66.GroupMember>): _66.GroupMember; @@ -6179,8 +6514,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.GroupMember): _66.GroupMemberProtoMsg; }; GroupPolicyInfo: { - encode(message: _66.GroupPolicyInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.GroupPolicyInfo; + typeUrl: string; + encode(message: _66.GroupPolicyInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.GroupPolicyInfo; fromJSON(object: any): _66.GroupPolicyInfo; toJSON(message: _66.GroupPolicyInfo): unknown; fromPartial(object: Partial<_66.GroupPolicyInfo>): _66.GroupPolicyInfo; @@ -6193,8 +6529,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.GroupPolicyInfo): _66.GroupPolicyInfoProtoMsg; }; Proposal: { - encode(message: _66.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.Proposal; + typeUrl: string; + encode(message: _66.Proposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.Proposal; fromJSON(object: any): _66.Proposal; toJSON(message: _66.Proposal): unknown; fromPartial(object: Partial<_66.Proposal>): _66.Proposal; @@ -6207,8 +6544,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.Proposal): _66.ProposalProtoMsg; }; TallyResult: { - encode(message: _66.TallyResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.TallyResult; + typeUrl: string; + encode(message: _66.TallyResult, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.TallyResult; fromJSON(object: any): _66.TallyResult; toJSON(message: _66.TallyResult): unknown; fromPartial(object: Partial<_66.TallyResult>): _66.TallyResult; @@ -6221,8 +6559,9 @@ export declare namespace cosmos { toProtoMsg(message: _66.TallyResult): _66.TallyResultProtoMsg; }; Vote: { - encode(message: _66.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _66.Vote; + typeUrl: string; + encode(message: _66.Vote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _66.Vote; fromJSON(object: any): _66.Vote; toJSON(message: _66.Vote): unknown; fromPartial(object: Partial<_66.Vote>): _66.Vote; @@ -6234,7 +6573,7 @@ export declare namespace cosmos { toProto(message: _66.Vote): Uint8Array; toProtoMsg(message: _66.Vote): _66.VoteProtoMsg; }; - DecisionPolicy_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any | _66.ThresholdDecisionPolicy | _66.PercentageDecisionPolicy; + DecisionPolicy_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any | _66.ThresholdDecisionPolicy | _66.PercentageDecisionPolicy; DecisionPolicy_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; DecisionPolicy_ToAmino: (content: import("../google/protobuf/any").Any) => import("../google/protobuf/any").AnyAmino; execFromJSON(object: any): _65.Exec; @@ -6243,8 +6582,9 @@ export declare namespace cosmos { ExecSDKType: typeof _65.Exec; ExecAmino: typeof _65.Exec; MsgCreateGroup: { - encode(message: _65.MsgCreateGroup, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgCreateGroup; + typeUrl: string; + encode(message: _65.MsgCreateGroup, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgCreateGroup; fromJSON(object: any): _65.MsgCreateGroup; toJSON(message: _65.MsgCreateGroup): unknown; fromPartial(object: Partial<_65.MsgCreateGroup>): _65.MsgCreateGroup; @@ -6257,8 +6597,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgCreateGroup): _65.MsgCreateGroupProtoMsg; }; MsgCreateGroupResponse: { - encode(message: _65.MsgCreateGroupResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgCreateGroupResponse; + typeUrl: string; + encode(message: _65.MsgCreateGroupResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgCreateGroupResponse; fromJSON(object: any): _65.MsgCreateGroupResponse; toJSON(message: _65.MsgCreateGroupResponse): unknown; fromPartial(object: Partial<_65.MsgCreateGroupResponse>): _65.MsgCreateGroupResponse; @@ -6271,8 +6612,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgCreateGroupResponse): _65.MsgCreateGroupResponseProtoMsg; }; MsgUpdateGroupMembers: { - encode(message: _65.MsgUpdateGroupMembers, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupMembers; + typeUrl: string; + encode(message: _65.MsgUpdateGroupMembers, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupMembers; fromJSON(object: any): _65.MsgUpdateGroupMembers; toJSON(message: _65.MsgUpdateGroupMembers): unknown; fromPartial(object: Partial<_65.MsgUpdateGroupMembers>): _65.MsgUpdateGroupMembers; @@ -6285,8 +6627,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupMembers): _65.MsgUpdateGroupMembersProtoMsg; }; MsgUpdateGroupMembersResponse: { - encode(_: _65.MsgUpdateGroupMembersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupMembersResponse; + typeUrl: string; + encode(_: _65.MsgUpdateGroupMembersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupMembersResponse; fromJSON(_: any): _65.MsgUpdateGroupMembersResponse; toJSON(_: _65.MsgUpdateGroupMembersResponse): unknown; fromPartial(_: Partial<_65.MsgUpdateGroupMembersResponse>): _65.MsgUpdateGroupMembersResponse; @@ -6299,8 +6642,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupMembersResponse): _65.MsgUpdateGroupMembersResponseProtoMsg; }; MsgUpdateGroupAdmin: { - encode(message: _65.MsgUpdateGroupAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupAdmin; + typeUrl: string; + encode(message: _65.MsgUpdateGroupAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupAdmin; fromJSON(object: any): _65.MsgUpdateGroupAdmin; toJSON(message: _65.MsgUpdateGroupAdmin): unknown; fromPartial(object: Partial<_65.MsgUpdateGroupAdmin>): _65.MsgUpdateGroupAdmin; @@ -6313,8 +6657,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupAdmin): _65.MsgUpdateGroupAdminProtoMsg; }; MsgUpdateGroupAdminResponse: { - encode(_: _65.MsgUpdateGroupAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupAdminResponse; + typeUrl: string; + encode(_: _65.MsgUpdateGroupAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupAdminResponse; fromJSON(_: any): _65.MsgUpdateGroupAdminResponse; toJSON(_: _65.MsgUpdateGroupAdminResponse): unknown; fromPartial(_: Partial<_65.MsgUpdateGroupAdminResponse>): _65.MsgUpdateGroupAdminResponse; @@ -6327,8 +6672,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupAdminResponse): _65.MsgUpdateGroupAdminResponseProtoMsg; }; MsgUpdateGroupMetadata: { - encode(message: _65.MsgUpdateGroupMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupMetadata; + typeUrl: string; + encode(message: _65.MsgUpdateGroupMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupMetadata; fromJSON(object: any): _65.MsgUpdateGroupMetadata; toJSON(message: _65.MsgUpdateGroupMetadata): unknown; fromPartial(object: Partial<_65.MsgUpdateGroupMetadata>): _65.MsgUpdateGroupMetadata; @@ -6341,8 +6687,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupMetadata): _65.MsgUpdateGroupMetadataProtoMsg; }; MsgUpdateGroupMetadataResponse: { - encode(_: _65.MsgUpdateGroupMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupMetadataResponse; + typeUrl: string; + encode(_: _65.MsgUpdateGroupMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupMetadataResponse; fromJSON(_: any): _65.MsgUpdateGroupMetadataResponse; toJSON(_: _65.MsgUpdateGroupMetadataResponse): unknown; fromPartial(_: Partial<_65.MsgUpdateGroupMetadataResponse>): _65.MsgUpdateGroupMetadataResponse; @@ -6355,8 +6702,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupMetadataResponse): _65.MsgUpdateGroupMetadataResponseProtoMsg; }; MsgCreateGroupPolicy: { - encode(message: _65.MsgCreateGroupPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgCreateGroupPolicy; + typeUrl: string; + encode(message: _65.MsgCreateGroupPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgCreateGroupPolicy; fromJSON(object: any): _65.MsgCreateGroupPolicy; toJSON(message: _65.MsgCreateGroupPolicy): unknown; fromPartial(object: Partial<_65.MsgCreateGroupPolicy>): _65.MsgCreateGroupPolicy; @@ -6369,8 +6717,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgCreateGroupPolicy): _65.MsgCreateGroupPolicyProtoMsg; }; MsgCreateGroupPolicyResponse: { - encode(message: _65.MsgCreateGroupPolicyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgCreateGroupPolicyResponse; + typeUrl: string; + encode(message: _65.MsgCreateGroupPolicyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgCreateGroupPolicyResponse; fromJSON(object: any): _65.MsgCreateGroupPolicyResponse; toJSON(message: _65.MsgCreateGroupPolicyResponse): unknown; fromPartial(object: Partial<_65.MsgCreateGroupPolicyResponse>): _65.MsgCreateGroupPolicyResponse; @@ -6383,8 +6732,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgCreateGroupPolicyResponse): _65.MsgCreateGroupPolicyResponseProtoMsg; }; MsgUpdateGroupPolicyAdmin: { - encode(message: _65.MsgUpdateGroupPolicyAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupPolicyAdmin; + typeUrl: string; + encode(message: _65.MsgUpdateGroupPolicyAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupPolicyAdmin; fromJSON(object: any): _65.MsgUpdateGroupPolicyAdmin; toJSON(message: _65.MsgUpdateGroupPolicyAdmin): unknown; fromPartial(object: Partial<_65.MsgUpdateGroupPolicyAdmin>): _65.MsgUpdateGroupPolicyAdmin; @@ -6397,8 +6747,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupPolicyAdmin): _65.MsgUpdateGroupPolicyAdminProtoMsg; }; MsgUpdateGroupPolicyAdminResponse: { - encode(_: _65.MsgUpdateGroupPolicyAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupPolicyAdminResponse; + typeUrl: string; + encode(_: _65.MsgUpdateGroupPolicyAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupPolicyAdminResponse; fromJSON(_: any): _65.MsgUpdateGroupPolicyAdminResponse; toJSON(_: _65.MsgUpdateGroupPolicyAdminResponse): unknown; fromPartial(_: Partial<_65.MsgUpdateGroupPolicyAdminResponse>): _65.MsgUpdateGroupPolicyAdminResponse; @@ -6411,8 +6762,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupPolicyAdminResponse): _65.MsgUpdateGroupPolicyAdminResponseProtoMsg; }; MsgCreateGroupWithPolicy: { - encode(message: _65.MsgCreateGroupWithPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgCreateGroupWithPolicy; + typeUrl: string; + encode(message: _65.MsgCreateGroupWithPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgCreateGroupWithPolicy; fromJSON(object: any): _65.MsgCreateGroupWithPolicy; toJSON(message: _65.MsgCreateGroupWithPolicy): unknown; fromPartial(object: Partial<_65.MsgCreateGroupWithPolicy>): _65.MsgCreateGroupWithPolicy; @@ -6425,8 +6777,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgCreateGroupWithPolicy): _65.MsgCreateGroupWithPolicyProtoMsg; }; MsgCreateGroupWithPolicyResponse: { - encode(message: _65.MsgCreateGroupWithPolicyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgCreateGroupWithPolicyResponse; + typeUrl: string; + encode(message: _65.MsgCreateGroupWithPolicyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgCreateGroupWithPolicyResponse; fromJSON(object: any): _65.MsgCreateGroupWithPolicyResponse; toJSON(message: _65.MsgCreateGroupWithPolicyResponse): unknown; fromPartial(object: Partial<_65.MsgCreateGroupWithPolicyResponse>): _65.MsgCreateGroupWithPolicyResponse; @@ -6439,8 +6792,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgCreateGroupWithPolicyResponse): _65.MsgCreateGroupWithPolicyResponseProtoMsg; }; MsgUpdateGroupPolicyDecisionPolicy: { - encode(message: _65.MsgUpdateGroupPolicyDecisionPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupPolicyDecisionPolicy; + typeUrl: string; + encode(message: _65.MsgUpdateGroupPolicyDecisionPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupPolicyDecisionPolicy; fromJSON(object: any): _65.MsgUpdateGroupPolicyDecisionPolicy; toJSON(message: _65.MsgUpdateGroupPolicyDecisionPolicy): unknown; fromPartial(object: Partial<_65.MsgUpdateGroupPolicyDecisionPolicy>): _65.MsgUpdateGroupPolicyDecisionPolicy; @@ -6453,8 +6807,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupPolicyDecisionPolicy): _65.MsgUpdateGroupPolicyDecisionPolicyProtoMsg; }; MsgUpdateGroupPolicyDecisionPolicyResponse: { - encode(_: _65.MsgUpdateGroupPolicyDecisionPolicyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupPolicyDecisionPolicyResponse; + typeUrl: string; + encode(_: _65.MsgUpdateGroupPolicyDecisionPolicyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupPolicyDecisionPolicyResponse; fromJSON(_: any): _65.MsgUpdateGroupPolicyDecisionPolicyResponse; toJSON(_: _65.MsgUpdateGroupPolicyDecisionPolicyResponse): unknown; fromPartial(_: Partial<_65.MsgUpdateGroupPolicyDecisionPolicyResponse>): _65.MsgUpdateGroupPolicyDecisionPolicyResponse; @@ -6467,8 +6822,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupPolicyDecisionPolicyResponse): _65.MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg; }; MsgUpdateGroupPolicyMetadata: { - encode(message: _65.MsgUpdateGroupPolicyMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupPolicyMetadata; + typeUrl: string; + encode(message: _65.MsgUpdateGroupPolicyMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupPolicyMetadata; fromJSON(object: any): _65.MsgUpdateGroupPolicyMetadata; toJSON(message: _65.MsgUpdateGroupPolicyMetadata): unknown; fromPartial(object: Partial<_65.MsgUpdateGroupPolicyMetadata>): _65.MsgUpdateGroupPolicyMetadata; @@ -6481,8 +6837,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupPolicyMetadata): _65.MsgUpdateGroupPolicyMetadataProtoMsg; }; MsgUpdateGroupPolicyMetadataResponse: { - encode(_: _65.MsgUpdateGroupPolicyMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgUpdateGroupPolicyMetadataResponse; + typeUrl: string; + encode(_: _65.MsgUpdateGroupPolicyMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgUpdateGroupPolicyMetadataResponse; fromJSON(_: any): _65.MsgUpdateGroupPolicyMetadataResponse; toJSON(_: _65.MsgUpdateGroupPolicyMetadataResponse): unknown; fromPartial(_: Partial<_65.MsgUpdateGroupPolicyMetadataResponse>): _65.MsgUpdateGroupPolicyMetadataResponse; @@ -6495,8 +6852,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgUpdateGroupPolicyMetadataResponse): _65.MsgUpdateGroupPolicyMetadataResponseProtoMsg; }; MsgSubmitProposal: { - encode(message: _65.MsgSubmitProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgSubmitProposal; + typeUrl: string; + encode(message: _65.MsgSubmitProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgSubmitProposal; fromJSON(object: any): _65.MsgSubmitProposal; toJSON(message: _65.MsgSubmitProposal): unknown; fromPartial(object: Partial<_65.MsgSubmitProposal>): _65.MsgSubmitProposal; @@ -6509,8 +6867,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgSubmitProposal): _65.MsgSubmitProposalProtoMsg; }; MsgSubmitProposalResponse: { - encode(message: _65.MsgSubmitProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgSubmitProposalResponse; + typeUrl: string; + encode(message: _65.MsgSubmitProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgSubmitProposalResponse; fromJSON(object: any): _65.MsgSubmitProposalResponse; toJSON(message: _65.MsgSubmitProposalResponse): unknown; fromPartial(object: Partial<_65.MsgSubmitProposalResponse>): _65.MsgSubmitProposalResponse; @@ -6523,8 +6882,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgSubmitProposalResponse): _65.MsgSubmitProposalResponseProtoMsg; }; MsgWithdrawProposal: { - encode(message: _65.MsgWithdrawProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgWithdrawProposal; + typeUrl: string; + encode(message: _65.MsgWithdrawProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgWithdrawProposal; fromJSON(object: any): _65.MsgWithdrawProposal; toJSON(message: _65.MsgWithdrawProposal): unknown; fromPartial(object: Partial<_65.MsgWithdrawProposal>): _65.MsgWithdrawProposal; @@ -6537,8 +6897,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgWithdrawProposal): _65.MsgWithdrawProposalProtoMsg; }; MsgWithdrawProposalResponse: { - encode(_: _65.MsgWithdrawProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgWithdrawProposalResponse; + typeUrl: string; + encode(_: _65.MsgWithdrawProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgWithdrawProposalResponse; fromJSON(_: any): _65.MsgWithdrawProposalResponse; toJSON(_: _65.MsgWithdrawProposalResponse): unknown; fromPartial(_: Partial<_65.MsgWithdrawProposalResponse>): _65.MsgWithdrawProposalResponse; @@ -6551,8 +6912,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgWithdrawProposalResponse): _65.MsgWithdrawProposalResponseProtoMsg; }; MsgVote: { - encode(message: _65.MsgVote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgVote; + typeUrl: string; + encode(message: _65.MsgVote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgVote; fromJSON(object: any): _65.MsgVote; toJSON(message: _65.MsgVote): unknown; fromPartial(object: Partial<_65.MsgVote>): _65.MsgVote; @@ -6565,8 +6927,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgVote): _65.MsgVoteProtoMsg; }; MsgVoteResponse: { - encode(_: _65.MsgVoteResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgVoteResponse; + typeUrl: string; + encode(_: _65.MsgVoteResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgVoteResponse; fromJSON(_: any): _65.MsgVoteResponse; toJSON(_: _65.MsgVoteResponse): unknown; fromPartial(_: Partial<_65.MsgVoteResponse>): _65.MsgVoteResponse; @@ -6579,8 +6942,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgVoteResponse): _65.MsgVoteResponseProtoMsg; }; MsgExec: { - encode(message: _65.MsgExec, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgExec; + typeUrl: string; + encode(message: _65.MsgExec, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgExec; fromJSON(object: any): _65.MsgExec; toJSON(message: _65.MsgExec): unknown; fromPartial(object: Partial<_65.MsgExec>): _65.MsgExec; @@ -6593,8 +6957,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgExec): _65.MsgExecProtoMsg; }; MsgExecResponse: { - encode(message: _65.MsgExecResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgExecResponse; + typeUrl: string; + encode(message: _65.MsgExecResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgExecResponse; fromJSON(object: any): _65.MsgExecResponse; toJSON(message: _65.MsgExecResponse): unknown; fromPartial(object: Partial<_65.MsgExecResponse>): _65.MsgExecResponse; @@ -6607,8 +6972,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgExecResponse): _65.MsgExecResponseProtoMsg; }; MsgLeaveGroup: { - encode(message: _65.MsgLeaveGroup, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgLeaveGroup; + typeUrl: string; + encode(message: _65.MsgLeaveGroup, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgLeaveGroup; fromJSON(object: any): _65.MsgLeaveGroup; toJSON(message: _65.MsgLeaveGroup): unknown; fromPartial(object: Partial<_65.MsgLeaveGroup>): _65.MsgLeaveGroup; @@ -6621,8 +6987,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgLeaveGroup): _65.MsgLeaveGroupProtoMsg; }; MsgLeaveGroupResponse: { - encode(_: _65.MsgLeaveGroupResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _65.MsgLeaveGroupResponse; + typeUrl: string; + encode(_: _65.MsgLeaveGroupResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _65.MsgLeaveGroupResponse; fromJSON(_: any): _65.MsgLeaveGroupResponse; toJSON(_: _65.MsgLeaveGroupResponse): unknown; fromPartial(_: Partial<_65.MsgLeaveGroupResponse>): _65.MsgLeaveGroupResponse; @@ -6635,8 +7002,9 @@ export declare namespace cosmos { toProtoMsg(message: _65.MsgLeaveGroupResponse): _65.MsgLeaveGroupResponseProtoMsg; }; QueryGroupInfoRequest: { - encode(message: _64.QueryGroupInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupInfoRequest; + typeUrl: string; + encode(message: _64.QueryGroupInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupInfoRequest; fromJSON(object: any): _64.QueryGroupInfoRequest; toJSON(message: _64.QueryGroupInfoRequest): unknown; fromPartial(object: Partial<_64.QueryGroupInfoRequest>): _64.QueryGroupInfoRequest; @@ -6649,8 +7017,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupInfoRequest): _64.QueryGroupInfoRequestProtoMsg; }; QueryGroupInfoResponse: { - encode(message: _64.QueryGroupInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupInfoResponse; + typeUrl: string; + encode(message: _64.QueryGroupInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupInfoResponse; fromJSON(object: any): _64.QueryGroupInfoResponse; toJSON(message: _64.QueryGroupInfoResponse): unknown; fromPartial(object: Partial<_64.QueryGroupInfoResponse>): _64.QueryGroupInfoResponse; @@ -6663,8 +7032,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupInfoResponse): _64.QueryGroupInfoResponseProtoMsg; }; QueryGroupPolicyInfoRequest: { - encode(message: _64.QueryGroupPolicyInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupPolicyInfoRequest; + typeUrl: string; + encode(message: _64.QueryGroupPolicyInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupPolicyInfoRequest; fromJSON(object: any): _64.QueryGroupPolicyInfoRequest; toJSON(message: _64.QueryGroupPolicyInfoRequest): unknown; fromPartial(object: Partial<_64.QueryGroupPolicyInfoRequest>): _64.QueryGroupPolicyInfoRequest; @@ -6677,8 +7047,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupPolicyInfoRequest): _64.QueryGroupPolicyInfoRequestProtoMsg; }; QueryGroupPolicyInfoResponse: { - encode(message: _64.QueryGroupPolicyInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupPolicyInfoResponse; + typeUrl: string; + encode(message: _64.QueryGroupPolicyInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupPolicyInfoResponse; fromJSON(object: any): _64.QueryGroupPolicyInfoResponse; toJSON(message: _64.QueryGroupPolicyInfoResponse): unknown; fromPartial(object: Partial<_64.QueryGroupPolicyInfoResponse>): _64.QueryGroupPolicyInfoResponse; @@ -6691,8 +7062,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupPolicyInfoResponse): _64.QueryGroupPolicyInfoResponseProtoMsg; }; QueryGroupMembersRequest: { - encode(message: _64.QueryGroupMembersRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupMembersRequest; + typeUrl: string; + encode(message: _64.QueryGroupMembersRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupMembersRequest; fromJSON(object: any): _64.QueryGroupMembersRequest; toJSON(message: _64.QueryGroupMembersRequest): unknown; fromPartial(object: Partial<_64.QueryGroupMembersRequest>): _64.QueryGroupMembersRequest; @@ -6705,8 +7077,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupMembersRequest): _64.QueryGroupMembersRequestProtoMsg; }; QueryGroupMembersResponse: { - encode(message: _64.QueryGroupMembersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupMembersResponse; + typeUrl: string; + encode(message: _64.QueryGroupMembersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupMembersResponse; fromJSON(object: any): _64.QueryGroupMembersResponse; toJSON(message: _64.QueryGroupMembersResponse): unknown; fromPartial(object: Partial<_64.QueryGroupMembersResponse>): _64.QueryGroupMembersResponse; @@ -6719,8 +7092,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupMembersResponse): _64.QueryGroupMembersResponseProtoMsg; }; QueryGroupsByAdminRequest: { - encode(message: _64.QueryGroupsByAdminRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupsByAdminRequest; + typeUrl: string; + encode(message: _64.QueryGroupsByAdminRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupsByAdminRequest; fromJSON(object: any): _64.QueryGroupsByAdminRequest; toJSON(message: _64.QueryGroupsByAdminRequest): unknown; fromPartial(object: Partial<_64.QueryGroupsByAdminRequest>): _64.QueryGroupsByAdminRequest; @@ -6733,8 +7107,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupsByAdminRequest): _64.QueryGroupsByAdminRequestProtoMsg; }; QueryGroupsByAdminResponse: { - encode(message: _64.QueryGroupsByAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupsByAdminResponse; + typeUrl: string; + encode(message: _64.QueryGroupsByAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupsByAdminResponse; fromJSON(object: any): _64.QueryGroupsByAdminResponse; toJSON(message: _64.QueryGroupsByAdminResponse): unknown; fromPartial(object: Partial<_64.QueryGroupsByAdminResponse>): _64.QueryGroupsByAdminResponse; @@ -6747,8 +7122,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupsByAdminResponse): _64.QueryGroupsByAdminResponseProtoMsg; }; QueryGroupPoliciesByGroupRequest: { - encode(message: _64.QueryGroupPoliciesByGroupRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupPoliciesByGroupRequest; + typeUrl: string; + encode(message: _64.QueryGroupPoliciesByGroupRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupPoliciesByGroupRequest; fromJSON(object: any): _64.QueryGroupPoliciesByGroupRequest; toJSON(message: _64.QueryGroupPoliciesByGroupRequest): unknown; fromPartial(object: Partial<_64.QueryGroupPoliciesByGroupRequest>): _64.QueryGroupPoliciesByGroupRequest; @@ -6761,8 +7137,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupPoliciesByGroupRequest): _64.QueryGroupPoliciesByGroupRequestProtoMsg; }; QueryGroupPoliciesByGroupResponse: { - encode(message: _64.QueryGroupPoliciesByGroupResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupPoliciesByGroupResponse; + typeUrl: string; + encode(message: _64.QueryGroupPoliciesByGroupResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupPoliciesByGroupResponse; fromJSON(object: any): _64.QueryGroupPoliciesByGroupResponse; toJSON(message: _64.QueryGroupPoliciesByGroupResponse): unknown; fromPartial(object: Partial<_64.QueryGroupPoliciesByGroupResponse>): _64.QueryGroupPoliciesByGroupResponse; @@ -6775,8 +7152,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupPoliciesByGroupResponse): _64.QueryGroupPoliciesByGroupResponseProtoMsg; }; QueryGroupPoliciesByAdminRequest: { - encode(message: _64.QueryGroupPoliciesByAdminRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupPoliciesByAdminRequest; + typeUrl: string; + encode(message: _64.QueryGroupPoliciesByAdminRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupPoliciesByAdminRequest; fromJSON(object: any): _64.QueryGroupPoliciesByAdminRequest; toJSON(message: _64.QueryGroupPoliciesByAdminRequest): unknown; fromPartial(object: Partial<_64.QueryGroupPoliciesByAdminRequest>): _64.QueryGroupPoliciesByAdminRequest; @@ -6789,8 +7167,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupPoliciesByAdminRequest): _64.QueryGroupPoliciesByAdminRequestProtoMsg; }; QueryGroupPoliciesByAdminResponse: { - encode(message: _64.QueryGroupPoliciesByAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupPoliciesByAdminResponse; + typeUrl: string; + encode(message: _64.QueryGroupPoliciesByAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupPoliciesByAdminResponse; fromJSON(object: any): _64.QueryGroupPoliciesByAdminResponse; toJSON(message: _64.QueryGroupPoliciesByAdminResponse): unknown; fromPartial(object: Partial<_64.QueryGroupPoliciesByAdminResponse>): _64.QueryGroupPoliciesByAdminResponse; @@ -6803,8 +7182,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupPoliciesByAdminResponse): _64.QueryGroupPoliciesByAdminResponseProtoMsg; }; QueryProposalRequest: { - encode(message: _64.QueryProposalRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryProposalRequest; + typeUrl: string; + encode(message: _64.QueryProposalRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryProposalRequest; fromJSON(object: any): _64.QueryProposalRequest; toJSON(message: _64.QueryProposalRequest): unknown; fromPartial(object: Partial<_64.QueryProposalRequest>): _64.QueryProposalRequest; @@ -6817,8 +7197,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryProposalRequest): _64.QueryProposalRequestProtoMsg; }; QueryProposalResponse: { - encode(message: _64.QueryProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryProposalResponse; + typeUrl: string; + encode(message: _64.QueryProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryProposalResponse; fromJSON(object: any): _64.QueryProposalResponse; toJSON(message: _64.QueryProposalResponse): unknown; fromPartial(object: Partial<_64.QueryProposalResponse>): _64.QueryProposalResponse; @@ -6831,8 +7212,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryProposalResponse): _64.QueryProposalResponseProtoMsg; }; QueryProposalsByGroupPolicyRequest: { - encode(message: _64.QueryProposalsByGroupPolicyRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryProposalsByGroupPolicyRequest; + typeUrl: string; + encode(message: _64.QueryProposalsByGroupPolicyRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryProposalsByGroupPolicyRequest; fromJSON(object: any): _64.QueryProposalsByGroupPolicyRequest; toJSON(message: _64.QueryProposalsByGroupPolicyRequest): unknown; fromPartial(object: Partial<_64.QueryProposalsByGroupPolicyRequest>): _64.QueryProposalsByGroupPolicyRequest; @@ -6845,8 +7227,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryProposalsByGroupPolicyRequest): _64.QueryProposalsByGroupPolicyRequestProtoMsg; }; QueryProposalsByGroupPolicyResponse: { - encode(message: _64.QueryProposalsByGroupPolicyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryProposalsByGroupPolicyResponse; + typeUrl: string; + encode(message: _64.QueryProposalsByGroupPolicyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryProposalsByGroupPolicyResponse; fromJSON(object: any): _64.QueryProposalsByGroupPolicyResponse; toJSON(message: _64.QueryProposalsByGroupPolicyResponse): unknown; fromPartial(object: Partial<_64.QueryProposalsByGroupPolicyResponse>): _64.QueryProposalsByGroupPolicyResponse; @@ -6859,8 +7242,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryProposalsByGroupPolicyResponse): _64.QueryProposalsByGroupPolicyResponseProtoMsg; }; QueryVoteByProposalVoterRequest: { - encode(message: _64.QueryVoteByProposalVoterRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryVoteByProposalVoterRequest; + typeUrl: string; + encode(message: _64.QueryVoteByProposalVoterRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryVoteByProposalVoterRequest; fromJSON(object: any): _64.QueryVoteByProposalVoterRequest; toJSON(message: _64.QueryVoteByProposalVoterRequest): unknown; fromPartial(object: Partial<_64.QueryVoteByProposalVoterRequest>): _64.QueryVoteByProposalVoterRequest; @@ -6873,8 +7257,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryVoteByProposalVoterRequest): _64.QueryVoteByProposalVoterRequestProtoMsg; }; QueryVoteByProposalVoterResponse: { - encode(message: _64.QueryVoteByProposalVoterResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryVoteByProposalVoterResponse; + typeUrl: string; + encode(message: _64.QueryVoteByProposalVoterResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryVoteByProposalVoterResponse; fromJSON(object: any): _64.QueryVoteByProposalVoterResponse; toJSON(message: _64.QueryVoteByProposalVoterResponse): unknown; fromPartial(object: Partial<_64.QueryVoteByProposalVoterResponse>): _64.QueryVoteByProposalVoterResponse; @@ -6887,8 +7272,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryVoteByProposalVoterResponse): _64.QueryVoteByProposalVoterResponseProtoMsg; }; QueryVotesByProposalRequest: { - encode(message: _64.QueryVotesByProposalRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryVotesByProposalRequest; + typeUrl: string; + encode(message: _64.QueryVotesByProposalRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryVotesByProposalRequest; fromJSON(object: any): _64.QueryVotesByProposalRequest; toJSON(message: _64.QueryVotesByProposalRequest): unknown; fromPartial(object: Partial<_64.QueryVotesByProposalRequest>): _64.QueryVotesByProposalRequest; @@ -6901,8 +7287,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryVotesByProposalRequest): _64.QueryVotesByProposalRequestProtoMsg; }; QueryVotesByProposalResponse: { - encode(message: _64.QueryVotesByProposalResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryVotesByProposalResponse; + typeUrl: string; + encode(message: _64.QueryVotesByProposalResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryVotesByProposalResponse; fromJSON(object: any): _64.QueryVotesByProposalResponse; toJSON(message: _64.QueryVotesByProposalResponse): unknown; fromPartial(object: Partial<_64.QueryVotesByProposalResponse>): _64.QueryVotesByProposalResponse; @@ -6915,8 +7302,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryVotesByProposalResponse): _64.QueryVotesByProposalResponseProtoMsg; }; QueryVotesByVoterRequest: { - encode(message: _64.QueryVotesByVoterRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryVotesByVoterRequest; + typeUrl: string; + encode(message: _64.QueryVotesByVoterRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryVotesByVoterRequest; fromJSON(object: any): _64.QueryVotesByVoterRequest; toJSON(message: _64.QueryVotesByVoterRequest): unknown; fromPartial(object: Partial<_64.QueryVotesByVoterRequest>): _64.QueryVotesByVoterRequest; @@ -6929,8 +7317,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryVotesByVoterRequest): _64.QueryVotesByVoterRequestProtoMsg; }; QueryVotesByVoterResponse: { - encode(message: _64.QueryVotesByVoterResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryVotesByVoterResponse; + typeUrl: string; + encode(message: _64.QueryVotesByVoterResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryVotesByVoterResponse; fromJSON(object: any): _64.QueryVotesByVoterResponse; toJSON(message: _64.QueryVotesByVoterResponse): unknown; fromPartial(object: Partial<_64.QueryVotesByVoterResponse>): _64.QueryVotesByVoterResponse; @@ -6943,8 +7332,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryVotesByVoterResponse): _64.QueryVotesByVoterResponseProtoMsg; }; QueryGroupsByMemberRequest: { - encode(message: _64.QueryGroupsByMemberRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupsByMemberRequest; + typeUrl: string; + encode(message: _64.QueryGroupsByMemberRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupsByMemberRequest; fromJSON(object: any): _64.QueryGroupsByMemberRequest; toJSON(message: _64.QueryGroupsByMemberRequest): unknown; fromPartial(object: Partial<_64.QueryGroupsByMemberRequest>): _64.QueryGroupsByMemberRequest; @@ -6957,8 +7347,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupsByMemberRequest): _64.QueryGroupsByMemberRequestProtoMsg; }; QueryGroupsByMemberResponse: { - encode(message: _64.QueryGroupsByMemberResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryGroupsByMemberResponse; + typeUrl: string; + encode(message: _64.QueryGroupsByMemberResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryGroupsByMemberResponse; fromJSON(object: any): _64.QueryGroupsByMemberResponse; toJSON(message: _64.QueryGroupsByMemberResponse): unknown; fromPartial(object: Partial<_64.QueryGroupsByMemberResponse>): _64.QueryGroupsByMemberResponse; @@ -6971,8 +7362,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryGroupsByMemberResponse): _64.QueryGroupsByMemberResponseProtoMsg; }; QueryTallyResultRequest: { - encode(message: _64.QueryTallyResultRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryTallyResultRequest; + typeUrl: string; + encode(message: _64.QueryTallyResultRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryTallyResultRequest; fromJSON(object: any): _64.QueryTallyResultRequest; toJSON(message: _64.QueryTallyResultRequest): unknown; fromPartial(object: Partial<_64.QueryTallyResultRequest>): _64.QueryTallyResultRequest; @@ -6985,8 +7377,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryTallyResultRequest): _64.QueryTallyResultRequestProtoMsg; }; QueryTallyResultResponse: { - encode(message: _64.QueryTallyResultResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _64.QueryTallyResultResponse; + typeUrl: string; + encode(message: _64.QueryTallyResultResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _64.QueryTallyResultResponse; fromJSON(object: any): _64.QueryTallyResultResponse; toJSON(message: _64.QueryTallyResultResponse): unknown; fromPartial(object: Partial<_64.QueryTallyResultResponse>): _64.QueryTallyResultResponse; @@ -6999,8 +7392,9 @@ export declare namespace cosmos { toProtoMsg(message: _64.QueryTallyResultResponse): _64.QueryTallyResultResponseProtoMsg; }; GenesisState: { - encode(message: _63.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _63.GenesisState; + typeUrl: string; + encode(message: _63.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _63.GenesisState; fromJSON(object: any): _63.GenesisState; toJSON(message: _63.GenesisState): unknown; fromPartial(object: Partial<_63.GenesisState>): _63.GenesisState; @@ -7013,8 +7407,9 @@ export declare namespace cosmos { toProtoMsg(message: _63.GenesisState): _63.GenesisStateProtoMsg; }; EventCreateGroup: { - encode(message: _62.EventCreateGroup, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventCreateGroup; + typeUrl: string; + encode(message: _62.EventCreateGroup, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventCreateGroup; fromJSON(object: any): _62.EventCreateGroup; toJSON(message: _62.EventCreateGroup): unknown; fromPartial(object: Partial<_62.EventCreateGroup>): _62.EventCreateGroup; @@ -7027,8 +7422,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventCreateGroup): _62.EventCreateGroupProtoMsg; }; EventUpdateGroup: { - encode(message: _62.EventUpdateGroup, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventUpdateGroup; + typeUrl: string; + encode(message: _62.EventUpdateGroup, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventUpdateGroup; fromJSON(object: any): _62.EventUpdateGroup; toJSON(message: _62.EventUpdateGroup): unknown; fromPartial(object: Partial<_62.EventUpdateGroup>): _62.EventUpdateGroup; @@ -7041,8 +7437,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventUpdateGroup): _62.EventUpdateGroupProtoMsg; }; EventCreateGroupPolicy: { - encode(message: _62.EventCreateGroupPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventCreateGroupPolicy; + typeUrl: string; + encode(message: _62.EventCreateGroupPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventCreateGroupPolicy; fromJSON(object: any): _62.EventCreateGroupPolicy; toJSON(message: _62.EventCreateGroupPolicy): unknown; fromPartial(object: Partial<_62.EventCreateGroupPolicy>): _62.EventCreateGroupPolicy; @@ -7055,8 +7452,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventCreateGroupPolicy): _62.EventCreateGroupPolicyProtoMsg; }; EventUpdateGroupPolicy: { - encode(message: _62.EventUpdateGroupPolicy, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventUpdateGroupPolicy; + typeUrl: string; + encode(message: _62.EventUpdateGroupPolicy, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventUpdateGroupPolicy; fromJSON(object: any): _62.EventUpdateGroupPolicy; toJSON(message: _62.EventUpdateGroupPolicy): unknown; fromPartial(object: Partial<_62.EventUpdateGroupPolicy>): _62.EventUpdateGroupPolicy; @@ -7069,8 +7467,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventUpdateGroupPolicy): _62.EventUpdateGroupPolicyProtoMsg; }; EventSubmitProposal: { - encode(message: _62.EventSubmitProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventSubmitProposal; + typeUrl: string; + encode(message: _62.EventSubmitProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventSubmitProposal; fromJSON(object: any): _62.EventSubmitProposal; toJSON(message: _62.EventSubmitProposal): unknown; fromPartial(object: Partial<_62.EventSubmitProposal>): _62.EventSubmitProposal; @@ -7083,8 +7482,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventSubmitProposal): _62.EventSubmitProposalProtoMsg; }; EventWithdrawProposal: { - encode(message: _62.EventWithdrawProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventWithdrawProposal; + typeUrl: string; + encode(message: _62.EventWithdrawProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventWithdrawProposal; fromJSON(object: any): _62.EventWithdrawProposal; toJSON(message: _62.EventWithdrawProposal): unknown; fromPartial(object: Partial<_62.EventWithdrawProposal>): _62.EventWithdrawProposal; @@ -7097,8 +7497,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventWithdrawProposal): _62.EventWithdrawProposalProtoMsg; }; EventVote: { - encode(message: _62.EventVote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventVote; + typeUrl: string; + encode(message: _62.EventVote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventVote; fromJSON(object: any): _62.EventVote; toJSON(message: _62.EventVote): unknown; fromPartial(object: Partial<_62.EventVote>): _62.EventVote; @@ -7111,8 +7512,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventVote): _62.EventVoteProtoMsg; }; EventExec: { - encode(message: _62.EventExec, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventExec; + typeUrl: string; + encode(message: _62.EventExec, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventExec; fromJSON(object: any): _62.EventExec; toJSON(message: _62.EventExec): unknown; fromPartial(object: Partial<_62.EventExec>): _62.EventExec; @@ -7125,8 +7527,9 @@ export declare namespace cosmos { toProtoMsg(message: _62.EventExec): _62.EventExecProtoMsg; }; EventLeaveGroup: { - encode(message: _62.EventLeaveGroup, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _62.EventLeaveGroup; + typeUrl: string; + encode(message: _62.EventLeaveGroup, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _62.EventLeaveGroup; fromJSON(object: any): _62.EventLeaveGroup; toJSON(message: _62.EventLeaveGroup): unknown; fromPartial(object: Partial<_62.EventLeaveGroup>): _62.EventLeaveGroup; @@ -7142,16 +7545,17 @@ export declare namespace cosmos { } namespace mint { const v1beta1: { - QueryClientImpl: typeof _209.QueryClientImpl; + QueryClientImpl: typeof _210.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { params(request?: _69.QueryParamsRequest | undefined): Promise<_69.QueryParamsResponse>; inflation(request?: _69.QueryInflationRequest | undefined): Promise<_69.QueryInflationResponse>; annualProvisions(request?: _69.QueryAnnualProvisionsRequest | undefined): Promise<_69.QueryAnnualProvisionsResponse>; }; - LCDQueryClient: typeof _190.LCDQueryClient; + LCDQueryClient: typeof _191.LCDQueryClient; QueryParamsRequest: { - encode(_: _69.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _69.QueryParamsRequest; + typeUrl: string; + encode(_: _69.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _69.QueryParamsRequest; fromJSON(_: any): _69.QueryParamsRequest; toJSON(_: _69.QueryParamsRequest): unknown; fromPartial(_: Partial<_69.QueryParamsRequest>): _69.QueryParamsRequest; @@ -7164,8 +7568,9 @@ export declare namespace cosmos { toProtoMsg(message: _69.QueryParamsRequest): _69.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _69.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _69.QueryParamsResponse; + typeUrl: string; + encode(message: _69.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _69.QueryParamsResponse; fromJSON(object: any): _69.QueryParamsResponse; toJSON(message: _69.QueryParamsResponse): unknown; fromPartial(object: Partial<_69.QueryParamsResponse>): _69.QueryParamsResponse; @@ -7178,8 +7583,9 @@ export declare namespace cosmos { toProtoMsg(message: _69.QueryParamsResponse): _69.QueryParamsResponseProtoMsg; }; QueryInflationRequest: { - encode(_: _69.QueryInflationRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _69.QueryInflationRequest; + typeUrl: string; + encode(_: _69.QueryInflationRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _69.QueryInflationRequest; fromJSON(_: any): _69.QueryInflationRequest; toJSON(_: _69.QueryInflationRequest): unknown; fromPartial(_: Partial<_69.QueryInflationRequest>): _69.QueryInflationRequest; @@ -7192,8 +7598,9 @@ export declare namespace cosmos { toProtoMsg(message: _69.QueryInflationRequest): _69.QueryInflationRequestProtoMsg; }; QueryInflationResponse: { - encode(message: _69.QueryInflationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _69.QueryInflationResponse; + typeUrl: string; + encode(message: _69.QueryInflationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _69.QueryInflationResponse; fromJSON(object: any): _69.QueryInflationResponse; toJSON(message: _69.QueryInflationResponse): unknown; fromPartial(object: Partial<_69.QueryInflationResponse>): _69.QueryInflationResponse; @@ -7206,8 +7613,9 @@ export declare namespace cosmos { toProtoMsg(message: _69.QueryInflationResponse): _69.QueryInflationResponseProtoMsg; }; QueryAnnualProvisionsRequest: { - encode(_: _69.QueryAnnualProvisionsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _69.QueryAnnualProvisionsRequest; + typeUrl: string; + encode(_: _69.QueryAnnualProvisionsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _69.QueryAnnualProvisionsRequest; fromJSON(_: any): _69.QueryAnnualProvisionsRequest; toJSON(_: _69.QueryAnnualProvisionsRequest): unknown; fromPartial(_: Partial<_69.QueryAnnualProvisionsRequest>): _69.QueryAnnualProvisionsRequest; @@ -7220,8 +7628,9 @@ export declare namespace cosmos { toProtoMsg(message: _69.QueryAnnualProvisionsRequest): _69.QueryAnnualProvisionsRequestProtoMsg; }; QueryAnnualProvisionsResponse: { - encode(message: _69.QueryAnnualProvisionsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _69.QueryAnnualProvisionsResponse; + typeUrl: string; + encode(message: _69.QueryAnnualProvisionsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _69.QueryAnnualProvisionsResponse; fromJSON(object: any): _69.QueryAnnualProvisionsResponse; toJSON(message: _69.QueryAnnualProvisionsResponse): unknown; fromPartial(object: Partial<_69.QueryAnnualProvisionsResponse>): _69.QueryAnnualProvisionsResponse; @@ -7234,8 +7643,9 @@ export declare namespace cosmos { toProtoMsg(message: _69.QueryAnnualProvisionsResponse): _69.QueryAnnualProvisionsResponseProtoMsg; }; Minter: { - encode(message: _68.Minter, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _68.Minter; + typeUrl: string; + encode(message: _68.Minter, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _68.Minter; fromJSON(object: any): _68.Minter; toJSON(message: _68.Minter): unknown; fromPartial(object: Partial<_68.Minter>): _68.Minter; @@ -7248,8 +7658,9 @@ export declare namespace cosmos { toProtoMsg(message: _68.Minter): _68.MinterProtoMsg; }; Params: { - encode(message: _68.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _68.Params; + typeUrl: string; + encode(message: _68.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _68.Params; fromJSON(object: any): _68.Params; toJSON(message: _68.Params): unknown; fromPartial(object: Partial<_68.Params>): _68.Params; @@ -7262,8 +7673,9 @@ export declare namespace cosmos { toProtoMsg(message: _68.Params): _68.ParamsProtoMsg; }; GenesisState: { - encode(message: _67.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _67.GenesisState; + typeUrl: string; + encode(message: _67.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _67.GenesisState; fromJSON(object: any): _67.GenesisState; toJSON(message: _67.GenesisState): unknown; fromPartial(object: Partial<_67.GenesisState>): _67.GenesisState; @@ -7282,8 +7694,8 @@ export declare namespace cosmos { } namespace nft { const v1beta1: { - MsgClientImpl: typeof _225.MsgClientImpl; - QueryClientImpl: typeof _210.QueryClientImpl; + MsgClientImpl: typeof _226.MsgClientImpl; + QueryClientImpl: typeof _211.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { balance(request: _74.QueryBalanceRequest): Promise<_74.QueryBalanceResponse>; owner(request: _74.QueryOwnerRequest): Promise<_74.QueryOwnerResponse>; @@ -7293,7 +7705,7 @@ export declare namespace cosmos { class(request: _74.QueryClassRequest): Promise<_74.QueryClassResponse>; classes(request?: _74.QueryClassesRequest | undefined): Promise<_74.QueryClassesResponse>; }; - LCDQueryClient: typeof _191.LCDQueryClient; + LCDQueryClient: typeof _192.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -7336,8 +7748,9 @@ export declare namespace cosmos { }; }; MsgSend: { - encode(message: _75.MsgSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _75.MsgSend; + typeUrl: string; + encode(message: _75.MsgSend, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _75.MsgSend; fromJSON(object: any): _75.MsgSend; toJSON(message: _75.MsgSend): unknown; fromPartial(object: Partial<_75.MsgSend>): _75.MsgSend; @@ -7350,8 +7763,9 @@ export declare namespace cosmos { toProtoMsg(message: _75.MsgSend): _75.MsgSendProtoMsg; }; MsgSendResponse: { - encode(_: _75.MsgSendResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _75.MsgSendResponse; + typeUrl: string; + encode(_: _75.MsgSendResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _75.MsgSendResponse; fromJSON(_: any): _75.MsgSendResponse; toJSON(_: _75.MsgSendResponse): unknown; fromPartial(_: Partial<_75.MsgSendResponse>): _75.MsgSendResponse; @@ -7364,8 +7778,9 @@ export declare namespace cosmos { toProtoMsg(message: _75.MsgSendResponse): _75.MsgSendResponseProtoMsg; }; QueryBalanceRequest: { - encode(message: _74.QueryBalanceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryBalanceRequest; + typeUrl: string; + encode(message: _74.QueryBalanceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryBalanceRequest; fromJSON(object: any): _74.QueryBalanceRequest; toJSON(message: _74.QueryBalanceRequest): unknown; fromPartial(object: Partial<_74.QueryBalanceRequest>): _74.QueryBalanceRequest; @@ -7378,8 +7793,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryBalanceRequest): _74.QueryBalanceRequestProtoMsg; }; QueryBalanceResponse: { - encode(message: _74.QueryBalanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryBalanceResponse; + typeUrl: string; + encode(message: _74.QueryBalanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryBalanceResponse; fromJSON(object: any): _74.QueryBalanceResponse; toJSON(message: _74.QueryBalanceResponse): unknown; fromPartial(object: Partial<_74.QueryBalanceResponse>): _74.QueryBalanceResponse; @@ -7392,8 +7808,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryBalanceResponse): _74.QueryBalanceResponseProtoMsg; }; QueryOwnerRequest: { - encode(message: _74.QueryOwnerRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryOwnerRequest; + typeUrl: string; + encode(message: _74.QueryOwnerRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryOwnerRequest; fromJSON(object: any): _74.QueryOwnerRequest; toJSON(message: _74.QueryOwnerRequest): unknown; fromPartial(object: Partial<_74.QueryOwnerRequest>): _74.QueryOwnerRequest; @@ -7406,8 +7823,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryOwnerRequest): _74.QueryOwnerRequestProtoMsg; }; QueryOwnerResponse: { - encode(message: _74.QueryOwnerResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryOwnerResponse; + typeUrl: string; + encode(message: _74.QueryOwnerResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryOwnerResponse; fromJSON(object: any): _74.QueryOwnerResponse; toJSON(message: _74.QueryOwnerResponse): unknown; fromPartial(object: Partial<_74.QueryOwnerResponse>): _74.QueryOwnerResponse; @@ -7420,8 +7838,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryOwnerResponse): _74.QueryOwnerResponseProtoMsg; }; QuerySupplyRequest: { - encode(message: _74.QuerySupplyRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QuerySupplyRequest; + typeUrl: string; + encode(message: _74.QuerySupplyRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QuerySupplyRequest; fromJSON(object: any): _74.QuerySupplyRequest; toJSON(message: _74.QuerySupplyRequest): unknown; fromPartial(object: Partial<_74.QuerySupplyRequest>): _74.QuerySupplyRequest; @@ -7434,8 +7853,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QuerySupplyRequest): _74.QuerySupplyRequestProtoMsg; }; QuerySupplyResponse: { - encode(message: _74.QuerySupplyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QuerySupplyResponse; + typeUrl: string; + encode(message: _74.QuerySupplyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QuerySupplyResponse; fromJSON(object: any): _74.QuerySupplyResponse; toJSON(message: _74.QuerySupplyResponse): unknown; fromPartial(object: Partial<_74.QuerySupplyResponse>): _74.QuerySupplyResponse; @@ -7448,8 +7868,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QuerySupplyResponse): _74.QuerySupplyResponseProtoMsg; }; QueryNFTsRequest: { - encode(message: _74.QueryNFTsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryNFTsRequest; + typeUrl: string; + encode(message: _74.QueryNFTsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryNFTsRequest; fromJSON(object: any): _74.QueryNFTsRequest; toJSON(message: _74.QueryNFTsRequest): unknown; fromPartial(object: Partial<_74.QueryNFTsRequest>): _74.QueryNFTsRequest; @@ -7462,8 +7883,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryNFTsRequest): _74.QueryNFTsRequestProtoMsg; }; QueryNFTsResponse: { - encode(message: _74.QueryNFTsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryNFTsResponse; + typeUrl: string; + encode(message: _74.QueryNFTsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryNFTsResponse; fromJSON(object: any): _74.QueryNFTsResponse; toJSON(message: _74.QueryNFTsResponse): unknown; fromPartial(object: Partial<_74.QueryNFTsResponse>): _74.QueryNFTsResponse; @@ -7476,8 +7898,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryNFTsResponse): _74.QueryNFTsResponseProtoMsg; }; QueryNFTRequest: { - encode(message: _74.QueryNFTRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryNFTRequest; + typeUrl: string; + encode(message: _74.QueryNFTRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryNFTRequest; fromJSON(object: any): _74.QueryNFTRequest; toJSON(message: _74.QueryNFTRequest): unknown; fromPartial(object: Partial<_74.QueryNFTRequest>): _74.QueryNFTRequest; @@ -7490,8 +7913,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryNFTRequest): _74.QueryNFTRequestProtoMsg; }; QueryNFTResponse: { - encode(message: _74.QueryNFTResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryNFTResponse; + typeUrl: string; + encode(message: _74.QueryNFTResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryNFTResponse; fromJSON(object: any): _74.QueryNFTResponse; toJSON(message: _74.QueryNFTResponse): unknown; fromPartial(object: Partial<_74.QueryNFTResponse>): _74.QueryNFTResponse; @@ -7504,8 +7928,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryNFTResponse): _74.QueryNFTResponseProtoMsg; }; QueryClassRequest: { - encode(message: _74.QueryClassRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryClassRequest; + typeUrl: string; + encode(message: _74.QueryClassRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryClassRequest; fromJSON(object: any): _74.QueryClassRequest; toJSON(message: _74.QueryClassRequest): unknown; fromPartial(object: Partial<_74.QueryClassRequest>): _74.QueryClassRequest; @@ -7518,8 +7943,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryClassRequest): _74.QueryClassRequestProtoMsg; }; QueryClassResponse: { - encode(message: _74.QueryClassResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryClassResponse; + typeUrl: string; + encode(message: _74.QueryClassResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryClassResponse; fromJSON(object: any): _74.QueryClassResponse; toJSON(message: _74.QueryClassResponse): unknown; fromPartial(object: Partial<_74.QueryClassResponse>): _74.QueryClassResponse; @@ -7532,8 +7958,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryClassResponse): _74.QueryClassResponseProtoMsg; }; QueryClassesRequest: { - encode(message: _74.QueryClassesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryClassesRequest; + typeUrl: string; + encode(message: _74.QueryClassesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryClassesRequest; fromJSON(object: any): _74.QueryClassesRequest; toJSON(message: _74.QueryClassesRequest): unknown; fromPartial(object: Partial<_74.QueryClassesRequest>): _74.QueryClassesRequest; @@ -7546,8 +7973,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryClassesRequest): _74.QueryClassesRequestProtoMsg; }; QueryClassesResponse: { - encode(message: _74.QueryClassesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _74.QueryClassesResponse; + typeUrl: string; + encode(message: _74.QueryClassesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _74.QueryClassesResponse; fromJSON(object: any): _74.QueryClassesResponse; toJSON(message: _74.QueryClassesResponse): unknown; fromPartial(object: Partial<_74.QueryClassesResponse>): _74.QueryClassesResponse; @@ -7560,8 +7988,9 @@ export declare namespace cosmos { toProtoMsg(message: _74.QueryClassesResponse): _74.QueryClassesResponseProtoMsg; }; Class: { - encode(message: _73.Class, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _73.Class; + typeUrl: string; + encode(message: _73.Class, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _73.Class; fromJSON(object: any): _73.Class; toJSON(message: _73.Class): unknown; fromPartial(object: Partial<_73.Class>): _73.Class; @@ -7574,8 +8003,9 @@ export declare namespace cosmos { toProtoMsg(message: _73.Class): _73.ClassProtoMsg; }; NFT: { - encode(message: _73.NFT, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _73.NFT; + typeUrl: string; + encode(message: _73.NFT, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _73.NFT; fromJSON(object: any): _73.NFT; toJSON(message: _73.NFT): unknown; fromPartial(object: Partial<_73.NFT>): _73.NFT; @@ -7588,8 +8018,9 @@ export declare namespace cosmos { toProtoMsg(message: _73.NFT): _73.NFTProtoMsg; }; GenesisState: { - encode(message: _72.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _72.GenesisState; + typeUrl: string; + encode(message: _72.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _72.GenesisState; fromJSON(object: any): _72.GenesisState; toJSON(message: _72.GenesisState): unknown; fromPartial(object: Partial<_72.GenesisState>): _72.GenesisState; @@ -7602,8 +8033,9 @@ export declare namespace cosmos { toProtoMsg(message: _72.GenesisState): _72.GenesisStateProtoMsg; }; Entry: { - encode(message: _72.Entry, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _72.Entry; + typeUrl: string; + encode(message: _72.Entry, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _72.Entry; fromJSON(object: any): _72.Entry; toJSON(message: _72.Entry): unknown; fromPartial(object: Partial<_72.Entry>): _72.Entry; @@ -7616,8 +8048,9 @@ export declare namespace cosmos { toProtoMsg(message: _72.Entry): _72.EntryProtoMsg; }; EventSend: { - encode(message: _71.EventSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _71.EventSend; + typeUrl: string; + encode(message: _71.EventSend, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _71.EventSend; fromJSON(object: any): _71.EventSend; toJSON(message: _71.EventSend): unknown; fromPartial(object: Partial<_71.EventSend>): _71.EventSend; @@ -7630,8 +8063,9 @@ export declare namespace cosmos { toProtoMsg(message: _71.EventSend): _71.EventSendProtoMsg; }; EventMint: { - encode(message: _71.EventMint, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _71.EventMint; + typeUrl: string; + encode(message: _71.EventMint, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _71.EventMint; fromJSON(object: any): _71.EventMint; toJSON(message: _71.EventMint): unknown; fromPartial(object: Partial<_71.EventMint>): _71.EventMint; @@ -7644,8 +8078,9 @@ export declare namespace cosmos { toProtoMsg(message: _71.EventMint): _71.EventMintProtoMsg; }; EventBurn: { - encode(message: _71.EventBurn, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _71.EventBurn; + typeUrl: string; + encode(message: _71.EventBurn, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _71.EventBurn; fromJSON(object: any): _71.EventBurn; toJSON(message: _71.EventBurn): unknown; fromPartial(object: Partial<_71.EventBurn>): _71.EventBurn; @@ -7663,8 +8098,9 @@ export declare namespace cosmos { namespace module { const v1alpha1: { Module: { - encode(_: _76.Module, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _76.Module; + typeUrl: string; + encode(_: _76.Module, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _76.Module; fromJSON(_: any): _76.Module; toJSON(_: _76.Module): unknown; fromPartial(_: Partial<_76.Module>): _76.Module; @@ -7680,8 +8116,9 @@ export declare namespace cosmos { } const v1: { TableDescriptor: { - encode(message: _77.TableDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _77.TableDescriptor; + typeUrl: string; + encode(message: _77.TableDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _77.TableDescriptor; fromJSON(object: any): _77.TableDescriptor; toJSON(message: _77.TableDescriptor): unknown; fromPartial(object: Partial<_77.TableDescriptor>): _77.TableDescriptor; @@ -7694,8 +8131,9 @@ export declare namespace cosmos { toProtoMsg(message: _77.TableDescriptor): _77.TableDescriptorProtoMsg; }; PrimaryKeyDescriptor: { - encode(message: _77.PrimaryKeyDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _77.PrimaryKeyDescriptor; + typeUrl: string; + encode(message: _77.PrimaryKeyDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _77.PrimaryKeyDescriptor; fromJSON(object: any): _77.PrimaryKeyDescriptor; toJSON(message: _77.PrimaryKeyDescriptor): unknown; fromPartial(object: Partial<_77.PrimaryKeyDescriptor>): _77.PrimaryKeyDescriptor; @@ -7708,8 +8146,9 @@ export declare namespace cosmos { toProtoMsg(message: _77.PrimaryKeyDescriptor): _77.PrimaryKeyDescriptorProtoMsg; }; SecondaryIndexDescriptor: { - encode(message: _77.SecondaryIndexDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _77.SecondaryIndexDescriptor; + typeUrl: string; + encode(message: _77.SecondaryIndexDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _77.SecondaryIndexDescriptor; fromJSON(object: any): _77.SecondaryIndexDescriptor; toJSON(message: _77.SecondaryIndexDescriptor): unknown; fromPartial(object: Partial<_77.SecondaryIndexDescriptor>): _77.SecondaryIndexDescriptor; @@ -7722,8 +8161,9 @@ export declare namespace cosmos { toProtoMsg(message: _77.SecondaryIndexDescriptor): _77.SecondaryIndexDescriptorProtoMsg; }; SingletonDescriptor: { - encode(message: _77.SingletonDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _77.SingletonDescriptor; + typeUrl: string; + encode(message: _77.SingletonDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _77.SingletonDescriptor; fromJSON(object: any): _77.SingletonDescriptor; toJSON(message: _77.SingletonDescriptor): unknown; fromPartial(object: Partial<_77.SingletonDescriptor>): _77.SingletonDescriptor; @@ -7743,8 +8183,9 @@ export declare namespace cosmos { StorageTypeSDKType: typeof _78.StorageType; StorageTypeAmino: typeof _78.StorageType; ModuleSchemaDescriptor: { - encode(message: _78.ModuleSchemaDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _78.ModuleSchemaDescriptor; + typeUrl: string; + encode(message: _78.ModuleSchemaDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _78.ModuleSchemaDescriptor; fromJSON(object: any): _78.ModuleSchemaDescriptor; toJSON(message: _78.ModuleSchemaDescriptor): unknown; fromPartial(object: Partial<_78.ModuleSchemaDescriptor>): _78.ModuleSchemaDescriptor; @@ -7757,8 +8198,9 @@ export declare namespace cosmos { toProtoMsg(message: _78.ModuleSchemaDescriptor): _78.ModuleSchemaDescriptorProtoMsg; }; ModuleSchemaDescriptor_FileEntry: { - encode(message: _78.ModuleSchemaDescriptor_FileEntry, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _78.ModuleSchemaDescriptor_FileEntry; + typeUrl: string; + encode(message: _78.ModuleSchemaDescriptor_FileEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _78.ModuleSchemaDescriptor_FileEntry; fromJSON(object: any): _78.ModuleSchemaDescriptor_FileEntry; toJSON(message: _78.ModuleSchemaDescriptor_FileEntry): unknown; fromPartial(object: Partial<_78.ModuleSchemaDescriptor_FileEntry>): _78.ModuleSchemaDescriptor_FileEntry; @@ -7774,15 +8216,16 @@ export declare namespace cosmos { } namespace params { const v1beta1: { - QueryClientImpl: typeof _211.QueryClientImpl; + QueryClientImpl: typeof _212.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { params(request: _80.QueryParamsRequest): Promise<_80.QueryParamsResponse>; subspaces(request?: _80.QuerySubspacesRequest | undefined): Promise<_80.QuerySubspacesResponse>; }; - LCDQueryClient: typeof _192.LCDQueryClient; + LCDQueryClient: typeof _193.LCDQueryClient; QueryParamsRequest: { - encode(message: _80.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _80.QueryParamsRequest; + typeUrl: string; + encode(message: _80.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _80.QueryParamsRequest; fromJSON(object: any): _80.QueryParamsRequest; toJSON(message: _80.QueryParamsRequest): unknown; fromPartial(object: Partial<_80.QueryParamsRequest>): _80.QueryParamsRequest; @@ -7795,8 +8238,9 @@ export declare namespace cosmos { toProtoMsg(message: _80.QueryParamsRequest): _80.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _80.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _80.QueryParamsResponse; + typeUrl: string; + encode(message: _80.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _80.QueryParamsResponse; fromJSON(object: any): _80.QueryParamsResponse; toJSON(message: _80.QueryParamsResponse): unknown; fromPartial(object: Partial<_80.QueryParamsResponse>): _80.QueryParamsResponse; @@ -7809,8 +8253,9 @@ export declare namespace cosmos { toProtoMsg(message: _80.QueryParamsResponse): _80.QueryParamsResponseProtoMsg; }; QuerySubspacesRequest: { - encode(_: _80.QuerySubspacesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _80.QuerySubspacesRequest; + typeUrl: string; + encode(_: _80.QuerySubspacesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _80.QuerySubspacesRequest; fromJSON(_: any): _80.QuerySubspacesRequest; toJSON(_: _80.QuerySubspacesRequest): unknown; fromPartial(_: Partial<_80.QuerySubspacesRequest>): _80.QuerySubspacesRequest; @@ -7823,8 +8268,9 @@ export declare namespace cosmos { toProtoMsg(message: _80.QuerySubspacesRequest): _80.QuerySubspacesRequestProtoMsg; }; QuerySubspacesResponse: { - encode(message: _80.QuerySubspacesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _80.QuerySubspacesResponse; + typeUrl: string; + encode(message: _80.QuerySubspacesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _80.QuerySubspacesResponse; fromJSON(object: any): _80.QuerySubspacesResponse; toJSON(message: _80.QuerySubspacesResponse): unknown; fromPartial(object: Partial<_80.QuerySubspacesResponse>): _80.QuerySubspacesResponse; @@ -7837,8 +8283,9 @@ export declare namespace cosmos { toProtoMsg(message: _80.QuerySubspacesResponse): _80.QuerySubspacesResponseProtoMsg; }; Subspace: { - encode(message: _80.Subspace, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _80.Subspace; + typeUrl: string; + encode(message: _80.Subspace, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _80.Subspace; fromJSON(object: any): _80.Subspace; toJSON(message: _80.Subspace): unknown; fromPartial(object: Partial<_80.Subspace>): _80.Subspace; @@ -7851,8 +8298,9 @@ export declare namespace cosmos { toProtoMsg(message: _80.Subspace): _80.SubspaceProtoMsg; }; ParameterChangeProposal: { - encode(message: _79.ParameterChangeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _79.ParameterChangeProposal; + typeUrl: string; + encode(message: _79.ParameterChangeProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _79.ParameterChangeProposal; fromJSON(object: any): _79.ParameterChangeProposal; toJSON(message: _79.ParameterChangeProposal): unknown; fromPartial(object: Partial<_79.ParameterChangeProposal>): _79.ParameterChangeProposal; @@ -7865,8 +8313,9 @@ export declare namespace cosmos { toProtoMsg(message: _79.ParameterChangeProposal): _79.ParameterChangeProposalProtoMsg; }; ParamChange: { - encode(message: _79.ParamChange, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _79.ParamChange; + typeUrl: string; + encode(message: _79.ParamChange, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _79.ParamChange; fromJSON(object: any): _79.ParamChange; toJSON(message: _79.ParamChange): unknown; fromPartial(object: Partial<_79.ParamChange>): _79.ParamChange; @@ -7882,14 +8331,14 @@ export declare namespace cosmos { } namespace slashing { const v1beta1: { - MsgClientImpl: typeof _226.MsgClientImpl; - QueryClientImpl: typeof _212.QueryClientImpl; + MsgClientImpl: typeof _227.MsgClientImpl; + QueryClientImpl: typeof _213.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { params(request?: _82.QueryParamsRequest | undefined): Promise<_82.QueryParamsResponse>; signingInfo(request: _82.QuerySigningInfoRequest): Promise<_82.QuerySigningInfoResponse>; signingInfos(request?: _82.QuerySigningInfosRequest | undefined): Promise<_82.QuerySigningInfosResponse>; }; - LCDQueryClient: typeof _193.LCDQueryClient; + LCDQueryClient: typeof _194.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -7932,8 +8381,9 @@ export declare namespace cosmos { }; }; MsgUnjail: { - encode(message: _84.MsgUnjail, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _84.MsgUnjail; + typeUrl: string; + encode(message: _84.MsgUnjail, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _84.MsgUnjail; fromJSON(object: any): _84.MsgUnjail; toJSON(message: _84.MsgUnjail): unknown; fromPartial(object: Partial<_84.MsgUnjail>): _84.MsgUnjail; @@ -7946,8 +8396,9 @@ export declare namespace cosmos { toProtoMsg(message: _84.MsgUnjail): _84.MsgUnjailProtoMsg; }; MsgUnjailResponse: { - encode(_: _84.MsgUnjailResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _84.MsgUnjailResponse; + typeUrl: string; + encode(_: _84.MsgUnjailResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _84.MsgUnjailResponse; fromJSON(_: any): _84.MsgUnjailResponse; toJSON(_: _84.MsgUnjailResponse): unknown; fromPartial(_: Partial<_84.MsgUnjailResponse>): _84.MsgUnjailResponse; @@ -7960,8 +8411,9 @@ export declare namespace cosmos { toProtoMsg(message: _84.MsgUnjailResponse): _84.MsgUnjailResponseProtoMsg; }; ValidatorSigningInfo: { - encode(message: _83.ValidatorSigningInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _83.ValidatorSigningInfo; + typeUrl: string; + encode(message: _83.ValidatorSigningInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _83.ValidatorSigningInfo; fromJSON(object: any): _83.ValidatorSigningInfo; toJSON(message: _83.ValidatorSigningInfo): unknown; fromPartial(object: Partial<_83.ValidatorSigningInfo>): _83.ValidatorSigningInfo; @@ -7974,8 +8426,9 @@ export declare namespace cosmos { toProtoMsg(message: _83.ValidatorSigningInfo): _83.ValidatorSigningInfoProtoMsg; }; Params: { - encode(message: _83.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _83.Params; + typeUrl: string; + encode(message: _83.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _83.Params; fromJSON(object: any): _83.Params; toJSON(message: _83.Params): unknown; fromPartial(object: Partial<_83.Params>): _83.Params; @@ -7988,8 +8441,9 @@ export declare namespace cosmos { toProtoMsg(message: _83.Params): _83.ParamsProtoMsg; }; QueryParamsRequest: { - encode(_: _82.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _82.QueryParamsRequest; + typeUrl: string; + encode(_: _82.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _82.QueryParamsRequest; fromJSON(_: any): _82.QueryParamsRequest; toJSON(_: _82.QueryParamsRequest): unknown; fromPartial(_: Partial<_82.QueryParamsRequest>): _82.QueryParamsRequest; @@ -8002,8 +8456,9 @@ export declare namespace cosmos { toProtoMsg(message: _82.QueryParamsRequest): _82.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _82.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _82.QueryParamsResponse; + typeUrl: string; + encode(message: _82.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _82.QueryParamsResponse; fromJSON(object: any): _82.QueryParamsResponse; toJSON(message: _82.QueryParamsResponse): unknown; fromPartial(object: Partial<_82.QueryParamsResponse>): _82.QueryParamsResponse; @@ -8016,8 +8471,9 @@ export declare namespace cosmos { toProtoMsg(message: _82.QueryParamsResponse): _82.QueryParamsResponseProtoMsg; }; QuerySigningInfoRequest: { - encode(message: _82.QuerySigningInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _82.QuerySigningInfoRequest; + typeUrl: string; + encode(message: _82.QuerySigningInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _82.QuerySigningInfoRequest; fromJSON(object: any): _82.QuerySigningInfoRequest; toJSON(message: _82.QuerySigningInfoRequest): unknown; fromPartial(object: Partial<_82.QuerySigningInfoRequest>): _82.QuerySigningInfoRequest; @@ -8030,8 +8486,9 @@ export declare namespace cosmos { toProtoMsg(message: _82.QuerySigningInfoRequest): _82.QuerySigningInfoRequestProtoMsg; }; QuerySigningInfoResponse: { - encode(message: _82.QuerySigningInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _82.QuerySigningInfoResponse; + typeUrl: string; + encode(message: _82.QuerySigningInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _82.QuerySigningInfoResponse; fromJSON(object: any): _82.QuerySigningInfoResponse; toJSON(message: _82.QuerySigningInfoResponse): unknown; fromPartial(object: Partial<_82.QuerySigningInfoResponse>): _82.QuerySigningInfoResponse; @@ -8044,8 +8501,9 @@ export declare namespace cosmos { toProtoMsg(message: _82.QuerySigningInfoResponse): _82.QuerySigningInfoResponseProtoMsg; }; QuerySigningInfosRequest: { - encode(message: _82.QuerySigningInfosRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _82.QuerySigningInfosRequest; + typeUrl: string; + encode(message: _82.QuerySigningInfosRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _82.QuerySigningInfosRequest; fromJSON(object: any): _82.QuerySigningInfosRequest; toJSON(message: _82.QuerySigningInfosRequest): unknown; fromPartial(object: Partial<_82.QuerySigningInfosRequest>): _82.QuerySigningInfosRequest; @@ -8058,8 +8516,9 @@ export declare namespace cosmos { toProtoMsg(message: _82.QuerySigningInfosRequest): _82.QuerySigningInfosRequestProtoMsg; }; QuerySigningInfosResponse: { - encode(message: _82.QuerySigningInfosResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _82.QuerySigningInfosResponse; + typeUrl: string; + encode(message: _82.QuerySigningInfosResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _82.QuerySigningInfosResponse; fromJSON(object: any): _82.QuerySigningInfosResponse; toJSON(message: _82.QuerySigningInfosResponse): unknown; fromPartial(object: Partial<_82.QuerySigningInfosResponse>): _82.QuerySigningInfosResponse; @@ -8072,8 +8531,9 @@ export declare namespace cosmos { toProtoMsg(message: _82.QuerySigningInfosResponse): _82.QuerySigningInfosResponseProtoMsg; }; GenesisState: { - encode(message: _81.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _81.GenesisState; + typeUrl: string; + encode(message: _81.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _81.GenesisState; fromJSON(object: any): _81.GenesisState; toJSON(message: _81.GenesisState): unknown; fromPartial(object: Partial<_81.GenesisState>): _81.GenesisState; @@ -8086,8 +8546,9 @@ export declare namespace cosmos { toProtoMsg(message: _81.GenesisState): _81.GenesisStateProtoMsg; }; SigningInfo: { - encode(message: _81.SigningInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _81.SigningInfo; + typeUrl: string; + encode(message: _81.SigningInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _81.SigningInfo; fromJSON(object: any): _81.SigningInfo; toJSON(message: _81.SigningInfo): unknown; fromPartial(object: Partial<_81.SigningInfo>): _81.SigningInfo; @@ -8100,8 +8561,9 @@ export declare namespace cosmos { toProtoMsg(message: _81.SigningInfo): _81.SigningInfoProtoMsg; }; ValidatorMissedBlocks: { - encode(message: _81.ValidatorMissedBlocks, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _81.ValidatorMissedBlocks; + typeUrl: string; + encode(message: _81.ValidatorMissedBlocks, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _81.ValidatorMissedBlocks; fromJSON(object: any): _81.ValidatorMissedBlocks; toJSON(message: _81.ValidatorMissedBlocks): unknown; fromPartial(object: Partial<_81.ValidatorMissedBlocks>): _81.ValidatorMissedBlocks; @@ -8114,8 +8576,9 @@ export declare namespace cosmos { toProtoMsg(message: _81.ValidatorMissedBlocks): _81.ValidatorMissedBlocksProtoMsg; }; MissedBlock: { - encode(message: _81.MissedBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _81.MissedBlock; + typeUrl: string; + encode(message: _81.MissedBlock, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _81.MissedBlock; fromJSON(object: any): _81.MissedBlock; toJSON(message: _81.MissedBlock): unknown; fromPartial(object: Partial<_81.MissedBlock>): _81.MissedBlock; @@ -8131,8 +8594,8 @@ export declare namespace cosmos { } namespace staking { const v1beta1: { - MsgClientImpl: typeof _227.MsgClientImpl; - QueryClientImpl: typeof _213.QueryClientImpl; + MsgClientImpl: typeof _228.MsgClientImpl; + QueryClientImpl: typeof _214.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { validators(request: _87.QueryValidatorsRequest): Promise<_87.QueryValidatorsResponse>; validator(request: _87.QueryValidatorRequest): Promise<_87.QueryValidatorResponse>; @@ -8149,7 +8612,7 @@ export declare namespace cosmos { pool(request?: _87.QueryPoolRequest | undefined): Promise<_87.QueryPoolResponse>; params(request?: _87.QueryParamsRequest | undefined): Promise<_87.QueryParamsResponse>; }; - LCDQueryClient: typeof _194.LCDQueryClient; + LCDQueryClient: typeof _195.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -8317,8 +8780,9 @@ export declare namespace cosmos { }; }; MsgCreateValidator: { - encode(message: _89.MsgCreateValidator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgCreateValidator; + typeUrl: string; + encode(message: _89.MsgCreateValidator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgCreateValidator; fromJSON(object: any): _89.MsgCreateValidator; toJSON(message: _89.MsgCreateValidator): unknown; fromPartial(object: Partial<_89.MsgCreateValidator>): _89.MsgCreateValidator; @@ -8331,8 +8795,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgCreateValidator): _89.MsgCreateValidatorProtoMsg; }; MsgCreateValidatorResponse: { - encode(_: _89.MsgCreateValidatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgCreateValidatorResponse; + typeUrl: string; + encode(_: _89.MsgCreateValidatorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgCreateValidatorResponse; fromJSON(_: any): _89.MsgCreateValidatorResponse; toJSON(_: _89.MsgCreateValidatorResponse): unknown; fromPartial(_: Partial<_89.MsgCreateValidatorResponse>): _89.MsgCreateValidatorResponse; @@ -8345,8 +8810,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgCreateValidatorResponse): _89.MsgCreateValidatorResponseProtoMsg; }; MsgEditValidator: { - encode(message: _89.MsgEditValidator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgEditValidator; + typeUrl: string; + encode(message: _89.MsgEditValidator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgEditValidator; fromJSON(object: any): _89.MsgEditValidator; toJSON(message: _89.MsgEditValidator): unknown; fromPartial(object: Partial<_89.MsgEditValidator>): _89.MsgEditValidator; @@ -8359,8 +8825,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgEditValidator): _89.MsgEditValidatorProtoMsg; }; MsgEditValidatorResponse: { - encode(_: _89.MsgEditValidatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgEditValidatorResponse; + typeUrl: string; + encode(_: _89.MsgEditValidatorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgEditValidatorResponse; fromJSON(_: any): _89.MsgEditValidatorResponse; toJSON(_: _89.MsgEditValidatorResponse): unknown; fromPartial(_: Partial<_89.MsgEditValidatorResponse>): _89.MsgEditValidatorResponse; @@ -8373,8 +8840,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgEditValidatorResponse): _89.MsgEditValidatorResponseProtoMsg; }; MsgDelegate: { - encode(message: _89.MsgDelegate, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgDelegate; + typeUrl: string; + encode(message: _89.MsgDelegate, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgDelegate; fromJSON(object: any): _89.MsgDelegate; toJSON(message: _89.MsgDelegate): unknown; fromPartial(object: Partial<_89.MsgDelegate>): _89.MsgDelegate; @@ -8387,8 +8855,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgDelegate): _89.MsgDelegateProtoMsg; }; MsgDelegateResponse: { - encode(_: _89.MsgDelegateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgDelegateResponse; + typeUrl: string; + encode(_: _89.MsgDelegateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgDelegateResponse; fromJSON(_: any): _89.MsgDelegateResponse; toJSON(_: _89.MsgDelegateResponse): unknown; fromPartial(_: Partial<_89.MsgDelegateResponse>): _89.MsgDelegateResponse; @@ -8401,8 +8870,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgDelegateResponse): _89.MsgDelegateResponseProtoMsg; }; MsgBeginRedelegate: { - encode(message: _89.MsgBeginRedelegate, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgBeginRedelegate; + typeUrl: string; + encode(message: _89.MsgBeginRedelegate, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgBeginRedelegate; fromJSON(object: any): _89.MsgBeginRedelegate; toJSON(message: _89.MsgBeginRedelegate): unknown; fromPartial(object: Partial<_89.MsgBeginRedelegate>): _89.MsgBeginRedelegate; @@ -8415,8 +8885,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgBeginRedelegate): _89.MsgBeginRedelegateProtoMsg; }; MsgBeginRedelegateResponse: { - encode(message: _89.MsgBeginRedelegateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgBeginRedelegateResponse; + typeUrl: string; + encode(message: _89.MsgBeginRedelegateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgBeginRedelegateResponse; fromJSON(object: any): _89.MsgBeginRedelegateResponse; toJSON(message: _89.MsgBeginRedelegateResponse): unknown; fromPartial(object: Partial<_89.MsgBeginRedelegateResponse>): _89.MsgBeginRedelegateResponse; @@ -8429,8 +8900,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgBeginRedelegateResponse): _89.MsgBeginRedelegateResponseProtoMsg; }; MsgUndelegate: { - encode(message: _89.MsgUndelegate, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgUndelegate; + typeUrl: string; + encode(message: _89.MsgUndelegate, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgUndelegate; fromJSON(object: any): _89.MsgUndelegate; toJSON(message: _89.MsgUndelegate): unknown; fromPartial(object: Partial<_89.MsgUndelegate>): _89.MsgUndelegate; @@ -8443,8 +8915,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgUndelegate): _89.MsgUndelegateProtoMsg; }; MsgUndelegateResponse: { - encode(message: _89.MsgUndelegateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgUndelegateResponse; + typeUrl: string; + encode(message: _89.MsgUndelegateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgUndelegateResponse; fromJSON(object: any): _89.MsgUndelegateResponse; toJSON(message: _89.MsgUndelegateResponse): unknown; fromPartial(object: Partial<_89.MsgUndelegateResponse>): _89.MsgUndelegateResponse; @@ -8457,8 +8930,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgUndelegateResponse): _89.MsgUndelegateResponseProtoMsg; }; MsgCancelUnbondingDelegation: { - encode(message: _89.MsgCancelUnbondingDelegation, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgCancelUnbondingDelegation; + typeUrl: string; + encode(message: _89.MsgCancelUnbondingDelegation, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgCancelUnbondingDelegation; fromJSON(object: any): _89.MsgCancelUnbondingDelegation; toJSON(message: _89.MsgCancelUnbondingDelegation): unknown; fromPartial(object: Partial<_89.MsgCancelUnbondingDelegation>): _89.MsgCancelUnbondingDelegation; @@ -8471,8 +8945,9 @@ export declare namespace cosmos { toProtoMsg(message: _89.MsgCancelUnbondingDelegation): _89.MsgCancelUnbondingDelegationProtoMsg; }; MsgCancelUnbondingDelegationResponse: { - encode(_: _89.MsgCancelUnbondingDelegationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _89.MsgCancelUnbondingDelegationResponse; + typeUrl: string; + encode(_: _89.MsgCancelUnbondingDelegationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _89.MsgCancelUnbondingDelegationResponse; fromJSON(_: any): _89.MsgCancelUnbondingDelegationResponse; toJSON(_: _89.MsgCancelUnbondingDelegationResponse): unknown; fromPartial(_: Partial<_89.MsgCancelUnbondingDelegationResponse>): _89.MsgCancelUnbondingDelegationResponse; @@ -8484,20 +8959,18 @@ export declare namespace cosmos { toProto(message: _89.MsgCancelUnbondingDelegationResponse): Uint8Array; toProtoMsg(message: _89.MsgCancelUnbondingDelegationResponse): _89.MsgCancelUnbondingDelegationResponseProtoMsg; }; - Cosmos_cryptoPubKey_InterfaceDecoder: (input: Uint8Array | import("protobufjs").Reader) => import("../google/protobuf/any").Any; - Cosmos_cryptoPubKey_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => string; - Cosmos_cryptoPubKey_ToAmino: (content: import("../google/protobuf/any").Any) => { - typeUrl: string; - value: Uint8Array; - }; + Cosmos_cryptoPubKey_InterfaceDecoder: (input: Uint8Array | import("..").BinaryReader) => import("../google/protobuf/any").Any; + Cosmos_cryptoPubKey_FromAmino: (content: import("../google/protobuf/any").AnyAmino) => import("../google/protobuf/any").Any; + Cosmos_cryptoPubKey_ToAmino: (content: import("../google/protobuf/any").Any) => import("@cosmjs/amino").Pubkey | null; bondStatusFromJSON(object: any): _88.BondStatus; bondStatusToJSON(object: _88.BondStatus): string; BondStatus: typeof _88.BondStatus; BondStatusSDKType: typeof _88.BondStatus; BondStatusAmino: typeof _88.BondStatus; HistoricalInfo: { - encode(message: _88.HistoricalInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.HistoricalInfo; + typeUrl: string; + encode(message: _88.HistoricalInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.HistoricalInfo; fromJSON(object: any): _88.HistoricalInfo; toJSON(message: _88.HistoricalInfo): unknown; fromPartial(object: Partial<_88.HistoricalInfo>): _88.HistoricalInfo; @@ -8510,8 +8983,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.HistoricalInfo): _88.HistoricalInfoProtoMsg; }; CommissionRates: { - encode(message: _88.CommissionRates, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.CommissionRates; + typeUrl: string; + encode(message: _88.CommissionRates, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.CommissionRates; fromJSON(object: any): _88.CommissionRates; toJSON(message: _88.CommissionRates): unknown; fromPartial(object: Partial<_88.CommissionRates>): _88.CommissionRates; @@ -8524,8 +8998,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.CommissionRates): _88.CommissionRatesProtoMsg; }; Commission: { - encode(message: _88.Commission, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Commission; + typeUrl: string; + encode(message: _88.Commission, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Commission; fromJSON(object: any): _88.Commission; toJSON(message: _88.Commission): unknown; fromPartial(object: Partial<_88.Commission>): _88.Commission; @@ -8538,8 +9013,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Commission): _88.CommissionProtoMsg; }; Description: { - encode(message: _88.Description, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Description; + typeUrl: string; + encode(message: _88.Description, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Description; fromJSON(object: any): _88.Description; toJSON(message: _88.Description): unknown; fromPartial(object: Partial<_88.Description>): _88.Description; @@ -8552,8 +9028,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Description): _88.DescriptionProtoMsg; }; Validator: { - encode(message: _88.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Validator; + typeUrl: string; + encode(message: _88.Validator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Validator; fromJSON(object: any): _88.Validator; toJSON(message: _88.Validator): unknown; fromPartial(object: Partial<_88.Validator>): _88.Validator; @@ -8566,8 +9043,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Validator): _88.ValidatorProtoMsg; }; ValAddresses: { - encode(message: _88.ValAddresses, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.ValAddresses; + typeUrl: string; + encode(message: _88.ValAddresses, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.ValAddresses; fromJSON(object: any): _88.ValAddresses; toJSON(message: _88.ValAddresses): unknown; fromPartial(object: Partial<_88.ValAddresses>): _88.ValAddresses; @@ -8580,8 +9058,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.ValAddresses): _88.ValAddressesProtoMsg; }; DVPair: { - encode(message: _88.DVPair, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.DVPair; + typeUrl: string; + encode(message: _88.DVPair, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.DVPair; fromJSON(object: any): _88.DVPair; toJSON(message: _88.DVPair): unknown; fromPartial(object: Partial<_88.DVPair>): _88.DVPair; @@ -8594,8 +9073,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.DVPair): _88.DVPairProtoMsg; }; DVPairs: { - encode(message: _88.DVPairs, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.DVPairs; + typeUrl: string; + encode(message: _88.DVPairs, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.DVPairs; fromJSON(object: any): _88.DVPairs; toJSON(message: _88.DVPairs): unknown; fromPartial(object: Partial<_88.DVPairs>): _88.DVPairs; @@ -8608,8 +9088,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.DVPairs): _88.DVPairsProtoMsg; }; DVVTriplet: { - encode(message: _88.DVVTriplet, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.DVVTriplet; + typeUrl: string; + encode(message: _88.DVVTriplet, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.DVVTriplet; fromJSON(object: any): _88.DVVTriplet; toJSON(message: _88.DVVTriplet): unknown; fromPartial(object: Partial<_88.DVVTriplet>): _88.DVVTriplet; @@ -8622,8 +9103,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.DVVTriplet): _88.DVVTripletProtoMsg; }; DVVTriplets: { - encode(message: _88.DVVTriplets, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.DVVTriplets; + typeUrl: string; + encode(message: _88.DVVTriplets, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.DVVTriplets; fromJSON(object: any): _88.DVVTriplets; toJSON(message: _88.DVVTriplets): unknown; fromPartial(object: Partial<_88.DVVTriplets>): _88.DVVTriplets; @@ -8636,8 +9118,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.DVVTriplets): _88.DVVTripletsProtoMsg; }; Delegation: { - encode(message: _88.Delegation, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Delegation; + typeUrl: string; + encode(message: _88.Delegation, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Delegation; fromJSON(object: any): _88.Delegation; toJSON(message: _88.Delegation): unknown; fromPartial(object: Partial<_88.Delegation>): _88.Delegation; @@ -8650,8 +9133,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Delegation): _88.DelegationProtoMsg; }; UnbondingDelegation: { - encode(message: _88.UnbondingDelegation, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.UnbondingDelegation; + typeUrl: string; + encode(message: _88.UnbondingDelegation, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.UnbondingDelegation; fromJSON(object: any): _88.UnbondingDelegation; toJSON(message: _88.UnbondingDelegation): unknown; fromPartial(object: Partial<_88.UnbondingDelegation>): _88.UnbondingDelegation; @@ -8664,8 +9148,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.UnbondingDelegation): _88.UnbondingDelegationProtoMsg; }; UnbondingDelegationEntry: { - encode(message: _88.UnbondingDelegationEntry, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.UnbondingDelegationEntry; + typeUrl: string; + encode(message: _88.UnbondingDelegationEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.UnbondingDelegationEntry; fromJSON(object: any): _88.UnbondingDelegationEntry; toJSON(message: _88.UnbondingDelegationEntry): unknown; fromPartial(object: Partial<_88.UnbondingDelegationEntry>): _88.UnbondingDelegationEntry; @@ -8678,8 +9163,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.UnbondingDelegationEntry): _88.UnbondingDelegationEntryProtoMsg; }; RedelegationEntry: { - encode(message: _88.RedelegationEntry, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.RedelegationEntry; + typeUrl: string; + encode(message: _88.RedelegationEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.RedelegationEntry; fromJSON(object: any): _88.RedelegationEntry; toJSON(message: _88.RedelegationEntry): unknown; fromPartial(object: Partial<_88.RedelegationEntry>): _88.RedelegationEntry; @@ -8692,8 +9178,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.RedelegationEntry): _88.RedelegationEntryProtoMsg; }; Redelegation: { - encode(message: _88.Redelegation, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Redelegation; + typeUrl: string; + encode(message: _88.Redelegation, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Redelegation; fromJSON(object: any): _88.Redelegation; toJSON(message: _88.Redelegation): unknown; fromPartial(object: Partial<_88.Redelegation>): _88.Redelegation; @@ -8706,8 +9193,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Redelegation): _88.RedelegationProtoMsg; }; Params: { - encode(message: _88.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Params; + typeUrl: string; + encode(message: _88.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Params; fromJSON(object: any): _88.Params; toJSON(message: _88.Params): unknown; fromPartial(object: Partial<_88.Params>): _88.Params; @@ -8720,8 +9208,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Params): _88.ParamsProtoMsg; }; DelegationResponse: { - encode(message: _88.DelegationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.DelegationResponse; + typeUrl: string; + encode(message: _88.DelegationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.DelegationResponse; fromJSON(object: any): _88.DelegationResponse; toJSON(message: _88.DelegationResponse): unknown; fromPartial(object: Partial<_88.DelegationResponse>): _88.DelegationResponse; @@ -8734,8 +9223,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.DelegationResponse): _88.DelegationResponseProtoMsg; }; RedelegationEntryResponse: { - encode(message: _88.RedelegationEntryResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.RedelegationEntryResponse; + typeUrl: string; + encode(message: _88.RedelegationEntryResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.RedelegationEntryResponse; fromJSON(object: any): _88.RedelegationEntryResponse; toJSON(message: _88.RedelegationEntryResponse): unknown; fromPartial(object: Partial<_88.RedelegationEntryResponse>): _88.RedelegationEntryResponse; @@ -8748,8 +9238,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.RedelegationEntryResponse): _88.RedelegationEntryResponseProtoMsg; }; RedelegationResponse: { - encode(message: _88.RedelegationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.RedelegationResponse; + typeUrl: string; + encode(message: _88.RedelegationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.RedelegationResponse; fromJSON(object: any): _88.RedelegationResponse; toJSON(message: _88.RedelegationResponse): unknown; fromPartial(object: Partial<_88.RedelegationResponse>): _88.RedelegationResponse; @@ -8762,8 +9253,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.RedelegationResponse): _88.RedelegationResponseProtoMsg; }; Pool: { - encode(message: _88.Pool, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _88.Pool; + typeUrl: string; + encode(message: _88.Pool, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _88.Pool; fromJSON(object: any): _88.Pool; toJSON(message: _88.Pool): unknown; fromPartial(object: Partial<_88.Pool>): _88.Pool; @@ -8776,8 +9268,9 @@ export declare namespace cosmos { toProtoMsg(message: _88.Pool): _88.PoolProtoMsg; }; QueryValidatorsRequest: { - encode(message: _87.QueryValidatorsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorsRequest; + typeUrl: string; + encode(message: _87.QueryValidatorsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorsRequest; fromJSON(object: any): _87.QueryValidatorsRequest; toJSON(message: _87.QueryValidatorsRequest): unknown; fromPartial(object: Partial<_87.QueryValidatorsRequest>): _87.QueryValidatorsRequest; @@ -8790,8 +9283,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorsRequest): _87.QueryValidatorsRequestProtoMsg; }; QueryValidatorsResponse: { - encode(message: _87.QueryValidatorsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorsResponse; + typeUrl: string; + encode(message: _87.QueryValidatorsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorsResponse; fromJSON(object: any): _87.QueryValidatorsResponse; toJSON(message: _87.QueryValidatorsResponse): unknown; fromPartial(object: Partial<_87.QueryValidatorsResponse>): _87.QueryValidatorsResponse; @@ -8804,8 +9298,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorsResponse): _87.QueryValidatorsResponseProtoMsg; }; QueryValidatorRequest: { - encode(message: _87.QueryValidatorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorRequest; + typeUrl: string; + encode(message: _87.QueryValidatorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorRequest; fromJSON(object: any): _87.QueryValidatorRequest; toJSON(message: _87.QueryValidatorRequest): unknown; fromPartial(object: Partial<_87.QueryValidatorRequest>): _87.QueryValidatorRequest; @@ -8818,8 +9313,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorRequest): _87.QueryValidatorRequestProtoMsg; }; QueryValidatorResponse: { - encode(message: _87.QueryValidatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorResponse; + typeUrl: string; + encode(message: _87.QueryValidatorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorResponse; fromJSON(object: any): _87.QueryValidatorResponse; toJSON(message: _87.QueryValidatorResponse): unknown; fromPartial(object: Partial<_87.QueryValidatorResponse>): _87.QueryValidatorResponse; @@ -8832,8 +9328,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorResponse): _87.QueryValidatorResponseProtoMsg; }; QueryValidatorDelegationsRequest: { - encode(message: _87.QueryValidatorDelegationsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorDelegationsRequest; + typeUrl: string; + encode(message: _87.QueryValidatorDelegationsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorDelegationsRequest; fromJSON(object: any): _87.QueryValidatorDelegationsRequest; toJSON(message: _87.QueryValidatorDelegationsRequest): unknown; fromPartial(object: Partial<_87.QueryValidatorDelegationsRequest>): _87.QueryValidatorDelegationsRequest; @@ -8846,8 +9343,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorDelegationsRequest): _87.QueryValidatorDelegationsRequestProtoMsg; }; QueryValidatorDelegationsResponse: { - encode(message: _87.QueryValidatorDelegationsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorDelegationsResponse; + typeUrl: string; + encode(message: _87.QueryValidatorDelegationsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorDelegationsResponse; fromJSON(object: any): _87.QueryValidatorDelegationsResponse; toJSON(message: _87.QueryValidatorDelegationsResponse): unknown; fromPartial(object: Partial<_87.QueryValidatorDelegationsResponse>): _87.QueryValidatorDelegationsResponse; @@ -8860,8 +9358,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorDelegationsResponse): _87.QueryValidatorDelegationsResponseProtoMsg; }; QueryValidatorUnbondingDelegationsRequest: { - encode(message: _87.QueryValidatorUnbondingDelegationsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorUnbondingDelegationsRequest; + typeUrl: string; + encode(message: _87.QueryValidatorUnbondingDelegationsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorUnbondingDelegationsRequest; fromJSON(object: any): _87.QueryValidatorUnbondingDelegationsRequest; toJSON(message: _87.QueryValidatorUnbondingDelegationsRequest): unknown; fromPartial(object: Partial<_87.QueryValidatorUnbondingDelegationsRequest>): _87.QueryValidatorUnbondingDelegationsRequest; @@ -8874,8 +9373,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorUnbondingDelegationsRequest): _87.QueryValidatorUnbondingDelegationsRequestProtoMsg; }; QueryValidatorUnbondingDelegationsResponse: { - encode(message: _87.QueryValidatorUnbondingDelegationsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryValidatorUnbondingDelegationsResponse; + typeUrl: string; + encode(message: _87.QueryValidatorUnbondingDelegationsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryValidatorUnbondingDelegationsResponse; fromJSON(object: any): _87.QueryValidatorUnbondingDelegationsResponse; toJSON(message: _87.QueryValidatorUnbondingDelegationsResponse): unknown; fromPartial(object: Partial<_87.QueryValidatorUnbondingDelegationsResponse>): _87.QueryValidatorUnbondingDelegationsResponse; @@ -8888,8 +9388,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryValidatorUnbondingDelegationsResponse): _87.QueryValidatorUnbondingDelegationsResponseProtoMsg; }; QueryDelegationRequest: { - encode(message: _87.QueryDelegationRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegationRequest; + typeUrl: string; + encode(message: _87.QueryDelegationRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegationRequest; fromJSON(object: any): _87.QueryDelegationRequest; toJSON(message: _87.QueryDelegationRequest): unknown; fromPartial(object: Partial<_87.QueryDelegationRequest>): _87.QueryDelegationRequest; @@ -8902,8 +9403,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegationRequest): _87.QueryDelegationRequestProtoMsg; }; QueryDelegationResponse: { - encode(message: _87.QueryDelegationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegationResponse; + typeUrl: string; + encode(message: _87.QueryDelegationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegationResponse; fromJSON(object: any): _87.QueryDelegationResponse; toJSON(message: _87.QueryDelegationResponse): unknown; fromPartial(object: Partial<_87.QueryDelegationResponse>): _87.QueryDelegationResponse; @@ -8916,8 +9418,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegationResponse): _87.QueryDelegationResponseProtoMsg; }; QueryUnbondingDelegationRequest: { - encode(message: _87.QueryUnbondingDelegationRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryUnbondingDelegationRequest; + typeUrl: string; + encode(message: _87.QueryUnbondingDelegationRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryUnbondingDelegationRequest; fromJSON(object: any): _87.QueryUnbondingDelegationRequest; toJSON(message: _87.QueryUnbondingDelegationRequest): unknown; fromPartial(object: Partial<_87.QueryUnbondingDelegationRequest>): _87.QueryUnbondingDelegationRequest; @@ -8930,8 +9433,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryUnbondingDelegationRequest): _87.QueryUnbondingDelegationRequestProtoMsg; }; QueryUnbondingDelegationResponse: { - encode(message: _87.QueryUnbondingDelegationResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryUnbondingDelegationResponse; + typeUrl: string; + encode(message: _87.QueryUnbondingDelegationResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryUnbondingDelegationResponse; fromJSON(object: any): _87.QueryUnbondingDelegationResponse; toJSON(message: _87.QueryUnbondingDelegationResponse): unknown; fromPartial(object: Partial<_87.QueryUnbondingDelegationResponse>): _87.QueryUnbondingDelegationResponse; @@ -8944,8 +9448,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryUnbondingDelegationResponse): _87.QueryUnbondingDelegationResponseProtoMsg; }; QueryDelegatorDelegationsRequest: { - encode(message: _87.QueryDelegatorDelegationsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorDelegationsRequest; + typeUrl: string; + encode(message: _87.QueryDelegatorDelegationsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorDelegationsRequest; fromJSON(object: any): _87.QueryDelegatorDelegationsRequest; toJSON(message: _87.QueryDelegatorDelegationsRequest): unknown; fromPartial(object: Partial<_87.QueryDelegatorDelegationsRequest>): _87.QueryDelegatorDelegationsRequest; @@ -8958,8 +9463,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorDelegationsRequest): _87.QueryDelegatorDelegationsRequestProtoMsg; }; QueryDelegatorDelegationsResponse: { - encode(message: _87.QueryDelegatorDelegationsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorDelegationsResponse; + typeUrl: string; + encode(message: _87.QueryDelegatorDelegationsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorDelegationsResponse; fromJSON(object: any): _87.QueryDelegatorDelegationsResponse; toJSON(message: _87.QueryDelegatorDelegationsResponse): unknown; fromPartial(object: Partial<_87.QueryDelegatorDelegationsResponse>): _87.QueryDelegatorDelegationsResponse; @@ -8972,8 +9478,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorDelegationsResponse): _87.QueryDelegatorDelegationsResponseProtoMsg; }; QueryDelegatorUnbondingDelegationsRequest: { - encode(message: _87.QueryDelegatorUnbondingDelegationsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorUnbondingDelegationsRequest; + typeUrl: string; + encode(message: _87.QueryDelegatorUnbondingDelegationsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorUnbondingDelegationsRequest; fromJSON(object: any): _87.QueryDelegatorUnbondingDelegationsRequest; toJSON(message: _87.QueryDelegatorUnbondingDelegationsRequest): unknown; fromPartial(object: Partial<_87.QueryDelegatorUnbondingDelegationsRequest>): _87.QueryDelegatorUnbondingDelegationsRequest; @@ -8986,8 +9493,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorUnbondingDelegationsRequest): _87.QueryDelegatorUnbondingDelegationsRequestProtoMsg; }; QueryDelegatorUnbondingDelegationsResponse: { - encode(message: _87.QueryDelegatorUnbondingDelegationsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorUnbondingDelegationsResponse; + typeUrl: string; + encode(message: _87.QueryDelegatorUnbondingDelegationsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorUnbondingDelegationsResponse; fromJSON(object: any): _87.QueryDelegatorUnbondingDelegationsResponse; toJSON(message: _87.QueryDelegatorUnbondingDelegationsResponse): unknown; fromPartial(object: Partial<_87.QueryDelegatorUnbondingDelegationsResponse>): _87.QueryDelegatorUnbondingDelegationsResponse; @@ -9000,8 +9508,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorUnbondingDelegationsResponse): _87.QueryDelegatorUnbondingDelegationsResponseProtoMsg; }; QueryRedelegationsRequest: { - encode(message: _87.QueryRedelegationsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryRedelegationsRequest; + typeUrl: string; + encode(message: _87.QueryRedelegationsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryRedelegationsRequest; fromJSON(object: any): _87.QueryRedelegationsRequest; toJSON(message: _87.QueryRedelegationsRequest): unknown; fromPartial(object: Partial<_87.QueryRedelegationsRequest>): _87.QueryRedelegationsRequest; @@ -9014,8 +9523,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryRedelegationsRequest): _87.QueryRedelegationsRequestProtoMsg; }; QueryRedelegationsResponse: { - encode(message: _87.QueryRedelegationsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryRedelegationsResponse; + typeUrl: string; + encode(message: _87.QueryRedelegationsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryRedelegationsResponse; fromJSON(object: any): _87.QueryRedelegationsResponse; toJSON(message: _87.QueryRedelegationsResponse): unknown; fromPartial(object: Partial<_87.QueryRedelegationsResponse>): _87.QueryRedelegationsResponse; @@ -9028,8 +9538,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryRedelegationsResponse): _87.QueryRedelegationsResponseProtoMsg; }; QueryDelegatorValidatorsRequest: { - encode(message: _87.QueryDelegatorValidatorsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorValidatorsRequest; + typeUrl: string; + encode(message: _87.QueryDelegatorValidatorsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorValidatorsRequest; fromJSON(object: any): _87.QueryDelegatorValidatorsRequest; toJSON(message: _87.QueryDelegatorValidatorsRequest): unknown; fromPartial(object: Partial<_87.QueryDelegatorValidatorsRequest>): _87.QueryDelegatorValidatorsRequest; @@ -9042,8 +9553,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorValidatorsRequest): _87.QueryDelegatorValidatorsRequestProtoMsg; }; QueryDelegatorValidatorsResponse: { - encode(message: _87.QueryDelegatorValidatorsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorValidatorsResponse; + typeUrl: string; + encode(message: _87.QueryDelegatorValidatorsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorValidatorsResponse; fromJSON(object: any): _87.QueryDelegatorValidatorsResponse; toJSON(message: _87.QueryDelegatorValidatorsResponse): unknown; fromPartial(object: Partial<_87.QueryDelegatorValidatorsResponse>): _87.QueryDelegatorValidatorsResponse; @@ -9056,8 +9568,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorValidatorsResponse): _87.QueryDelegatorValidatorsResponseProtoMsg; }; QueryDelegatorValidatorRequest: { - encode(message: _87.QueryDelegatorValidatorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorValidatorRequest; + typeUrl: string; + encode(message: _87.QueryDelegatorValidatorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorValidatorRequest; fromJSON(object: any): _87.QueryDelegatorValidatorRequest; toJSON(message: _87.QueryDelegatorValidatorRequest): unknown; fromPartial(object: Partial<_87.QueryDelegatorValidatorRequest>): _87.QueryDelegatorValidatorRequest; @@ -9070,8 +9583,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorValidatorRequest): _87.QueryDelegatorValidatorRequestProtoMsg; }; QueryDelegatorValidatorResponse: { - encode(message: _87.QueryDelegatorValidatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryDelegatorValidatorResponse; + typeUrl: string; + encode(message: _87.QueryDelegatorValidatorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryDelegatorValidatorResponse; fromJSON(object: any): _87.QueryDelegatorValidatorResponse; toJSON(message: _87.QueryDelegatorValidatorResponse): unknown; fromPartial(object: Partial<_87.QueryDelegatorValidatorResponse>): _87.QueryDelegatorValidatorResponse; @@ -9084,8 +9598,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryDelegatorValidatorResponse): _87.QueryDelegatorValidatorResponseProtoMsg; }; QueryHistoricalInfoRequest: { - encode(message: _87.QueryHistoricalInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryHistoricalInfoRequest; + typeUrl: string; + encode(message: _87.QueryHistoricalInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryHistoricalInfoRequest; fromJSON(object: any): _87.QueryHistoricalInfoRequest; toJSON(message: _87.QueryHistoricalInfoRequest): unknown; fromPartial(object: Partial<_87.QueryHistoricalInfoRequest>): _87.QueryHistoricalInfoRequest; @@ -9098,8 +9613,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryHistoricalInfoRequest): _87.QueryHistoricalInfoRequestProtoMsg; }; QueryHistoricalInfoResponse: { - encode(message: _87.QueryHistoricalInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryHistoricalInfoResponse; + typeUrl: string; + encode(message: _87.QueryHistoricalInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryHistoricalInfoResponse; fromJSON(object: any): _87.QueryHistoricalInfoResponse; toJSON(message: _87.QueryHistoricalInfoResponse): unknown; fromPartial(object: Partial<_87.QueryHistoricalInfoResponse>): _87.QueryHistoricalInfoResponse; @@ -9112,8 +9628,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryHistoricalInfoResponse): _87.QueryHistoricalInfoResponseProtoMsg; }; QueryPoolRequest: { - encode(_: _87.QueryPoolRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryPoolRequest; + typeUrl: string; + encode(_: _87.QueryPoolRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryPoolRequest; fromJSON(_: any): _87.QueryPoolRequest; toJSON(_: _87.QueryPoolRequest): unknown; fromPartial(_: Partial<_87.QueryPoolRequest>): _87.QueryPoolRequest; @@ -9126,8 +9643,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryPoolRequest): _87.QueryPoolRequestProtoMsg; }; QueryPoolResponse: { - encode(message: _87.QueryPoolResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryPoolResponse; + typeUrl: string; + encode(message: _87.QueryPoolResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryPoolResponse; fromJSON(object: any): _87.QueryPoolResponse; toJSON(message: _87.QueryPoolResponse): unknown; fromPartial(object: Partial<_87.QueryPoolResponse>): _87.QueryPoolResponse; @@ -9140,8 +9658,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryPoolResponse): _87.QueryPoolResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _87.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryParamsRequest; + typeUrl: string; + encode(_: _87.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryParamsRequest; fromJSON(_: any): _87.QueryParamsRequest; toJSON(_: _87.QueryParamsRequest): unknown; fromPartial(_: Partial<_87.QueryParamsRequest>): _87.QueryParamsRequest; @@ -9154,8 +9673,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryParamsRequest): _87.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _87.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _87.QueryParamsResponse; + typeUrl: string; + encode(message: _87.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _87.QueryParamsResponse; fromJSON(object: any): _87.QueryParamsResponse; toJSON(message: _87.QueryParamsResponse): unknown; fromPartial(object: Partial<_87.QueryParamsResponse>): _87.QueryParamsResponse; @@ -9168,8 +9688,9 @@ export declare namespace cosmos { toProtoMsg(message: _87.QueryParamsResponse): _87.QueryParamsResponseProtoMsg; }; GenesisState: { - encode(message: _86.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _86.GenesisState; + typeUrl: string; + encode(message: _86.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _86.GenesisState; fromJSON(object: any): _86.GenesisState; toJSON(message: _86.GenesisState): unknown; fromPartial(object: Partial<_86.GenesisState>): _86.GenesisState; @@ -9182,8 +9703,9 @@ export declare namespace cosmos { toProtoMsg(message: _86.GenesisState): _86.GenesisStateProtoMsg; }; LastValidatorPower: { - encode(message: _86.LastValidatorPower, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _86.LastValidatorPower; + typeUrl: string; + encode(message: _86.LastValidatorPower, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _86.LastValidatorPower; fromJSON(object: any): _86.LastValidatorPower; toJSON(message: _86.LastValidatorPower): unknown; fromPartial(object: Partial<_86.LastValidatorPower>): _86.LastValidatorPower; @@ -9201,8 +9723,9 @@ export declare namespace cosmos { AuthorizationTypeSDKType: typeof _85.AuthorizationType; AuthorizationTypeAmino: typeof _85.AuthorizationType; StakeAuthorization: { - encode(message: _85.StakeAuthorization, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _85.StakeAuthorization; + typeUrl: string; + encode(message: _85.StakeAuthorization, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _85.StakeAuthorization; fromJSON(object: any): _85.StakeAuthorization; toJSON(message: _85.StakeAuthorization): unknown; fromPartial(object: Partial<_85.StakeAuthorization>): _85.StakeAuthorization; @@ -9215,8 +9738,9 @@ export declare namespace cosmos { toProtoMsg(message: _85.StakeAuthorization): _85.StakeAuthorizationProtoMsg; }; StakeAuthorization_Validators: { - encode(message: _85.StakeAuthorization_Validators, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _85.StakeAuthorization_Validators; + typeUrl: string; + encode(message: _85.StakeAuthorization_Validators, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _85.StakeAuthorization_Validators; fromJSON(object: any): _85.StakeAuthorization_Validators; toJSON(message: _85.StakeAuthorization_Validators): unknown; fromPartial(object: Partial<_85.StakeAuthorization_Validators>): _85.StakeAuthorization_Validators; @@ -9239,8 +9763,9 @@ export declare namespace cosmos { SignModeSDKType: typeof _90.SignMode; SignModeAmino: typeof _90.SignMode; SignatureDescriptors: { - encode(message: _90.SignatureDescriptors, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _90.SignatureDescriptors; + typeUrl: string; + encode(message: _90.SignatureDescriptors, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _90.SignatureDescriptors; fromJSON(object: any): _90.SignatureDescriptors; toJSON(message: _90.SignatureDescriptors): unknown; fromPartial(object: Partial<_90.SignatureDescriptors>): _90.SignatureDescriptors; @@ -9253,8 +9778,9 @@ export declare namespace cosmos { toProtoMsg(message: _90.SignatureDescriptors): _90.SignatureDescriptorsProtoMsg; }; SignatureDescriptor: { - encode(message: _90.SignatureDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _90.SignatureDescriptor; + typeUrl: string; + encode(message: _90.SignatureDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _90.SignatureDescriptor; fromJSON(object: any): _90.SignatureDescriptor; toJSON(message: _90.SignatureDescriptor): unknown; fromPartial(object: Partial<_90.SignatureDescriptor>): _90.SignatureDescriptor; @@ -9267,8 +9793,9 @@ export declare namespace cosmos { toProtoMsg(message: _90.SignatureDescriptor): _90.SignatureDescriptorProtoMsg; }; SignatureDescriptor_Data: { - encode(message: _90.SignatureDescriptor_Data, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _90.SignatureDescriptor_Data; + typeUrl: string; + encode(message: _90.SignatureDescriptor_Data, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _90.SignatureDescriptor_Data; fromJSON(object: any): _90.SignatureDescriptor_Data; toJSON(message: _90.SignatureDescriptor_Data): unknown; fromPartial(object: Partial<_90.SignatureDescriptor_Data>): _90.SignatureDescriptor_Data; @@ -9281,8 +9808,9 @@ export declare namespace cosmos { toProtoMsg(message: _90.SignatureDescriptor_Data): _90.SignatureDescriptor_DataProtoMsg; }; SignatureDescriptor_Data_Single: { - encode(message: _90.SignatureDescriptor_Data_Single, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _90.SignatureDescriptor_Data_Single; + typeUrl: string; + encode(message: _90.SignatureDescriptor_Data_Single, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _90.SignatureDescriptor_Data_Single; fromJSON(object: any): _90.SignatureDescriptor_Data_Single; toJSON(message: _90.SignatureDescriptor_Data_Single): unknown; fromPartial(object: Partial<_90.SignatureDescriptor_Data_Single>): _90.SignatureDescriptor_Data_Single; @@ -9295,8 +9823,9 @@ export declare namespace cosmos { toProtoMsg(message: _90.SignatureDescriptor_Data_Single): _90.SignatureDescriptor_Data_SingleProtoMsg; }; SignatureDescriptor_Data_Multi: { - encode(message: _90.SignatureDescriptor_Data_Multi, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _90.SignatureDescriptor_Data_Multi; + typeUrl: string; + encode(message: _90.SignatureDescriptor_Data_Multi, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _90.SignatureDescriptor_Data_Multi; fromJSON(object: any): _90.SignatureDescriptor_Data_Multi; toJSON(message: _90.SignatureDescriptor_Data_Multi): unknown; fromPartial(object: Partial<_90.SignatureDescriptor_Data_Multi>): _90.SignatureDescriptor_Data_Multi; @@ -9311,7 +9840,7 @@ export declare namespace cosmos { }; } const v1beta1: { - ServiceClientImpl: typeof _214.ServiceClientImpl; + ServiceClientImpl: typeof _215.ServiceClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { simulate(request: _91.SimulateRequest): Promise<_91.SimulateResponse>; getTx(request: _91.GetTxRequest): Promise<_91.GetTxResponse>; @@ -9319,10 +9848,11 @@ export declare namespace cosmos { getTxsEvent(request: _91.GetTxsEventRequest): Promise<_91.GetTxsEventResponse>; getBlockWithTxs(request: _91.GetBlockWithTxsRequest): Promise<_91.GetBlockWithTxsResponse>; }; - LCDQueryClient: typeof _195.LCDQueryClient; + LCDQueryClient: typeof _196.LCDQueryClient; Tx: { - encode(message: _92.Tx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.Tx; + typeUrl: string; + encode(message: _92.Tx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.Tx; fromJSON(object: any): _92.Tx; toJSON(message: _92.Tx): unknown; fromPartial(object: Partial<_92.Tx>): _92.Tx; @@ -9335,8 +9865,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.Tx): _92.TxProtoMsg; }; TxRaw: { - encode(message: _92.TxRaw, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.TxRaw; + typeUrl: string; + encode(message: _92.TxRaw, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.TxRaw; fromJSON(object: any): _92.TxRaw; toJSON(message: _92.TxRaw): unknown; fromPartial(object: Partial<_92.TxRaw>): _92.TxRaw; @@ -9349,8 +9880,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.TxRaw): _92.TxRawProtoMsg; }; SignDoc: { - encode(message: _92.SignDoc, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.SignDoc; + typeUrl: string; + encode(message: _92.SignDoc, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.SignDoc; fromJSON(object: any): _92.SignDoc; toJSON(message: _92.SignDoc): unknown; fromPartial(object: Partial<_92.SignDoc>): _92.SignDoc; @@ -9363,8 +9895,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.SignDoc): _92.SignDocProtoMsg; }; SignDocDirectAux: { - encode(message: _92.SignDocDirectAux, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.SignDocDirectAux; + typeUrl: string; + encode(message: _92.SignDocDirectAux, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.SignDocDirectAux; fromJSON(object: any): _92.SignDocDirectAux; toJSON(message: _92.SignDocDirectAux): unknown; fromPartial(object: Partial<_92.SignDocDirectAux>): _92.SignDocDirectAux; @@ -9377,8 +9910,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.SignDocDirectAux): _92.SignDocDirectAuxProtoMsg; }; TxBody: { - encode(message: _92.TxBody, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.TxBody; + typeUrl: string; + encode(message: _92.TxBody, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.TxBody; fromJSON(object: any): _92.TxBody; toJSON(message: _92.TxBody): unknown; fromPartial(object: Partial<_92.TxBody>): _92.TxBody; @@ -9391,8 +9925,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.TxBody): _92.TxBodyProtoMsg; }; AuthInfo: { - encode(message: _92.AuthInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.AuthInfo; + typeUrl: string; + encode(message: _92.AuthInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.AuthInfo; fromJSON(object: any): _92.AuthInfo; toJSON(message: _92.AuthInfo): unknown; fromPartial(object: Partial<_92.AuthInfo>): _92.AuthInfo; @@ -9405,8 +9940,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.AuthInfo): _92.AuthInfoProtoMsg; }; SignerInfo: { - encode(message: _92.SignerInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.SignerInfo; + typeUrl: string; + encode(message: _92.SignerInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.SignerInfo; fromJSON(object: any): _92.SignerInfo; toJSON(message: _92.SignerInfo): unknown; fromPartial(object: Partial<_92.SignerInfo>): _92.SignerInfo; @@ -9419,8 +9955,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.SignerInfo): _92.SignerInfoProtoMsg; }; ModeInfo: { - encode(message: _92.ModeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.ModeInfo; + typeUrl: string; + encode(message: _92.ModeInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.ModeInfo; fromJSON(object: any): _92.ModeInfo; toJSON(message: _92.ModeInfo): unknown; fromPartial(object: Partial<_92.ModeInfo>): _92.ModeInfo; @@ -9433,8 +9970,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.ModeInfo): _92.ModeInfoProtoMsg; }; ModeInfo_Single: { - encode(message: _92.ModeInfo_Single, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.ModeInfo_Single; + typeUrl: string; + encode(message: _92.ModeInfo_Single, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.ModeInfo_Single; fromJSON(object: any): _92.ModeInfo_Single; toJSON(message: _92.ModeInfo_Single): unknown; fromPartial(object: Partial<_92.ModeInfo_Single>): _92.ModeInfo_Single; @@ -9447,8 +9985,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.ModeInfo_Single): _92.ModeInfo_SingleProtoMsg; }; ModeInfo_Multi: { - encode(message: _92.ModeInfo_Multi, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.ModeInfo_Multi; + typeUrl: string; + encode(message: _92.ModeInfo_Multi, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.ModeInfo_Multi; fromJSON(object: any): _92.ModeInfo_Multi; toJSON(message: _92.ModeInfo_Multi): unknown; fromPartial(object: Partial<_92.ModeInfo_Multi>): _92.ModeInfo_Multi; @@ -9461,8 +10000,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.ModeInfo_Multi): _92.ModeInfo_MultiProtoMsg; }; Fee: { - encode(message: _92.Fee, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.Fee; + typeUrl: string; + encode(message: _92.Fee, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.Fee; fromJSON(object: any): _92.Fee; toJSON(message: _92.Fee): unknown; fromPartial(object: Partial<_92.Fee>): _92.Fee; @@ -9475,8 +10015,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.Fee): _92.FeeProtoMsg; }; Tip: { - encode(message: _92.Tip, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.Tip; + typeUrl: string; + encode(message: _92.Tip, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.Tip; fromJSON(object: any): _92.Tip; toJSON(message: _92.Tip): unknown; fromPartial(object: Partial<_92.Tip>): _92.Tip; @@ -9489,8 +10030,9 @@ export declare namespace cosmos { toProtoMsg(message: _92.Tip): _92.TipProtoMsg; }; AuxSignerData: { - encode(message: _92.AuxSignerData, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _92.AuxSignerData; + typeUrl: string; + encode(message: _92.AuxSignerData, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _92.AuxSignerData; fromJSON(object: any): _92.AuxSignerData; toJSON(message: _92.AuxSignerData): unknown; fromPartial(object: Partial<_92.AuxSignerData>): _92.AuxSignerData; @@ -9513,8 +10055,9 @@ export declare namespace cosmos { BroadcastModeSDKType: typeof _91.BroadcastMode; BroadcastModeAmino: typeof _91.BroadcastMode; GetTxsEventRequest: { - encode(message: _91.GetTxsEventRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.GetTxsEventRequest; + typeUrl: string; + encode(message: _91.GetTxsEventRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.GetTxsEventRequest; fromJSON(object: any): _91.GetTxsEventRequest; toJSON(message: _91.GetTxsEventRequest): unknown; fromPartial(object: Partial<_91.GetTxsEventRequest>): _91.GetTxsEventRequest; @@ -9527,8 +10070,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.GetTxsEventRequest): _91.GetTxsEventRequestProtoMsg; }; GetTxsEventResponse: { - encode(message: _91.GetTxsEventResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.GetTxsEventResponse; + typeUrl: string; + encode(message: _91.GetTxsEventResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.GetTxsEventResponse; fromJSON(object: any): _91.GetTxsEventResponse; toJSON(message: _91.GetTxsEventResponse): unknown; fromPartial(object: Partial<_91.GetTxsEventResponse>): _91.GetTxsEventResponse; @@ -9541,8 +10085,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.GetTxsEventResponse): _91.GetTxsEventResponseProtoMsg; }; BroadcastTxRequest: { - encode(message: _91.BroadcastTxRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.BroadcastTxRequest; + typeUrl: string; + encode(message: _91.BroadcastTxRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.BroadcastTxRequest; fromJSON(object: any): _91.BroadcastTxRequest; toJSON(message: _91.BroadcastTxRequest): unknown; fromPartial(object: Partial<_91.BroadcastTxRequest>): _91.BroadcastTxRequest; @@ -9555,8 +10100,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.BroadcastTxRequest): _91.BroadcastTxRequestProtoMsg; }; BroadcastTxResponse: { - encode(message: _91.BroadcastTxResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.BroadcastTxResponse; + typeUrl: string; + encode(message: _91.BroadcastTxResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.BroadcastTxResponse; fromJSON(object: any): _91.BroadcastTxResponse; toJSON(message: _91.BroadcastTxResponse): unknown; fromPartial(object: Partial<_91.BroadcastTxResponse>): _91.BroadcastTxResponse; @@ -9569,8 +10115,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.BroadcastTxResponse): _91.BroadcastTxResponseProtoMsg; }; SimulateRequest: { - encode(message: _91.SimulateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.SimulateRequest; + typeUrl: string; + encode(message: _91.SimulateRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.SimulateRequest; fromJSON(object: any): _91.SimulateRequest; toJSON(message: _91.SimulateRequest): unknown; fromPartial(object: Partial<_91.SimulateRequest>): _91.SimulateRequest; @@ -9583,8 +10130,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.SimulateRequest): _91.SimulateRequestProtoMsg; }; SimulateResponse: { - encode(message: _91.SimulateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.SimulateResponse; + typeUrl: string; + encode(message: _91.SimulateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.SimulateResponse; fromJSON(object: any): _91.SimulateResponse; toJSON(message: _91.SimulateResponse): unknown; fromPartial(object: Partial<_91.SimulateResponse>): _91.SimulateResponse; @@ -9597,8 +10145,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.SimulateResponse): _91.SimulateResponseProtoMsg; }; GetTxRequest: { - encode(message: _91.GetTxRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.GetTxRequest; + typeUrl: string; + encode(message: _91.GetTxRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.GetTxRequest; fromJSON(object: any): _91.GetTxRequest; toJSON(message: _91.GetTxRequest): unknown; fromPartial(object: Partial<_91.GetTxRequest>): _91.GetTxRequest; @@ -9611,8 +10160,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.GetTxRequest): _91.GetTxRequestProtoMsg; }; GetTxResponse: { - encode(message: _91.GetTxResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.GetTxResponse; + typeUrl: string; + encode(message: _91.GetTxResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.GetTxResponse; fromJSON(object: any): _91.GetTxResponse; toJSON(message: _91.GetTxResponse): unknown; fromPartial(object: Partial<_91.GetTxResponse>): _91.GetTxResponse; @@ -9625,8 +10175,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.GetTxResponse): _91.GetTxResponseProtoMsg; }; GetBlockWithTxsRequest: { - encode(message: _91.GetBlockWithTxsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.GetBlockWithTxsRequest; + typeUrl: string; + encode(message: _91.GetBlockWithTxsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.GetBlockWithTxsRequest; fromJSON(object: any): _91.GetBlockWithTxsRequest; toJSON(message: _91.GetBlockWithTxsRequest): unknown; fromPartial(object: Partial<_91.GetBlockWithTxsRequest>): _91.GetBlockWithTxsRequest; @@ -9639,8 +10190,9 @@ export declare namespace cosmos { toProtoMsg(message: _91.GetBlockWithTxsRequest): _91.GetBlockWithTxsRequestProtoMsg; }; GetBlockWithTxsResponse: { - encode(message: _91.GetBlockWithTxsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _91.GetBlockWithTxsResponse; + typeUrl: string; + encode(message: _91.GetBlockWithTxsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _91.GetBlockWithTxsResponse; fromJSON(object: any): _91.GetBlockWithTxsResponse; toJSON(message: _91.GetBlockWithTxsResponse): unknown; fromPartial(object: Partial<_91.GetBlockWithTxsResponse>): _91.GetBlockWithTxsResponse; @@ -9656,8 +10208,8 @@ export declare namespace cosmos { } namespace upgrade { const v1beta1: { - MsgClientImpl: typeof _228.MsgClientImpl; - QueryClientImpl: typeof _215.QueryClientImpl; + MsgClientImpl: typeof _229.MsgClientImpl; + QueryClientImpl: typeof _216.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { currentPlan(request?: _93.QueryCurrentPlanRequest | undefined): Promise<_93.QueryCurrentPlanResponse>; appliedPlan(request: _93.QueryAppliedPlanRequest): Promise<_93.QueryAppliedPlanResponse>; @@ -9665,7 +10217,7 @@ export declare namespace cosmos { moduleVersions(request: _93.QueryModuleVersionsRequest): Promise<_93.QueryModuleVersionsResponse>; authority(request?: _93.QueryAuthorityRequest | undefined): Promise<_93.QueryAuthorityResponse>; }; - LCDQueryClient: typeof _196.LCDQueryClient; + LCDQueryClient: typeof _197.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -9733,8 +10285,9 @@ export declare namespace cosmos { }; }; Plan: { - encode(message: _95.Plan, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _95.Plan; + typeUrl: string; + encode(message: _95.Plan, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _95.Plan; fromJSON(object: any): _95.Plan; toJSON(message: _95.Plan): unknown; fromPartial(object: Partial<_95.Plan>): _95.Plan; @@ -9747,8 +10300,9 @@ export declare namespace cosmos { toProtoMsg(message: _95.Plan): _95.PlanProtoMsg; }; SoftwareUpgradeProposal: { - encode(message: _95.SoftwareUpgradeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _95.SoftwareUpgradeProposal; + typeUrl: string; + encode(message: _95.SoftwareUpgradeProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _95.SoftwareUpgradeProposal; fromJSON(object: any): _95.SoftwareUpgradeProposal; toJSON(message: _95.SoftwareUpgradeProposal): unknown; fromPartial(object: Partial<_95.SoftwareUpgradeProposal>): _95.SoftwareUpgradeProposal; @@ -9761,8 +10315,9 @@ export declare namespace cosmos { toProtoMsg(message: _95.SoftwareUpgradeProposal): _95.SoftwareUpgradeProposalProtoMsg; }; CancelSoftwareUpgradeProposal: { - encode(message: _95.CancelSoftwareUpgradeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _95.CancelSoftwareUpgradeProposal; + typeUrl: string; + encode(message: _95.CancelSoftwareUpgradeProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _95.CancelSoftwareUpgradeProposal; fromJSON(object: any): _95.CancelSoftwareUpgradeProposal; toJSON(message: _95.CancelSoftwareUpgradeProposal): unknown; fromPartial(object: Partial<_95.CancelSoftwareUpgradeProposal>): _95.CancelSoftwareUpgradeProposal; @@ -9775,8 +10330,9 @@ export declare namespace cosmos { toProtoMsg(message: _95.CancelSoftwareUpgradeProposal): _95.CancelSoftwareUpgradeProposalProtoMsg; }; ModuleVersion: { - encode(message: _95.ModuleVersion, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _95.ModuleVersion; + typeUrl: string; + encode(message: _95.ModuleVersion, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _95.ModuleVersion; fromJSON(object: any): _95.ModuleVersion; toJSON(message: _95.ModuleVersion): unknown; fromPartial(object: Partial<_95.ModuleVersion>): _95.ModuleVersion; @@ -9789,8 +10345,9 @@ export declare namespace cosmos { toProtoMsg(message: _95.ModuleVersion): _95.ModuleVersionProtoMsg; }; MsgSoftwareUpgrade: { - encode(message: _94.MsgSoftwareUpgrade, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _94.MsgSoftwareUpgrade; + typeUrl: string; + encode(message: _94.MsgSoftwareUpgrade, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _94.MsgSoftwareUpgrade; fromJSON(object: any): _94.MsgSoftwareUpgrade; toJSON(message: _94.MsgSoftwareUpgrade): unknown; fromPartial(object: Partial<_94.MsgSoftwareUpgrade>): _94.MsgSoftwareUpgrade; @@ -9803,8 +10360,9 @@ export declare namespace cosmos { toProtoMsg(message: _94.MsgSoftwareUpgrade): _94.MsgSoftwareUpgradeProtoMsg; }; MsgSoftwareUpgradeResponse: { - encode(_: _94.MsgSoftwareUpgradeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _94.MsgSoftwareUpgradeResponse; + typeUrl: string; + encode(_: _94.MsgSoftwareUpgradeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _94.MsgSoftwareUpgradeResponse; fromJSON(_: any): _94.MsgSoftwareUpgradeResponse; toJSON(_: _94.MsgSoftwareUpgradeResponse): unknown; fromPartial(_: Partial<_94.MsgSoftwareUpgradeResponse>): _94.MsgSoftwareUpgradeResponse; @@ -9817,8 +10375,9 @@ export declare namespace cosmos { toProtoMsg(message: _94.MsgSoftwareUpgradeResponse): _94.MsgSoftwareUpgradeResponseProtoMsg; }; MsgCancelUpgrade: { - encode(message: _94.MsgCancelUpgrade, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _94.MsgCancelUpgrade; + typeUrl: string; + encode(message: _94.MsgCancelUpgrade, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _94.MsgCancelUpgrade; fromJSON(object: any): _94.MsgCancelUpgrade; toJSON(message: _94.MsgCancelUpgrade): unknown; fromPartial(object: Partial<_94.MsgCancelUpgrade>): _94.MsgCancelUpgrade; @@ -9831,8 +10390,9 @@ export declare namespace cosmos { toProtoMsg(message: _94.MsgCancelUpgrade): _94.MsgCancelUpgradeProtoMsg; }; MsgCancelUpgradeResponse: { - encode(_: _94.MsgCancelUpgradeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _94.MsgCancelUpgradeResponse; + typeUrl: string; + encode(_: _94.MsgCancelUpgradeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _94.MsgCancelUpgradeResponse; fromJSON(_: any): _94.MsgCancelUpgradeResponse; toJSON(_: _94.MsgCancelUpgradeResponse): unknown; fromPartial(_: Partial<_94.MsgCancelUpgradeResponse>): _94.MsgCancelUpgradeResponse; @@ -9845,8 +10405,9 @@ export declare namespace cosmos { toProtoMsg(message: _94.MsgCancelUpgradeResponse): _94.MsgCancelUpgradeResponseProtoMsg; }; QueryCurrentPlanRequest: { - encode(_: _93.QueryCurrentPlanRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryCurrentPlanRequest; + typeUrl: string; + encode(_: _93.QueryCurrentPlanRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryCurrentPlanRequest; fromJSON(_: any): _93.QueryCurrentPlanRequest; toJSON(_: _93.QueryCurrentPlanRequest): unknown; fromPartial(_: Partial<_93.QueryCurrentPlanRequest>): _93.QueryCurrentPlanRequest; @@ -9859,8 +10420,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryCurrentPlanRequest): _93.QueryCurrentPlanRequestProtoMsg; }; QueryCurrentPlanResponse: { - encode(message: _93.QueryCurrentPlanResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryCurrentPlanResponse; + typeUrl: string; + encode(message: _93.QueryCurrentPlanResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryCurrentPlanResponse; fromJSON(object: any): _93.QueryCurrentPlanResponse; toJSON(message: _93.QueryCurrentPlanResponse): unknown; fromPartial(object: Partial<_93.QueryCurrentPlanResponse>): _93.QueryCurrentPlanResponse; @@ -9873,8 +10435,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryCurrentPlanResponse): _93.QueryCurrentPlanResponseProtoMsg; }; QueryAppliedPlanRequest: { - encode(message: _93.QueryAppliedPlanRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryAppliedPlanRequest; + typeUrl: string; + encode(message: _93.QueryAppliedPlanRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryAppliedPlanRequest; fromJSON(object: any): _93.QueryAppliedPlanRequest; toJSON(message: _93.QueryAppliedPlanRequest): unknown; fromPartial(object: Partial<_93.QueryAppliedPlanRequest>): _93.QueryAppliedPlanRequest; @@ -9887,8 +10450,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryAppliedPlanRequest): _93.QueryAppliedPlanRequestProtoMsg; }; QueryAppliedPlanResponse: { - encode(message: _93.QueryAppliedPlanResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryAppliedPlanResponse; + typeUrl: string; + encode(message: _93.QueryAppliedPlanResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryAppliedPlanResponse; fromJSON(object: any): _93.QueryAppliedPlanResponse; toJSON(message: _93.QueryAppliedPlanResponse): unknown; fromPartial(object: Partial<_93.QueryAppliedPlanResponse>): _93.QueryAppliedPlanResponse; @@ -9901,8 +10465,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryAppliedPlanResponse): _93.QueryAppliedPlanResponseProtoMsg; }; QueryUpgradedConsensusStateRequest: { - encode(message: _93.QueryUpgradedConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryUpgradedConsensusStateRequest; + typeUrl: string; + encode(message: _93.QueryUpgradedConsensusStateRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryUpgradedConsensusStateRequest; fromJSON(object: any): _93.QueryUpgradedConsensusStateRequest; toJSON(message: _93.QueryUpgradedConsensusStateRequest): unknown; fromPartial(object: Partial<_93.QueryUpgradedConsensusStateRequest>): _93.QueryUpgradedConsensusStateRequest; @@ -9915,8 +10480,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryUpgradedConsensusStateRequest): _93.QueryUpgradedConsensusStateRequestProtoMsg; }; QueryUpgradedConsensusStateResponse: { - encode(message: _93.QueryUpgradedConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryUpgradedConsensusStateResponse; + typeUrl: string; + encode(message: _93.QueryUpgradedConsensusStateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryUpgradedConsensusStateResponse; fromJSON(object: any): _93.QueryUpgradedConsensusStateResponse; toJSON(message: _93.QueryUpgradedConsensusStateResponse): unknown; fromPartial(object: Partial<_93.QueryUpgradedConsensusStateResponse>): _93.QueryUpgradedConsensusStateResponse; @@ -9929,8 +10495,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryUpgradedConsensusStateResponse): _93.QueryUpgradedConsensusStateResponseProtoMsg; }; QueryModuleVersionsRequest: { - encode(message: _93.QueryModuleVersionsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryModuleVersionsRequest; + typeUrl: string; + encode(message: _93.QueryModuleVersionsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryModuleVersionsRequest; fromJSON(object: any): _93.QueryModuleVersionsRequest; toJSON(message: _93.QueryModuleVersionsRequest): unknown; fromPartial(object: Partial<_93.QueryModuleVersionsRequest>): _93.QueryModuleVersionsRequest; @@ -9943,8 +10510,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryModuleVersionsRequest): _93.QueryModuleVersionsRequestProtoMsg; }; QueryModuleVersionsResponse: { - encode(message: _93.QueryModuleVersionsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryModuleVersionsResponse; + typeUrl: string; + encode(message: _93.QueryModuleVersionsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryModuleVersionsResponse; fromJSON(object: any): _93.QueryModuleVersionsResponse; toJSON(message: _93.QueryModuleVersionsResponse): unknown; fromPartial(object: Partial<_93.QueryModuleVersionsResponse>): _93.QueryModuleVersionsResponse; @@ -9957,8 +10525,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryModuleVersionsResponse): _93.QueryModuleVersionsResponseProtoMsg; }; QueryAuthorityRequest: { - encode(_: _93.QueryAuthorityRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryAuthorityRequest; + typeUrl: string; + encode(_: _93.QueryAuthorityRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryAuthorityRequest; fromJSON(_: any): _93.QueryAuthorityRequest; toJSON(_: _93.QueryAuthorityRequest): unknown; fromPartial(_: Partial<_93.QueryAuthorityRequest>): _93.QueryAuthorityRequest; @@ -9971,8 +10540,9 @@ export declare namespace cosmos { toProtoMsg(message: _93.QueryAuthorityRequest): _93.QueryAuthorityRequestProtoMsg; }; QueryAuthorityResponse: { - encode(message: _93.QueryAuthorityResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _93.QueryAuthorityResponse; + typeUrl: string; + encode(message: _93.QueryAuthorityResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _93.QueryAuthorityResponse; fromJSON(object: any): _93.QueryAuthorityResponse; toJSON(message: _93.QueryAuthorityResponse): unknown; fromPartial(object: Partial<_93.QueryAuthorityResponse>): _93.QueryAuthorityResponse; @@ -9988,7 +10558,7 @@ export declare namespace cosmos { } namespace vesting { const v1beta1: { - MsgClientImpl: typeof _229.MsgClientImpl; + MsgClientImpl: typeof _230.MsgClientImpl; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { @@ -10081,8 +10651,9 @@ export declare namespace cosmos { }; }; BaseVestingAccount: { - encode(message: _97.BaseVestingAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _97.BaseVestingAccount; + typeUrl: string; + encode(message: _97.BaseVestingAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _97.BaseVestingAccount; fromJSON(object: any): _97.BaseVestingAccount; toJSON(message: _97.BaseVestingAccount): unknown; fromPartial(object: Partial<_97.BaseVestingAccount>): _97.BaseVestingAccount; @@ -10095,8 +10666,9 @@ export declare namespace cosmos { toProtoMsg(message: _97.BaseVestingAccount): _97.BaseVestingAccountProtoMsg; }; ContinuousVestingAccount: { - encode(message: _97.ContinuousVestingAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _97.ContinuousVestingAccount; + typeUrl: string; + encode(message: _97.ContinuousVestingAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _97.ContinuousVestingAccount; fromJSON(object: any): _97.ContinuousVestingAccount; toJSON(message: _97.ContinuousVestingAccount): unknown; fromPartial(object: Partial<_97.ContinuousVestingAccount>): _97.ContinuousVestingAccount; @@ -10109,8 +10681,9 @@ export declare namespace cosmos { toProtoMsg(message: _97.ContinuousVestingAccount): _97.ContinuousVestingAccountProtoMsg; }; DelayedVestingAccount: { - encode(message: _97.DelayedVestingAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _97.DelayedVestingAccount; + typeUrl: string; + encode(message: _97.DelayedVestingAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _97.DelayedVestingAccount; fromJSON(object: any): _97.DelayedVestingAccount; toJSON(message: _97.DelayedVestingAccount): unknown; fromPartial(object: Partial<_97.DelayedVestingAccount>): _97.DelayedVestingAccount; @@ -10123,8 +10696,9 @@ export declare namespace cosmos { toProtoMsg(message: _97.DelayedVestingAccount): _97.DelayedVestingAccountProtoMsg; }; Period: { - encode(message: _97.Period, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _97.Period; + typeUrl: string; + encode(message: _97.Period, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _97.Period; fromJSON(object: any): _97.Period; toJSON(message: _97.Period): unknown; fromPartial(object: Partial<_97.Period>): _97.Period; @@ -10137,8 +10711,9 @@ export declare namespace cosmos { toProtoMsg(message: _97.Period): _97.PeriodProtoMsg; }; PeriodicVestingAccount: { - encode(message: _97.PeriodicVestingAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _97.PeriodicVestingAccount; + typeUrl: string; + encode(message: _97.PeriodicVestingAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _97.PeriodicVestingAccount; fromJSON(object: any): _97.PeriodicVestingAccount; toJSON(message: _97.PeriodicVestingAccount): unknown; fromPartial(object: Partial<_97.PeriodicVestingAccount>): _97.PeriodicVestingAccount; @@ -10151,8 +10726,9 @@ export declare namespace cosmos { toProtoMsg(message: _97.PeriodicVestingAccount): _97.PeriodicVestingAccountProtoMsg; }; PermanentLockedAccount: { - encode(message: _97.PermanentLockedAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _97.PermanentLockedAccount; + typeUrl: string; + encode(message: _97.PermanentLockedAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _97.PermanentLockedAccount; fromJSON(object: any): _97.PermanentLockedAccount; toJSON(message: _97.PermanentLockedAccount): unknown; fromPartial(object: Partial<_97.PermanentLockedAccount>): _97.PermanentLockedAccount; @@ -10165,8 +10741,9 @@ export declare namespace cosmos { toProtoMsg(message: _97.PermanentLockedAccount): _97.PermanentLockedAccountProtoMsg; }; MsgCreateVestingAccount: { - encode(message: _96.MsgCreateVestingAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _96.MsgCreateVestingAccount; + typeUrl: string; + encode(message: _96.MsgCreateVestingAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _96.MsgCreateVestingAccount; fromJSON(object: any): _96.MsgCreateVestingAccount; toJSON(message: _96.MsgCreateVestingAccount): unknown; fromPartial(object: Partial<_96.MsgCreateVestingAccount>): _96.MsgCreateVestingAccount; @@ -10179,8 +10756,9 @@ export declare namespace cosmos { toProtoMsg(message: _96.MsgCreateVestingAccount): _96.MsgCreateVestingAccountProtoMsg; }; MsgCreateVestingAccountResponse: { - encode(_: _96.MsgCreateVestingAccountResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _96.MsgCreateVestingAccountResponse; + typeUrl: string; + encode(_: _96.MsgCreateVestingAccountResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _96.MsgCreateVestingAccountResponse; fromJSON(_: any): _96.MsgCreateVestingAccountResponse; toJSON(_: _96.MsgCreateVestingAccountResponse): unknown; fromPartial(_: Partial<_96.MsgCreateVestingAccountResponse>): _96.MsgCreateVestingAccountResponse; @@ -10193,8 +10771,9 @@ export declare namespace cosmos { toProtoMsg(message: _96.MsgCreateVestingAccountResponse): _96.MsgCreateVestingAccountResponseProtoMsg; }; MsgCreatePermanentLockedAccount: { - encode(message: _96.MsgCreatePermanentLockedAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _96.MsgCreatePermanentLockedAccount; + typeUrl: string; + encode(message: _96.MsgCreatePermanentLockedAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _96.MsgCreatePermanentLockedAccount; fromJSON(object: any): _96.MsgCreatePermanentLockedAccount; toJSON(message: _96.MsgCreatePermanentLockedAccount): unknown; fromPartial(object: Partial<_96.MsgCreatePermanentLockedAccount>): _96.MsgCreatePermanentLockedAccount; @@ -10207,8 +10786,9 @@ export declare namespace cosmos { toProtoMsg(message: _96.MsgCreatePermanentLockedAccount): _96.MsgCreatePermanentLockedAccountProtoMsg; }; MsgCreatePermanentLockedAccountResponse: { - encode(_: _96.MsgCreatePermanentLockedAccountResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _96.MsgCreatePermanentLockedAccountResponse; + typeUrl: string; + encode(_: _96.MsgCreatePermanentLockedAccountResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _96.MsgCreatePermanentLockedAccountResponse; fromJSON(_: any): _96.MsgCreatePermanentLockedAccountResponse; toJSON(_: _96.MsgCreatePermanentLockedAccountResponse): unknown; fromPartial(_: Partial<_96.MsgCreatePermanentLockedAccountResponse>): _96.MsgCreatePermanentLockedAccountResponse; @@ -10221,8 +10801,9 @@ export declare namespace cosmos { toProtoMsg(message: _96.MsgCreatePermanentLockedAccountResponse): _96.MsgCreatePermanentLockedAccountResponseProtoMsg; }; MsgCreatePeriodicVestingAccount: { - encode(message: _96.MsgCreatePeriodicVestingAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _96.MsgCreatePeriodicVestingAccount; + typeUrl: string; + encode(message: _96.MsgCreatePeriodicVestingAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _96.MsgCreatePeriodicVestingAccount; fromJSON(object: any): _96.MsgCreatePeriodicVestingAccount; toJSON(message: _96.MsgCreatePeriodicVestingAccount): unknown; fromPartial(object: Partial<_96.MsgCreatePeriodicVestingAccount>): _96.MsgCreatePeriodicVestingAccount; @@ -10235,8 +10816,9 @@ export declare namespace cosmos { toProtoMsg(message: _96.MsgCreatePeriodicVestingAccount): _96.MsgCreatePeriodicVestingAccountProtoMsg; }; MsgCreatePeriodicVestingAccountResponse: { - encode(_: _96.MsgCreatePeriodicVestingAccountResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _96.MsgCreatePeriodicVestingAccountResponse; + typeUrl: string; + encode(_: _96.MsgCreatePeriodicVestingAccountResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _96.MsgCreatePeriodicVestingAccountResponse; fromJSON(_: any): _96.MsgCreatePeriodicVestingAccountResponse; toJSON(_: _96.MsgCreatePeriodicVestingAccountResponse): unknown; fromPartial(_: Partial<_96.MsgCreatePeriodicVestingAccountResponse>): _96.MsgCreatePeriodicVestingAccountResponse; @@ -10256,44 +10838,44 @@ export declare namespace cosmos { }) => Promise<{ cosmos: { authz: { - v1beta1: _216.MsgClientImpl; + v1beta1: _217.MsgClientImpl; }; bank: { - v1beta1: _217.MsgClientImpl; + v1beta1: _218.MsgClientImpl; }; crisis: { - v1beta1: _218.MsgClientImpl; + v1beta1: _219.MsgClientImpl; }; distribution: { - v1beta1: _219.MsgClientImpl; + v1beta1: _220.MsgClientImpl; }; evidence: { - v1beta1: _220.MsgClientImpl; + v1beta1: _221.MsgClientImpl; }; feegrant: { - v1beta1: _221.MsgClientImpl; + v1beta1: _222.MsgClientImpl; }; gov: { - v1: _222.MsgClientImpl; - v1beta1: _223.MsgClientImpl; + v1: _223.MsgClientImpl; + v1beta1: _224.MsgClientImpl; }; group: { - v1: _224.MsgClientImpl; + v1: _225.MsgClientImpl; }; nft: { - v1beta1: _225.MsgClientImpl; + v1beta1: _226.MsgClientImpl; }; slashing: { - v1beta1: _226.MsgClientImpl; + v1beta1: _227.MsgClientImpl; }; staking: { - v1beta1: _227.MsgClientImpl; + v1beta1: _228.MsgClientImpl; }; upgrade: { - v1beta1: _228.MsgClientImpl; + v1beta1: _229.MsgClientImpl; }; vesting: { - v1beta1: _229.MsgClientImpl; + v1beta1: _230.MsgClientImpl; }; }; }>; @@ -10496,58 +11078,58 @@ export declare namespace cosmos { }) => Promise<{ cosmos: { auth: { - v1beta1: _179.LCDQueryClient; + v1beta1: _180.LCDQueryClient; }; authz: { - v1beta1: _180.LCDQueryClient; + v1beta1: _181.LCDQueryClient; }; bank: { - v1beta1: _181.LCDQueryClient; + v1beta1: _182.LCDQueryClient; }; base: { node: { - v1beta1: _182.LCDQueryClient; + v1beta1: _183.LCDQueryClient; }; tendermint: { - v1beta1: _183.LCDQueryClient; + v1beta1: _184.LCDQueryClient; }; }; distribution: { - v1beta1: _184.LCDQueryClient; + v1beta1: _185.LCDQueryClient; }; evidence: { - v1beta1: _185.LCDQueryClient; + v1beta1: _186.LCDQueryClient; }; feegrant: { - v1beta1: _186.LCDQueryClient; + v1beta1: _187.LCDQueryClient; }; gov: { - v1: _187.LCDQueryClient; - v1beta1: _188.LCDQueryClient; + v1: _188.LCDQueryClient; + v1beta1: _189.LCDQueryClient; }; group: { - v1: _189.LCDQueryClient; + v1: _190.LCDQueryClient; }; mint: { - v1beta1: _190.LCDQueryClient; + v1beta1: _191.LCDQueryClient; }; nft: { - v1beta1: _191.LCDQueryClient; + v1beta1: _192.LCDQueryClient; }; params: { - v1beta1: _192.LCDQueryClient; + v1beta1: _193.LCDQueryClient; }; slashing: { - v1beta1: _193.LCDQueryClient; + v1beta1: _194.LCDQueryClient; }; staking: { - v1beta1: _194.LCDQueryClient; + v1beta1: _195.LCDQueryClient; }; tx: { - v1beta1: _195.LCDQueryClient; + v1beta1: _196.LCDQueryClient; }; upgrade: { - v1beta1: _196.LCDQueryClient; + v1beta1: _197.LCDQueryClient; }; }; }>; diff --git a/packages/api/types/codegen/cosmos/capability/v1beta1/capability.d.ts b/packages/api/types/codegen/cosmos/capability/v1beta1/capability.d.ts index 4f17a08..4fab7db 100644 --- a/packages/api/types/codegen/cosmos/capability/v1beta1/capability.d.ts +++ b/packages/api/types/codegen/cosmos/capability/v1beta1/capability.d.ts @@ -1,11 +1,10 @@ -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * Capability defines an implementation of an object capability. The index * provided to a Capability must be globally unique. */ export interface Capability { - index: Long; + index: bigint; } export interface CapabilityProtoMsg { typeUrl: "/cosmos.capability.v1beta1.Capability"; @@ -16,7 +15,7 @@ export interface CapabilityProtoMsg { * provided to a Capability must be globally unique. */ export interface CapabilityAmino { - index: string; + index?: string; } export interface CapabilityAminoMsg { type: "cosmos-sdk/Capability"; @@ -27,7 +26,7 @@ export interface CapabilityAminoMsg { * provided to a Capability must be globally unique. */ export interface CapabilitySDKType { - index: Long; + index: bigint; } /** * Owner defines a single capability owner. An owner is defined by the name of @@ -46,8 +45,8 @@ export interface OwnerProtoMsg { * capability and the module name. */ export interface OwnerAmino { - module: string; - name: string; + module?: string; + name?: string; } export interface OwnerAminoMsg { type: "cosmos-sdk/Owner"; @@ -77,7 +76,7 @@ export interface CapabilityOwnersProtoMsg { * owners must be unique. */ export interface CapabilityOwnersAmino { - owners: OwnerAmino[]; + owners?: OwnerAmino[]; } export interface CapabilityOwnersAminoMsg { type: "cosmos-sdk/CapabilityOwners"; @@ -91,8 +90,9 @@ export interface CapabilityOwnersSDKType { owners: OwnerSDKType[]; } export declare const Capability: { - encode(message: Capability, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Capability; + typeUrl: string; + encode(message: Capability, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Capability; fromJSON(object: any): Capability; toJSON(message: Capability): unknown; fromPartial(object: Partial): Capability; @@ -105,8 +105,9 @@ export declare const Capability: { toProtoMsg(message: Capability): CapabilityProtoMsg; }; export declare const Owner: { - encode(message: Owner, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Owner; + typeUrl: string; + encode(message: Owner, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Owner; fromJSON(object: any): Owner; toJSON(message: Owner): unknown; fromPartial(object: Partial): Owner; @@ -119,8 +120,9 @@ export declare const Owner: { toProtoMsg(message: Owner): OwnerProtoMsg; }; export declare const CapabilityOwners: { - encode(message: CapabilityOwners, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CapabilityOwners; + typeUrl: string; + encode(message: CapabilityOwners, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CapabilityOwners; fromJSON(object: any): CapabilityOwners; toJSON(message: CapabilityOwners): unknown; fromPartial(object: Partial): CapabilityOwners; diff --git a/packages/api/types/codegen/cosmos/capability/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/capability/v1beta1/genesis.d.ts index 2ea94a9..bb72a0e 100644 --- a/packages/api/types/codegen/cosmos/capability/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/capability/v1beta1/genesis.d.ts @@ -1,10 +1,9 @@ import { CapabilityOwners, CapabilityOwnersAmino, CapabilityOwnersSDKType } from "./capability"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisOwners defines the capability owners with their corresponding index. */ export interface GenesisOwners { /** index is the index of the capability owner. */ - index: Long; + index: bigint; /** index_owners are the owners at the given index. */ indexOwners: CapabilityOwners; } @@ -15,7 +14,7 @@ export interface GenesisOwnersProtoMsg { /** GenesisOwners defines the capability owners with their corresponding index. */ export interface GenesisOwnersAmino { /** index is the index of the capability owner. */ - index: string; + index?: string; /** index_owners are the owners at the given index. */ index_owners?: CapabilityOwnersAmino; } @@ -25,13 +24,13 @@ export interface GenesisOwnersAminoMsg { } /** GenesisOwners defines the capability owners with their corresponding index. */ export interface GenesisOwnersSDKType { - index: Long; + index: bigint; index_owners: CapabilityOwnersSDKType; } /** GenesisState defines the capability module's genesis state. */ export interface GenesisState { /** index is the capability global index. */ - index: Long; + index: bigint; /** * owners represents a map from index to owners of the capability index * index key is string to allow amino marshalling. @@ -45,12 +44,12 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the capability module's genesis state. */ export interface GenesisStateAmino { /** index is the capability global index. */ - index: string; + index?: string; /** * owners represents a map from index to owners of the capability index * index key is string to allow amino marshalling. */ - owners: GenesisOwnersAmino[]; + owners?: GenesisOwnersAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -58,12 +57,13 @@ export interface GenesisStateAminoMsg { } /** GenesisState defines the capability module's genesis state. */ export interface GenesisStateSDKType { - index: Long; + index: bigint; owners: GenesisOwnersSDKType[]; } export declare const GenesisOwners: { - encode(message: GenesisOwners, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisOwners; + typeUrl: string; + encode(message: GenesisOwners, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisOwners; fromJSON(object: any): GenesisOwners; toJSON(message: GenesisOwners): unknown; fromPartial(object: Partial): GenesisOwners; @@ -76,8 +76,9 @@ export declare const GenesisOwners: { toProtoMsg(message: GenesisOwners): GenesisOwnersProtoMsg; }; export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/crisis/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/crisis/v1beta1/genesis.d.ts index 35471f4..c4fb3c1 100644 --- a/packages/api/types/codegen/cosmos/crisis/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/crisis/v1beta1/genesis.d.ts @@ -1,5 +1,5 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the crisis module's genesis state. */ export interface GenesisState { /** @@ -29,8 +29,9 @@ export interface GenesisStateSDKType { constant_fee: CoinSDKType; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/crisis/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/crisis/v1beta1/tx.d.ts index 524f9af..3d284d6 100644 --- a/packages/api/types/codegen/cosmos/crisis/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/crisis/v1beta1/tx.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** MsgVerifyInvariant represents a message to verify a particular invariance. */ export interface MsgVerifyInvariant { sender: string; @@ -11,9 +11,9 @@ export interface MsgVerifyInvariantProtoMsg { } /** MsgVerifyInvariant represents a message to verify a particular invariance. */ export interface MsgVerifyInvariantAmino { - sender: string; - invariant_module_name: string; - invariant_route: string; + sender?: string; + invariant_module_name?: string; + invariant_route?: string; } export interface MsgVerifyInvariantAminoMsg { type: "cosmos-sdk/MsgVerifyInvariant"; @@ -43,8 +43,9 @@ export interface MsgVerifyInvariantResponseAminoMsg { export interface MsgVerifyInvariantResponseSDKType { } export declare const MsgVerifyInvariant: { - encode(message: MsgVerifyInvariant, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVerifyInvariant; + typeUrl: string; + encode(message: MsgVerifyInvariant, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVerifyInvariant; fromJSON(object: any): MsgVerifyInvariant; toJSON(message: MsgVerifyInvariant): unknown; fromPartial(object: Partial): MsgVerifyInvariant; @@ -57,8 +58,9 @@ export declare const MsgVerifyInvariant: { toProtoMsg(message: MsgVerifyInvariant): MsgVerifyInvariantProtoMsg; }; export declare const MsgVerifyInvariantResponse: { - encode(_: MsgVerifyInvariantResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVerifyInvariantResponse; + typeUrl: string; + encode(_: MsgVerifyInvariantResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVerifyInvariantResponse; fromJSON(_: any): MsgVerifyInvariantResponse; toJSON(_: MsgVerifyInvariantResponse): unknown; fromPartial(_: Partial): MsgVerifyInvariantResponse; diff --git a/packages/api/types/codegen/cosmos/crypto/ed25519/keys.d.ts b/packages/api/types/codegen/cosmos/crypto/ed25519/keys.d.ts index 25d4757..d73f020 100644 --- a/packages/api/types/codegen/cosmos/crypto/ed25519/keys.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/ed25519/keys.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * PubKey is an ed25519 public key for handling Tendermint keys in SDK. * It's needed for Any serialization and SDK compatibility. @@ -21,7 +21,7 @@ export interface PubKeyProtoMsg { * then you must create a new proto message and follow ADR-28 for Address construction. */ export interface PubKeyAmino { - key: Uint8Array; + key?: string; } export interface PubKeyAminoMsg { type: "cosmos-sdk/PubKey"; @@ -53,7 +53,7 @@ export interface PrivKeyProtoMsg { * NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. */ export interface PrivKeyAmino { - key: Uint8Array; + key?: string; } export interface PrivKeyAminoMsg { type: "cosmos-sdk/PrivKey"; @@ -67,8 +67,9 @@ export interface PrivKeySDKType { key: Uint8Array; } export declare const PubKey: { - encode(message: PubKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PubKey; + typeUrl: string; + encode(message: PubKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PubKey; fromJSON(object: any): PubKey; toJSON(message: PubKey): unknown; fromPartial(object: Partial): PubKey; @@ -81,8 +82,9 @@ export declare const PubKey: { toProtoMsg(message: PubKey): PubKeyProtoMsg; }; export declare const PrivKey: { - encode(message: PrivKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PrivKey; + typeUrl: string; + encode(message: PrivKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PrivKey; fromJSON(object: any): PrivKey; toJSON(message: PrivKey): unknown; fromPartial(object: Partial): PrivKey; diff --git a/packages/api/types/codegen/cosmos/crypto/hd/v1/hd.d.ts b/packages/api/types/codegen/cosmos/crypto/hd/v1/hd.d.ts index 87c80e6..abdb6cf 100644 --- a/packages/api/types/codegen/cosmos/crypto/hd/v1/hd.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/hd/v1/hd.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** BIP44Params is used as path field in ledger item in Record. */ export interface BIP44Params { /** purpose is a constant set to 44' (or 0x8000002C) following the BIP43 recommendation */ @@ -22,18 +22,18 @@ export interface BIP44ParamsProtoMsg { /** BIP44Params is used as path field in ledger item in Record. */ export interface BIP44ParamsAmino { /** purpose is a constant set to 44' (or 0x8000002C) following the BIP43 recommendation */ - purpose: number; + purpose?: number; /** coin_type is a constant that improves privacy */ - coin_type: number; + coin_type?: number; /** account splits the key space into independent user identities */ - account: number; + account?: number; /** * change is a constant used for public derivation. Constant 0 is used for external chain and constant 1 for internal * chain. */ - change: boolean; + change?: boolean; /** address_index is used as child index in BIP32 derivation */ - address_index: number; + address_index?: number; } export interface BIP44ParamsAminoMsg { type: "cosmos-sdk/BIP44Params"; @@ -48,8 +48,9 @@ export interface BIP44ParamsSDKType { address_index: number; } export declare const BIP44Params: { - encode(message: BIP44Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BIP44Params; + typeUrl: string; + encode(message: BIP44Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BIP44Params; fromJSON(object: any): BIP44Params; toJSON(message: BIP44Params): unknown; fromPartial(object: Partial): BIP44Params; diff --git a/packages/api/types/codegen/cosmos/crypto/keyring/v1/record.d.ts b/packages/api/types/codegen/cosmos/crypto/keyring/v1/record.d.ts index 739e33a..20387d4 100644 --- a/packages/api/types/codegen/cosmos/crypto/keyring/v1/record.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/keyring/v1/record.d.ts @@ -1,12 +1,12 @@ import { Any, AnyAmino, AnySDKType } from "../../../../google/protobuf/any"; import { BIP44Params, BIP44ParamsAmino, BIP44ParamsSDKType } from "../../hd/v1/hd"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** Record is used for representing a key in the keyring. */ export interface Record { /** name represents a name of Record */ name: string; /** pub_key represents a public key in any format */ - pubKey: Any; + pubKey?: Any; /** local stores the private key locally. */ local?: Record_Local; /** ledger stores the information about a Ledger key. */ @@ -23,7 +23,7 @@ export interface RecordProtoMsg { /** Record is used for representing a key in the keyring. */ export interface RecordAmino { /** name represents a name of Record */ - name: string; + name?: string; /** pub_key represents a public key in any format */ pub_key?: AnyAmino; /** local stores the private key locally. */ @@ -42,7 +42,7 @@ export interface RecordAminoMsg { /** Record is used for representing a key in the keyring. */ export interface RecordSDKType { name: string; - pub_key: AnySDKType; + pub_key?: AnySDKType; local?: Record_LocalSDKType; ledger?: Record_LedgerSDKType; multi?: Record_MultiSDKType; @@ -53,7 +53,7 @@ export interface RecordSDKType { * Local item */ export interface Record_Local { - privKey: Any; + privKey?: Any; } export interface Record_LocalProtoMsg { typeUrl: "/cosmos.crypto.keyring.v1.Local"; @@ -75,11 +75,11 @@ export interface Record_LocalAminoMsg { * Local item */ export interface Record_LocalSDKType { - priv_key: AnySDKType; + priv_key?: AnySDKType; } /** Ledger item */ export interface Record_Ledger { - path: BIP44Params; + path?: BIP44Params; } export interface Record_LedgerProtoMsg { typeUrl: "/cosmos.crypto.keyring.v1.Ledger"; @@ -95,7 +95,7 @@ export interface Record_LedgerAminoMsg { } /** Ledger item */ export interface Record_LedgerSDKType { - path: BIP44ParamsSDKType; + path?: BIP44ParamsSDKType; } /** Multi item */ export interface Record_Multi { @@ -132,8 +132,9 @@ export interface Record_OfflineAminoMsg { export interface Record_OfflineSDKType { } export declare const Record: { - encode(message: Record, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Record; + typeUrl: string; + encode(message: Record, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Record; fromJSON(object: any): Record; toJSON(message: Record): unknown; fromPartial(object: Partial): Record; @@ -146,8 +147,9 @@ export declare const Record: { toProtoMsg(message: Record): RecordProtoMsg; }; export declare const Record_Local: { - encode(message: Record_Local, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Record_Local; + typeUrl: string; + encode(message: Record_Local, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Record_Local; fromJSON(object: any): Record_Local; toJSON(message: Record_Local): unknown; fromPartial(object: Partial): Record_Local; @@ -160,8 +162,9 @@ export declare const Record_Local: { toProtoMsg(message: Record_Local): Record_LocalProtoMsg; }; export declare const Record_Ledger: { - encode(message: Record_Ledger, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Record_Ledger; + typeUrl: string; + encode(message: Record_Ledger, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Record_Ledger; fromJSON(object: any): Record_Ledger; toJSON(message: Record_Ledger): unknown; fromPartial(object: Partial): Record_Ledger; @@ -174,8 +177,9 @@ export declare const Record_Ledger: { toProtoMsg(message: Record_Ledger): Record_LedgerProtoMsg; }; export declare const Record_Multi: { - encode(_: Record_Multi, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Record_Multi; + typeUrl: string; + encode(_: Record_Multi, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Record_Multi; fromJSON(_: any): Record_Multi; toJSON(_: Record_Multi): unknown; fromPartial(_: Partial): Record_Multi; @@ -188,8 +192,9 @@ export declare const Record_Multi: { toProtoMsg(message: Record_Multi): Record_MultiProtoMsg; }; export declare const Record_Offline: { - encode(_: Record_Offline, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Record_Offline; + typeUrl: string; + encode(_: Record_Offline, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Record_Offline; fromJSON(_: any): Record_Offline; toJSON(_: Record_Offline): unknown; fromPartial(_: Partial): Record_Offline; diff --git a/packages/api/types/codegen/cosmos/crypto/multisig/keys.d.ts b/packages/api/types/codegen/cosmos/crypto/multisig/keys.d.ts index f05579b..7040c3c 100644 --- a/packages/api/types/codegen/cosmos/crypto/multisig/keys.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/multisig/keys.d.ts @@ -1,5 +1,5 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * LegacyAminoPubKey specifies a public key type * which nests multiple public keys and a threshold, @@ -19,8 +19,8 @@ export interface LegacyAminoPubKeyProtoMsg { * it uses legacy amino address rules. */ export interface LegacyAminoPubKeyAmino { - threshold: number; - public_keys: AnyAmino[]; + threshold?: number; + public_keys?: AnyAmino[]; } export interface LegacyAminoPubKeyAminoMsg { type: "cosmos-sdk/LegacyAminoPubKey"; @@ -36,8 +36,9 @@ export interface LegacyAminoPubKeySDKType { public_keys: AnySDKType[]; } export declare const LegacyAminoPubKey: { - encode(message: LegacyAminoPubKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): LegacyAminoPubKey; + typeUrl: string; + encode(message: LegacyAminoPubKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): LegacyAminoPubKey; fromJSON(object: any): LegacyAminoPubKey; toJSON(message: LegacyAminoPubKey): unknown; fromPartial(object: Partial): LegacyAminoPubKey; diff --git a/packages/api/types/codegen/cosmos/crypto/multisig/v1beta1/multisig.d.ts b/packages/api/types/codegen/cosmos/crypto/multisig/v1beta1/multisig.d.ts index 8dc6d87..ff33131 100644 --- a/packages/api/types/codegen/cosmos/crypto/multisig/v1beta1/multisig.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/multisig/v1beta1/multisig.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey. * See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers @@ -17,7 +17,7 @@ export interface MultiSignatureProtoMsg { * signed and with which modes. */ export interface MultiSignatureAmino { - signatures: Uint8Array[]; + signatures?: string[]; } export interface MultiSignatureAminoMsg { type: "cosmos-sdk/MultiSignature"; @@ -52,8 +52,8 @@ export interface CompactBitArrayProtoMsg { * This is not thread safe, and is not intended for concurrent usage. */ export interface CompactBitArrayAmino { - extra_bits_stored: number; - elems: Uint8Array; + extra_bits_stored?: number; + elems?: string; } export interface CompactBitArrayAminoMsg { type: "cosmos-sdk/CompactBitArray"; @@ -70,8 +70,9 @@ export interface CompactBitArraySDKType { elems: Uint8Array; } export declare const MultiSignature: { - encode(message: MultiSignature, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MultiSignature; + typeUrl: string; + encode(message: MultiSignature, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MultiSignature; fromJSON(object: any): MultiSignature; toJSON(message: MultiSignature): unknown; fromPartial(object: Partial): MultiSignature; @@ -84,8 +85,9 @@ export declare const MultiSignature: { toProtoMsg(message: MultiSignature): MultiSignatureProtoMsg; }; export declare const CompactBitArray: { - encode(message: CompactBitArray, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CompactBitArray; + typeUrl: string; + encode(message: CompactBitArray, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CompactBitArray; fromJSON(object: any): CompactBitArray; toJSON(message: CompactBitArray): unknown; fromPartial(object: Partial): CompactBitArray; diff --git a/packages/api/types/codegen/cosmos/crypto/secp256k1/keys.d.ts b/packages/api/types/codegen/cosmos/crypto/secp256k1/keys.d.ts index f7808e9..726a5ed 100644 --- a/packages/api/types/codegen/cosmos/crypto/secp256k1/keys.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/secp256k1/keys.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * PubKey defines a secp256k1 public key * Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte @@ -21,7 +21,7 @@ export interface PubKeyProtoMsg { * This prefix is followed with the x-coordinate. */ export interface PubKeyAmino { - key: Uint8Array; + key?: string; } export interface PubKeyAminoMsg { type: "cosmos-sdk/PubKey"; @@ -47,7 +47,7 @@ export interface PrivKeyProtoMsg { } /** PrivKey defines a secp256k1 private key. */ export interface PrivKeyAmino { - key: Uint8Array; + key?: string; } export interface PrivKeyAminoMsg { type: "cosmos-sdk/PrivKey"; @@ -58,8 +58,9 @@ export interface PrivKeySDKType { key: Uint8Array; } export declare const PubKey: { - encode(message: PubKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PubKey; + typeUrl: string; + encode(message: PubKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PubKey; fromJSON(object: any): PubKey; toJSON(message: PubKey): unknown; fromPartial(object: Partial): PubKey; @@ -72,8 +73,9 @@ export declare const PubKey: { toProtoMsg(message: PubKey): PubKeyProtoMsg; }; export declare const PrivKey: { - encode(message: PrivKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PrivKey; + typeUrl: string; + encode(message: PrivKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PrivKey; fromJSON(object: any): PrivKey; toJSON(message: PrivKey): unknown; fromPartial(object: Partial): PrivKey; diff --git a/packages/api/types/codegen/cosmos/crypto/secp256r1/keys.d.ts b/packages/api/types/codegen/cosmos/crypto/secp256r1/keys.d.ts index c669468..c1299cf 100644 --- a/packages/api/types/codegen/cosmos/crypto/secp256r1/keys.d.ts +++ b/packages/api/types/codegen/cosmos/crypto/secp256r1/keys.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** PubKey defines a secp256r1 ECDSA public key. */ export interface PubKey { /** @@ -17,7 +17,7 @@ export interface PubKeyAmino { * Point on secp256r1 curve in a compressed representation as specified in section * 4.3.6 of ANSI X9.62: https://webstore.ansi.org/standards/ascx9/ansix9621998 */ - key: Uint8Array; + key?: string; } export interface PubKeyAminoMsg { type: "cosmos-sdk/PubKey"; @@ -39,7 +39,7 @@ export interface PrivKeyProtoMsg { /** PrivKey defines a secp256r1 ECDSA private key. */ export interface PrivKeyAmino { /** secret number serialized using big-endian encoding */ - secret: Uint8Array; + secret?: string; } export interface PrivKeyAminoMsg { type: "cosmos-sdk/PrivKey"; @@ -50,8 +50,9 @@ export interface PrivKeySDKType { secret: Uint8Array; } export declare const PubKey: { - encode(message: PubKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PubKey; + typeUrl: string; + encode(message: PubKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PubKey; fromJSON(object: any): PubKey; toJSON(message: PubKey): unknown; fromPartial(object: Partial): PubKey; @@ -64,8 +65,9 @@ export declare const PubKey: { toProtoMsg(message: PubKey): PubKeyProtoMsg; }; export declare const PrivKey: { - encode(message: PrivKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PrivKey; + typeUrl: string; + encode(message: PrivKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PrivKey; fromJSON(object: any): PrivKey; toJSON(message: PrivKey): unknown; fromPartial(object: Partial): PrivKey; diff --git a/packages/api/types/codegen/cosmos/distribution/v1beta1/distribution.d.ts b/packages/api/types/codegen/cosmos/distribution/v1beta1/distribution.d.ts index f46d355..bae33e1 100644 --- a/packages/api/types/codegen/cosmos/distribution/v1beta1/distribution.d.ts +++ b/packages/api/types/codegen/cosmos/distribution/v1beta1/distribution.d.ts @@ -1,6 +1,5 @@ import { DecCoin, DecCoinAmino, DecCoinSDKType, Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Params defines the set of params for the distribution module. */ export interface Params { communityTax: string; @@ -14,10 +13,10 @@ export interface ParamsProtoMsg { } /** Params defines the set of params for the distribution module. */ export interface ParamsAmino { - community_tax: string; - base_proposer_reward: string; - bonus_proposer_reward: string; - withdraw_addr_enabled: boolean; + community_tax?: string; + base_proposer_reward?: string; + bonus_proposer_reward?: string; + withdraw_addr_enabled?: boolean; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -67,8 +66,8 @@ export interface ValidatorHistoricalRewardsProtoMsg { * + one per validator for the zeroeth period, set on initialization */ export interface ValidatorHistoricalRewardsAmino { - cumulative_reward_ratio: DecCoinAmino[]; - reference_count: number; + cumulative_reward_ratio?: DecCoinAmino[]; + reference_count?: number; } export interface ValidatorHistoricalRewardsAminoMsg { type: "cosmos-sdk/ValidatorHistoricalRewards"; @@ -99,7 +98,7 @@ export interface ValidatorHistoricalRewardsSDKType { */ export interface ValidatorCurrentRewards { rewards: DecCoin[]; - period: Long; + period: bigint; } export interface ValidatorCurrentRewardsProtoMsg { typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewards"; @@ -111,8 +110,8 @@ export interface ValidatorCurrentRewardsProtoMsg { * each block as long as the validator's tokens remain constant. */ export interface ValidatorCurrentRewardsAmino { - rewards: DecCoinAmino[]; - period: string; + rewards?: DecCoinAmino[]; + period?: string; } export interface ValidatorCurrentRewardsAminoMsg { type: "cosmos-sdk/ValidatorCurrentRewards"; @@ -125,7 +124,7 @@ export interface ValidatorCurrentRewardsAminoMsg { */ export interface ValidatorCurrentRewardsSDKType { rewards: DecCoinSDKType[]; - period: Long; + period: bigint; } /** * ValidatorAccumulatedCommission represents accumulated commission @@ -143,7 +142,7 @@ export interface ValidatorAccumulatedCommissionProtoMsg { * for a validator kept as a running counter, can be withdrawn at any time. */ export interface ValidatorAccumulatedCommissionAmino { - commission: DecCoinAmino[]; + commission?: DecCoinAmino[]; } export interface ValidatorAccumulatedCommissionAminoMsg { type: "cosmos-sdk/ValidatorAccumulatedCommission"; @@ -172,7 +171,7 @@ export interface ValidatorOutstandingRewardsProtoMsg { * for a validator inexpensive to track, allows simple sanity checks. */ export interface ValidatorOutstandingRewardsAmino { - rewards: DecCoinAmino[]; + rewards?: DecCoinAmino[]; } export interface ValidatorOutstandingRewardsAminoMsg { type: "cosmos-sdk/ValidatorOutstandingRewards"; @@ -192,7 +191,7 @@ export interface ValidatorOutstandingRewardsSDKType { * for delegations which are withdrawn after a slash has occurred. */ export interface ValidatorSlashEvent { - validatorPeriod: Long; + validatorPeriod: bigint; fraction: string; } export interface ValidatorSlashEventProtoMsg { @@ -206,8 +205,8 @@ export interface ValidatorSlashEventProtoMsg { * for delegations which are withdrawn after a slash has occurred. */ export interface ValidatorSlashEventAmino { - validator_period: string; - fraction: string; + validator_period?: string; + fraction?: string; } export interface ValidatorSlashEventAminoMsg { type: "cosmos-sdk/ValidatorSlashEvent"; @@ -220,7 +219,7 @@ export interface ValidatorSlashEventAminoMsg { * for delegations which are withdrawn after a slash has occurred. */ export interface ValidatorSlashEventSDKType { - validator_period: Long; + validator_period: bigint; fraction: string; } /** ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. */ @@ -233,7 +232,7 @@ export interface ValidatorSlashEventsProtoMsg { } /** ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. */ export interface ValidatorSlashEventsAmino { - validator_slash_events: ValidatorSlashEventAmino[]; + validator_slash_events?: ValidatorSlashEventAmino[]; } export interface ValidatorSlashEventsAminoMsg { type: "cosmos-sdk/ValidatorSlashEvents"; @@ -253,7 +252,7 @@ export interface FeePoolProtoMsg { } /** FeePool is the global fee pool for distribution. */ export interface FeePoolAmino { - community_pool: DecCoinAmino[]; + community_pool?: DecCoinAmino[]; } export interface FeePoolAminoMsg { type: "cosmos-sdk/FeePool"; @@ -269,7 +268,7 @@ export interface FeePoolSDKType { * recipient account. */ export interface CommunityPoolSpendProposal { - $typeUrl?: string; + $typeUrl?: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal"; title: string; description: string; recipient: string; @@ -285,10 +284,10 @@ export interface CommunityPoolSpendProposalProtoMsg { * recipient account. */ export interface CommunityPoolSpendProposalAmino { - title: string; - description: string; - recipient: string; - amount: CoinAmino[]; + title?: string; + description?: string; + recipient?: string; + amount?: CoinAmino[]; } export interface CommunityPoolSpendProposalAminoMsg { type: "cosmos-sdk/CommunityPoolSpendProposal"; @@ -300,7 +299,7 @@ export interface CommunityPoolSpendProposalAminoMsg { * recipient account. */ export interface CommunityPoolSpendProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal"; title: string; description: string; recipient: string; @@ -315,9 +314,9 @@ export interface CommunityPoolSpendProposalSDKType { * thus sdk.Dec is used. */ export interface DelegatorStartingInfo { - previousPeriod: Long; + previousPeriod: bigint; stake: string; - height: Long; + height: bigint; } export interface DelegatorStartingInfoProtoMsg { typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfo"; @@ -332,8 +331,8 @@ export interface DelegatorStartingInfoProtoMsg { * thus sdk.Dec is used. */ export interface DelegatorStartingInfoAmino { - previous_period: string; - stake: string; + previous_period?: string; + stake?: string; height: string; } export interface DelegatorStartingInfoAminoMsg { @@ -349,9 +348,9 @@ export interface DelegatorStartingInfoAminoMsg { * thus sdk.Dec is used. */ export interface DelegatorStartingInfoSDKType { - previous_period: Long; + previous_period: bigint; stake: string; - height: Long; + height: bigint; } /** * DelegationDelegatorReward represents the properties @@ -370,8 +369,8 @@ export interface DelegationDelegatorRewardProtoMsg { * of a delegator's delegation reward. */ export interface DelegationDelegatorRewardAmino { - validator_address: string; - reward: DecCoinAmino[]; + validator_address?: string; + reward?: DecCoinAmino[]; } export interface DelegationDelegatorRewardAminoMsg { type: "cosmos-sdk/DelegationDelegatorReward"; @@ -390,7 +389,7 @@ export interface DelegationDelegatorRewardSDKType { * with a deposit */ export interface CommunityPoolSpendProposalWithDeposit { - $typeUrl?: string; + $typeUrl?: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit"; title: string; description: string; recipient: string; @@ -406,11 +405,11 @@ export interface CommunityPoolSpendProposalWithDepositProtoMsg { * with a deposit */ export interface CommunityPoolSpendProposalWithDepositAmino { - title: string; - description: string; - recipient: string; - amount: string; - deposit: string; + title?: string; + description?: string; + recipient?: string; + amount?: string; + deposit?: string; } export interface CommunityPoolSpendProposalWithDepositAminoMsg { type: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit"; @@ -421,7 +420,7 @@ export interface CommunityPoolSpendProposalWithDepositAminoMsg { * with a deposit */ export interface CommunityPoolSpendProposalWithDepositSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit"; title: string; description: string; recipient: string; @@ -429,8 +428,9 @@ export interface CommunityPoolSpendProposalWithDepositSDKType { deposit: string; } export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; @@ -443,8 +443,9 @@ export declare const Params: { toProtoMsg(message: Params): ParamsProtoMsg; }; export declare const ValidatorHistoricalRewards: { - encode(message: ValidatorHistoricalRewards, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorHistoricalRewards; + typeUrl: string; + encode(message: ValidatorHistoricalRewards, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorHistoricalRewards; fromJSON(object: any): ValidatorHistoricalRewards; toJSON(message: ValidatorHistoricalRewards): unknown; fromPartial(object: Partial): ValidatorHistoricalRewards; @@ -457,8 +458,9 @@ export declare const ValidatorHistoricalRewards: { toProtoMsg(message: ValidatorHistoricalRewards): ValidatorHistoricalRewardsProtoMsg; }; export declare const ValidatorCurrentRewards: { - encode(message: ValidatorCurrentRewards, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorCurrentRewards; + typeUrl: string; + encode(message: ValidatorCurrentRewards, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorCurrentRewards; fromJSON(object: any): ValidatorCurrentRewards; toJSON(message: ValidatorCurrentRewards): unknown; fromPartial(object: Partial): ValidatorCurrentRewards; @@ -471,8 +473,9 @@ export declare const ValidatorCurrentRewards: { toProtoMsg(message: ValidatorCurrentRewards): ValidatorCurrentRewardsProtoMsg; }; export declare const ValidatorAccumulatedCommission: { - encode(message: ValidatorAccumulatedCommission, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorAccumulatedCommission; + typeUrl: string; + encode(message: ValidatorAccumulatedCommission, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorAccumulatedCommission; fromJSON(object: any): ValidatorAccumulatedCommission; toJSON(message: ValidatorAccumulatedCommission): unknown; fromPartial(object: Partial): ValidatorAccumulatedCommission; @@ -485,8 +488,9 @@ export declare const ValidatorAccumulatedCommission: { toProtoMsg(message: ValidatorAccumulatedCommission): ValidatorAccumulatedCommissionProtoMsg; }; export declare const ValidatorOutstandingRewards: { - encode(message: ValidatorOutstandingRewards, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorOutstandingRewards; + typeUrl: string; + encode(message: ValidatorOutstandingRewards, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorOutstandingRewards; fromJSON(object: any): ValidatorOutstandingRewards; toJSON(message: ValidatorOutstandingRewards): unknown; fromPartial(object: Partial): ValidatorOutstandingRewards; @@ -499,8 +503,9 @@ export declare const ValidatorOutstandingRewards: { toProtoMsg(message: ValidatorOutstandingRewards): ValidatorOutstandingRewardsProtoMsg; }; export declare const ValidatorSlashEvent: { - encode(message: ValidatorSlashEvent, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorSlashEvent; + typeUrl: string; + encode(message: ValidatorSlashEvent, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorSlashEvent; fromJSON(object: any): ValidatorSlashEvent; toJSON(message: ValidatorSlashEvent): unknown; fromPartial(object: Partial): ValidatorSlashEvent; @@ -513,8 +518,9 @@ export declare const ValidatorSlashEvent: { toProtoMsg(message: ValidatorSlashEvent): ValidatorSlashEventProtoMsg; }; export declare const ValidatorSlashEvents: { - encode(message: ValidatorSlashEvents, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorSlashEvents; + typeUrl: string; + encode(message: ValidatorSlashEvents, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorSlashEvents; fromJSON(object: any): ValidatorSlashEvents; toJSON(message: ValidatorSlashEvents): unknown; fromPartial(object: Partial): ValidatorSlashEvents; @@ -527,8 +533,9 @@ export declare const ValidatorSlashEvents: { toProtoMsg(message: ValidatorSlashEvents): ValidatorSlashEventsProtoMsg; }; export declare const FeePool: { - encode(message: FeePool, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): FeePool; + typeUrl: string; + encode(message: FeePool, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): FeePool; fromJSON(object: any): FeePool; toJSON(message: FeePool): unknown; fromPartial(object: Partial): FeePool; @@ -541,8 +548,9 @@ export declare const FeePool: { toProtoMsg(message: FeePool): FeePoolProtoMsg; }; export declare const CommunityPoolSpendProposal: { - encode(message: CommunityPoolSpendProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommunityPoolSpendProposal; + typeUrl: string; + encode(message: CommunityPoolSpendProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommunityPoolSpendProposal; fromJSON(object: any): CommunityPoolSpendProposal; toJSON(message: CommunityPoolSpendProposal): unknown; fromPartial(object: Partial): CommunityPoolSpendProposal; @@ -555,8 +563,9 @@ export declare const CommunityPoolSpendProposal: { toProtoMsg(message: CommunityPoolSpendProposal): CommunityPoolSpendProposalProtoMsg; }; export declare const DelegatorStartingInfo: { - encode(message: DelegatorStartingInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DelegatorStartingInfo; + typeUrl: string; + encode(message: DelegatorStartingInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DelegatorStartingInfo; fromJSON(object: any): DelegatorStartingInfo; toJSON(message: DelegatorStartingInfo): unknown; fromPartial(object: Partial): DelegatorStartingInfo; @@ -569,8 +578,9 @@ export declare const DelegatorStartingInfo: { toProtoMsg(message: DelegatorStartingInfo): DelegatorStartingInfoProtoMsg; }; export declare const DelegationDelegatorReward: { - encode(message: DelegationDelegatorReward, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DelegationDelegatorReward; + typeUrl: string; + encode(message: DelegationDelegatorReward, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DelegationDelegatorReward; fromJSON(object: any): DelegationDelegatorReward; toJSON(message: DelegationDelegatorReward): unknown; fromPartial(object: Partial): DelegationDelegatorReward; @@ -583,8 +593,9 @@ export declare const DelegationDelegatorReward: { toProtoMsg(message: DelegationDelegatorReward): DelegationDelegatorRewardProtoMsg; }; export declare const CommunityPoolSpendProposalWithDeposit: { - encode(message: CommunityPoolSpendProposalWithDeposit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommunityPoolSpendProposalWithDeposit; + typeUrl: string; + encode(message: CommunityPoolSpendProposalWithDeposit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommunityPoolSpendProposalWithDeposit; fromJSON(object: any): CommunityPoolSpendProposalWithDeposit; toJSON(message: CommunityPoolSpendProposalWithDeposit): unknown; fromPartial(object: Partial): CommunityPoolSpendProposalWithDeposit; diff --git a/packages/api/types/codegen/cosmos/distribution/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/distribution/v1beta1/genesis.d.ts index 39e36b4..143a210 100644 --- a/packages/api/types/codegen/cosmos/distribution/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/distribution/v1beta1/genesis.d.ts @@ -1,7 +1,6 @@ import { DecCoin, DecCoinAmino, DecCoinSDKType } from "../../base/v1beta1/coin"; import { ValidatorAccumulatedCommission, ValidatorAccumulatedCommissionAmino, ValidatorAccumulatedCommissionSDKType, ValidatorHistoricalRewards, ValidatorHistoricalRewardsAmino, ValidatorHistoricalRewardsSDKType, ValidatorCurrentRewards, ValidatorCurrentRewardsAmino, ValidatorCurrentRewardsSDKType, DelegatorStartingInfo, DelegatorStartingInfoAmino, DelegatorStartingInfoSDKType, ValidatorSlashEvent, ValidatorSlashEventAmino, ValidatorSlashEventSDKType, Params, ParamsAmino, ParamsSDKType, FeePool, FeePoolAmino, FeePoolSDKType } from "./distribution"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * DelegatorWithdrawInfo is the address for where distributions rewards are * withdrawn to by default this struct is only used at genesis to feed in @@ -24,9 +23,9 @@ export interface DelegatorWithdrawInfoProtoMsg { */ export interface DelegatorWithdrawInfoAmino { /** delegator_address is the address of the delegator. */ - delegator_address: string; + delegator_address?: string; /** withdraw_address is the address to withdraw the delegation rewards to. */ - withdraw_address: string; + withdraw_address?: string; } export interface DelegatorWithdrawInfoAminoMsg { type: "cosmos-sdk/DelegatorWithdrawInfo"; @@ -55,9 +54,9 @@ export interface ValidatorOutstandingRewardsRecordProtoMsg { /** ValidatorOutstandingRewardsRecord is used for import/export via genesis json. */ export interface ValidatorOutstandingRewardsRecordAmino { /** validator_address is the address of the validator. */ - validator_address: string; + validator_address?: string; /** outstanding_rewards represents the oustanding rewards of a validator. */ - outstanding_rewards: DecCoinAmino[]; + outstanding_rewards?: DecCoinAmino[]; } export interface ValidatorOutstandingRewardsRecordAminoMsg { type: "cosmos-sdk/ValidatorOutstandingRewardsRecord"; @@ -88,7 +87,7 @@ export interface ValidatorAccumulatedCommissionRecordProtoMsg { */ export interface ValidatorAccumulatedCommissionRecordAmino { /** validator_address is the address of the validator. */ - validator_address: string; + validator_address?: string; /** accumulated is the accumulated commission of a validator. */ accumulated?: ValidatorAccumulatedCommissionAmino; } @@ -112,7 +111,7 @@ export interface ValidatorHistoricalRewardsRecord { /** validator_address is the address of the validator. */ validatorAddress: string; /** period defines the period the historical rewards apply to. */ - period: Long; + period: bigint; /** rewards defines the historical rewards of a validator. */ rewards: ValidatorHistoricalRewards; } @@ -126,9 +125,9 @@ export interface ValidatorHistoricalRewardsRecordProtoMsg { */ export interface ValidatorHistoricalRewardsRecordAmino { /** validator_address is the address of the validator. */ - validator_address: string; + validator_address?: string; /** period defines the period the historical rewards apply to. */ - period: string; + period?: string; /** rewards defines the historical rewards of a validator. */ rewards?: ValidatorHistoricalRewardsAmino; } @@ -142,7 +141,7 @@ export interface ValidatorHistoricalRewardsRecordAminoMsg { */ export interface ValidatorHistoricalRewardsRecordSDKType { validator_address: string; - period: Long; + period: bigint; rewards: ValidatorHistoricalRewardsSDKType; } /** ValidatorCurrentRewardsRecord is used for import / export via genesis json. */ @@ -159,7 +158,7 @@ export interface ValidatorCurrentRewardsRecordProtoMsg { /** ValidatorCurrentRewardsRecord is used for import / export via genesis json. */ export interface ValidatorCurrentRewardsRecordAmino { /** validator_address is the address of the validator. */ - validator_address: string; + validator_address?: string; /** rewards defines the current rewards of a validator. */ rewards?: ValidatorCurrentRewardsAmino; } @@ -188,9 +187,9 @@ export interface DelegatorStartingInfoRecordProtoMsg { /** DelegatorStartingInfoRecord used for import / export via genesis json. */ export interface DelegatorStartingInfoRecordAmino { /** delegator_address is the address of the delegator. */ - delegator_address: string; + delegator_address?: string; /** validator_address is the address of the validator. */ - validator_address: string; + validator_address?: string; /** starting_info defines the starting info of a delegator. */ starting_info?: DelegatorStartingInfoAmino; } @@ -209,9 +208,9 @@ export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; /** height defines the block height at which the slash event occured. */ - height: Long; + height: bigint; /** period is the period of the slash event. */ - period: Long; + period: bigint; /** validator_slash_event describes the slash event. */ validatorSlashEvent: ValidatorSlashEvent; } @@ -222,11 +221,11 @@ export interface ValidatorSlashEventRecordProtoMsg { /** ValidatorSlashEventRecord is used for import / export via genesis json. */ export interface ValidatorSlashEventRecordAmino { /** validator_address is the address of the validator. */ - validator_address: string; + validator_address?: string; /** height defines the block height at which the slash event occured. */ - height: string; + height?: string; /** period is the period of the slash event. */ - period: string; + period?: string; /** validator_slash_event describes the slash event. */ validator_slash_event?: ValidatorSlashEventAmino; } @@ -237,8 +236,8 @@ export interface ValidatorSlashEventRecordAminoMsg { /** ValidatorSlashEventRecord is used for import / export via genesis json. */ export interface ValidatorSlashEventRecordSDKType { validator_address: string; - height: Long; - period: Long; + height: bigint; + period: bigint; validator_slash_event: ValidatorSlashEventSDKType; } /** GenesisState defines the distribution module's genesis state. */ @@ -275,21 +274,21 @@ export interface GenesisStateAmino { /** fee_pool defines the fee pool at genesis. */ fee_pool?: FeePoolAmino; /** fee_pool defines the delegator withdraw infos at genesis. */ - delegator_withdraw_infos: DelegatorWithdrawInfoAmino[]; + delegator_withdraw_infos?: DelegatorWithdrawInfoAmino[]; /** fee_pool defines the previous proposer at genesis. */ - previous_proposer: string; + previous_proposer?: string; /** fee_pool defines the outstanding rewards of all validators at genesis. */ - outstanding_rewards: ValidatorOutstandingRewardsRecordAmino[]; + outstanding_rewards?: ValidatorOutstandingRewardsRecordAmino[]; /** fee_pool defines the accumulated commisions of all validators at genesis. */ - validator_accumulated_commissions: ValidatorAccumulatedCommissionRecordAmino[]; + validator_accumulated_commissions?: ValidatorAccumulatedCommissionRecordAmino[]; /** fee_pool defines the historical rewards of all validators at genesis. */ - validator_historical_rewards: ValidatorHistoricalRewardsRecordAmino[]; + validator_historical_rewards?: ValidatorHistoricalRewardsRecordAmino[]; /** fee_pool defines the current rewards of all validators at genesis. */ - validator_current_rewards: ValidatorCurrentRewardsRecordAmino[]; + validator_current_rewards?: ValidatorCurrentRewardsRecordAmino[]; /** fee_pool defines the delegator starting infos at genesis. */ - delegator_starting_infos: DelegatorStartingInfoRecordAmino[]; + delegator_starting_infos?: DelegatorStartingInfoRecordAmino[]; /** fee_pool defines the validator slash events at genesis. */ - validator_slash_events: ValidatorSlashEventRecordAmino[]; + validator_slash_events?: ValidatorSlashEventRecordAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -309,8 +308,9 @@ export interface GenesisStateSDKType { validator_slash_events: ValidatorSlashEventRecordSDKType[]; } export declare const DelegatorWithdrawInfo: { - encode(message: DelegatorWithdrawInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DelegatorWithdrawInfo; + typeUrl: string; + encode(message: DelegatorWithdrawInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DelegatorWithdrawInfo; fromJSON(object: any): DelegatorWithdrawInfo; toJSON(message: DelegatorWithdrawInfo): unknown; fromPartial(object: Partial): DelegatorWithdrawInfo; @@ -323,8 +323,9 @@ export declare const DelegatorWithdrawInfo: { toProtoMsg(message: DelegatorWithdrawInfo): DelegatorWithdrawInfoProtoMsg; }; export declare const ValidatorOutstandingRewardsRecord: { - encode(message: ValidatorOutstandingRewardsRecord, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorOutstandingRewardsRecord; + typeUrl: string; + encode(message: ValidatorOutstandingRewardsRecord, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorOutstandingRewardsRecord; fromJSON(object: any): ValidatorOutstandingRewardsRecord; toJSON(message: ValidatorOutstandingRewardsRecord): unknown; fromPartial(object: Partial): ValidatorOutstandingRewardsRecord; @@ -337,8 +338,9 @@ export declare const ValidatorOutstandingRewardsRecord: { toProtoMsg(message: ValidatorOutstandingRewardsRecord): ValidatorOutstandingRewardsRecordProtoMsg; }; export declare const ValidatorAccumulatedCommissionRecord: { - encode(message: ValidatorAccumulatedCommissionRecord, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorAccumulatedCommissionRecord; + typeUrl: string; + encode(message: ValidatorAccumulatedCommissionRecord, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorAccumulatedCommissionRecord; fromJSON(object: any): ValidatorAccumulatedCommissionRecord; toJSON(message: ValidatorAccumulatedCommissionRecord): unknown; fromPartial(object: Partial): ValidatorAccumulatedCommissionRecord; @@ -351,8 +353,9 @@ export declare const ValidatorAccumulatedCommissionRecord: { toProtoMsg(message: ValidatorAccumulatedCommissionRecord): ValidatorAccumulatedCommissionRecordProtoMsg; }; export declare const ValidatorHistoricalRewardsRecord: { - encode(message: ValidatorHistoricalRewardsRecord, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorHistoricalRewardsRecord; + typeUrl: string; + encode(message: ValidatorHistoricalRewardsRecord, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorHistoricalRewardsRecord; fromJSON(object: any): ValidatorHistoricalRewardsRecord; toJSON(message: ValidatorHistoricalRewardsRecord): unknown; fromPartial(object: Partial): ValidatorHistoricalRewardsRecord; @@ -365,8 +368,9 @@ export declare const ValidatorHistoricalRewardsRecord: { toProtoMsg(message: ValidatorHistoricalRewardsRecord): ValidatorHistoricalRewardsRecordProtoMsg; }; export declare const ValidatorCurrentRewardsRecord: { - encode(message: ValidatorCurrentRewardsRecord, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorCurrentRewardsRecord; + typeUrl: string; + encode(message: ValidatorCurrentRewardsRecord, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorCurrentRewardsRecord; fromJSON(object: any): ValidatorCurrentRewardsRecord; toJSON(message: ValidatorCurrentRewardsRecord): unknown; fromPartial(object: Partial): ValidatorCurrentRewardsRecord; @@ -379,8 +383,9 @@ export declare const ValidatorCurrentRewardsRecord: { toProtoMsg(message: ValidatorCurrentRewardsRecord): ValidatorCurrentRewardsRecordProtoMsg; }; export declare const DelegatorStartingInfoRecord: { - encode(message: DelegatorStartingInfoRecord, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DelegatorStartingInfoRecord; + typeUrl: string; + encode(message: DelegatorStartingInfoRecord, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DelegatorStartingInfoRecord; fromJSON(object: any): DelegatorStartingInfoRecord; toJSON(message: DelegatorStartingInfoRecord): unknown; fromPartial(object: Partial): DelegatorStartingInfoRecord; @@ -393,8 +398,9 @@ export declare const DelegatorStartingInfoRecord: { toProtoMsg(message: DelegatorStartingInfoRecord): DelegatorStartingInfoRecordProtoMsg; }; export declare const ValidatorSlashEventRecord: { - encode(message: ValidatorSlashEventRecord, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorSlashEventRecord; + typeUrl: string; + encode(message: ValidatorSlashEventRecord, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorSlashEventRecord; fromJSON(object: any): ValidatorSlashEventRecord; toJSON(message: ValidatorSlashEventRecord): unknown; fromPartial(object: Partial): ValidatorSlashEventRecord; @@ -407,8 +413,9 @@ export declare const ValidatorSlashEventRecord: { toProtoMsg(message: ValidatorSlashEventRecord): ValidatorSlashEventRecordProtoMsg; }; export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/distribution/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/distribution/v1beta1/query.d.ts index 646f623..6a0d4a7 100644 --- a/packages/api/types/codegen/cosmos/distribution/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/distribution/v1beta1/query.d.ts @@ -1,8 +1,7 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Params, ParamsAmino, ParamsSDKType, ValidatorOutstandingRewards, ValidatorOutstandingRewardsAmino, ValidatorOutstandingRewardsSDKType, ValidatorAccumulatedCommission, ValidatorAccumulatedCommissionAmino, ValidatorAccumulatedCommissionSDKType, ValidatorSlashEvent, ValidatorSlashEventAmino, ValidatorSlashEventSDKType, DelegationDelegatorReward, DelegationDelegatorRewardAmino, DelegationDelegatorRewardSDKType } from "./distribution"; import { DecCoin, DecCoinAmino, DecCoinSDKType } from "../../base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { } @@ -60,7 +59,7 @@ export interface QueryValidatorOutstandingRewardsRequestProtoMsg { */ export interface QueryValidatorOutstandingRewardsRequestAmino { /** validator_address defines the validator address to query for. */ - validator_address: string; + validator_address?: string; } export interface QueryValidatorOutstandingRewardsRequestAminoMsg { type: "cosmos-sdk/QueryValidatorOutstandingRewardsRequest"; @@ -120,7 +119,7 @@ export interface QueryValidatorCommissionRequestProtoMsg { */ export interface QueryValidatorCommissionRequestAmino { /** validator_address defines the validator address to query for. */ - validator_address: string; + validator_address?: string; } export interface QueryValidatorCommissionRequestAminoMsg { type: "cosmos-sdk/QueryValidatorCommissionRequest"; @@ -172,11 +171,11 @@ export interface QueryValidatorSlashesRequest { /** validator_address defines the validator address to query for. */ validatorAddress: string; /** starting_height defines the optional starting height to query the slashes. */ - startingHeight: Long; + startingHeight: bigint; /** starting_height defines the optional ending height to query the slashes. */ - endingHeight: Long; + endingHeight: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryValidatorSlashesRequestProtoMsg { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorSlashesRequest"; @@ -188,11 +187,11 @@ export interface QueryValidatorSlashesRequestProtoMsg { */ export interface QueryValidatorSlashesRequestAmino { /** validator_address defines the validator address to query for. */ - validator_address: string; + validator_address?: string; /** starting_height defines the optional starting height to query the slashes. */ - starting_height: string; + starting_height?: string; /** starting_height defines the optional ending height to query the slashes. */ - ending_height: string; + ending_height?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -206,9 +205,9 @@ export interface QueryValidatorSlashesRequestAminoMsg { */ export interface QueryValidatorSlashesRequestSDKType { validator_address: string; - starting_height: Long; - ending_height: Long; - pagination: PageRequestSDKType; + starting_height: bigint; + ending_height: bigint; + pagination?: PageRequestSDKType; } /** * QueryValidatorSlashesResponse is the response type for the @@ -218,7 +217,7 @@ export interface QueryValidatorSlashesResponse { /** slashes defines the slashes the validator received. */ slashes: ValidatorSlashEvent[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryValidatorSlashesResponseProtoMsg { typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorSlashesResponse"; @@ -230,7 +229,7 @@ export interface QueryValidatorSlashesResponseProtoMsg { */ export interface QueryValidatorSlashesResponseAmino { /** slashes defines the slashes the validator received. */ - slashes: ValidatorSlashEventAmino[]; + slashes?: ValidatorSlashEventAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -244,7 +243,7 @@ export interface QueryValidatorSlashesResponseAminoMsg { */ export interface QueryValidatorSlashesResponseSDKType { slashes: ValidatorSlashEventSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryDelegationRewardsRequest is the request type for the @@ -266,9 +265,9 @@ export interface QueryDelegationRewardsRequestProtoMsg { */ export interface QueryDelegationRewardsRequestAmino { /** delegator_address defines the delegator address to query for. */ - delegator_address: string; + delegator_address?: string; /** validator_address defines the validator address to query for. */ - validator_address: string; + validator_address?: string; } export interface QueryDelegationRewardsRequestAminoMsg { type: "cosmos-sdk/QueryDelegationRewardsRequest"; @@ -300,7 +299,7 @@ export interface QueryDelegationRewardsResponseProtoMsg { */ export interface QueryDelegationRewardsResponseAmino { /** rewards defines the rewards accrued by a delegation. */ - rewards: DecCoinAmino[]; + rewards?: DecCoinAmino[]; } export interface QueryDelegationRewardsResponseAminoMsg { type: "cosmos-sdk/QueryDelegationRewardsResponse"; @@ -331,7 +330,7 @@ export interface QueryDelegationTotalRewardsRequestProtoMsg { */ export interface QueryDelegationTotalRewardsRequestAmino { /** delegator_address defines the delegator address to query for. */ - delegator_address: string; + delegator_address?: string; } export interface QueryDelegationTotalRewardsRequestAminoMsg { type: "cosmos-sdk/QueryDelegationTotalRewardsRequest"; @@ -364,9 +363,9 @@ export interface QueryDelegationTotalRewardsResponseProtoMsg { */ export interface QueryDelegationTotalRewardsResponseAmino { /** rewards defines all the rewards accrued by a delegator. */ - rewards: DelegationDelegatorRewardAmino[]; + rewards?: DelegationDelegatorRewardAmino[]; /** total defines the sum of all the rewards. */ - total: DecCoinAmino[]; + total?: DecCoinAmino[]; } export interface QueryDelegationTotalRewardsResponseAminoMsg { type: "cosmos-sdk/QueryDelegationTotalRewardsResponse"; @@ -398,7 +397,7 @@ export interface QueryDelegatorValidatorsRequestProtoMsg { */ export interface QueryDelegatorValidatorsRequestAmino { /** delegator_address defines the delegator address to query for. */ - delegator_address: string; + delegator_address?: string; } export interface QueryDelegatorValidatorsRequestAminoMsg { type: "cosmos-sdk/QueryDelegatorValidatorsRequest"; @@ -429,7 +428,7 @@ export interface QueryDelegatorValidatorsResponseProtoMsg { */ export interface QueryDelegatorValidatorsResponseAmino { /** validators defines the validators a delegator is delegating for. */ - validators: string[]; + validators?: string[]; } export interface QueryDelegatorValidatorsResponseAminoMsg { type: "cosmos-sdk/QueryDelegatorValidatorsResponse"; @@ -460,7 +459,7 @@ export interface QueryDelegatorWithdrawAddressRequestProtoMsg { */ export interface QueryDelegatorWithdrawAddressRequestAmino { /** delegator_address defines the delegator address to query for. */ - delegator_address: string; + delegator_address?: string; } export interface QueryDelegatorWithdrawAddressRequestAminoMsg { type: "cosmos-sdk/QueryDelegatorWithdrawAddressRequest"; @@ -491,7 +490,7 @@ export interface QueryDelegatorWithdrawAddressResponseProtoMsg { */ export interface QueryDelegatorWithdrawAddressResponseAmino { /** withdraw_address defines the delegator address to query for. */ - withdraw_address: string; + withdraw_address?: string; } export interface QueryDelegatorWithdrawAddressResponseAminoMsg { type: "cosmos-sdk/QueryDelegatorWithdrawAddressResponse"; @@ -548,7 +547,7 @@ export interface QueryCommunityPoolResponseProtoMsg { */ export interface QueryCommunityPoolResponseAmino { /** pool defines community pool's coins. */ - pool: DecCoinAmino[]; + pool?: DecCoinAmino[]; } export interface QueryCommunityPoolResponseAminoMsg { type: "cosmos-sdk/QueryCommunityPoolResponse"; @@ -562,8 +561,9 @@ export interface QueryCommunityPoolResponseSDKType { pool: DecCoinSDKType[]; } export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -576,8 +576,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -590,8 +591,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryValidatorOutstandingRewardsRequest: { - encode(message: QueryValidatorOutstandingRewardsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorOutstandingRewardsRequest; + typeUrl: string; + encode(message: QueryValidatorOutstandingRewardsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorOutstandingRewardsRequest; fromJSON(object: any): QueryValidatorOutstandingRewardsRequest; toJSON(message: QueryValidatorOutstandingRewardsRequest): unknown; fromPartial(object: Partial): QueryValidatorOutstandingRewardsRequest; @@ -604,8 +606,9 @@ export declare const QueryValidatorOutstandingRewardsRequest: { toProtoMsg(message: QueryValidatorOutstandingRewardsRequest): QueryValidatorOutstandingRewardsRequestProtoMsg; }; export declare const QueryValidatorOutstandingRewardsResponse: { - encode(message: QueryValidatorOutstandingRewardsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorOutstandingRewardsResponse; + typeUrl: string; + encode(message: QueryValidatorOutstandingRewardsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorOutstandingRewardsResponse; fromJSON(object: any): QueryValidatorOutstandingRewardsResponse; toJSON(message: QueryValidatorOutstandingRewardsResponse): unknown; fromPartial(object: Partial): QueryValidatorOutstandingRewardsResponse; @@ -618,8 +621,9 @@ export declare const QueryValidatorOutstandingRewardsResponse: { toProtoMsg(message: QueryValidatorOutstandingRewardsResponse): QueryValidatorOutstandingRewardsResponseProtoMsg; }; export declare const QueryValidatorCommissionRequest: { - encode(message: QueryValidatorCommissionRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorCommissionRequest; + typeUrl: string; + encode(message: QueryValidatorCommissionRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorCommissionRequest; fromJSON(object: any): QueryValidatorCommissionRequest; toJSON(message: QueryValidatorCommissionRequest): unknown; fromPartial(object: Partial): QueryValidatorCommissionRequest; @@ -632,8 +636,9 @@ export declare const QueryValidatorCommissionRequest: { toProtoMsg(message: QueryValidatorCommissionRequest): QueryValidatorCommissionRequestProtoMsg; }; export declare const QueryValidatorCommissionResponse: { - encode(message: QueryValidatorCommissionResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorCommissionResponse; + typeUrl: string; + encode(message: QueryValidatorCommissionResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorCommissionResponse; fromJSON(object: any): QueryValidatorCommissionResponse; toJSON(message: QueryValidatorCommissionResponse): unknown; fromPartial(object: Partial): QueryValidatorCommissionResponse; @@ -646,8 +651,9 @@ export declare const QueryValidatorCommissionResponse: { toProtoMsg(message: QueryValidatorCommissionResponse): QueryValidatorCommissionResponseProtoMsg; }; export declare const QueryValidatorSlashesRequest: { - encode(message: QueryValidatorSlashesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorSlashesRequest; + typeUrl: string; + encode(message: QueryValidatorSlashesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorSlashesRequest; fromJSON(object: any): QueryValidatorSlashesRequest; toJSON(message: QueryValidatorSlashesRequest): unknown; fromPartial(object: Partial): QueryValidatorSlashesRequest; @@ -660,8 +666,9 @@ export declare const QueryValidatorSlashesRequest: { toProtoMsg(message: QueryValidatorSlashesRequest): QueryValidatorSlashesRequestProtoMsg; }; export declare const QueryValidatorSlashesResponse: { - encode(message: QueryValidatorSlashesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorSlashesResponse; + typeUrl: string; + encode(message: QueryValidatorSlashesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorSlashesResponse; fromJSON(object: any): QueryValidatorSlashesResponse; toJSON(message: QueryValidatorSlashesResponse): unknown; fromPartial(object: Partial): QueryValidatorSlashesResponse; @@ -674,8 +681,9 @@ export declare const QueryValidatorSlashesResponse: { toProtoMsg(message: QueryValidatorSlashesResponse): QueryValidatorSlashesResponseProtoMsg; }; export declare const QueryDelegationRewardsRequest: { - encode(message: QueryDelegationRewardsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationRewardsRequest; + typeUrl: string; + encode(message: QueryDelegationRewardsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationRewardsRequest; fromJSON(object: any): QueryDelegationRewardsRequest; toJSON(message: QueryDelegationRewardsRequest): unknown; fromPartial(object: Partial): QueryDelegationRewardsRequest; @@ -688,8 +696,9 @@ export declare const QueryDelegationRewardsRequest: { toProtoMsg(message: QueryDelegationRewardsRequest): QueryDelegationRewardsRequestProtoMsg; }; export declare const QueryDelegationRewardsResponse: { - encode(message: QueryDelegationRewardsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationRewardsResponse; + typeUrl: string; + encode(message: QueryDelegationRewardsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationRewardsResponse; fromJSON(object: any): QueryDelegationRewardsResponse; toJSON(message: QueryDelegationRewardsResponse): unknown; fromPartial(object: Partial): QueryDelegationRewardsResponse; @@ -702,8 +711,9 @@ export declare const QueryDelegationRewardsResponse: { toProtoMsg(message: QueryDelegationRewardsResponse): QueryDelegationRewardsResponseProtoMsg; }; export declare const QueryDelegationTotalRewardsRequest: { - encode(message: QueryDelegationTotalRewardsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationTotalRewardsRequest; + typeUrl: string; + encode(message: QueryDelegationTotalRewardsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationTotalRewardsRequest; fromJSON(object: any): QueryDelegationTotalRewardsRequest; toJSON(message: QueryDelegationTotalRewardsRequest): unknown; fromPartial(object: Partial): QueryDelegationTotalRewardsRequest; @@ -716,8 +726,9 @@ export declare const QueryDelegationTotalRewardsRequest: { toProtoMsg(message: QueryDelegationTotalRewardsRequest): QueryDelegationTotalRewardsRequestProtoMsg; }; export declare const QueryDelegationTotalRewardsResponse: { - encode(message: QueryDelegationTotalRewardsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationTotalRewardsResponse; + typeUrl: string; + encode(message: QueryDelegationTotalRewardsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationTotalRewardsResponse; fromJSON(object: any): QueryDelegationTotalRewardsResponse; toJSON(message: QueryDelegationTotalRewardsResponse): unknown; fromPartial(object: Partial): QueryDelegationTotalRewardsResponse; @@ -730,8 +741,9 @@ export declare const QueryDelegationTotalRewardsResponse: { toProtoMsg(message: QueryDelegationTotalRewardsResponse): QueryDelegationTotalRewardsResponseProtoMsg; }; export declare const QueryDelegatorValidatorsRequest: { - encode(message: QueryDelegatorValidatorsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest; + typeUrl: string; + encode(message: QueryDelegatorValidatorsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest; fromJSON(object: any): QueryDelegatorValidatorsRequest; toJSON(message: QueryDelegatorValidatorsRequest): unknown; fromPartial(object: Partial): QueryDelegatorValidatorsRequest; @@ -744,8 +756,9 @@ export declare const QueryDelegatorValidatorsRequest: { toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg; }; export declare const QueryDelegatorValidatorsResponse: { - encode(message: QueryDelegatorValidatorsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse; + typeUrl: string; + encode(message: QueryDelegatorValidatorsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse; fromJSON(object: any): QueryDelegatorValidatorsResponse; toJSON(message: QueryDelegatorValidatorsResponse): unknown; fromPartial(object: Partial): QueryDelegatorValidatorsResponse; @@ -758,8 +771,9 @@ export declare const QueryDelegatorValidatorsResponse: { toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg; }; export declare const QueryDelegatorWithdrawAddressRequest: { - encode(message: QueryDelegatorWithdrawAddressRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorWithdrawAddressRequest; + typeUrl: string; + encode(message: QueryDelegatorWithdrawAddressRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorWithdrawAddressRequest; fromJSON(object: any): QueryDelegatorWithdrawAddressRequest; toJSON(message: QueryDelegatorWithdrawAddressRequest): unknown; fromPartial(object: Partial): QueryDelegatorWithdrawAddressRequest; @@ -772,8 +786,9 @@ export declare const QueryDelegatorWithdrawAddressRequest: { toProtoMsg(message: QueryDelegatorWithdrawAddressRequest): QueryDelegatorWithdrawAddressRequestProtoMsg; }; export declare const QueryDelegatorWithdrawAddressResponse: { - encode(message: QueryDelegatorWithdrawAddressResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorWithdrawAddressResponse; + typeUrl: string; + encode(message: QueryDelegatorWithdrawAddressResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorWithdrawAddressResponse; fromJSON(object: any): QueryDelegatorWithdrawAddressResponse; toJSON(message: QueryDelegatorWithdrawAddressResponse): unknown; fromPartial(object: Partial): QueryDelegatorWithdrawAddressResponse; @@ -786,8 +801,9 @@ export declare const QueryDelegatorWithdrawAddressResponse: { toProtoMsg(message: QueryDelegatorWithdrawAddressResponse): QueryDelegatorWithdrawAddressResponseProtoMsg; }; export declare const QueryCommunityPoolRequest: { - encode(_: QueryCommunityPoolRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCommunityPoolRequest; + typeUrl: string; + encode(_: QueryCommunityPoolRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCommunityPoolRequest; fromJSON(_: any): QueryCommunityPoolRequest; toJSON(_: QueryCommunityPoolRequest): unknown; fromPartial(_: Partial): QueryCommunityPoolRequest; @@ -800,8 +816,9 @@ export declare const QueryCommunityPoolRequest: { toProtoMsg(message: QueryCommunityPoolRequest): QueryCommunityPoolRequestProtoMsg; }; export declare const QueryCommunityPoolResponse: { - encode(message: QueryCommunityPoolResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCommunityPoolResponse; + typeUrl: string; + encode(message: QueryCommunityPoolResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCommunityPoolResponse; fromJSON(object: any): QueryCommunityPoolResponse; toJSON(message: QueryCommunityPoolResponse): unknown; fromPartial(object: Partial): QueryCommunityPoolResponse; diff --git a/packages/api/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts index 1271db0..753bd2d 100644 --- a/packages/api/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryParamsRequest, QueryParamsResponseSDKType, QueryValidatorOutstandingRewardsRequest, QueryValidatorOutstandingRewardsResponseSDKType, QueryValidatorCommissionRequest, QueryValidatorCommissionResponseSDKType, QueryValidatorSlashesRequest, QueryValidatorSlashesResponseSDKType, QueryDelegationRewardsRequest, QueryDelegationRewardsResponseSDKType, QueryDelegationTotalRewardsRequest, QueryDelegationTotalRewardsResponseSDKType, QueryDelegatorValidatorsRequest, QueryDelegatorValidatorsResponseSDKType, QueryDelegatorWithdrawAddressRequest, QueryDelegatorWithdrawAddressResponseSDKType, QueryCommunityPoolRequest, QueryCommunityPoolResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/distribution/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/distribution/v1beta1/tx.d.ts index 11962e5..d3cf11b 100644 --- a/packages/api/types/codegen/cosmos/distribution/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/distribution/v1beta1/tx.d.ts @@ -1,5 +1,5 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgSetWithdrawAddress sets the withdraw address for * a delegator (or validator self-delegation). @@ -17,8 +17,8 @@ export interface MsgSetWithdrawAddressProtoMsg { * a delegator (or validator self-delegation). */ export interface MsgSetWithdrawAddressAmino { - delegator_address: string; - withdraw_address: string; + delegator_address?: string; + withdraw_address?: string; } export interface MsgSetWithdrawAddressAminoMsg { type: "cosmos-sdk/MsgModifyWithdrawAddress"; @@ -66,8 +66,8 @@ export interface MsgWithdrawDelegatorRewardProtoMsg { * from a single validator. */ export interface MsgWithdrawDelegatorRewardAmino { - delegator_address: string; - validator_address: string; + delegator_address?: string; + validator_address?: string; } export interface MsgWithdrawDelegatorRewardAminoMsg { type: "cosmos-sdk/MsgWithdrawDelegationReward"; @@ -93,7 +93,7 @@ export interface MsgWithdrawDelegatorRewardResponseProtoMsg { /** MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type. */ export interface MsgWithdrawDelegatorRewardResponseAmino { /** Since: cosmos-sdk 0.46 */ - amount: CoinAmino[]; + amount?: CoinAmino[]; } export interface MsgWithdrawDelegatorRewardResponseAminoMsg { type: "cosmos-sdk/MsgWithdrawDelegatorRewardResponse"; @@ -119,7 +119,7 @@ export interface MsgWithdrawValidatorCommissionProtoMsg { * address. */ export interface MsgWithdrawValidatorCommissionAmino { - validator_address: string; + validator_address?: string; } export interface MsgWithdrawValidatorCommissionAminoMsg { type: "cosmos-sdk/MsgWithdrawValidatorCommission"; @@ -144,7 +144,7 @@ export interface MsgWithdrawValidatorCommissionResponseProtoMsg { /** MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommission response type. */ export interface MsgWithdrawValidatorCommissionResponseAmino { /** Since: cosmos-sdk 0.46 */ - amount: CoinAmino[]; + amount?: CoinAmino[]; } export interface MsgWithdrawValidatorCommissionResponseAminoMsg { type: "cosmos-sdk/MsgWithdrawValidatorCommissionResponse"; @@ -171,8 +171,8 @@ export interface MsgFundCommunityPoolProtoMsg { * fund the community pool. */ export interface MsgFundCommunityPoolAmino { - amount: CoinAmino[]; - depositor: string; + amount?: CoinAmino[]; + depositor?: string; } export interface MsgFundCommunityPoolAminoMsg { type: "cosmos-sdk/MsgFundCommunityPool"; @@ -204,8 +204,9 @@ export interface MsgFundCommunityPoolResponseAminoMsg { export interface MsgFundCommunityPoolResponseSDKType { } export declare const MsgSetWithdrawAddress: { - encode(message: MsgSetWithdrawAddress, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSetWithdrawAddress; + typeUrl: string; + encode(message: MsgSetWithdrawAddress, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSetWithdrawAddress; fromJSON(object: any): MsgSetWithdrawAddress; toJSON(message: MsgSetWithdrawAddress): unknown; fromPartial(object: Partial): MsgSetWithdrawAddress; @@ -218,8 +219,9 @@ export declare const MsgSetWithdrawAddress: { toProtoMsg(message: MsgSetWithdrawAddress): MsgSetWithdrawAddressProtoMsg; }; export declare const MsgSetWithdrawAddressResponse: { - encode(_: MsgSetWithdrawAddressResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSetWithdrawAddressResponse; + typeUrl: string; + encode(_: MsgSetWithdrawAddressResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSetWithdrawAddressResponse; fromJSON(_: any): MsgSetWithdrawAddressResponse; toJSON(_: MsgSetWithdrawAddressResponse): unknown; fromPartial(_: Partial): MsgSetWithdrawAddressResponse; @@ -232,8 +234,9 @@ export declare const MsgSetWithdrawAddressResponse: { toProtoMsg(message: MsgSetWithdrawAddressResponse): MsgSetWithdrawAddressResponseProtoMsg; }; export declare const MsgWithdrawDelegatorReward: { - encode(message: MsgWithdrawDelegatorReward, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgWithdrawDelegatorReward; + typeUrl: string; + encode(message: MsgWithdrawDelegatorReward, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawDelegatorReward; fromJSON(object: any): MsgWithdrawDelegatorReward; toJSON(message: MsgWithdrawDelegatorReward): unknown; fromPartial(object: Partial): MsgWithdrawDelegatorReward; @@ -246,8 +249,9 @@ export declare const MsgWithdrawDelegatorReward: { toProtoMsg(message: MsgWithdrawDelegatorReward): MsgWithdrawDelegatorRewardProtoMsg; }; export declare const MsgWithdrawDelegatorRewardResponse: { - encode(message: MsgWithdrawDelegatorRewardResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgWithdrawDelegatorRewardResponse; + typeUrl: string; + encode(message: MsgWithdrawDelegatorRewardResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawDelegatorRewardResponse; fromJSON(object: any): MsgWithdrawDelegatorRewardResponse; toJSON(message: MsgWithdrawDelegatorRewardResponse): unknown; fromPartial(object: Partial): MsgWithdrawDelegatorRewardResponse; @@ -260,8 +264,9 @@ export declare const MsgWithdrawDelegatorRewardResponse: { toProtoMsg(message: MsgWithdrawDelegatorRewardResponse): MsgWithdrawDelegatorRewardResponseProtoMsg; }; export declare const MsgWithdrawValidatorCommission: { - encode(message: MsgWithdrawValidatorCommission, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgWithdrawValidatorCommission; + typeUrl: string; + encode(message: MsgWithdrawValidatorCommission, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawValidatorCommission; fromJSON(object: any): MsgWithdrawValidatorCommission; toJSON(message: MsgWithdrawValidatorCommission): unknown; fromPartial(object: Partial): MsgWithdrawValidatorCommission; @@ -274,8 +279,9 @@ export declare const MsgWithdrawValidatorCommission: { toProtoMsg(message: MsgWithdrawValidatorCommission): MsgWithdrawValidatorCommissionProtoMsg; }; export declare const MsgWithdrawValidatorCommissionResponse: { - encode(message: MsgWithdrawValidatorCommissionResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgWithdrawValidatorCommissionResponse; + typeUrl: string; + encode(message: MsgWithdrawValidatorCommissionResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawValidatorCommissionResponse; fromJSON(object: any): MsgWithdrawValidatorCommissionResponse; toJSON(message: MsgWithdrawValidatorCommissionResponse): unknown; fromPartial(object: Partial): MsgWithdrawValidatorCommissionResponse; @@ -288,8 +294,9 @@ export declare const MsgWithdrawValidatorCommissionResponse: { toProtoMsg(message: MsgWithdrawValidatorCommissionResponse): MsgWithdrawValidatorCommissionResponseProtoMsg; }; export declare const MsgFundCommunityPool: { - encode(message: MsgFundCommunityPool, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgFundCommunityPool; + typeUrl: string; + encode(message: MsgFundCommunityPool, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgFundCommunityPool; fromJSON(object: any): MsgFundCommunityPool; toJSON(message: MsgFundCommunityPool): unknown; fromPartial(object: Partial): MsgFundCommunityPool; @@ -302,8 +309,9 @@ export declare const MsgFundCommunityPool: { toProtoMsg(message: MsgFundCommunityPool): MsgFundCommunityPoolProtoMsg; }; export declare const MsgFundCommunityPoolResponse: { - encode(_: MsgFundCommunityPoolResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgFundCommunityPoolResponse; + typeUrl: string; + encode(_: MsgFundCommunityPoolResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgFundCommunityPoolResponse; fromJSON(_: any): MsgFundCommunityPoolResponse; toJSON(_: MsgFundCommunityPoolResponse): unknown; fromPartial(_: Partial): MsgFundCommunityPoolResponse; diff --git a/packages/api/types/codegen/cosmos/evidence/v1beta1/evidence.d.ts b/packages/api/types/codegen/cosmos/evidence/v1beta1/evidence.d.ts index 8ff054d..a3ae59d 100644 --- a/packages/api/types/codegen/cosmos/evidence/v1beta1/evidence.d.ts +++ b/packages/api/types/codegen/cosmos/evidence/v1beta1/evidence.d.ts @@ -1,14 +1,13 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * Equivocation implements the Evidence interface and defines evidence of double * signing misbehavior. */ export interface Equivocation { - height: Long; + height: bigint; time: Timestamp; - power: Long; + power: bigint; consensusAddress: string; } export interface EquivocationProtoMsg { @@ -20,10 +19,10 @@ export interface EquivocationProtoMsg { * signing misbehavior. */ export interface EquivocationAmino { - height: string; - time?: TimestampAmino; - power: string; - consensus_address: string; + height?: string; + time?: string; + power?: string; + consensus_address?: string; } export interface EquivocationAminoMsg { type: "cosmos-sdk/Equivocation"; @@ -34,14 +33,15 @@ export interface EquivocationAminoMsg { * signing misbehavior. */ export interface EquivocationSDKType { - height: Long; + height: bigint; time: TimestampSDKType; - power: Long; + power: bigint; consensus_address: string; } export declare const Equivocation: { - encode(message: Equivocation, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Equivocation; + typeUrl: string; + encode(message: Equivocation, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Equivocation; fromJSON(object: any): Equivocation; toJSON(message: Equivocation): unknown; fromPartial(object: Partial): Equivocation; diff --git a/packages/api/types/codegen/cosmos/evidence/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/evidence/v1beta1/genesis.d.ts index 25a0e1f..e412962 100644 --- a/packages/api/types/codegen/cosmos/evidence/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/evidence/v1beta1/genesis.d.ts @@ -1,5 +1,5 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the evidence module's genesis state. */ export interface GenesisState { /** evidence defines all the evidence at genesis. */ @@ -12,7 +12,7 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the evidence module's genesis state. */ export interface GenesisStateAmino { /** evidence defines all the evidence at genesis. */ - evidence: AnyAmino[]; + evidence?: AnyAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -23,8 +23,9 @@ export interface GenesisStateSDKType { evidence: AnySDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/evidence/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/evidence/v1beta1/query.d.ts index a6c4f22..c10fa2e 100644 --- a/packages/api/types/codegen/cosmos/evidence/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/evidence/v1beta1/query.d.ts @@ -1,6 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryEvidenceRequest is the request type for the Query/Evidence RPC method. */ export interface QueryEvidenceRequest { /** evidence_hash defines the hash of the requested evidence. */ @@ -13,7 +13,7 @@ export interface QueryEvidenceRequestProtoMsg { /** QueryEvidenceRequest is the request type for the Query/Evidence RPC method. */ export interface QueryEvidenceRequestAmino { /** evidence_hash defines the hash of the requested evidence. */ - evidence_hash: Uint8Array; + evidence_hash?: string; } export interface QueryEvidenceRequestAminoMsg { type: "cosmos-sdk/QueryEvidenceRequest"; @@ -26,7 +26,7 @@ export interface QueryEvidenceRequestSDKType { /** QueryEvidenceResponse is the response type for the Query/Evidence RPC method. */ export interface QueryEvidenceResponse { /** evidence returns the requested evidence. */ - evidence: Any; + evidence?: Any; } export interface QueryEvidenceResponseProtoMsg { typeUrl: "/cosmos.evidence.v1beta1.QueryEvidenceResponse"; @@ -43,7 +43,7 @@ export interface QueryEvidenceResponseAminoMsg { } /** QueryEvidenceResponse is the response type for the Query/Evidence RPC method. */ export interface QueryEvidenceResponseSDKType { - evidence: AnySDKType; + evidence?: AnySDKType; } /** * QueryEvidenceRequest is the request type for the Query/AllEvidence RPC @@ -51,7 +51,7 @@ export interface QueryEvidenceResponseSDKType { */ export interface QueryAllEvidenceRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllEvidenceRequestProtoMsg { typeUrl: "/cosmos.evidence.v1beta1.QueryAllEvidenceRequest"; @@ -74,7 +74,7 @@ export interface QueryAllEvidenceRequestAminoMsg { * method. */ export interface QueryAllEvidenceRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAllEvidenceResponse is the response type for the Query/AllEvidence RPC @@ -84,7 +84,7 @@ export interface QueryAllEvidenceResponse { /** evidence returns all evidences. */ evidence: Any[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllEvidenceResponseProtoMsg { typeUrl: "/cosmos.evidence.v1beta1.QueryAllEvidenceResponse"; @@ -96,7 +96,7 @@ export interface QueryAllEvidenceResponseProtoMsg { */ export interface QueryAllEvidenceResponseAmino { /** evidence returns all evidences. */ - evidence: AnyAmino[]; + evidence?: AnyAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -110,11 +110,12 @@ export interface QueryAllEvidenceResponseAminoMsg { */ export interface QueryAllEvidenceResponseSDKType { evidence: AnySDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } export declare const QueryEvidenceRequest: { - encode(message: QueryEvidenceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryEvidenceRequest; + typeUrl: string; + encode(message: QueryEvidenceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryEvidenceRequest; fromJSON(object: any): QueryEvidenceRequest; toJSON(message: QueryEvidenceRequest): unknown; fromPartial(object: Partial): QueryEvidenceRequest; @@ -127,8 +128,9 @@ export declare const QueryEvidenceRequest: { toProtoMsg(message: QueryEvidenceRequest): QueryEvidenceRequestProtoMsg; }; export declare const QueryEvidenceResponse: { - encode(message: QueryEvidenceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryEvidenceResponse; + typeUrl: string; + encode(message: QueryEvidenceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryEvidenceResponse; fromJSON(object: any): QueryEvidenceResponse; toJSON(message: QueryEvidenceResponse): unknown; fromPartial(object: Partial): QueryEvidenceResponse; @@ -141,8 +143,9 @@ export declare const QueryEvidenceResponse: { toProtoMsg(message: QueryEvidenceResponse): QueryEvidenceResponseProtoMsg; }; export declare const QueryAllEvidenceRequest: { - encode(message: QueryAllEvidenceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllEvidenceRequest; + typeUrl: string; + encode(message: QueryAllEvidenceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllEvidenceRequest; fromJSON(object: any): QueryAllEvidenceRequest; toJSON(message: QueryAllEvidenceRequest): unknown; fromPartial(object: Partial): QueryAllEvidenceRequest; @@ -155,8 +158,9 @@ export declare const QueryAllEvidenceRequest: { toProtoMsg(message: QueryAllEvidenceRequest): QueryAllEvidenceRequestProtoMsg; }; export declare const QueryAllEvidenceResponse: { - encode(message: QueryAllEvidenceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllEvidenceResponse; + typeUrl: string; + encode(message: QueryAllEvidenceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllEvidenceResponse; fromJSON(object: any): QueryAllEvidenceResponse; toJSON(message: QueryAllEvidenceResponse): unknown; fromPartial(object: Partial): QueryAllEvidenceResponse; diff --git a/packages/api/types/codegen/cosmos/evidence/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/evidence/v1beta1/query.lcd.d.ts index 7bca5de..badd75e 100644 --- a/packages/api/types/codegen/cosmos/evidence/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/evidence/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryEvidenceRequest, QueryEvidenceResponseSDKType, QueryAllEvidenceRequest, QueryAllEvidenceResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/evidence/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/evidence/v1beta1/tx.d.ts index 8bc9e5c..ded2acd 100644 --- a/packages/api/types/codegen/cosmos/evidence/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/evidence/v1beta1/tx.d.ts @@ -1,12 +1,12 @@ import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgSubmitEvidence represents a message that supports submitting arbitrary * Evidence of misbehavior such as equivocation or counterfactual signing. */ export interface MsgSubmitEvidence { submitter: string; - evidence: (Any) | undefined; + evidence?: (Any) | undefined; } export interface MsgSubmitEvidenceProtoMsg { typeUrl: "/cosmos.evidence.v1beta1.MsgSubmitEvidence"; @@ -20,7 +20,7 @@ export type MsgSubmitEvidenceEncoded = Omit & { * Evidence of misbehavior such as equivocation or counterfactual signing. */ export interface MsgSubmitEvidenceAmino { - submitter: string; + submitter?: string; evidence?: AnyAmino; } export interface MsgSubmitEvidenceAminoMsg { @@ -33,7 +33,7 @@ export interface MsgSubmitEvidenceAminoMsg { */ export interface MsgSubmitEvidenceSDKType { submitter: string; - evidence: AnySDKType | undefined; + evidence?: AnySDKType | undefined; } /** MsgSubmitEvidenceResponse defines the Msg/SubmitEvidence response type. */ export interface MsgSubmitEvidenceResponse { @@ -47,7 +47,7 @@ export interface MsgSubmitEvidenceResponseProtoMsg { /** MsgSubmitEvidenceResponse defines the Msg/SubmitEvidence response type. */ export interface MsgSubmitEvidenceResponseAmino { /** hash defines the hash of the evidence. */ - hash: Uint8Array; + hash?: string; } export interface MsgSubmitEvidenceResponseAminoMsg { type: "cosmos-sdk/MsgSubmitEvidenceResponse"; @@ -58,8 +58,9 @@ export interface MsgSubmitEvidenceResponseSDKType { hash: Uint8Array; } export declare const MsgSubmitEvidence: { - encode(message: MsgSubmitEvidence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitEvidence; + typeUrl: string; + encode(message: MsgSubmitEvidence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitEvidence; fromJSON(object: any): MsgSubmitEvidence; toJSON(message: MsgSubmitEvidence): unknown; fromPartial(object: Partial): MsgSubmitEvidence; @@ -72,8 +73,9 @@ export declare const MsgSubmitEvidence: { toProtoMsg(message: MsgSubmitEvidence): MsgSubmitEvidenceProtoMsg; }; export declare const MsgSubmitEvidenceResponse: { - encode(message: MsgSubmitEvidenceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitEvidenceResponse; + typeUrl: string; + encode(message: MsgSubmitEvidenceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitEvidenceResponse; fromJSON(object: any): MsgSubmitEvidenceResponse; toJSON(message: MsgSubmitEvidenceResponse): unknown; fromPartial(object: Partial): MsgSubmitEvidenceResponse; @@ -85,6 +87,6 @@ export declare const MsgSubmitEvidenceResponse: { toProto(message: MsgSubmitEvidenceResponse): Uint8Array; toProtoMsg(message: MsgSubmitEvidenceResponse): MsgSubmitEvidenceResponseProtoMsg; }; -export declare const Evidence_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => Any; +export declare const Evidence_InterfaceDecoder: (input: BinaryReader | Uint8Array) => Any; export declare const Evidence_FromAmino: (content: AnyAmino) => Any; export declare const Evidence_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/feegrant/v1beta1/feegrant.d.ts b/packages/api/types/codegen/cosmos/feegrant/v1beta1/feegrant.d.ts index b8d3c5c..f34ebce 100644 --- a/packages/api/types/codegen/cosmos/feegrant/v1beta1/feegrant.d.ts +++ b/packages/api/types/codegen/cosmos/feegrant/v1beta1/feegrant.d.ts @@ -1,14 +1,14 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * BasicAllowance implements Allowance with a one-time grant of coins * that optionally expires. The grantee can use up to SpendLimit to cover fees. */ export interface BasicAllowance { - $typeUrl?: string; + $typeUrl?: "/cosmos.feegrant.v1beta1.BasicAllowance"; /** * spend_limit specifies the maximum amount of coins that can be spent * by this allowance and will be updated as coins are spent. If it is @@ -16,7 +16,7 @@ export interface BasicAllowance { */ spendLimit: Coin[]; /** expiration specifies an optional time when this allowance expires */ - expiration: Timestamp; + expiration?: Timestamp; } export interface BasicAllowanceProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.BasicAllowance"; @@ -32,9 +32,9 @@ export interface BasicAllowanceAmino { * by this allowance and will be updated as coins are spent. If it is * empty, there is no spend limit and any amount of coins can be spent. */ - spend_limit: CoinAmino[]; + spend_limit?: CoinAmino[]; /** expiration specifies an optional time when this allowance expires */ - expiration?: TimestampAmino; + expiration?: string; } export interface BasicAllowanceAminoMsg { type: "cosmos-sdk/BasicAllowance"; @@ -45,16 +45,16 @@ export interface BasicAllowanceAminoMsg { * that optionally expires. The grantee can use up to SpendLimit to cover fees. */ export interface BasicAllowanceSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.feegrant.v1beta1.BasicAllowance"; spend_limit: CoinSDKType[]; - expiration: TimestampSDKType; + expiration?: TimestampSDKType; } /** * PeriodicAllowance extends Allowance to allow for both a maximum cap, * as well as a limit per time period. */ export interface PeriodicAllowance { - $typeUrl?: string; + $typeUrl?: "/cosmos.feegrant.v1beta1.PeriodicAllowance"; /** basic specifies a struct of `BasicAllowance` */ basic: BasicAllowance; /** @@ -96,15 +96,15 @@ export interface PeriodicAllowanceAmino { * period_spend_limit specifies the maximum number of coins that can be spent * in the period */ - period_spend_limit: CoinAmino[]; + period_spend_limit?: CoinAmino[]; /** period_can_spend is the number of coins left to be spent before the period_reset time */ - period_can_spend: CoinAmino[]; + period_can_spend?: CoinAmino[]; /** * period_reset is the time at which this period resets and a new one begins, * it is calculated from the start time of the first transaction after the * last period ended */ - period_reset?: TimestampAmino; + period_reset?: string; } export interface PeriodicAllowanceAminoMsg { type: "cosmos-sdk/PeriodicAllowance"; @@ -115,7 +115,7 @@ export interface PeriodicAllowanceAminoMsg { * as well as a limit per time period. */ export interface PeriodicAllowanceSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.feegrant.v1beta1.PeriodicAllowance"; basic: BasicAllowanceSDKType; period: DurationSDKType; period_spend_limit: CoinSDKType[]; @@ -124,9 +124,9 @@ export interface PeriodicAllowanceSDKType { } /** AllowedMsgAllowance creates allowance only for specified message types. */ export interface AllowedMsgAllowance { - $typeUrl?: string; + $typeUrl?: "/cosmos.feegrant.v1beta1.AllowedMsgAllowance"; /** allowance can be any of basic and periodic fee allowance. */ - allowance: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; + allowance?: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; /** allowed_messages are the messages for which the grantee has the access. */ allowedMessages: string[]; } @@ -142,7 +142,7 @@ export interface AllowedMsgAllowanceAmino { /** allowance can be any of basic and periodic fee allowance. */ allowance?: AnyAmino; /** allowed_messages are the messages for which the grantee has the access. */ - allowed_messages: string[]; + allowed_messages?: string[]; } export interface AllowedMsgAllowanceAminoMsg { type: "cosmos-sdk/AllowedMsgAllowance"; @@ -150,8 +150,8 @@ export interface AllowedMsgAllowanceAminoMsg { } /** AllowedMsgAllowance creates allowance only for specified message types. */ export interface AllowedMsgAllowanceSDKType { - $typeUrl?: string; - allowance: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined; + $typeUrl?: "/cosmos.feegrant.v1beta1.AllowedMsgAllowance"; + allowance?: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined; allowed_messages: string[]; } /** Grant is stored in the KVStore to record a grant with full context */ @@ -161,7 +161,7 @@ export interface Grant { /** grantee is the address of the user being granted an allowance of another user's funds. */ grantee: string; /** allowance can be any of basic, periodic, allowed fee allowance. */ - allowance: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; + allowance?: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; } export interface GrantProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.Grant"; @@ -173,9 +173,9 @@ export type GrantEncoded = Omit & { /** Grant is stored in the KVStore to record a grant with full context */ export interface GrantAmino { /** granter is the address of the user granting an allowance of their funds. */ - granter: string; + granter?: string; /** grantee is the address of the user being granted an allowance of another user's funds. */ - grantee: string; + grantee?: string; /** allowance can be any of basic, periodic, allowed fee allowance. */ allowance?: AnyAmino; } @@ -187,11 +187,12 @@ export interface GrantAminoMsg { export interface GrantSDKType { granter: string; grantee: string; - allowance: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined; + allowance?: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined; } export declare const BasicAllowance: { - encode(message: BasicAllowance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasicAllowance; + typeUrl: string; + encode(message: BasicAllowance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasicAllowance; fromJSON(object: any): BasicAllowance; toJSON(message: BasicAllowance): unknown; fromPartial(object: Partial): BasicAllowance; @@ -204,8 +205,9 @@ export declare const BasicAllowance: { toProtoMsg(message: BasicAllowance): BasicAllowanceProtoMsg; }; export declare const PeriodicAllowance: { - encode(message: PeriodicAllowance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PeriodicAllowance; + typeUrl: string; + encode(message: PeriodicAllowance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PeriodicAllowance; fromJSON(object: any): PeriodicAllowance; toJSON(message: PeriodicAllowance): unknown; fromPartial(object: Partial): PeriodicAllowance; @@ -218,8 +220,9 @@ export declare const PeriodicAllowance: { toProtoMsg(message: PeriodicAllowance): PeriodicAllowanceProtoMsg; }; export declare const AllowedMsgAllowance: { - encode(message: AllowedMsgAllowance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AllowedMsgAllowance; + typeUrl: string; + encode(message: AllowedMsgAllowance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AllowedMsgAllowance; fromJSON(object: any): AllowedMsgAllowance; toJSON(message: AllowedMsgAllowance): unknown; fromPartial(object: Partial): AllowedMsgAllowance; @@ -232,8 +235,9 @@ export declare const AllowedMsgAllowance: { toProtoMsg(message: AllowedMsgAllowance): AllowedMsgAllowanceProtoMsg; }; export declare const Grant: { - encode(message: Grant, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Grant; + typeUrl: string; + encode(message: Grant, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Grant; fromJSON(object: any): Grant; toJSON(message: Grant): unknown; fromPartial(object: Partial): Grant; @@ -245,6 +249,6 @@ export declare const Grant: { toProto(message: Grant): Uint8Array; toProtoMsg(message: Grant): GrantProtoMsg; }; -export declare const FeeAllowanceI_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any; +export declare const FeeAllowanceI_InterfaceDecoder: (input: BinaryReader | Uint8Array) => BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any; export declare const FeeAllowanceI_FromAmino: (content: AnyAmino) => Any; export declare const FeeAllowanceI_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/feegrant/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/feegrant/v1beta1/genesis.d.ts index 56c83f5..f99f727 100644 --- a/packages/api/types/codegen/cosmos/feegrant/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/feegrant/v1beta1/genesis.d.ts @@ -1,5 +1,5 @@ import { Grant, GrantAmino, GrantSDKType } from "./feegrant"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState contains a set of fee allowances, persisted from the store */ export interface GenesisState { allowances: Grant[]; @@ -10,7 +10,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState contains a set of fee allowances, persisted from the store */ export interface GenesisStateAmino { - allowances: GrantAmino[]; + allowances?: GrantAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -21,8 +21,9 @@ export interface GenesisStateSDKType { allowances: GrantSDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.d.ts index 56f43bd..e0b48ad 100644 --- a/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.d.ts @@ -1,6 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Grant, GrantAmino, GrantSDKType } from "./feegrant"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryAllowanceRequest is the request type for the Query/Allowance RPC method. */ export interface QueryAllowanceRequest { /** granter is the address of the user granting an allowance of their funds. */ @@ -15,9 +15,9 @@ export interface QueryAllowanceRequestProtoMsg { /** QueryAllowanceRequest is the request type for the Query/Allowance RPC method. */ export interface QueryAllowanceRequestAmino { /** granter is the address of the user granting an allowance of their funds. */ - granter: string; + granter?: string; /** grantee is the address of the user being granted an allowance of another user's funds. */ - grantee: string; + grantee?: string; } export interface QueryAllowanceRequestAminoMsg { type: "cosmos-sdk/QueryAllowanceRequest"; @@ -31,7 +31,7 @@ export interface QueryAllowanceRequestSDKType { /** QueryAllowanceResponse is the response type for the Query/Allowance RPC method. */ export interface QueryAllowanceResponse { /** allowance is a allowance granted for grantee by granter. */ - allowance: Grant; + allowance?: Grant; } export interface QueryAllowanceResponseProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.QueryAllowanceResponse"; @@ -48,13 +48,13 @@ export interface QueryAllowanceResponseAminoMsg { } /** QueryAllowanceResponse is the response type for the Query/Allowance RPC method. */ export interface QueryAllowanceResponseSDKType { - allowance: GrantSDKType; + allowance?: GrantSDKType; } /** QueryAllowancesRequest is the request type for the Query/Allowances RPC method. */ export interface QueryAllowancesRequest { grantee: string; /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllowancesRequestProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.QueryAllowancesRequest"; @@ -62,7 +62,7 @@ export interface QueryAllowancesRequestProtoMsg { } /** QueryAllowancesRequest is the request type for the Query/Allowances RPC method. */ export interface QueryAllowancesRequestAmino { - grantee: string; + grantee?: string; /** pagination defines an pagination for the request. */ pagination?: PageRequestAmino; } @@ -73,14 +73,14 @@ export interface QueryAllowancesRequestAminoMsg { /** QueryAllowancesRequest is the request type for the Query/Allowances RPC method. */ export interface QueryAllowancesRequestSDKType { grantee: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryAllowancesResponse is the response type for the Query/Allowances RPC method. */ export interface QueryAllowancesResponse { /** allowances are allowance's granted for grantee by granter. */ allowances: Grant[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllowancesResponseProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.QueryAllowancesResponse"; @@ -89,7 +89,7 @@ export interface QueryAllowancesResponseProtoMsg { /** QueryAllowancesResponse is the response type for the Query/Allowances RPC method. */ export interface QueryAllowancesResponseAmino { /** allowances are allowance's granted for grantee by granter. */ - allowances: GrantAmino[]; + allowances?: GrantAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -100,7 +100,7 @@ export interface QueryAllowancesResponseAminoMsg { /** QueryAllowancesResponse is the response type for the Query/Allowances RPC method. */ export interface QueryAllowancesResponseSDKType { allowances: GrantSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryAllowancesByGranterRequest is the request type for the Query/AllowancesByGranter RPC method. @@ -110,7 +110,7 @@ export interface QueryAllowancesResponseSDKType { export interface QueryAllowancesByGranterRequest { granter: string; /** pagination defines an pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllowancesByGranterRequestProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.QueryAllowancesByGranterRequest"; @@ -122,7 +122,7 @@ export interface QueryAllowancesByGranterRequestProtoMsg { * Since: cosmos-sdk 0.46 */ export interface QueryAllowancesByGranterRequestAmino { - granter: string; + granter?: string; /** pagination defines an pagination for the request. */ pagination?: PageRequestAmino; } @@ -137,7 +137,7 @@ export interface QueryAllowancesByGranterRequestAminoMsg { */ export interface QueryAllowancesByGranterRequestSDKType { granter: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAllowancesByGranterResponse is the response type for the Query/AllowancesByGranter RPC method. @@ -148,7 +148,7 @@ export interface QueryAllowancesByGranterResponse { /** allowances that have been issued by the granter. */ allowances: Grant[]; /** pagination defines an pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllowancesByGranterResponseProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.QueryAllowancesByGranterResponse"; @@ -161,7 +161,7 @@ export interface QueryAllowancesByGranterResponseProtoMsg { */ export interface QueryAllowancesByGranterResponseAmino { /** allowances that have been issued by the granter. */ - allowances: GrantAmino[]; + allowances?: GrantAmino[]; /** pagination defines an pagination for the response. */ pagination?: PageResponseAmino; } @@ -176,11 +176,12 @@ export interface QueryAllowancesByGranterResponseAminoMsg { */ export interface QueryAllowancesByGranterResponseSDKType { allowances: GrantSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } export declare const QueryAllowanceRequest: { - encode(message: QueryAllowanceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowanceRequest; + typeUrl: string; + encode(message: QueryAllowanceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowanceRequest; fromJSON(object: any): QueryAllowanceRequest; toJSON(message: QueryAllowanceRequest): unknown; fromPartial(object: Partial): QueryAllowanceRequest; @@ -193,8 +194,9 @@ export declare const QueryAllowanceRequest: { toProtoMsg(message: QueryAllowanceRequest): QueryAllowanceRequestProtoMsg; }; export declare const QueryAllowanceResponse: { - encode(message: QueryAllowanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowanceResponse; + typeUrl: string; + encode(message: QueryAllowanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowanceResponse; fromJSON(object: any): QueryAllowanceResponse; toJSON(message: QueryAllowanceResponse): unknown; fromPartial(object: Partial): QueryAllowanceResponse; @@ -207,8 +209,9 @@ export declare const QueryAllowanceResponse: { toProtoMsg(message: QueryAllowanceResponse): QueryAllowanceResponseProtoMsg; }; export declare const QueryAllowancesRequest: { - encode(message: QueryAllowancesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowancesRequest; + typeUrl: string; + encode(message: QueryAllowancesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowancesRequest; fromJSON(object: any): QueryAllowancesRequest; toJSON(message: QueryAllowancesRequest): unknown; fromPartial(object: Partial): QueryAllowancesRequest; @@ -221,8 +224,9 @@ export declare const QueryAllowancesRequest: { toProtoMsg(message: QueryAllowancesRequest): QueryAllowancesRequestProtoMsg; }; export declare const QueryAllowancesResponse: { - encode(message: QueryAllowancesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowancesResponse; + typeUrl: string; + encode(message: QueryAllowancesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowancesResponse; fromJSON(object: any): QueryAllowancesResponse; toJSON(message: QueryAllowancesResponse): unknown; fromPartial(object: Partial): QueryAllowancesResponse; @@ -235,8 +239,9 @@ export declare const QueryAllowancesResponse: { toProtoMsg(message: QueryAllowancesResponse): QueryAllowancesResponseProtoMsg; }; export declare const QueryAllowancesByGranterRequest: { - encode(message: QueryAllowancesByGranterRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowancesByGranterRequest; + typeUrl: string; + encode(message: QueryAllowancesByGranterRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowancesByGranterRequest; fromJSON(object: any): QueryAllowancesByGranterRequest; toJSON(message: QueryAllowancesByGranterRequest): unknown; fromPartial(object: Partial): QueryAllowancesByGranterRequest; @@ -249,8 +254,9 @@ export declare const QueryAllowancesByGranterRequest: { toProtoMsg(message: QueryAllowancesByGranterRequest): QueryAllowancesByGranterRequestProtoMsg; }; export declare const QueryAllowancesByGranterResponse: { - encode(message: QueryAllowancesByGranterResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowancesByGranterResponse; + typeUrl: string; + encode(message: QueryAllowancesByGranterResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowancesByGranterResponse; fromJSON(object: any): QueryAllowancesByGranterResponse; toJSON(message: QueryAllowancesByGranterResponse): unknown; fromPartial(object: Partial): QueryAllowancesByGranterResponse; diff --git a/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.lcd.d.ts index 7669c05..39e515e 100644 --- a/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/feegrant/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryAllowanceRequest, QueryAllowanceResponseSDKType, QueryAllowancesRequest, QueryAllowancesResponseSDKType, QueryAllowancesByGranterRequest, QueryAllowancesByGranterResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/feegrant/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/feegrant/v1beta1/tx.d.ts index 7ac632c..2fc6e42 100644 --- a/packages/api/types/codegen/cosmos/feegrant/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/feegrant/v1beta1/tx.d.ts @@ -1,6 +1,6 @@ import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { BasicAllowance, BasicAllowanceProtoMsg, BasicAllowanceSDKType, PeriodicAllowance, PeriodicAllowanceProtoMsg, PeriodicAllowanceSDKType, AllowedMsgAllowance, AllowedMsgAllowanceProtoMsg, AllowedMsgAllowanceSDKType } from "./feegrant"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgGrantAllowance adds permission for Grantee to spend up to Allowance * of fees from the account of Granter. @@ -11,7 +11,7 @@ export interface MsgGrantAllowance { /** grantee is the address of the user being granted an allowance of another user's funds. */ grantee: string; /** allowance can be any of basic, periodic, allowed fee allowance. */ - allowance: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; + allowance?: (BasicAllowance & PeriodicAllowance & AllowedMsgAllowance & Any) | undefined; } export interface MsgGrantAllowanceProtoMsg { typeUrl: "/cosmos.feegrant.v1beta1.MsgGrantAllowance"; @@ -26,9 +26,9 @@ export type MsgGrantAllowanceEncoded = Omit & { */ export interface MsgGrantAllowanceAmino { /** granter is the address of the user granting an allowance of their funds. */ - granter: string; + granter?: string; /** grantee is the address of the user being granted an allowance of another user's funds. */ - grantee: string; + grantee?: string; /** allowance can be any of basic, periodic, allowed fee allowance. */ allowance?: AnyAmino; } @@ -43,7 +43,7 @@ export interface MsgGrantAllowanceAminoMsg { export interface MsgGrantAllowanceSDKType { granter: string; grantee: string; - allowance: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined; + allowance?: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined; } /** MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type. */ export interface MsgGrantAllowanceResponse { @@ -76,9 +76,9 @@ export interface MsgRevokeAllowanceProtoMsg { /** MsgRevokeAllowance removes any existing Allowance from Granter to Grantee. */ export interface MsgRevokeAllowanceAmino { /** granter is the address of the user granting an allowance of their funds. */ - granter: string; + granter?: string; /** grantee is the address of the user being granted an allowance of another user's funds. */ - grantee: string; + grantee?: string; } export interface MsgRevokeAllowanceAminoMsg { type: "cosmos-sdk/MsgRevokeAllowance"; @@ -107,8 +107,9 @@ export interface MsgRevokeAllowanceResponseAminoMsg { export interface MsgRevokeAllowanceResponseSDKType { } export declare const MsgGrantAllowance: { - encode(message: MsgGrantAllowance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgGrantAllowance; + typeUrl: string; + encode(message: MsgGrantAllowance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgGrantAllowance; fromJSON(object: any): MsgGrantAllowance; toJSON(message: MsgGrantAllowance): unknown; fromPartial(object: Partial): MsgGrantAllowance; @@ -121,8 +122,9 @@ export declare const MsgGrantAllowance: { toProtoMsg(message: MsgGrantAllowance): MsgGrantAllowanceProtoMsg; }; export declare const MsgGrantAllowanceResponse: { - encode(_: MsgGrantAllowanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgGrantAllowanceResponse; + typeUrl: string; + encode(_: MsgGrantAllowanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgGrantAllowanceResponse; fromJSON(_: any): MsgGrantAllowanceResponse; toJSON(_: MsgGrantAllowanceResponse): unknown; fromPartial(_: Partial): MsgGrantAllowanceResponse; @@ -135,8 +137,9 @@ export declare const MsgGrantAllowanceResponse: { toProtoMsg(message: MsgGrantAllowanceResponse): MsgGrantAllowanceResponseProtoMsg; }; export declare const MsgRevokeAllowance: { - encode(message: MsgRevokeAllowance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRevokeAllowance; + typeUrl: string; + encode(message: MsgRevokeAllowance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeAllowance; fromJSON(object: any): MsgRevokeAllowance; toJSON(message: MsgRevokeAllowance): unknown; fromPartial(object: Partial): MsgRevokeAllowance; @@ -149,8 +152,9 @@ export declare const MsgRevokeAllowance: { toProtoMsg(message: MsgRevokeAllowance): MsgRevokeAllowanceProtoMsg; }; export declare const MsgRevokeAllowanceResponse: { - encode(_: MsgRevokeAllowanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRevokeAllowanceResponse; + typeUrl: string; + encode(_: MsgRevokeAllowanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeAllowanceResponse; fromJSON(_: any): MsgRevokeAllowanceResponse; toJSON(_: MsgRevokeAllowanceResponse): unknown; fromPartial(_: Partial): MsgRevokeAllowanceResponse; @@ -162,6 +166,6 @@ export declare const MsgRevokeAllowanceResponse: { toProto(message: MsgRevokeAllowanceResponse): Uint8Array; toProtoMsg(message: MsgRevokeAllowanceResponse): MsgRevokeAllowanceResponseProtoMsg; }; -export declare const FeeAllowanceI_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any; +export declare const FeeAllowanceI_InterfaceDecoder: (input: BinaryReader | Uint8Array) => BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any; export declare const FeeAllowanceI_FromAmino: (content: AnyAmino) => Any; export declare const FeeAllowanceI_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/genutil/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/genutil/v1beta1/genesis.d.ts index d81d0a1..857ef18 100644 --- a/packages/api/types/codegen/cosmos/genutil/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/genutil/v1beta1/genesis.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the raw genesis transaction in JSON. */ export interface GenesisState { /** gen_txs defines the genesis transactions. */ @@ -11,7 +11,7 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the raw genesis transaction in JSON. */ export interface GenesisStateAmino { /** gen_txs defines the genesis transactions. */ - gen_txs: Uint8Array[]; + gen_txs: string[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -22,8 +22,9 @@ export interface GenesisStateSDKType { gen_txs: Uint8Array[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/gov/v1/genesis.d.ts b/packages/api/types/codegen/cosmos/gov/v1/genesis.d.ts index 7b6a5ee..498c5ca 100644 --- a/packages/api/types/codegen/cosmos/gov/v1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1/genesis.d.ts @@ -1,10 +1,9 @@ import { Deposit, DepositAmino, DepositSDKType, Vote, VoteAmino, VoteSDKType, Proposal, ProposalAmino, ProposalSDKType, DepositParams, DepositParamsAmino, DepositParamsSDKType, VotingParams, VotingParamsAmino, VotingParamsSDKType, TallyParams, TallyParamsAmino, TallyParamsSDKType } from "./gov"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the gov module's genesis state. */ export interface GenesisState { /** starting_proposal_id is the ID of the starting proposal. */ - startingProposalId: Long; + startingProposalId: bigint; /** deposits defines all the deposits present at genesis. */ deposits: Deposit[]; /** votes defines all the votes present at genesis. */ @@ -12,11 +11,11 @@ export interface GenesisState { /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; /** params defines all the paramaters of related to deposit. */ - depositParams: DepositParams; + depositParams?: DepositParams; /** params defines all the paramaters of related to voting. */ - votingParams: VotingParams; + votingParams?: VotingParams; /** params defines all the paramaters of related to tally. */ - tallyParams: TallyParams; + tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { typeUrl: "/cosmos.gov.v1.GenesisState"; @@ -25,13 +24,13 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the gov module's genesis state. */ export interface GenesisStateAmino { /** starting_proposal_id is the ID of the starting proposal. */ - starting_proposal_id: string; + starting_proposal_id?: string; /** deposits defines all the deposits present at genesis. */ - deposits: DepositAmino[]; + deposits?: DepositAmino[]; /** votes defines all the votes present at genesis. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ - proposals: ProposalAmino[]; + proposals?: ProposalAmino[]; /** params defines all the paramaters of related to deposit. */ deposit_params?: DepositParamsAmino; /** params defines all the paramaters of related to voting. */ @@ -45,17 +44,18 @@ export interface GenesisStateAminoMsg { } /** GenesisState defines the gov module's genesis state. */ export interface GenesisStateSDKType { - starting_proposal_id: Long; + starting_proposal_id: bigint; deposits: DepositSDKType[]; votes: VoteSDKType[]; proposals: ProposalSDKType[]; - deposit_params: DepositParamsSDKType; - voting_params: VotingParamsSDKType; - tally_params: TallyParamsSDKType; + deposit_params?: DepositParamsSDKType; + voting_params?: VotingParamsSDKType; + tally_params?: TallyParamsSDKType; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/gov/v1/gov.d.ts b/packages/api/types/codegen/cosmos/gov/v1/gov.d.ts index fc28765..af7dbbe 100644 --- a/packages/api/types/codegen/cosmos/gov/v1/gov.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1/gov.d.ts @@ -1,9 +1,8 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** VoteOption enumerates the valid vote options for a given governance proposal. */ export declare enum VoteOption { /** VOTE_OPTION_UNSPECIFIED - VOTE_OPTION_UNSPECIFIED defines a no-op vote option. */ @@ -68,8 +67,8 @@ export interface WeightedVoteOptionProtoMsg { } /** WeightedVoteOption defines a unit of vote for vote split. */ export interface WeightedVoteOptionAmino { - option: VoteOption; - weight: string; + option?: VoteOption; + weight?: string; } export interface WeightedVoteOptionAminoMsg { type: "cosmos-sdk/v1/WeightedVoteOption"; @@ -85,7 +84,7 @@ export interface WeightedVoteOptionSDKType { * proposal. */ export interface Deposit { - proposalId: Long; + proposalId: bigint; depositor: string; amount: Coin[]; } @@ -98,9 +97,9 @@ export interface DepositProtoMsg { * proposal. */ export interface DepositAmino { - proposal_id: string; - depositor: string; - amount: CoinAmino[]; + proposal_id?: string; + depositor?: string; + amount?: CoinAmino[]; } export interface DepositAminoMsg { type: "cosmos-sdk/v1/Deposit"; @@ -111,13 +110,13 @@ export interface DepositAminoMsg { * proposal. */ export interface DepositSDKType { - proposal_id: Long; + proposal_id: bigint; depositor: string; amount: CoinSDKType[]; } /** Proposal defines the core field members of a governance proposal. */ export interface Proposal { - id: Long; + id: bigint; messages: Any[]; status: ProposalStatus; /** @@ -125,12 +124,12 @@ export interface Proposal { * querying a proposal via gRPC, this field is not populated until the * proposal's voting period has ended. */ - finalTallyResult: TallyResult; - submitTime: Timestamp; - depositEndTime: Timestamp; + finalTallyResult?: TallyResult; + submitTime?: Timestamp; + depositEndTime?: Timestamp; totalDeposit: Coin[]; - votingStartTime: Timestamp; - votingEndTime: Timestamp; + votingStartTime?: Timestamp; + votingEndTime?: Timestamp; /** metadata is any arbitrary metadata attached to the proposal. */ metadata: string; } @@ -140,22 +139,22 @@ export interface ProposalProtoMsg { } /** Proposal defines the core field members of a governance proposal. */ export interface ProposalAmino { - id: string; - messages: AnyAmino[]; - status: ProposalStatus; + id?: string; + messages?: AnyAmino[]; + status?: ProposalStatus; /** * final_tally_result is the final tally result of the proposal. When * querying a proposal via gRPC, this field is not populated until the * proposal's voting period has ended. */ final_tally_result?: TallyResultAmino; - submit_time?: TimestampAmino; - deposit_end_time?: TimestampAmino; - total_deposit: CoinAmino[]; - voting_start_time?: TimestampAmino; - voting_end_time?: TimestampAmino; + submit_time?: string; + deposit_end_time?: string; + total_deposit?: CoinAmino[]; + voting_start_time?: string; + voting_end_time?: string; /** metadata is any arbitrary metadata attached to the proposal. */ - metadata: string; + metadata?: string; } export interface ProposalAminoMsg { type: "cosmos-sdk/v1/Proposal"; @@ -163,15 +162,15 @@ export interface ProposalAminoMsg { } /** Proposal defines the core field members of a governance proposal. */ export interface ProposalSDKType { - id: Long; + id: bigint; messages: AnySDKType[]; status: ProposalStatus; - final_tally_result: TallyResultSDKType; - submit_time: TimestampSDKType; - deposit_end_time: TimestampSDKType; + final_tally_result?: TallyResultSDKType; + submit_time?: TimestampSDKType; + deposit_end_time?: TimestampSDKType; total_deposit: CoinSDKType[]; - voting_start_time: TimestampSDKType; - voting_end_time: TimestampSDKType; + voting_start_time?: TimestampSDKType; + voting_end_time?: TimestampSDKType; metadata: string; } /** TallyResult defines a standard tally for a governance proposal. */ @@ -187,10 +186,10 @@ export interface TallyResultProtoMsg { } /** TallyResult defines a standard tally for a governance proposal. */ export interface TallyResultAmino { - yes_count: string; - abstain_count: string; - no_count: string; - no_with_veto_count: string; + yes_count?: string; + abstain_count?: string; + no_count?: string; + no_with_veto_count?: string; } export interface TallyResultAminoMsg { type: "cosmos-sdk/v1/TallyResult"; @@ -208,7 +207,7 @@ export interface TallyResultSDKType { * A Vote consists of a proposal ID, the voter, and the vote option. */ export interface Vote { - proposalId: Long; + proposalId: bigint; voter: string; options: WeightedVoteOption[]; /** metadata is any arbitrary metadata to attached to the vote. */ @@ -223,11 +222,11 @@ export interface VoteProtoMsg { * A Vote consists of a proposal ID, the voter, and the vote option. */ export interface VoteAmino { - proposal_id: string; - voter: string; - options: WeightedVoteOptionAmino[]; + proposal_id?: string; + voter?: string; + options?: WeightedVoteOptionAmino[]; /** metadata is any arbitrary metadata to attached to the vote. */ - metadata: string; + metadata?: string; } export interface VoteAminoMsg { type: "cosmos-sdk/v1/Vote"; @@ -238,7 +237,7 @@ export interface VoteAminoMsg { * A Vote consists of a proposal ID, the voter, and the vote option. */ export interface VoteSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; options: WeightedVoteOptionSDKType[]; metadata: string; @@ -251,7 +250,7 @@ export interface DepositParams { * Maximum period for Atom holders to deposit on a proposal. Initial value: 2 * months. */ - maxDepositPeriod: Duration; + maxDepositPeriod?: Duration; } export interface DepositParamsProtoMsg { typeUrl: "/cosmos.gov.v1.DepositParams"; @@ -260,7 +259,7 @@ export interface DepositParamsProtoMsg { /** DepositParams defines the params for deposits on governance proposals. */ export interface DepositParamsAmino { /** Minimum deposit for a proposal to enter voting period. */ - min_deposit: CoinAmino[]; + min_deposit?: CoinAmino[]; /** * Maximum period for Atom holders to deposit on a proposal. Initial value: 2 * months. @@ -274,12 +273,12 @@ export interface DepositParamsAminoMsg { /** DepositParams defines the params for deposits on governance proposals. */ export interface DepositParamsSDKType { min_deposit: CoinSDKType[]; - max_deposit_period: DurationSDKType; + max_deposit_period?: DurationSDKType; } /** VotingParams defines the params for voting on governance proposals. */ export interface VotingParams { /** Length of the voting period. */ - votingPeriod: Duration; + votingPeriod?: Duration; } export interface VotingParamsProtoMsg { typeUrl: "/cosmos.gov.v1.VotingParams"; @@ -296,7 +295,7 @@ export interface VotingParamsAminoMsg { } /** VotingParams defines the params for voting on governance proposals. */ export interface VotingParamsSDKType { - voting_period: DurationSDKType; + voting_period?: DurationSDKType; } /** TallyParams defines the params for tallying votes on governance proposals. */ export interface TallyParams { @@ -323,14 +322,14 @@ export interface TallyParamsAmino { * Minimum percentage of total stake needed to vote for a result to be * considered valid. */ - quorum: string; + quorum?: string; /** Minimum proportion of Yes votes for proposal to pass. Default value: 0.5. */ - threshold: string; + threshold?: string; /** * Minimum value of Veto votes to Total votes ratio for proposal to be * vetoed. Default value: 1/3. */ - veto_threshold: string; + veto_threshold?: string; } export interface TallyParamsAminoMsg { type: "cosmos-sdk/v1/TallyParams"; @@ -343,8 +342,9 @@ export interface TallyParamsSDKType { veto_threshold: string; } export declare const WeightedVoteOption: { - encode(message: WeightedVoteOption, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): WeightedVoteOption; + typeUrl: string; + encode(message: WeightedVoteOption, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): WeightedVoteOption; fromJSON(object: any): WeightedVoteOption; toJSON(message: WeightedVoteOption): unknown; fromPartial(object: Partial): WeightedVoteOption; @@ -357,8 +357,9 @@ export declare const WeightedVoteOption: { toProtoMsg(message: WeightedVoteOption): WeightedVoteOptionProtoMsg; }; export declare const Deposit: { - encode(message: Deposit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Deposit; + typeUrl: string; + encode(message: Deposit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Deposit; fromJSON(object: any): Deposit; toJSON(message: Deposit): unknown; fromPartial(object: Partial): Deposit; @@ -371,8 +372,9 @@ export declare const Deposit: { toProtoMsg(message: Deposit): DepositProtoMsg; }; export declare const Proposal: { - encode(message: Proposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Proposal; + typeUrl: string; + encode(message: Proposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Proposal; fromJSON(object: any): Proposal; toJSON(message: Proposal): unknown; fromPartial(object: Partial): Proposal; @@ -385,8 +387,9 @@ export declare const Proposal: { toProtoMsg(message: Proposal): ProposalProtoMsg; }; export declare const TallyResult: { - encode(message: TallyResult, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TallyResult; + typeUrl: string; + encode(message: TallyResult, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TallyResult; fromJSON(object: any): TallyResult; toJSON(message: TallyResult): unknown; fromPartial(object: Partial): TallyResult; @@ -399,8 +402,9 @@ export declare const TallyResult: { toProtoMsg(message: TallyResult): TallyResultProtoMsg; }; export declare const Vote: { - encode(message: Vote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Vote; + typeUrl: string; + encode(message: Vote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Vote; fromJSON(object: any): Vote; toJSON(message: Vote): unknown; fromPartial(object: Partial): Vote; @@ -413,8 +417,9 @@ export declare const Vote: { toProtoMsg(message: Vote): VoteProtoMsg; }; export declare const DepositParams: { - encode(message: DepositParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DepositParams; + typeUrl: string; + encode(message: DepositParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DepositParams; fromJSON(object: any): DepositParams; toJSON(message: DepositParams): unknown; fromPartial(object: Partial): DepositParams; @@ -427,8 +432,9 @@ export declare const DepositParams: { toProtoMsg(message: DepositParams): DepositParamsProtoMsg; }; export declare const VotingParams: { - encode(message: VotingParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): VotingParams; + typeUrl: string; + encode(message: VotingParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): VotingParams; fromJSON(object: any): VotingParams; toJSON(message: VotingParams): unknown; fromPartial(object: Partial): VotingParams; @@ -441,8 +447,9 @@ export declare const VotingParams: { toProtoMsg(message: VotingParams): VotingParamsProtoMsg; }; export declare const TallyParams: { - encode(message: TallyParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TallyParams; + typeUrl: string; + encode(message: TallyParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TallyParams; fromJSON(object: any): TallyParams; toJSON(message: TallyParams): unknown; fromPartial(object: Partial): TallyParams; diff --git a/packages/api/types/codegen/cosmos/gov/v1/query.d.ts b/packages/api/types/codegen/cosmos/gov/v1/query.d.ts index 00bdab0..d367ba3 100644 --- a/packages/api/types/codegen/cosmos/gov/v1/query.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1/query.d.ts @@ -1,11 +1,10 @@ import { ProposalStatus, Proposal, ProposalAmino, ProposalSDKType, Vote, VoteAmino, VoteSDKType, VotingParams, VotingParamsAmino, VotingParamsSDKType, DepositParams, DepositParamsAmino, DepositParamsSDKType, TallyParams, TallyParamsAmino, TallyParamsSDKType, Deposit, DepositAmino, DepositSDKType, TallyResult, TallyResultAmino, TallyResultSDKType } from "./gov"; import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface QueryProposalRequestProtoMsg { typeUrl: "/cosmos.gov.v1.QueryProposalRequest"; @@ -14,7 +13,7 @@ export interface QueryProposalRequestProtoMsg { /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface QueryProposalRequestAminoMsg { type: "cosmos-sdk/v1/QueryProposalRequest"; @@ -22,11 +21,11 @@ export interface QueryProposalRequestAminoMsg { } /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequestSDKType { - proposal_id: Long; + proposal_id: bigint; } /** QueryProposalResponse is the response type for the Query/Proposal RPC method. */ export interface QueryProposalResponse { - proposal: Proposal; + proposal?: Proposal; } export interface QueryProposalResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryProposalResponse"; @@ -42,7 +41,7 @@ export interface QueryProposalResponseAminoMsg { } /** QueryProposalResponse is the response type for the Query/Proposal RPC method. */ export interface QueryProposalResponseSDKType { - proposal: ProposalSDKType; + proposal?: ProposalSDKType; } /** QueryProposalsRequest is the request type for the Query/Proposals RPC method. */ export interface QueryProposalsRequest { @@ -53,7 +52,7 @@ export interface QueryProposalsRequest { /** depositor defines the deposit addresses from the proposals. */ depositor: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProposalsRequestProtoMsg { typeUrl: "/cosmos.gov.v1.QueryProposalsRequest"; @@ -62,11 +61,11 @@ export interface QueryProposalsRequestProtoMsg { /** QueryProposalsRequest is the request type for the Query/Proposals RPC method. */ export interface QueryProposalsRequestAmino { /** proposal_status defines the status of the proposals. */ - proposal_status: ProposalStatus; + proposal_status?: ProposalStatus; /** voter defines the voter address for the proposals. */ - voter: string; + voter?: string; /** depositor defines the deposit addresses from the proposals. */ - depositor: string; + depositor?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -79,7 +78,7 @@ export interface QueryProposalsRequestSDKType { proposal_status: ProposalStatus; voter: string; depositor: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryProposalsResponse is the response type for the Query/Proposals RPC @@ -88,7 +87,7 @@ export interface QueryProposalsRequestSDKType { export interface QueryProposalsResponse { proposals: Proposal[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProposalsResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryProposalsResponse"; @@ -99,7 +98,7 @@ export interface QueryProposalsResponseProtoMsg { * method. */ export interface QueryProposalsResponseAmino { - proposals: ProposalAmino[]; + proposals?: ProposalAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -113,12 +112,12 @@ export interface QueryProposalsResponseAminoMsg { */ export interface QueryProposalsResponseSDKType { proposals: ProposalSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** voter defines the voter address for the proposals. */ voter: string; } @@ -129,9 +128,9 @@ export interface QueryVoteRequestProtoMsg { /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** voter defines the voter address for the proposals. */ - voter: string; + voter?: string; } export interface QueryVoteRequestAminoMsg { type: "cosmos-sdk/v1/QueryVoteRequest"; @@ -139,13 +138,13 @@ export interface QueryVoteRequestAminoMsg { } /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequestSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; } /** QueryVoteResponse is the response type for the Query/Vote RPC method. */ export interface QueryVoteResponse { /** vote defined the queried vote. */ - vote: Vote; + vote?: Vote; } export interface QueryVoteResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryVoteResponse"; @@ -162,14 +161,14 @@ export interface QueryVoteResponseAminoMsg { } /** QueryVoteResponse is the response type for the Query/Vote RPC method. */ export interface QueryVoteResponseSDKType { - vote: VoteSDKType; + vote?: VoteSDKType; } /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryVotesRequestProtoMsg { typeUrl: "/cosmos.gov.v1.QueryVotesRequest"; @@ -178,7 +177,7 @@ export interface QueryVotesRequestProtoMsg { /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -188,15 +187,15 @@ export interface QueryVotesRequestAminoMsg { } /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequestSDKType { - proposal_id: Long; - pagination: PageRequestSDKType; + proposal_id: bigint; + pagination?: PageRequestSDKType; } /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponse { /** votes defined the queried votes. */ votes: Vote[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryVotesResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryVotesResponse"; @@ -205,7 +204,7 @@ export interface QueryVotesResponseProtoMsg { /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponseAmino { /** votes defined the queried votes. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -216,7 +215,7 @@ export interface QueryVotesResponseAminoMsg { /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponseSDKType { votes: VoteSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { @@ -236,7 +235,7 @@ export interface QueryParamsRequestAmino { * params_type defines which parameters to query for, can be one of "voting", * "tallying" or "deposit". */ - params_type: string; + params_type?: string; } export interface QueryParamsRequestAminoMsg { type: "cosmos-sdk/v1/QueryParamsRequest"; @@ -249,11 +248,11 @@ export interface QueryParamsRequestSDKType { /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** voting_params defines the parameters related to voting. */ - votingParams: VotingParams; + votingParams?: VotingParams; /** deposit_params defines the parameters related to deposit. */ - depositParams: DepositParams; + depositParams?: DepositParams; /** tally_params defines the parameters related to tally. */ - tallyParams: TallyParams; + tallyParams?: TallyParams; } export interface QueryParamsResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryParamsResponse"; @@ -274,14 +273,14 @@ export interface QueryParamsResponseAminoMsg { } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { - voting_params: VotingParamsSDKType; - deposit_params: DepositParamsSDKType; - tally_params: TallyParamsSDKType; + voting_params?: VotingParamsSDKType; + deposit_params?: DepositParamsSDKType; + tally_params?: TallyParamsSDKType; } /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** depositor defines the deposit addresses from the proposals. */ depositor: string; } @@ -292,9 +291,9 @@ export interface QueryDepositRequestProtoMsg { /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** depositor defines the deposit addresses from the proposals. */ - depositor: string; + depositor?: string; } export interface QueryDepositRequestAminoMsg { type: "cosmos-sdk/v1/QueryDepositRequest"; @@ -302,13 +301,13 @@ export interface QueryDepositRequestAminoMsg { } /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequestSDKType { - proposal_id: Long; + proposal_id: bigint; depositor: string; } /** QueryDepositResponse is the response type for the Query/Deposit RPC method. */ export interface QueryDepositResponse { /** deposit defines the requested deposit. */ - deposit: Deposit; + deposit?: Deposit; } export interface QueryDepositResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryDepositResponse"; @@ -325,14 +324,14 @@ export interface QueryDepositResponseAminoMsg { } /** QueryDepositResponse is the response type for the Query/Deposit RPC method. */ export interface QueryDepositResponseSDKType { - deposit: DepositSDKType; + deposit?: DepositSDKType; } /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDepositsRequestProtoMsg { typeUrl: "/cosmos.gov.v1.QueryDepositsRequest"; @@ -341,7 +340,7 @@ export interface QueryDepositsRequestProtoMsg { /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -351,14 +350,14 @@ export interface QueryDepositsRequestAminoMsg { } /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequestSDKType { - proposal_id: Long; - pagination: PageRequestSDKType; + proposal_id: bigint; + pagination?: PageRequestSDKType; } /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponse { deposits: Deposit[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDepositsResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryDepositsResponse"; @@ -366,7 +365,7 @@ export interface QueryDepositsResponseProtoMsg { } /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponseAmino { - deposits: DepositAmino[]; + deposits?: DepositAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -377,12 +376,12 @@ export interface QueryDepositsResponseAminoMsg { /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponseSDKType { deposits: DepositSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface QueryTallyResultRequestProtoMsg { typeUrl: "/cosmos.gov.v1.QueryTallyResultRequest"; @@ -391,7 +390,7 @@ export interface QueryTallyResultRequestProtoMsg { /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface QueryTallyResultRequestAminoMsg { type: "cosmos-sdk/v1/QueryTallyResultRequest"; @@ -399,12 +398,12 @@ export interface QueryTallyResultRequestAminoMsg { } /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequestSDKType { - proposal_id: Long; + proposal_id: bigint; } /** QueryTallyResultResponse is the response type for the Query/Tally RPC method. */ export interface QueryTallyResultResponse { /** tally defines the requested tally. */ - tally: TallyResult; + tally?: TallyResult; } export interface QueryTallyResultResponseProtoMsg { typeUrl: "/cosmos.gov.v1.QueryTallyResultResponse"; @@ -421,11 +420,12 @@ export interface QueryTallyResultResponseAminoMsg { } /** QueryTallyResultResponse is the response type for the Query/Tally RPC method. */ export interface QueryTallyResultResponseSDKType { - tally: TallyResultSDKType; + tally?: TallyResultSDKType; } export declare const QueryProposalRequest: { - encode(message: QueryProposalRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalRequest; + typeUrl: string; + encode(message: QueryProposalRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalRequest; fromJSON(object: any): QueryProposalRequest; toJSON(message: QueryProposalRequest): unknown; fromPartial(object: Partial): QueryProposalRequest; @@ -438,8 +438,9 @@ export declare const QueryProposalRequest: { toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg; }; export declare const QueryProposalResponse: { - encode(message: QueryProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalResponse; + typeUrl: string; + encode(message: QueryProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalResponse; fromJSON(object: any): QueryProposalResponse; toJSON(message: QueryProposalResponse): unknown; fromPartial(object: Partial): QueryProposalResponse; @@ -452,8 +453,9 @@ export declare const QueryProposalResponse: { toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg; }; export declare const QueryProposalsRequest: { - encode(message: QueryProposalsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalsRequest; + typeUrl: string; + encode(message: QueryProposalsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsRequest; fromJSON(object: any): QueryProposalsRequest; toJSON(message: QueryProposalsRequest): unknown; fromPartial(object: Partial): QueryProposalsRequest; @@ -466,8 +468,9 @@ export declare const QueryProposalsRequest: { toProtoMsg(message: QueryProposalsRequest): QueryProposalsRequestProtoMsg; }; export declare const QueryProposalsResponse: { - encode(message: QueryProposalsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalsResponse; + typeUrl: string; + encode(message: QueryProposalsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsResponse; fromJSON(object: any): QueryProposalsResponse; toJSON(message: QueryProposalsResponse): unknown; fromPartial(object: Partial): QueryProposalsResponse; @@ -480,8 +483,9 @@ export declare const QueryProposalsResponse: { toProtoMsg(message: QueryProposalsResponse): QueryProposalsResponseProtoMsg; }; export declare const QueryVoteRequest: { - encode(message: QueryVoteRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVoteRequest; + typeUrl: string; + encode(message: QueryVoteRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteRequest; fromJSON(object: any): QueryVoteRequest; toJSON(message: QueryVoteRequest): unknown; fromPartial(object: Partial): QueryVoteRequest; @@ -494,8 +498,9 @@ export declare const QueryVoteRequest: { toProtoMsg(message: QueryVoteRequest): QueryVoteRequestProtoMsg; }; export declare const QueryVoteResponse: { - encode(message: QueryVoteResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVoteResponse; + typeUrl: string; + encode(message: QueryVoteResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteResponse; fromJSON(object: any): QueryVoteResponse; toJSON(message: QueryVoteResponse): unknown; fromPartial(object: Partial): QueryVoteResponse; @@ -508,8 +513,9 @@ export declare const QueryVoteResponse: { toProtoMsg(message: QueryVoteResponse): QueryVoteResponseProtoMsg; }; export declare const QueryVotesRequest: { - encode(message: QueryVotesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesRequest; + typeUrl: string; + encode(message: QueryVotesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesRequest; fromJSON(object: any): QueryVotesRequest; toJSON(message: QueryVotesRequest): unknown; fromPartial(object: Partial): QueryVotesRequest; @@ -522,8 +528,9 @@ export declare const QueryVotesRequest: { toProtoMsg(message: QueryVotesRequest): QueryVotesRequestProtoMsg; }; export declare const QueryVotesResponse: { - encode(message: QueryVotesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesResponse; + typeUrl: string; + encode(message: QueryVotesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesResponse; fromJSON(object: any): QueryVotesResponse; toJSON(message: QueryVotesResponse): unknown; fromPartial(object: Partial): QueryVotesResponse; @@ -536,8 +543,9 @@ export declare const QueryVotesResponse: { toProtoMsg(message: QueryVotesResponse): QueryVotesResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(message: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(message: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(object: any): QueryParamsRequest; toJSON(message: QueryParamsRequest): unknown; fromPartial(object: Partial): QueryParamsRequest; @@ -550,8 +558,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -564,8 +573,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryDepositRequest: { - encode(message: QueryDepositRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositRequest; + typeUrl: string; + encode(message: QueryDepositRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositRequest; fromJSON(object: any): QueryDepositRequest; toJSON(message: QueryDepositRequest): unknown; fromPartial(object: Partial): QueryDepositRequest; @@ -578,8 +588,9 @@ export declare const QueryDepositRequest: { toProtoMsg(message: QueryDepositRequest): QueryDepositRequestProtoMsg; }; export declare const QueryDepositResponse: { - encode(message: QueryDepositResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositResponse; + typeUrl: string; + encode(message: QueryDepositResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositResponse; fromJSON(object: any): QueryDepositResponse; toJSON(message: QueryDepositResponse): unknown; fromPartial(object: Partial): QueryDepositResponse; @@ -592,8 +603,9 @@ export declare const QueryDepositResponse: { toProtoMsg(message: QueryDepositResponse): QueryDepositResponseProtoMsg; }; export declare const QueryDepositsRequest: { - encode(message: QueryDepositsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositsRequest; + typeUrl: string; + encode(message: QueryDepositsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositsRequest; fromJSON(object: any): QueryDepositsRequest; toJSON(message: QueryDepositsRequest): unknown; fromPartial(object: Partial): QueryDepositsRequest; @@ -606,8 +618,9 @@ export declare const QueryDepositsRequest: { toProtoMsg(message: QueryDepositsRequest): QueryDepositsRequestProtoMsg; }; export declare const QueryDepositsResponse: { - encode(message: QueryDepositsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositsResponse; + typeUrl: string; + encode(message: QueryDepositsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositsResponse; fromJSON(object: any): QueryDepositsResponse; toJSON(message: QueryDepositsResponse): unknown; fromPartial(object: Partial): QueryDepositsResponse; @@ -620,8 +633,9 @@ export declare const QueryDepositsResponse: { toProtoMsg(message: QueryDepositsResponse): QueryDepositsResponseProtoMsg; }; export declare const QueryTallyResultRequest: { - encode(message: QueryTallyResultRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTallyResultRequest; + typeUrl: string; + encode(message: QueryTallyResultRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultRequest; fromJSON(object: any): QueryTallyResultRequest; toJSON(message: QueryTallyResultRequest): unknown; fromPartial(object: Partial): QueryTallyResultRequest; @@ -634,8 +648,9 @@ export declare const QueryTallyResultRequest: { toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg; }; export declare const QueryTallyResultResponse: { - encode(message: QueryTallyResultResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTallyResultResponse; + typeUrl: string; + encode(message: QueryTallyResultResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultResponse; fromJSON(object: any): QueryTallyResultResponse; toJSON(message: QueryTallyResultResponse): unknown; fromPartial(object: Partial): QueryTallyResultResponse; diff --git a/packages/api/types/codegen/cosmos/gov/v1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/gov/v1/query.lcd.d.ts index 9ce44b6..e7e2834 100644 --- a/packages/api/types/codegen/cosmos/gov/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryProposalRequest, QueryProposalResponseSDKType, QueryProposalsRequest, QueryProposalsResponseSDKType, QueryVoteRequest, QueryVoteResponseSDKType, QueryVotesRequest, QueryVotesResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType, QueryDepositRequest, QueryDepositResponseSDKType, QueryDepositsRequest, QueryDepositsResponseSDKType, QueryTallyResultRequest, QueryTallyResultResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/gov/v1/tx.d.ts b/packages/api/types/codegen/cosmos/gov/v1/tx.d.ts index 6d4d0e3..5567847 100644 --- a/packages/api/types/codegen/cosmos/gov/v1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1/tx.d.ts @@ -2,8 +2,7 @@ import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { VoteOption, WeightedVoteOption, WeightedVoteOptionAmino, WeightedVoteOptionSDKType } from "./gov"; import { TextProposal, TextProposalProtoMsg, TextProposalSDKType } from "../v1beta1/gov"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary * proposal Content. @@ -24,11 +23,11 @@ export interface MsgSubmitProposalProtoMsg { * proposal Content. */ export interface MsgSubmitProposalAmino { - messages: AnyAmino[]; - initial_deposit: CoinAmino[]; - proposer: string; + messages?: AnyAmino[]; + initial_deposit?: CoinAmino[]; + proposer?: string; /** metadata is any arbitrary metadata attached to the proposal. */ - metadata: string; + metadata?: string; } export interface MsgSubmitProposalAminoMsg { type: "cosmos-sdk/v1/MsgSubmitProposal"; @@ -46,7 +45,7 @@ export interface MsgSubmitProposalSDKType { } /** MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. */ export interface MsgSubmitProposalResponse { - proposalId: Long; + proposalId: bigint; } export interface MsgSubmitProposalResponseProtoMsg { typeUrl: "/cosmos.gov.v1.MsgSubmitProposalResponse"; @@ -54,7 +53,7 @@ export interface MsgSubmitProposalResponseProtoMsg { } /** MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. */ export interface MsgSubmitProposalResponseAmino { - proposal_id: string; + proposal_id?: string; } export interface MsgSubmitProposalResponseAminoMsg { type: "cosmos-sdk/v1/MsgSubmitProposalResponse"; @@ -62,7 +61,7 @@ export interface MsgSubmitProposalResponseAminoMsg { } /** MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. */ export interface MsgSubmitProposalResponseSDKType { - proposal_id: Long; + proposal_id: bigint; } /** * MsgExecLegacyContent is used to wrap the legacy content field into a message. @@ -70,7 +69,7 @@ export interface MsgSubmitProposalResponseSDKType { */ export interface MsgExecLegacyContent { /** content is the proposal's content. */ - content: (TextProposal & Any) | undefined; + content?: (TextProposal & Any) | undefined; /** authority must be the gov module address. */ authority: string; } @@ -89,7 +88,7 @@ export interface MsgExecLegacyContentAmino { /** content is the proposal's content. */ content?: AnyAmino; /** authority must be the gov module address. */ - authority: string; + authority?: string; } export interface MsgExecLegacyContentAminoMsg { type: "cosmos-sdk/v1/MsgExecLegacyContent"; @@ -100,7 +99,7 @@ export interface MsgExecLegacyContentAminoMsg { * This ensures backwards compatibility with v1beta1.MsgSubmitProposal. */ export interface MsgExecLegacyContentSDKType { - content: TextProposalSDKType | AnySDKType | undefined; + content?: TextProposalSDKType | AnySDKType | undefined; authority: string; } /** MsgExecLegacyContentResponse defines the Msg/ExecLegacyContent response type. */ @@ -122,7 +121,7 @@ export interface MsgExecLegacyContentResponseSDKType { } /** MsgVote defines a message to cast a vote. */ export interface MsgVote { - proposalId: Long; + proposalId: bigint; voter: string; option: VoteOption; metadata: string; @@ -134,9 +133,9 @@ export interface MsgVoteProtoMsg { /** MsgVote defines a message to cast a vote. */ export interface MsgVoteAmino { proposal_id: string; - voter: string; - option: VoteOption; - metadata: string; + voter?: string; + option?: VoteOption; + metadata?: string; } export interface MsgVoteAminoMsg { type: "cosmos-sdk/v1/MsgVote"; @@ -144,7 +143,7 @@ export interface MsgVoteAminoMsg { } /** MsgVote defines a message to cast a vote. */ export interface MsgVoteSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; option: VoteOption; metadata: string; @@ -168,7 +167,7 @@ export interface MsgVoteResponseSDKType { } /** MsgVoteWeighted defines a message to cast a vote. */ export interface MsgVoteWeighted { - proposalId: Long; + proposalId: bigint; voter: string; options: WeightedVoteOption[]; metadata: string; @@ -180,9 +179,9 @@ export interface MsgVoteWeightedProtoMsg { /** MsgVoteWeighted defines a message to cast a vote. */ export interface MsgVoteWeightedAmino { proposal_id: string; - voter: string; - options: WeightedVoteOptionAmino[]; - metadata: string; + voter?: string; + options?: WeightedVoteOptionAmino[]; + metadata?: string; } export interface MsgVoteWeightedAminoMsg { type: "cosmos-sdk/v1/MsgVoteWeighted"; @@ -190,7 +189,7 @@ export interface MsgVoteWeightedAminoMsg { } /** MsgVoteWeighted defines a message to cast a vote. */ export interface MsgVoteWeightedSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; options: WeightedVoteOptionSDKType[]; metadata: string; @@ -214,7 +213,7 @@ export interface MsgVoteWeightedResponseSDKType { } /** MsgDeposit defines a message to submit a deposit to an existing proposal. */ export interface MsgDeposit { - proposalId: Long; + proposalId: bigint; depositor: string; amount: Coin[]; } @@ -225,8 +224,8 @@ export interface MsgDepositProtoMsg { /** MsgDeposit defines a message to submit a deposit to an existing proposal. */ export interface MsgDepositAmino { proposal_id: string; - depositor: string; - amount: CoinAmino[]; + depositor?: string; + amount?: CoinAmino[]; } export interface MsgDepositAminoMsg { type: "cosmos-sdk/v1/MsgDeposit"; @@ -234,7 +233,7 @@ export interface MsgDepositAminoMsg { } /** MsgDeposit defines a message to submit a deposit to an existing proposal. */ export interface MsgDepositSDKType { - proposal_id: Long; + proposal_id: bigint; depositor: string; amount: CoinSDKType[]; } @@ -256,8 +255,9 @@ export interface MsgDepositResponseAminoMsg { export interface MsgDepositResponseSDKType { } export declare const MsgSubmitProposal: { - encode(message: MsgSubmitProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitProposal; + typeUrl: string; + encode(message: MsgSubmitProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposal; fromJSON(object: any): MsgSubmitProposal; toJSON(message: MsgSubmitProposal): unknown; fromPartial(object: Partial): MsgSubmitProposal; @@ -270,8 +270,9 @@ export declare const MsgSubmitProposal: { toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg; }; export declare const MsgSubmitProposalResponse: { - encode(message: MsgSubmitProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitProposalResponse; + typeUrl: string; + encode(message: MsgSubmitProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposalResponse; fromJSON(object: any): MsgSubmitProposalResponse; toJSON(message: MsgSubmitProposalResponse): unknown; fromPartial(object: Partial): MsgSubmitProposalResponse; @@ -284,8 +285,9 @@ export declare const MsgSubmitProposalResponse: { toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg; }; export declare const MsgExecLegacyContent: { - encode(message: MsgExecLegacyContent, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgExecLegacyContent; + typeUrl: string; + encode(message: MsgExecLegacyContent, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgExecLegacyContent; fromJSON(object: any): MsgExecLegacyContent; toJSON(message: MsgExecLegacyContent): unknown; fromPartial(object: Partial): MsgExecLegacyContent; @@ -298,8 +300,9 @@ export declare const MsgExecLegacyContent: { toProtoMsg(message: MsgExecLegacyContent): MsgExecLegacyContentProtoMsg; }; export declare const MsgExecLegacyContentResponse: { - encode(_: MsgExecLegacyContentResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgExecLegacyContentResponse; + typeUrl: string; + encode(_: MsgExecLegacyContentResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgExecLegacyContentResponse; fromJSON(_: any): MsgExecLegacyContentResponse; toJSON(_: MsgExecLegacyContentResponse): unknown; fromPartial(_: Partial): MsgExecLegacyContentResponse; @@ -312,8 +315,9 @@ export declare const MsgExecLegacyContentResponse: { toProtoMsg(message: MsgExecLegacyContentResponse): MsgExecLegacyContentResponseProtoMsg; }; export declare const MsgVote: { - encode(message: MsgVote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVote; + typeUrl: string; + encode(message: MsgVote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVote; fromJSON(object: any): MsgVote; toJSON(message: MsgVote): unknown; fromPartial(object: Partial): MsgVote; @@ -326,8 +330,9 @@ export declare const MsgVote: { toProtoMsg(message: MsgVote): MsgVoteProtoMsg; }; export declare const MsgVoteResponse: { - encode(_: MsgVoteResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteResponse; + typeUrl: string; + encode(_: MsgVoteResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteResponse; fromJSON(_: any): MsgVoteResponse; toJSON(_: MsgVoteResponse): unknown; fromPartial(_: Partial): MsgVoteResponse; @@ -340,8 +345,9 @@ export declare const MsgVoteResponse: { toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg; }; export declare const MsgVoteWeighted: { - encode(message: MsgVoteWeighted, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteWeighted; + typeUrl: string; + encode(message: MsgVoteWeighted, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteWeighted; fromJSON(object: any): MsgVoteWeighted; toJSON(message: MsgVoteWeighted): unknown; fromPartial(object: Partial): MsgVoteWeighted; @@ -354,8 +360,9 @@ export declare const MsgVoteWeighted: { toProtoMsg(message: MsgVoteWeighted): MsgVoteWeightedProtoMsg; }; export declare const MsgVoteWeightedResponse: { - encode(_: MsgVoteWeightedResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteWeightedResponse; + typeUrl: string; + encode(_: MsgVoteWeightedResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteWeightedResponse; fromJSON(_: any): MsgVoteWeightedResponse; toJSON(_: MsgVoteWeightedResponse): unknown; fromPartial(_: Partial): MsgVoteWeightedResponse; @@ -368,8 +375,9 @@ export declare const MsgVoteWeightedResponse: { toProtoMsg(message: MsgVoteWeightedResponse): MsgVoteWeightedResponseProtoMsg; }; export declare const MsgDeposit: { - encode(message: MsgDeposit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDeposit; + typeUrl: string; + encode(message: MsgDeposit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDeposit; fromJSON(object: any): MsgDeposit; toJSON(message: MsgDeposit): unknown; fromPartial(object: Partial): MsgDeposit; @@ -382,8 +390,9 @@ export declare const MsgDeposit: { toProtoMsg(message: MsgDeposit): MsgDepositProtoMsg; }; export declare const MsgDepositResponse: { - encode(_: MsgDepositResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDepositResponse; + typeUrl: string; + encode(_: MsgDepositResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDepositResponse; fromJSON(_: any): MsgDepositResponse; toJSON(_: MsgDepositResponse): unknown; fromPartial(_: Partial): MsgDepositResponse; @@ -395,6 +404,6 @@ export declare const MsgDepositResponse: { toProto(message: MsgDepositResponse): Uint8Array; toProtoMsg(message: MsgDepositResponse): MsgDepositResponseProtoMsg; }; -export declare const Content_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => TextProposal | Any; +export declare const Content_InterfaceDecoder: (input: BinaryReader | Uint8Array) => TextProposal | Any; export declare const Content_FromAmino: (content: AnyAmino) => Any; export declare const Content_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/gov/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/gov/v1beta1/genesis.d.ts index 40035c7..c27c9ac 100644 --- a/packages/api/types/codegen/cosmos/gov/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1beta1/genesis.d.ts @@ -1,10 +1,9 @@ import { Deposit, DepositAmino, DepositSDKType, Vote, VoteAmino, VoteSDKType, Proposal, ProposalAmino, ProposalSDKType, DepositParams, DepositParamsAmino, DepositParamsSDKType, VotingParams, VotingParamsAmino, VotingParamsSDKType, TallyParams, TallyParamsAmino, TallyParamsSDKType } from "./gov"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the gov module's genesis state. */ export interface GenesisState { /** starting_proposal_id is the ID of the starting proposal. */ - startingProposalId: Long; + startingProposalId: bigint; /** deposits defines all the deposits present at genesis. */ deposits: Deposit[]; /** votes defines all the votes present at genesis. */ @@ -25,13 +24,13 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the gov module's genesis state. */ export interface GenesisStateAmino { /** starting_proposal_id is the ID of the starting proposal. */ - starting_proposal_id: string; + starting_proposal_id?: string; /** deposits defines all the deposits present at genesis. */ - deposits: DepositAmino[]; + deposits?: DepositAmino[]; /** votes defines all the votes present at genesis. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ - proposals: ProposalAmino[]; + proposals?: ProposalAmino[]; /** params defines all the paramaters of related to deposit. */ deposit_params?: DepositParamsAmino; /** params defines all the paramaters of related to voting. */ @@ -45,7 +44,7 @@ export interface GenesisStateAminoMsg { } /** GenesisState defines the gov module's genesis state. */ export interface GenesisStateSDKType { - starting_proposal_id: Long; + starting_proposal_id: bigint; deposits: DepositSDKType[]; votes: VoteSDKType[]; proposals: ProposalSDKType[]; @@ -54,8 +53,9 @@ export interface GenesisStateSDKType { tally_params: TallyParamsSDKType; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/gov/v1beta1/gov.d.ts b/packages/api/types/codegen/cosmos/gov/v1beta1/gov.d.ts index c3f9342..68c5f30 100644 --- a/packages/api/types/codegen/cosmos/gov/v1beta1/gov.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1beta1/gov.d.ts @@ -1,9 +1,8 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** VoteOption enumerates the valid vote options for a given governance proposal. */ export declare enum VoteOption { /** VOTE_OPTION_UNSPECIFIED - VOTE_OPTION_UNSPECIFIED defines a no-op vote option. */ @@ -76,8 +75,8 @@ export interface WeightedVoteOptionProtoMsg { * Since: cosmos-sdk 0.43 */ export interface WeightedVoteOptionAmino { - option: VoteOption; - weight: string; + option?: VoteOption; + weight?: string; } export interface WeightedVoteOptionAminoMsg { type: "cosmos-sdk/WeightedVoteOption"; @@ -97,7 +96,7 @@ export interface WeightedVoteOptionSDKType { * manually updated in case of approval. */ export interface TextProposal { - $typeUrl?: string; + $typeUrl?: "/cosmos.gov.v1beta1.TextProposal"; title: string; description: string; } @@ -110,8 +109,8 @@ export interface TextProposalProtoMsg { * manually updated in case of approval. */ export interface TextProposalAmino { - title: string; - description: string; + title?: string; + description?: string; } export interface TextProposalAminoMsg { type: "cosmos-sdk/TextProposal"; @@ -122,7 +121,7 @@ export interface TextProposalAminoMsg { * manually updated in case of approval. */ export interface TextProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.gov.v1beta1.TextProposal"; title: string; description: string; } @@ -131,7 +130,7 @@ export interface TextProposalSDKType { * proposal. */ export interface Deposit { - proposalId: Long; + proposalId: bigint; depositor: string; amount: Coin[]; } @@ -144,9 +143,9 @@ export interface DepositProtoMsg { * proposal. */ export interface DepositAmino { - proposal_id: string; - depositor: string; - amount: CoinAmino[]; + proposal_id?: string; + depositor?: string; + amount?: CoinAmino[]; } export interface DepositAminoMsg { type: "cosmos-sdk/Deposit"; @@ -157,14 +156,14 @@ export interface DepositAminoMsg { * proposal. */ export interface DepositSDKType { - proposal_id: Long; + proposal_id: bigint; depositor: string; amount: CoinSDKType[]; } /** Proposal defines the core field members of a governance proposal. */ export interface Proposal { - proposalId: Long; - content: (TextProposal & Any) | undefined; + proposalId: bigint; + content?: (TextProposal & Any) | undefined; status: ProposalStatus; /** * final_tally_result is the final tally result of the proposal. When @@ -187,20 +186,20 @@ export type ProposalEncoded = Omit & { }; /** Proposal defines the core field members of a governance proposal. */ export interface ProposalAmino { - proposal_id: string; + proposal_id?: string; content?: AnyAmino; - status: ProposalStatus; + status?: ProposalStatus; /** * final_tally_result is the final tally result of the proposal. When * querying a proposal via gRPC, this field is not populated until the * proposal's voting period has ended. */ final_tally_result?: TallyResultAmino; - submit_time?: TimestampAmino; - deposit_end_time?: TimestampAmino; - total_deposit: CoinAmino[]; - voting_start_time?: TimestampAmino; - voting_end_time?: TimestampAmino; + submit_time?: string; + deposit_end_time?: string; + total_deposit?: CoinAmino[]; + voting_start_time?: string; + voting_end_time?: string; } export interface ProposalAminoMsg { type: "cosmos-sdk/Proposal"; @@ -208,8 +207,8 @@ export interface ProposalAminoMsg { } /** Proposal defines the core field members of a governance proposal. */ export interface ProposalSDKType { - proposal_id: Long; - content: TextProposalSDKType | AnySDKType | undefined; + proposal_id: bigint; + content?: TextProposalSDKType | AnySDKType | undefined; status: ProposalStatus; final_tally_result: TallyResultSDKType; submit_time: TimestampSDKType; @@ -231,10 +230,10 @@ export interface TallyResultProtoMsg { } /** TallyResult defines a standard tally for a governance proposal. */ export interface TallyResultAmino { - yes: string; - abstain: string; - no: string; - no_with_veto: string; + yes?: string; + abstain?: string; + no?: string; + no_with_veto?: string; } export interface TallyResultAminoMsg { type: "cosmos-sdk/TallyResult"; @@ -252,7 +251,7 @@ export interface TallyResultSDKType { * A Vote consists of a proposal ID, the voter, and the vote option. */ export interface Vote { - proposalId: Long; + proposalId: bigint; voter: string; /** * Deprecated: Prefer to use `options` instead. This field is set in queries @@ -274,16 +273,16 @@ export interface VoteProtoMsg { */ export interface VoteAmino { proposal_id: string; - voter: string; + voter?: string; /** * Deprecated: Prefer to use `options` instead. This field is set in queries * if and only if `len(options) == 1` and that option has weight 1. In all * other cases, this field will default to VOTE_OPTION_UNSPECIFIED. */ /** @deprecated */ - option: VoteOption; + option?: VoteOption; /** Since: cosmos-sdk 0.43 */ - options: WeightedVoteOptionAmino[]; + options?: WeightedVoteOptionAmino[]; } export interface VoteAminoMsg { type: "cosmos-sdk/Vote"; @@ -294,7 +293,7 @@ export interface VoteAminoMsg { * A Vote consists of a proposal ID, the voter, and the vote option. */ export interface VoteSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; /** @deprecated */ option: VoteOption; @@ -317,7 +316,7 @@ export interface DepositParamsProtoMsg { /** DepositParams defines the params for deposits on governance proposals. */ export interface DepositParamsAmino { /** Minimum deposit for a proposal to enter voting period. */ - min_deposit: CoinAmino[]; + min_deposit?: CoinAmino[]; /** * Maximum period for Atom holders to deposit on a proposal. Initial value: 2 * months. @@ -380,14 +379,14 @@ export interface TallyParamsAmino { * Minimum percentage of total stake needed to vote for a result to be * considered valid. */ - quorum: Uint8Array; + quorum?: string; /** Minimum proportion of Yes votes for proposal to pass. Default value: 0.5. */ - threshold: Uint8Array; + threshold?: string; /** * Minimum value of Veto votes to Total votes ratio for proposal to be * vetoed. Default value: 1/3. */ - veto_threshold: Uint8Array; + veto_threshold?: string; } export interface TallyParamsAminoMsg { type: "cosmos-sdk/TallyParams"; @@ -400,8 +399,9 @@ export interface TallyParamsSDKType { veto_threshold: Uint8Array; } export declare const WeightedVoteOption: { - encode(message: WeightedVoteOption, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): WeightedVoteOption; + typeUrl: string; + encode(message: WeightedVoteOption, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): WeightedVoteOption; fromJSON(object: any): WeightedVoteOption; toJSON(message: WeightedVoteOption): unknown; fromPartial(object: Partial): WeightedVoteOption; @@ -414,8 +414,9 @@ export declare const WeightedVoteOption: { toProtoMsg(message: WeightedVoteOption): WeightedVoteOptionProtoMsg; }; export declare const TextProposal: { - encode(message: TextProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TextProposal; + typeUrl: string; + encode(message: TextProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TextProposal; fromJSON(object: any): TextProposal; toJSON(message: TextProposal): unknown; fromPartial(object: Partial): TextProposal; @@ -428,8 +429,9 @@ export declare const TextProposal: { toProtoMsg(message: TextProposal): TextProposalProtoMsg; }; export declare const Deposit: { - encode(message: Deposit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Deposit; + typeUrl: string; + encode(message: Deposit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Deposit; fromJSON(object: any): Deposit; toJSON(message: Deposit): unknown; fromPartial(object: Partial): Deposit; @@ -442,8 +444,9 @@ export declare const Deposit: { toProtoMsg(message: Deposit): DepositProtoMsg; }; export declare const Proposal: { - encode(message: Proposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Proposal; + typeUrl: string; + encode(message: Proposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Proposal; fromJSON(object: any): Proposal; toJSON(message: Proposal): unknown; fromPartial(object: Partial): Proposal; @@ -456,8 +459,9 @@ export declare const Proposal: { toProtoMsg(message: Proposal): ProposalProtoMsg; }; export declare const TallyResult: { - encode(message: TallyResult, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TallyResult; + typeUrl: string; + encode(message: TallyResult, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TallyResult; fromJSON(object: any): TallyResult; toJSON(message: TallyResult): unknown; fromPartial(object: Partial): TallyResult; @@ -470,8 +474,9 @@ export declare const TallyResult: { toProtoMsg(message: TallyResult): TallyResultProtoMsg; }; export declare const Vote: { - encode(message: Vote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Vote; + typeUrl: string; + encode(message: Vote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Vote; fromJSON(object: any): Vote; toJSON(message: Vote): unknown; fromPartial(object: Partial): Vote; @@ -484,8 +489,9 @@ export declare const Vote: { toProtoMsg(message: Vote): VoteProtoMsg; }; export declare const DepositParams: { - encode(message: DepositParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DepositParams; + typeUrl: string; + encode(message: DepositParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DepositParams; fromJSON(object: any): DepositParams; toJSON(message: DepositParams): unknown; fromPartial(object: Partial): DepositParams; @@ -498,8 +504,9 @@ export declare const DepositParams: { toProtoMsg(message: DepositParams): DepositParamsProtoMsg; }; export declare const VotingParams: { - encode(message: VotingParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): VotingParams; + typeUrl: string; + encode(message: VotingParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): VotingParams; fromJSON(object: any): VotingParams; toJSON(message: VotingParams): unknown; fromPartial(object: Partial): VotingParams; @@ -512,8 +519,9 @@ export declare const VotingParams: { toProtoMsg(message: VotingParams): VotingParamsProtoMsg; }; export declare const TallyParams: { - encode(message: TallyParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TallyParams; + typeUrl: string; + encode(message: TallyParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TallyParams; fromJSON(object: any): TallyParams; toJSON(message: TallyParams): unknown; fromPartial(object: Partial): TallyParams; @@ -525,6 +533,6 @@ export declare const TallyParams: { toProto(message: TallyParams): Uint8Array; toProtoMsg(message: TallyParams): TallyParamsProtoMsg; }; -export declare const Content_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => TextProposal | Any; +export declare const Content_InterfaceDecoder: (input: BinaryReader | Uint8Array) => TextProposal | Any; export declare const Content_FromAmino: (content: AnyAmino) => Any; export declare const Content_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/gov/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/gov/v1beta1/query.d.ts index 6bc1b94..28336b5 100644 --- a/packages/api/types/codegen/cosmos/gov/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1beta1/query.d.ts @@ -1,11 +1,10 @@ import { ProposalStatus, Proposal, ProposalAmino, ProposalSDKType, Vote, VoteAmino, VoteSDKType, VotingParams, VotingParamsAmino, VotingParamsSDKType, DepositParams, DepositParamsAmino, DepositParamsSDKType, TallyParams, TallyParamsAmino, TallyParamsSDKType, Deposit, DepositAmino, DepositSDKType, TallyResult, TallyResultAmino, TallyResultSDKType } from "./gov"; import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface QueryProposalRequestProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryProposalRequest"; @@ -14,7 +13,7 @@ export interface QueryProposalRequestProtoMsg { /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface QueryProposalRequestAminoMsg { type: "cosmos-sdk/QueryProposalRequest"; @@ -22,7 +21,7 @@ export interface QueryProposalRequestAminoMsg { } /** QueryProposalRequest is the request type for the Query/Proposal RPC method. */ export interface QueryProposalRequestSDKType { - proposal_id: Long; + proposal_id: bigint; } /** QueryProposalResponse is the response type for the Query/Proposal RPC method. */ export interface QueryProposalResponse { @@ -53,7 +52,7 @@ export interface QueryProposalsRequest { /** depositor defines the deposit addresses from the proposals. */ depositor: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProposalsRequestProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryProposalsRequest"; @@ -62,11 +61,11 @@ export interface QueryProposalsRequestProtoMsg { /** QueryProposalsRequest is the request type for the Query/Proposals RPC method. */ export interface QueryProposalsRequestAmino { /** proposal_status defines the status of the proposals. */ - proposal_status: ProposalStatus; + proposal_status?: ProposalStatus; /** voter defines the voter address for the proposals. */ - voter: string; + voter?: string; /** depositor defines the deposit addresses from the proposals. */ - depositor: string; + depositor?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -79,7 +78,7 @@ export interface QueryProposalsRequestSDKType { proposal_status: ProposalStatus; voter: string; depositor: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryProposalsResponse is the response type for the Query/Proposals RPC @@ -88,7 +87,7 @@ export interface QueryProposalsRequestSDKType { export interface QueryProposalsResponse { proposals: Proposal[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProposalsResponseProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryProposalsResponse"; @@ -99,7 +98,7 @@ export interface QueryProposalsResponseProtoMsg { * method. */ export interface QueryProposalsResponseAmino { - proposals: ProposalAmino[]; + proposals?: ProposalAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -113,12 +112,12 @@ export interface QueryProposalsResponseAminoMsg { */ export interface QueryProposalsResponseSDKType { proposals: ProposalSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** voter defines the voter address for the proposals. */ voter: string; } @@ -129,9 +128,9 @@ export interface QueryVoteRequestProtoMsg { /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** voter defines the voter address for the proposals. */ - voter: string; + voter?: string; } export interface QueryVoteRequestAminoMsg { type: "cosmos-sdk/QueryVoteRequest"; @@ -139,7 +138,7 @@ export interface QueryVoteRequestAminoMsg { } /** QueryVoteRequest is the request type for the Query/Vote RPC method. */ export interface QueryVoteRequestSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; } /** QueryVoteResponse is the response type for the Query/Vote RPC method. */ @@ -167,9 +166,9 @@ export interface QueryVoteResponseSDKType { /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryVotesRequestProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryVotesRequest"; @@ -178,7 +177,7 @@ export interface QueryVotesRequestProtoMsg { /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -188,15 +187,15 @@ export interface QueryVotesRequestAminoMsg { } /** QueryVotesRequest is the request type for the Query/Votes RPC method. */ export interface QueryVotesRequestSDKType { - proposal_id: Long; - pagination: PageRequestSDKType; + proposal_id: bigint; + pagination?: PageRequestSDKType; } /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponse { /** votes defined the queried votes. */ votes: Vote[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryVotesResponseProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryVotesResponse"; @@ -205,7 +204,7 @@ export interface QueryVotesResponseProtoMsg { /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponseAmino { /** votes defined the queried votes. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -216,7 +215,7 @@ export interface QueryVotesResponseAminoMsg { /** QueryVotesResponse is the response type for the Query/Votes RPC method. */ export interface QueryVotesResponseSDKType { votes: VoteSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { @@ -236,7 +235,7 @@ export interface QueryParamsRequestAmino { * params_type defines which parameters to query for, can be one of "voting", * "tallying" or "deposit". */ - params_type: string; + params_type?: string; } export interface QueryParamsRequestAminoMsg { type: "cosmos-sdk/QueryParamsRequest"; @@ -281,7 +280,7 @@ export interface QueryParamsResponseSDKType { /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** depositor defines the deposit addresses from the proposals. */ depositor: string; } @@ -292,9 +291,9 @@ export interface QueryDepositRequestProtoMsg { /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** depositor defines the deposit addresses from the proposals. */ - depositor: string; + depositor?: string; } export interface QueryDepositRequestAminoMsg { type: "cosmos-sdk/QueryDepositRequest"; @@ -302,7 +301,7 @@ export interface QueryDepositRequestAminoMsg { } /** QueryDepositRequest is the request type for the Query/Deposit RPC method. */ export interface QueryDepositRequestSDKType { - proposal_id: Long; + proposal_id: bigint; depositor: string; } /** QueryDepositResponse is the response type for the Query/Deposit RPC method. */ @@ -330,9 +329,9 @@ export interface QueryDepositResponseSDKType { /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDepositsRequestProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryDepositsRequest"; @@ -341,7 +340,7 @@ export interface QueryDepositsRequestProtoMsg { /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -351,14 +350,14 @@ export interface QueryDepositsRequestAminoMsg { } /** QueryDepositsRequest is the request type for the Query/Deposits RPC method. */ export interface QueryDepositsRequestSDKType { - proposal_id: Long; - pagination: PageRequestSDKType; + proposal_id: bigint; + pagination?: PageRequestSDKType; } /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponse { deposits: Deposit[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDepositsResponseProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryDepositsResponse"; @@ -366,7 +365,7 @@ export interface QueryDepositsResponseProtoMsg { } /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponseAmino { - deposits: DepositAmino[]; + deposits?: DepositAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -377,12 +376,12 @@ export interface QueryDepositsResponseAminoMsg { /** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */ export interface QueryDepositsResponseSDKType { deposits: DepositSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequest { /** proposal_id defines the unique id of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface QueryTallyResultRequestProtoMsg { typeUrl: "/cosmos.gov.v1beta1.QueryTallyResultRequest"; @@ -391,7 +390,7 @@ export interface QueryTallyResultRequestProtoMsg { /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequestAmino { /** proposal_id defines the unique id of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface QueryTallyResultRequestAminoMsg { type: "cosmos-sdk/QueryTallyResultRequest"; @@ -399,7 +398,7 @@ export interface QueryTallyResultRequestAminoMsg { } /** QueryTallyResultRequest is the request type for the Query/Tally RPC method. */ export interface QueryTallyResultRequestSDKType { - proposal_id: Long; + proposal_id: bigint; } /** QueryTallyResultResponse is the response type for the Query/Tally RPC method. */ export interface QueryTallyResultResponse { @@ -424,8 +423,9 @@ export interface QueryTallyResultResponseSDKType { tally: TallyResultSDKType; } export declare const QueryProposalRequest: { - encode(message: QueryProposalRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalRequest; + typeUrl: string; + encode(message: QueryProposalRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalRequest; fromJSON(object: any): QueryProposalRequest; toJSON(message: QueryProposalRequest): unknown; fromPartial(object: Partial): QueryProposalRequest; @@ -438,8 +438,9 @@ export declare const QueryProposalRequest: { toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg; }; export declare const QueryProposalResponse: { - encode(message: QueryProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalResponse; + typeUrl: string; + encode(message: QueryProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalResponse; fromJSON(object: any): QueryProposalResponse; toJSON(message: QueryProposalResponse): unknown; fromPartial(object: Partial): QueryProposalResponse; @@ -452,8 +453,9 @@ export declare const QueryProposalResponse: { toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg; }; export declare const QueryProposalsRequest: { - encode(message: QueryProposalsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalsRequest; + typeUrl: string; + encode(message: QueryProposalsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsRequest; fromJSON(object: any): QueryProposalsRequest; toJSON(message: QueryProposalsRequest): unknown; fromPartial(object: Partial): QueryProposalsRequest; @@ -466,8 +468,9 @@ export declare const QueryProposalsRequest: { toProtoMsg(message: QueryProposalsRequest): QueryProposalsRequestProtoMsg; }; export declare const QueryProposalsResponse: { - encode(message: QueryProposalsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalsResponse; + typeUrl: string; + encode(message: QueryProposalsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsResponse; fromJSON(object: any): QueryProposalsResponse; toJSON(message: QueryProposalsResponse): unknown; fromPartial(object: Partial): QueryProposalsResponse; @@ -480,8 +483,9 @@ export declare const QueryProposalsResponse: { toProtoMsg(message: QueryProposalsResponse): QueryProposalsResponseProtoMsg; }; export declare const QueryVoteRequest: { - encode(message: QueryVoteRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVoteRequest; + typeUrl: string; + encode(message: QueryVoteRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteRequest; fromJSON(object: any): QueryVoteRequest; toJSON(message: QueryVoteRequest): unknown; fromPartial(object: Partial): QueryVoteRequest; @@ -494,8 +498,9 @@ export declare const QueryVoteRequest: { toProtoMsg(message: QueryVoteRequest): QueryVoteRequestProtoMsg; }; export declare const QueryVoteResponse: { - encode(message: QueryVoteResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVoteResponse; + typeUrl: string; + encode(message: QueryVoteResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteResponse; fromJSON(object: any): QueryVoteResponse; toJSON(message: QueryVoteResponse): unknown; fromPartial(object: Partial): QueryVoteResponse; @@ -508,8 +513,9 @@ export declare const QueryVoteResponse: { toProtoMsg(message: QueryVoteResponse): QueryVoteResponseProtoMsg; }; export declare const QueryVotesRequest: { - encode(message: QueryVotesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesRequest; + typeUrl: string; + encode(message: QueryVotesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesRequest; fromJSON(object: any): QueryVotesRequest; toJSON(message: QueryVotesRequest): unknown; fromPartial(object: Partial): QueryVotesRequest; @@ -522,8 +528,9 @@ export declare const QueryVotesRequest: { toProtoMsg(message: QueryVotesRequest): QueryVotesRequestProtoMsg; }; export declare const QueryVotesResponse: { - encode(message: QueryVotesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesResponse; + typeUrl: string; + encode(message: QueryVotesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesResponse; fromJSON(object: any): QueryVotesResponse; toJSON(message: QueryVotesResponse): unknown; fromPartial(object: Partial): QueryVotesResponse; @@ -536,8 +543,9 @@ export declare const QueryVotesResponse: { toProtoMsg(message: QueryVotesResponse): QueryVotesResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(message: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(message: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(object: any): QueryParamsRequest; toJSON(message: QueryParamsRequest): unknown; fromPartial(object: Partial): QueryParamsRequest; @@ -550,8 +558,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -564,8 +573,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryDepositRequest: { - encode(message: QueryDepositRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositRequest; + typeUrl: string; + encode(message: QueryDepositRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositRequest; fromJSON(object: any): QueryDepositRequest; toJSON(message: QueryDepositRequest): unknown; fromPartial(object: Partial): QueryDepositRequest; @@ -578,8 +588,9 @@ export declare const QueryDepositRequest: { toProtoMsg(message: QueryDepositRequest): QueryDepositRequestProtoMsg; }; export declare const QueryDepositResponse: { - encode(message: QueryDepositResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositResponse; + typeUrl: string; + encode(message: QueryDepositResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositResponse; fromJSON(object: any): QueryDepositResponse; toJSON(message: QueryDepositResponse): unknown; fromPartial(object: Partial): QueryDepositResponse; @@ -592,8 +603,9 @@ export declare const QueryDepositResponse: { toProtoMsg(message: QueryDepositResponse): QueryDepositResponseProtoMsg; }; export declare const QueryDepositsRequest: { - encode(message: QueryDepositsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositsRequest; + typeUrl: string; + encode(message: QueryDepositsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositsRequest; fromJSON(object: any): QueryDepositsRequest; toJSON(message: QueryDepositsRequest): unknown; fromPartial(object: Partial): QueryDepositsRequest; @@ -606,8 +618,9 @@ export declare const QueryDepositsRequest: { toProtoMsg(message: QueryDepositsRequest): QueryDepositsRequestProtoMsg; }; export declare const QueryDepositsResponse: { - encode(message: QueryDepositsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDepositsResponse; + typeUrl: string; + encode(message: QueryDepositsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDepositsResponse; fromJSON(object: any): QueryDepositsResponse; toJSON(message: QueryDepositsResponse): unknown; fromPartial(object: Partial): QueryDepositsResponse; @@ -620,8 +633,9 @@ export declare const QueryDepositsResponse: { toProtoMsg(message: QueryDepositsResponse): QueryDepositsResponseProtoMsg; }; export declare const QueryTallyResultRequest: { - encode(message: QueryTallyResultRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTallyResultRequest; + typeUrl: string; + encode(message: QueryTallyResultRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultRequest; fromJSON(object: any): QueryTallyResultRequest; toJSON(message: QueryTallyResultRequest): unknown; fromPartial(object: Partial): QueryTallyResultRequest; @@ -634,8 +648,9 @@ export declare const QueryTallyResultRequest: { toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg; }; export declare const QueryTallyResultResponse: { - encode(message: QueryTallyResultResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTallyResultResponse; + typeUrl: string; + encode(message: QueryTallyResultResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultResponse; fromJSON(object: any): QueryTallyResultResponse; toJSON(message: QueryTallyResultResponse): unknown; fromPartial(object: Partial): QueryTallyResultResponse; diff --git a/packages/api/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts index 9ce44b6..e7e2834 100644 --- a/packages/api/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryProposalRequest, QueryProposalResponseSDKType, QueryProposalsRequest, QueryProposalsResponseSDKType, QueryVoteRequest, QueryVoteResponseSDKType, QueryVotesRequest, QueryVotesResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType, QueryDepositRequest, QueryDepositResponseSDKType, QueryDepositsRequest, QueryDepositsResponseSDKType, QueryTallyResultRequest, QueryTallyResultResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/gov/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/gov/v1beta1/tx.d.ts index 47041f4..b590591 100644 --- a/packages/api/types/codegen/cosmos/gov/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/gov/v1beta1/tx.d.ts @@ -1,14 +1,13 @@ import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { VoteOption, WeightedVoteOption, WeightedVoteOptionAmino, WeightedVoteOptionSDKType, TextProposal, TextProposalProtoMsg, TextProposalSDKType } from "./gov"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary * proposal Content. */ export interface MsgSubmitProposal { - content: (TextProposal & Any) | undefined; + content?: (TextProposal & Any) | undefined; initialDeposit: Coin[]; proposer: string; } @@ -25,8 +24,8 @@ export type MsgSubmitProposalEncoded = Omit & { */ export interface MsgSubmitProposalAmino { content?: AnyAmino; - initial_deposit: CoinAmino[]; - proposer: string; + initial_deposit?: CoinAmino[]; + proposer?: string; } export interface MsgSubmitProposalAminoMsg { type: "cosmos-sdk/MsgSubmitProposal"; @@ -37,13 +36,13 @@ export interface MsgSubmitProposalAminoMsg { * proposal Content. */ export interface MsgSubmitProposalSDKType { - content: TextProposalSDKType | AnySDKType | undefined; + content?: TextProposalSDKType | AnySDKType | undefined; initial_deposit: CoinSDKType[]; proposer: string; } /** MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. */ export interface MsgSubmitProposalResponse { - proposalId: Long; + proposalId: bigint; } export interface MsgSubmitProposalResponseProtoMsg { typeUrl: "/cosmos.gov.v1beta1.MsgSubmitProposalResponse"; @@ -59,11 +58,11 @@ export interface MsgSubmitProposalResponseAminoMsg { } /** MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. */ export interface MsgSubmitProposalResponseSDKType { - proposal_id: Long; + proposal_id: bigint; } /** MsgVote defines a message to cast a vote. */ export interface MsgVote { - proposalId: Long; + proposalId: bigint; voter: string; option: VoteOption; } @@ -73,9 +72,9 @@ export interface MsgVoteProtoMsg { } /** MsgVote defines a message to cast a vote. */ export interface MsgVoteAmino { - proposal_id: string; - voter: string; - option: VoteOption; + proposal_id?: string; + voter?: string; + option?: VoteOption; } export interface MsgVoteAminoMsg { type: "cosmos-sdk/MsgVote"; @@ -83,7 +82,7 @@ export interface MsgVoteAminoMsg { } /** MsgVote defines a message to cast a vote. */ export interface MsgVoteSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; option: VoteOption; } @@ -110,7 +109,7 @@ export interface MsgVoteResponseSDKType { * Since: cosmos-sdk 0.43 */ export interface MsgVoteWeighted { - proposalId: Long; + proposalId: bigint; voter: string; options: WeightedVoteOption[]; } @@ -125,8 +124,8 @@ export interface MsgVoteWeightedProtoMsg { */ export interface MsgVoteWeightedAmino { proposal_id: string; - voter: string; - options: WeightedVoteOptionAmino[]; + voter?: string; + options?: WeightedVoteOptionAmino[]; } export interface MsgVoteWeightedAminoMsg { type: "cosmos-sdk/MsgVoteWeighted"; @@ -138,7 +137,7 @@ export interface MsgVoteWeightedAminoMsg { * Since: cosmos-sdk 0.43 */ export interface MsgVoteWeightedSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; options: WeightedVoteOptionSDKType[]; } @@ -173,7 +172,7 @@ export interface MsgVoteWeightedResponseSDKType { } /** MsgDeposit defines a message to submit a deposit to an existing proposal. */ export interface MsgDeposit { - proposalId: Long; + proposalId: bigint; depositor: string; amount: Coin[]; } @@ -184,8 +183,8 @@ export interface MsgDepositProtoMsg { /** MsgDeposit defines a message to submit a deposit to an existing proposal. */ export interface MsgDepositAmino { proposal_id: string; - depositor: string; - amount: CoinAmino[]; + depositor?: string; + amount?: CoinAmino[]; } export interface MsgDepositAminoMsg { type: "cosmos-sdk/MsgDeposit"; @@ -193,7 +192,7 @@ export interface MsgDepositAminoMsg { } /** MsgDeposit defines a message to submit a deposit to an existing proposal. */ export interface MsgDepositSDKType { - proposal_id: Long; + proposal_id: bigint; depositor: string; amount: CoinSDKType[]; } @@ -215,8 +214,9 @@ export interface MsgDepositResponseAminoMsg { export interface MsgDepositResponseSDKType { } export declare const MsgSubmitProposal: { - encode(message: MsgSubmitProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitProposal; + typeUrl: string; + encode(message: MsgSubmitProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposal; fromJSON(object: any): MsgSubmitProposal; toJSON(message: MsgSubmitProposal): unknown; fromPartial(object: Partial): MsgSubmitProposal; @@ -229,8 +229,9 @@ export declare const MsgSubmitProposal: { toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg; }; export declare const MsgSubmitProposalResponse: { - encode(message: MsgSubmitProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitProposalResponse; + typeUrl: string; + encode(message: MsgSubmitProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposalResponse; fromJSON(object: any): MsgSubmitProposalResponse; toJSON(message: MsgSubmitProposalResponse): unknown; fromPartial(object: Partial): MsgSubmitProposalResponse; @@ -243,8 +244,9 @@ export declare const MsgSubmitProposalResponse: { toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg; }; export declare const MsgVote: { - encode(message: MsgVote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVote; + typeUrl: string; + encode(message: MsgVote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVote; fromJSON(object: any): MsgVote; toJSON(message: MsgVote): unknown; fromPartial(object: Partial): MsgVote; @@ -257,8 +259,9 @@ export declare const MsgVote: { toProtoMsg(message: MsgVote): MsgVoteProtoMsg; }; export declare const MsgVoteResponse: { - encode(_: MsgVoteResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteResponse; + typeUrl: string; + encode(_: MsgVoteResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteResponse; fromJSON(_: any): MsgVoteResponse; toJSON(_: MsgVoteResponse): unknown; fromPartial(_: Partial): MsgVoteResponse; @@ -271,8 +274,9 @@ export declare const MsgVoteResponse: { toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg; }; export declare const MsgVoteWeighted: { - encode(message: MsgVoteWeighted, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteWeighted; + typeUrl: string; + encode(message: MsgVoteWeighted, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteWeighted; fromJSON(object: any): MsgVoteWeighted; toJSON(message: MsgVoteWeighted): unknown; fromPartial(object: Partial): MsgVoteWeighted; @@ -285,8 +289,9 @@ export declare const MsgVoteWeighted: { toProtoMsg(message: MsgVoteWeighted): MsgVoteWeightedProtoMsg; }; export declare const MsgVoteWeightedResponse: { - encode(_: MsgVoteWeightedResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteWeightedResponse; + typeUrl: string; + encode(_: MsgVoteWeightedResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteWeightedResponse; fromJSON(_: any): MsgVoteWeightedResponse; toJSON(_: MsgVoteWeightedResponse): unknown; fromPartial(_: Partial): MsgVoteWeightedResponse; @@ -299,8 +304,9 @@ export declare const MsgVoteWeightedResponse: { toProtoMsg(message: MsgVoteWeightedResponse): MsgVoteWeightedResponseProtoMsg; }; export declare const MsgDeposit: { - encode(message: MsgDeposit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDeposit; + typeUrl: string; + encode(message: MsgDeposit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDeposit; fromJSON(object: any): MsgDeposit; toJSON(message: MsgDeposit): unknown; fromPartial(object: Partial): MsgDeposit; @@ -313,8 +319,9 @@ export declare const MsgDeposit: { toProtoMsg(message: MsgDeposit): MsgDepositProtoMsg; }; export declare const MsgDepositResponse: { - encode(_: MsgDepositResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDepositResponse; + typeUrl: string; + encode(_: MsgDepositResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDepositResponse; fromJSON(_: any): MsgDepositResponse; toJSON(_: MsgDepositResponse): unknown; fromPartial(_: Partial): MsgDepositResponse; @@ -326,6 +333,6 @@ export declare const MsgDepositResponse: { toProto(message: MsgDepositResponse): Uint8Array; toProtoMsg(message: MsgDepositResponse): MsgDepositResponseProtoMsg; }; -export declare const Content_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => TextProposal | Any; +export declare const Content_InterfaceDecoder: (input: BinaryReader | Uint8Array) => TextProposal | Any; export declare const Content_FromAmino: (content: AnyAmino) => Any; export declare const Content_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/group/v1/events.d.ts b/packages/api/types/codegen/cosmos/group/v1/events.d.ts index ff55867..d142db9 100644 --- a/packages/api/types/codegen/cosmos/group/v1/events.d.ts +++ b/packages/api/types/codegen/cosmos/group/v1/events.d.ts @@ -1,10 +1,9 @@ import { ProposalExecutorResult } from "./types"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** EventCreateGroup is an event emitted when a group is created. */ export interface EventCreateGroup { /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; } export interface EventCreateGroupProtoMsg { typeUrl: "/cosmos.group.v1.EventCreateGroup"; @@ -13,7 +12,7 @@ export interface EventCreateGroupProtoMsg { /** EventCreateGroup is an event emitted when a group is created. */ export interface EventCreateGroupAmino { /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; } export interface EventCreateGroupAminoMsg { type: "cosmos-sdk/EventCreateGroup"; @@ -21,12 +20,12 @@ export interface EventCreateGroupAminoMsg { } /** EventCreateGroup is an event emitted when a group is created. */ export interface EventCreateGroupSDKType { - group_id: Long; + group_id: bigint; } /** EventUpdateGroup is an event emitted when a group is updated. */ export interface EventUpdateGroup { /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; } export interface EventUpdateGroupProtoMsg { typeUrl: "/cosmos.group.v1.EventUpdateGroup"; @@ -35,7 +34,7 @@ export interface EventUpdateGroupProtoMsg { /** EventUpdateGroup is an event emitted when a group is updated. */ export interface EventUpdateGroupAmino { /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; } export interface EventUpdateGroupAminoMsg { type: "cosmos-sdk/EventUpdateGroup"; @@ -43,7 +42,7 @@ export interface EventUpdateGroupAminoMsg { } /** EventUpdateGroup is an event emitted when a group is updated. */ export interface EventUpdateGroupSDKType { - group_id: Long; + group_id: bigint; } /** EventCreateGroupPolicy is an event emitted when a group policy is created. */ export interface EventCreateGroupPolicy { @@ -57,7 +56,7 @@ export interface EventCreateGroupPolicyProtoMsg { /** EventCreateGroupPolicy is an event emitted when a group policy is created. */ export interface EventCreateGroupPolicyAmino { /** address is the account address of the group policy. */ - address: string; + address?: string; } export interface EventCreateGroupPolicyAminoMsg { type: "cosmos-sdk/EventCreateGroupPolicy"; @@ -79,7 +78,7 @@ export interface EventUpdateGroupPolicyProtoMsg { /** EventUpdateGroupPolicy is an event emitted when a group policy is updated. */ export interface EventUpdateGroupPolicyAmino { /** address is the account address of the group policy. */ - address: string; + address?: string; } export interface EventUpdateGroupPolicyAminoMsg { type: "cosmos-sdk/EventUpdateGroupPolicy"; @@ -92,7 +91,7 @@ export interface EventUpdateGroupPolicySDKType { /** EventSubmitProposal is an event emitted when a proposal is created. */ export interface EventSubmitProposal { /** proposal_id is the unique ID of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface EventSubmitProposalProtoMsg { typeUrl: "/cosmos.group.v1.EventSubmitProposal"; @@ -101,7 +100,7 @@ export interface EventSubmitProposalProtoMsg { /** EventSubmitProposal is an event emitted when a proposal is created. */ export interface EventSubmitProposalAmino { /** proposal_id is the unique ID of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface EventSubmitProposalAminoMsg { type: "cosmos-sdk/EventSubmitProposal"; @@ -109,12 +108,12 @@ export interface EventSubmitProposalAminoMsg { } /** EventSubmitProposal is an event emitted when a proposal is created. */ export interface EventSubmitProposalSDKType { - proposal_id: Long; + proposal_id: bigint; } /** EventWithdrawProposal is an event emitted when a proposal is withdrawn. */ export interface EventWithdrawProposal { /** proposal_id is the unique ID of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface EventWithdrawProposalProtoMsg { typeUrl: "/cosmos.group.v1.EventWithdrawProposal"; @@ -123,7 +122,7 @@ export interface EventWithdrawProposalProtoMsg { /** EventWithdrawProposal is an event emitted when a proposal is withdrawn. */ export interface EventWithdrawProposalAmino { /** proposal_id is the unique ID of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface EventWithdrawProposalAminoMsg { type: "cosmos-sdk/EventWithdrawProposal"; @@ -131,12 +130,12 @@ export interface EventWithdrawProposalAminoMsg { } /** EventWithdrawProposal is an event emitted when a proposal is withdrawn. */ export interface EventWithdrawProposalSDKType { - proposal_id: Long; + proposal_id: bigint; } /** EventVote is an event emitted when a voter votes on a proposal. */ export interface EventVote { /** proposal_id is the unique ID of the proposal. */ - proposalId: Long; + proposalId: bigint; } export interface EventVoteProtoMsg { typeUrl: "/cosmos.group.v1.EventVote"; @@ -145,7 +144,7 @@ export interface EventVoteProtoMsg { /** EventVote is an event emitted when a voter votes on a proposal. */ export interface EventVoteAmino { /** proposal_id is the unique ID of the proposal. */ - proposal_id: string; + proposal_id?: string; } export interface EventVoteAminoMsg { type: "cosmos-sdk/EventVote"; @@ -153,12 +152,12 @@ export interface EventVoteAminoMsg { } /** EventVote is an event emitted when a voter votes on a proposal. */ export interface EventVoteSDKType { - proposal_id: Long; + proposal_id: bigint; } /** EventExec is an event emitted when a proposal is executed. */ export interface EventExec { /** proposal_id is the unique ID of the proposal. */ - proposalId: Long; + proposalId: bigint; /** result is the proposal execution result. */ result: ProposalExecutorResult; /** logs contains error logs in case the execution result is FAILURE. */ @@ -171,11 +170,11 @@ export interface EventExecProtoMsg { /** EventExec is an event emitted when a proposal is executed. */ export interface EventExecAmino { /** proposal_id is the unique ID of the proposal. */ - proposal_id: string; + proposal_id?: string; /** result is the proposal execution result. */ - result: ProposalExecutorResult; + result?: ProposalExecutorResult; /** logs contains error logs in case the execution result is FAILURE. */ - logs: string; + logs?: string; } export interface EventExecAminoMsg { type: "cosmos-sdk/EventExec"; @@ -183,14 +182,14 @@ export interface EventExecAminoMsg { } /** EventExec is an event emitted when a proposal is executed. */ export interface EventExecSDKType { - proposal_id: Long; + proposal_id: bigint; result: ProposalExecutorResult; logs: string; } /** EventLeaveGroup is an event emitted when group member leaves the group. */ export interface EventLeaveGroup { /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** address is the account address of the group member. */ address: string; } @@ -201,9 +200,9 @@ export interface EventLeaveGroupProtoMsg { /** EventLeaveGroup is an event emitted when group member leaves the group. */ export interface EventLeaveGroupAmino { /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** address is the account address of the group member. */ - address: string; + address?: string; } export interface EventLeaveGroupAminoMsg { type: "cosmos-sdk/EventLeaveGroup"; @@ -211,12 +210,13 @@ export interface EventLeaveGroupAminoMsg { } /** EventLeaveGroup is an event emitted when group member leaves the group. */ export interface EventLeaveGroupSDKType { - group_id: Long; + group_id: bigint; address: string; } export declare const EventCreateGroup: { - encode(message: EventCreateGroup, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateGroup; + typeUrl: string; + encode(message: EventCreateGroup, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateGroup; fromJSON(object: any): EventCreateGroup; toJSON(message: EventCreateGroup): unknown; fromPartial(object: Partial): EventCreateGroup; @@ -229,8 +229,9 @@ export declare const EventCreateGroup: { toProtoMsg(message: EventCreateGroup): EventCreateGroupProtoMsg; }; export declare const EventUpdateGroup: { - encode(message: EventUpdateGroup, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateGroup; + typeUrl: string; + encode(message: EventUpdateGroup, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateGroup; fromJSON(object: any): EventUpdateGroup; toJSON(message: EventUpdateGroup): unknown; fromPartial(object: Partial): EventUpdateGroup; @@ -243,8 +244,9 @@ export declare const EventUpdateGroup: { toProtoMsg(message: EventUpdateGroup): EventUpdateGroupProtoMsg; }; export declare const EventCreateGroupPolicy: { - encode(message: EventCreateGroupPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateGroupPolicy; + typeUrl: string; + encode(message: EventCreateGroupPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateGroupPolicy; fromJSON(object: any): EventCreateGroupPolicy; toJSON(message: EventCreateGroupPolicy): unknown; fromPartial(object: Partial): EventCreateGroupPolicy; @@ -257,8 +259,9 @@ export declare const EventCreateGroupPolicy: { toProtoMsg(message: EventCreateGroupPolicy): EventCreateGroupPolicyProtoMsg; }; export declare const EventUpdateGroupPolicy: { - encode(message: EventUpdateGroupPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateGroupPolicy; + typeUrl: string; + encode(message: EventUpdateGroupPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateGroupPolicy; fromJSON(object: any): EventUpdateGroupPolicy; toJSON(message: EventUpdateGroupPolicy): unknown; fromPartial(object: Partial): EventUpdateGroupPolicy; @@ -271,8 +274,9 @@ export declare const EventUpdateGroupPolicy: { toProtoMsg(message: EventUpdateGroupPolicy): EventUpdateGroupPolicyProtoMsg; }; export declare const EventSubmitProposal: { - encode(message: EventSubmitProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventSubmitProposal; + typeUrl: string; + encode(message: EventSubmitProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventSubmitProposal; fromJSON(object: any): EventSubmitProposal; toJSON(message: EventSubmitProposal): unknown; fromPartial(object: Partial): EventSubmitProposal; @@ -285,8 +289,9 @@ export declare const EventSubmitProposal: { toProtoMsg(message: EventSubmitProposal): EventSubmitProposalProtoMsg; }; export declare const EventWithdrawProposal: { - encode(message: EventWithdrawProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventWithdrawProposal; + typeUrl: string; + encode(message: EventWithdrawProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventWithdrawProposal; fromJSON(object: any): EventWithdrawProposal; toJSON(message: EventWithdrawProposal): unknown; fromPartial(object: Partial): EventWithdrawProposal; @@ -299,8 +304,9 @@ export declare const EventWithdrawProposal: { toProtoMsg(message: EventWithdrawProposal): EventWithdrawProposalProtoMsg; }; export declare const EventVote: { - encode(message: EventVote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventVote; + typeUrl: string; + encode(message: EventVote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventVote; fromJSON(object: any): EventVote; toJSON(message: EventVote): unknown; fromPartial(object: Partial): EventVote; @@ -313,8 +319,9 @@ export declare const EventVote: { toProtoMsg(message: EventVote): EventVoteProtoMsg; }; export declare const EventExec: { - encode(message: EventExec, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventExec; + typeUrl: string; + encode(message: EventExec, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventExec; fromJSON(object: any): EventExec; toJSON(message: EventExec): unknown; fromPartial(object: Partial): EventExec; @@ -327,8 +334,9 @@ export declare const EventExec: { toProtoMsg(message: EventExec): EventExecProtoMsg; }; export declare const EventLeaveGroup: { - encode(message: EventLeaveGroup, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventLeaveGroup; + typeUrl: string; + encode(message: EventLeaveGroup, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventLeaveGroup; fromJSON(object: any): EventLeaveGroup; toJSON(message: EventLeaveGroup): unknown; fromPartial(object: Partial): EventLeaveGroup; diff --git a/packages/api/types/codegen/cosmos/group/v1/genesis.d.ts b/packages/api/types/codegen/cosmos/group/v1/genesis.d.ts index ddd2063..606ec42 100644 --- a/packages/api/types/codegen/cosmos/group/v1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/group/v1/genesis.d.ts @@ -1,13 +1,12 @@ import { GroupInfo, GroupInfoAmino, GroupInfoSDKType, GroupMember, GroupMemberAmino, GroupMemberSDKType, GroupPolicyInfo, GroupPolicyInfoAmino, GroupPolicyInfoSDKType, Proposal, ProposalAmino, ProposalSDKType, Vote, VoteAmino, VoteSDKType } from "./types"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the group module's genesis state. */ export interface GenesisState { /** * group_seq is the group table orm.Sequence, * it is used to get the next group ID. */ - groupSeq: Long; + groupSeq: bigint; /** groups is the list of groups info. */ groups: GroupInfo[]; /** group_members is the list of groups members. */ @@ -16,14 +15,14 @@ export interface GenesisState { * group_policy_seq is the group policy table orm.Sequence, * it is used to generate the next group policy account address. */ - groupPolicySeq: Long; + groupPolicySeq: bigint; /** group_policies is the list of group policies info. */ groupPolicies: GroupPolicyInfo[]; /** * proposal_seq is the proposal table orm.Sequence, * it is used to get the next proposal ID. */ - proposalSeq: Long; + proposalSeq: bigint; /** proposals is the list of proposals. */ proposals: Proposal[]; /** votes is the list of votes. */ @@ -39,27 +38,27 @@ export interface GenesisStateAmino { * group_seq is the group table orm.Sequence, * it is used to get the next group ID. */ - group_seq: string; + group_seq?: string; /** groups is the list of groups info. */ - groups: GroupInfoAmino[]; + groups?: GroupInfoAmino[]; /** group_members is the list of groups members. */ - group_members: GroupMemberAmino[]; + group_members?: GroupMemberAmino[]; /** * group_policy_seq is the group policy table orm.Sequence, * it is used to generate the next group policy account address. */ - group_policy_seq: string; + group_policy_seq?: string; /** group_policies is the list of group policies info. */ - group_policies: GroupPolicyInfoAmino[]; + group_policies?: GroupPolicyInfoAmino[]; /** * proposal_seq is the proposal table orm.Sequence, * it is used to get the next proposal ID. */ - proposal_seq: string; + proposal_seq?: string; /** proposals is the list of proposals. */ - proposals: ProposalAmino[]; + proposals?: ProposalAmino[]; /** votes is the list of votes. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -67,18 +66,19 @@ export interface GenesisStateAminoMsg { } /** GenesisState defines the group module's genesis state. */ export interface GenesisStateSDKType { - group_seq: Long; + group_seq: bigint; groups: GroupInfoSDKType[]; group_members: GroupMemberSDKType[]; - group_policy_seq: Long; + group_policy_seq: bigint; group_policies: GroupPolicyInfoSDKType[]; - proposal_seq: Long; + proposal_seq: bigint; proposals: ProposalSDKType[]; votes: VoteSDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/group/v1/query.d.ts b/packages/api/types/codegen/cosmos/group/v1/query.d.ts index 30c704f..f22cb3e 100644 --- a/packages/api/types/codegen/cosmos/group/v1/query.d.ts +++ b/packages/api/types/codegen/cosmos/group/v1/query.d.ts @@ -1,11 +1,10 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { GroupInfo, GroupInfoAmino, GroupInfoSDKType, GroupPolicyInfo, GroupPolicyInfoAmino, GroupPolicyInfoSDKType, GroupMember, GroupMemberAmino, GroupMemberSDKType, Proposal, ProposalAmino, ProposalSDKType, Vote, VoteAmino, VoteSDKType, TallyResult, TallyResultAmino, TallyResultSDKType } from "./types"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryGroupInfoRequest is the Query/GroupInfo request type. */ export interface QueryGroupInfoRequest { /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; } export interface QueryGroupInfoRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupInfoRequest"; @@ -14,7 +13,7 @@ export interface QueryGroupInfoRequestProtoMsg { /** QueryGroupInfoRequest is the Query/GroupInfo request type. */ export interface QueryGroupInfoRequestAmino { /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; } export interface QueryGroupInfoRequestAminoMsg { type: "cosmos-sdk/QueryGroupInfoRequest"; @@ -22,12 +21,12 @@ export interface QueryGroupInfoRequestAminoMsg { } /** QueryGroupInfoRequest is the Query/GroupInfo request type. */ export interface QueryGroupInfoRequestSDKType { - group_id: Long; + group_id: bigint; } /** QueryGroupInfoResponse is the Query/GroupInfo response type. */ export interface QueryGroupInfoResponse { /** info is the GroupInfo for the group. */ - info: GroupInfo; + info?: GroupInfo; } export interface QueryGroupInfoResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupInfoResponse"; @@ -44,7 +43,7 @@ export interface QueryGroupInfoResponseAminoMsg { } /** QueryGroupInfoResponse is the Query/GroupInfo response type. */ export interface QueryGroupInfoResponseSDKType { - info: GroupInfoSDKType; + info?: GroupInfoSDKType; } /** QueryGroupPolicyInfoRequest is the Query/GroupPolicyInfo request type. */ export interface QueryGroupPolicyInfoRequest { @@ -58,7 +57,7 @@ export interface QueryGroupPolicyInfoRequestProtoMsg { /** QueryGroupPolicyInfoRequest is the Query/GroupPolicyInfo request type. */ export interface QueryGroupPolicyInfoRequestAmino { /** address is the account address of the group policy. */ - address: string; + address?: string; } export interface QueryGroupPolicyInfoRequestAminoMsg { type: "cosmos-sdk/QueryGroupPolicyInfoRequest"; @@ -71,7 +70,7 @@ export interface QueryGroupPolicyInfoRequestSDKType { /** QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type. */ export interface QueryGroupPolicyInfoResponse { /** info is the GroupPolicyInfo for the group policy. */ - info: GroupPolicyInfo; + info?: GroupPolicyInfo; } export interface QueryGroupPolicyInfoResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupPolicyInfoResponse"; @@ -88,14 +87,14 @@ export interface QueryGroupPolicyInfoResponseAminoMsg { } /** QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type. */ export interface QueryGroupPolicyInfoResponseSDKType { - info: GroupPolicyInfoSDKType; + info?: GroupPolicyInfoSDKType; } /** QueryGroupMembersRequest is the Query/GroupMembers request type. */ export interface QueryGroupMembersRequest { /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGroupMembersRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupMembersRequest"; @@ -104,7 +103,7 @@ export interface QueryGroupMembersRequestProtoMsg { /** QueryGroupMembersRequest is the Query/GroupMembers request type. */ export interface QueryGroupMembersRequestAmino { /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -114,15 +113,15 @@ export interface QueryGroupMembersRequestAminoMsg { } /** QueryGroupMembersRequest is the Query/GroupMembers request type. */ export interface QueryGroupMembersRequestSDKType { - group_id: Long; - pagination: PageRequestSDKType; + group_id: bigint; + pagination?: PageRequestSDKType; } /** QueryGroupMembersResponse is the Query/GroupMembersResponse response type. */ export interface QueryGroupMembersResponse { /** members are the members of the group with given group_id. */ members: GroupMember[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGroupMembersResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupMembersResponse"; @@ -131,7 +130,7 @@ export interface QueryGroupMembersResponseProtoMsg { /** QueryGroupMembersResponse is the Query/GroupMembersResponse response type. */ export interface QueryGroupMembersResponseAmino { /** members are the members of the group with given group_id. */ - members: GroupMemberAmino[]; + members?: GroupMemberAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -142,14 +141,14 @@ export interface QueryGroupMembersResponseAminoMsg { /** QueryGroupMembersResponse is the Query/GroupMembersResponse response type. */ export interface QueryGroupMembersResponseSDKType { members: GroupMemberSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryGroupsByAdminRequest is the Query/GroupsByAdmin request type. */ export interface QueryGroupsByAdminRequest { /** admin is the account address of a group's admin. */ admin: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGroupsByAdminRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupsByAdminRequest"; @@ -158,7 +157,7 @@ export interface QueryGroupsByAdminRequestProtoMsg { /** QueryGroupsByAdminRequest is the Query/GroupsByAdmin request type. */ export interface QueryGroupsByAdminRequestAmino { /** admin is the account address of a group's admin. */ - admin: string; + admin?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -169,14 +168,14 @@ export interface QueryGroupsByAdminRequestAminoMsg { /** QueryGroupsByAdminRequest is the Query/GroupsByAdmin request type. */ export interface QueryGroupsByAdminRequestSDKType { admin: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response type. */ export interface QueryGroupsByAdminResponse { /** groups are the groups info with the provided admin. */ groups: GroupInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGroupsByAdminResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupsByAdminResponse"; @@ -185,7 +184,7 @@ export interface QueryGroupsByAdminResponseProtoMsg { /** QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response type. */ export interface QueryGroupsByAdminResponseAmino { /** groups are the groups info with the provided admin. */ - groups: GroupInfoAmino[]; + groups?: GroupInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -196,14 +195,14 @@ export interface QueryGroupsByAdminResponseAminoMsg { /** QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response type. */ export interface QueryGroupsByAdminResponseSDKType { groups: GroupInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryGroupPoliciesByGroupRequest is the Query/GroupPoliciesByGroup request type. */ export interface QueryGroupPoliciesByGroupRequest { /** group_id is the unique ID of the group policy's group. */ - groupId: Long; + groupId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGroupPoliciesByGroupRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByGroupRequest"; @@ -212,7 +211,7 @@ export interface QueryGroupPoliciesByGroupRequestProtoMsg { /** QueryGroupPoliciesByGroupRequest is the Query/GroupPoliciesByGroup request type. */ export interface QueryGroupPoliciesByGroupRequestAmino { /** group_id is the unique ID of the group policy's group. */ - group_id: string; + group_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -222,15 +221,15 @@ export interface QueryGroupPoliciesByGroupRequestAminoMsg { } /** QueryGroupPoliciesByGroupRequest is the Query/GroupPoliciesByGroup request type. */ export interface QueryGroupPoliciesByGroupRequestSDKType { - group_id: Long; - pagination: PageRequestSDKType; + group_id: bigint; + pagination?: PageRequestSDKType; } /** QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup response type. */ export interface QueryGroupPoliciesByGroupResponse { /** group_policies are the group policies info associated with the provided group. */ groupPolicies: GroupPolicyInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGroupPoliciesByGroupResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByGroupResponse"; @@ -239,7 +238,7 @@ export interface QueryGroupPoliciesByGroupResponseProtoMsg { /** QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup response type. */ export interface QueryGroupPoliciesByGroupResponseAmino { /** group_policies are the group policies info associated with the provided group. */ - group_policies: GroupPolicyInfoAmino[]; + group_policies?: GroupPolicyInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -250,14 +249,14 @@ export interface QueryGroupPoliciesByGroupResponseAminoMsg { /** QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup response type. */ export interface QueryGroupPoliciesByGroupResponseSDKType { group_policies: GroupPolicyInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryGroupPoliciesByAdminRequest is the Query/GroupPoliciesByAdmin request type. */ export interface QueryGroupPoliciesByAdminRequest { /** admin is the admin address of the group policy. */ admin: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGroupPoliciesByAdminRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByAdminRequest"; @@ -266,7 +265,7 @@ export interface QueryGroupPoliciesByAdminRequestProtoMsg { /** QueryGroupPoliciesByAdminRequest is the Query/GroupPoliciesByAdmin request type. */ export interface QueryGroupPoliciesByAdminRequestAmino { /** admin is the admin address of the group policy. */ - admin: string; + admin?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -277,14 +276,14 @@ export interface QueryGroupPoliciesByAdminRequestAminoMsg { /** QueryGroupPoliciesByAdminRequest is the Query/GroupPoliciesByAdmin request type. */ export interface QueryGroupPoliciesByAdminRequestSDKType { admin: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin response type. */ export interface QueryGroupPoliciesByAdminResponse { /** group_policies are the group policies info with provided admin. */ groupPolicies: GroupPolicyInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGroupPoliciesByAdminResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByAdminResponse"; @@ -293,7 +292,7 @@ export interface QueryGroupPoliciesByAdminResponseProtoMsg { /** QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin response type. */ export interface QueryGroupPoliciesByAdminResponseAmino { /** group_policies are the group policies info with provided admin. */ - group_policies: GroupPolicyInfoAmino[]; + group_policies?: GroupPolicyInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -304,12 +303,12 @@ export interface QueryGroupPoliciesByAdminResponseAminoMsg { /** QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin response type. */ export interface QueryGroupPoliciesByAdminResponseSDKType { group_policies: GroupPolicyInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryProposalRequest is the Query/Proposal request type. */ export interface QueryProposalRequest { /** proposal_id is the unique ID of a proposal. */ - proposalId: Long; + proposalId: bigint; } export interface QueryProposalRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryProposalRequest"; @@ -318,7 +317,7 @@ export interface QueryProposalRequestProtoMsg { /** QueryProposalRequest is the Query/Proposal request type. */ export interface QueryProposalRequestAmino { /** proposal_id is the unique ID of a proposal. */ - proposal_id: string; + proposal_id?: string; } export interface QueryProposalRequestAminoMsg { type: "cosmos-sdk/QueryProposalRequest"; @@ -326,12 +325,12 @@ export interface QueryProposalRequestAminoMsg { } /** QueryProposalRequest is the Query/Proposal request type. */ export interface QueryProposalRequestSDKType { - proposal_id: Long; + proposal_id: bigint; } /** QueryProposalResponse is the Query/Proposal response type. */ export interface QueryProposalResponse { /** proposal is the proposal info. */ - proposal: Proposal; + proposal?: Proposal; } export interface QueryProposalResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryProposalResponse"; @@ -348,14 +347,14 @@ export interface QueryProposalResponseAminoMsg { } /** QueryProposalResponse is the Query/Proposal response type. */ export interface QueryProposalResponseSDKType { - proposal: ProposalSDKType; + proposal?: ProposalSDKType; } /** QueryProposalsByGroupPolicyRequest is the Query/ProposalByGroupPolicy request type. */ export interface QueryProposalsByGroupPolicyRequest { /** address is the account address of the group policy related to proposals. */ address: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProposalsByGroupPolicyRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryProposalsByGroupPolicyRequest"; @@ -364,7 +363,7 @@ export interface QueryProposalsByGroupPolicyRequestProtoMsg { /** QueryProposalsByGroupPolicyRequest is the Query/ProposalByGroupPolicy request type. */ export interface QueryProposalsByGroupPolicyRequestAmino { /** address is the account address of the group policy related to proposals. */ - address: string; + address?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -375,14 +374,14 @@ export interface QueryProposalsByGroupPolicyRequestAminoMsg { /** QueryProposalsByGroupPolicyRequest is the Query/ProposalByGroupPolicy request type. */ export interface QueryProposalsByGroupPolicyRequestSDKType { address: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy response type. */ export interface QueryProposalsByGroupPolicyResponse { /** proposals are the proposals with given group policy. */ proposals: Proposal[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProposalsByGroupPolicyResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryProposalsByGroupPolicyResponse"; @@ -391,7 +390,7 @@ export interface QueryProposalsByGroupPolicyResponseProtoMsg { /** QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy response type. */ export interface QueryProposalsByGroupPolicyResponseAmino { /** proposals are the proposals with given group policy. */ - proposals: ProposalAmino[]; + proposals?: ProposalAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -402,12 +401,12 @@ export interface QueryProposalsByGroupPolicyResponseAminoMsg { /** QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy response type. */ export interface QueryProposalsByGroupPolicyResponseSDKType { proposals: ProposalSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryVoteByProposalVoterRequest is the Query/VoteByProposalVoter request type. */ export interface QueryVoteByProposalVoterRequest { /** proposal_id is the unique ID of a proposal. */ - proposalId: Long; + proposalId: bigint; /** voter is a proposal voter account address. */ voter: string; } @@ -418,9 +417,9 @@ export interface QueryVoteByProposalVoterRequestProtoMsg { /** QueryVoteByProposalVoterRequest is the Query/VoteByProposalVoter request type. */ export interface QueryVoteByProposalVoterRequestAmino { /** proposal_id is the unique ID of a proposal. */ - proposal_id: string; + proposal_id?: string; /** voter is a proposal voter account address. */ - voter: string; + voter?: string; } export interface QueryVoteByProposalVoterRequestAminoMsg { type: "cosmos-sdk/QueryVoteByProposalVoterRequest"; @@ -428,13 +427,13 @@ export interface QueryVoteByProposalVoterRequestAminoMsg { } /** QueryVoteByProposalVoterRequest is the Query/VoteByProposalVoter request type. */ export interface QueryVoteByProposalVoterRequestSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; } /** QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response type. */ export interface QueryVoteByProposalVoterResponse { /** vote is the vote with given proposal_id and voter. */ - vote: Vote; + vote?: Vote; } export interface QueryVoteByProposalVoterResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryVoteByProposalVoterResponse"; @@ -451,14 +450,14 @@ export interface QueryVoteByProposalVoterResponseAminoMsg { } /** QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response type. */ export interface QueryVoteByProposalVoterResponseSDKType { - vote: VoteSDKType; + vote?: VoteSDKType; } /** QueryVotesByProposalRequest is the Query/VotesByProposal request type. */ export interface QueryVotesByProposalRequest { /** proposal_id is the unique ID of a proposal. */ - proposalId: Long; + proposalId: bigint; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryVotesByProposalRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryVotesByProposalRequest"; @@ -467,7 +466,7 @@ export interface QueryVotesByProposalRequestProtoMsg { /** QueryVotesByProposalRequest is the Query/VotesByProposal request type. */ export interface QueryVotesByProposalRequestAmino { /** proposal_id is the unique ID of a proposal. */ - proposal_id: string; + proposal_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -477,15 +476,15 @@ export interface QueryVotesByProposalRequestAminoMsg { } /** QueryVotesByProposalRequest is the Query/VotesByProposal request type. */ export interface QueryVotesByProposalRequestSDKType { - proposal_id: Long; - pagination: PageRequestSDKType; + proposal_id: bigint; + pagination?: PageRequestSDKType; } /** QueryVotesByProposalResponse is the Query/VotesByProposal response type. */ export interface QueryVotesByProposalResponse { /** votes are the list of votes for given proposal_id. */ votes: Vote[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryVotesByProposalResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryVotesByProposalResponse"; @@ -494,7 +493,7 @@ export interface QueryVotesByProposalResponseProtoMsg { /** QueryVotesByProposalResponse is the Query/VotesByProposal response type. */ export interface QueryVotesByProposalResponseAmino { /** votes are the list of votes for given proposal_id. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -505,14 +504,14 @@ export interface QueryVotesByProposalResponseAminoMsg { /** QueryVotesByProposalResponse is the Query/VotesByProposal response type. */ export interface QueryVotesByProposalResponseSDKType { votes: VoteSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryVotesByVoterRequest is the Query/VotesByVoter request type. */ export interface QueryVotesByVoterRequest { /** voter is a proposal voter account address. */ voter: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryVotesByVoterRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryVotesByVoterRequest"; @@ -521,7 +520,7 @@ export interface QueryVotesByVoterRequestProtoMsg { /** QueryVotesByVoterRequest is the Query/VotesByVoter request type. */ export interface QueryVotesByVoterRequestAmino { /** voter is a proposal voter account address. */ - voter: string; + voter?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -532,14 +531,14 @@ export interface QueryVotesByVoterRequestAminoMsg { /** QueryVotesByVoterRequest is the Query/VotesByVoter request type. */ export interface QueryVotesByVoterRequestSDKType { voter: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryVotesByVoterResponse is the Query/VotesByVoter response type. */ export interface QueryVotesByVoterResponse { /** votes are the list of votes by given voter. */ votes: Vote[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryVotesByVoterResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryVotesByVoterResponse"; @@ -548,7 +547,7 @@ export interface QueryVotesByVoterResponseProtoMsg { /** QueryVotesByVoterResponse is the Query/VotesByVoter response type. */ export interface QueryVotesByVoterResponseAmino { /** votes are the list of votes by given voter. */ - votes: VoteAmino[]; + votes?: VoteAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -559,14 +558,14 @@ export interface QueryVotesByVoterResponseAminoMsg { /** QueryVotesByVoterResponse is the Query/VotesByVoter response type. */ export interface QueryVotesByVoterResponseSDKType { votes: VoteSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryGroupsByMemberRequest is the Query/GroupsByMember request type. */ export interface QueryGroupsByMemberRequest { /** address is the group member address. */ address: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryGroupsByMemberRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupsByMemberRequest"; @@ -575,7 +574,7 @@ export interface QueryGroupsByMemberRequestProtoMsg { /** QueryGroupsByMemberRequest is the Query/GroupsByMember request type. */ export interface QueryGroupsByMemberRequestAmino { /** address is the group member address. */ - address: string; + address?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -586,14 +585,14 @@ export interface QueryGroupsByMemberRequestAminoMsg { /** QueryGroupsByMemberRequest is the Query/GroupsByMember request type. */ export interface QueryGroupsByMemberRequestSDKType { address: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryGroupsByMemberResponse is the Query/GroupsByMember response type. */ export interface QueryGroupsByMemberResponse { /** groups are the groups info with the provided group member. */ groups: GroupInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryGroupsByMemberResponseProtoMsg { typeUrl: "/cosmos.group.v1.QueryGroupsByMemberResponse"; @@ -602,7 +601,7 @@ export interface QueryGroupsByMemberResponseProtoMsg { /** QueryGroupsByMemberResponse is the Query/GroupsByMember response type. */ export interface QueryGroupsByMemberResponseAmino { /** groups are the groups info with the provided group member. */ - groups: GroupInfoAmino[]; + groups?: GroupInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -613,12 +612,12 @@ export interface QueryGroupsByMemberResponseAminoMsg { /** QueryGroupsByMemberResponse is the Query/GroupsByMember response type. */ export interface QueryGroupsByMemberResponseSDKType { groups: GroupInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryTallyResultRequest is the Query/TallyResult request type. */ export interface QueryTallyResultRequest { /** proposal_id is the unique id of a proposal. */ - proposalId: Long; + proposalId: bigint; } export interface QueryTallyResultRequestProtoMsg { typeUrl: "/cosmos.group.v1.QueryTallyResultRequest"; @@ -627,7 +626,7 @@ export interface QueryTallyResultRequestProtoMsg { /** QueryTallyResultRequest is the Query/TallyResult request type. */ export interface QueryTallyResultRequestAmino { /** proposal_id is the unique id of a proposal. */ - proposal_id: string; + proposal_id?: string; } export interface QueryTallyResultRequestAminoMsg { type: "cosmos-sdk/QueryTallyResultRequest"; @@ -635,7 +634,7 @@ export interface QueryTallyResultRequestAminoMsg { } /** QueryTallyResultRequest is the Query/TallyResult request type. */ export interface QueryTallyResultRequestSDKType { - proposal_id: Long; + proposal_id: bigint; } /** QueryTallyResultResponse is the Query/TallyResult response type. */ export interface QueryTallyResultResponse { @@ -660,8 +659,9 @@ export interface QueryTallyResultResponseSDKType { tally: TallyResultSDKType; } export declare const QueryGroupInfoRequest: { - encode(message: QueryGroupInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupInfoRequest; + typeUrl: string; + encode(message: QueryGroupInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupInfoRequest; fromJSON(object: any): QueryGroupInfoRequest; toJSON(message: QueryGroupInfoRequest): unknown; fromPartial(object: Partial): QueryGroupInfoRequest; @@ -674,8 +674,9 @@ export declare const QueryGroupInfoRequest: { toProtoMsg(message: QueryGroupInfoRequest): QueryGroupInfoRequestProtoMsg; }; export declare const QueryGroupInfoResponse: { - encode(message: QueryGroupInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupInfoResponse; + typeUrl: string; + encode(message: QueryGroupInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupInfoResponse; fromJSON(object: any): QueryGroupInfoResponse; toJSON(message: QueryGroupInfoResponse): unknown; fromPartial(object: Partial): QueryGroupInfoResponse; @@ -688,8 +689,9 @@ export declare const QueryGroupInfoResponse: { toProtoMsg(message: QueryGroupInfoResponse): QueryGroupInfoResponseProtoMsg; }; export declare const QueryGroupPolicyInfoRequest: { - encode(message: QueryGroupPolicyInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupPolicyInfoRequest; + typeUrl: string; + encode(message: QueryGroupPolicyInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPolicyInfoRequest; fromJSON(object: any): QueryGroupPolicyInfoRequest; toJSON(message: QueryGroupPolicyInfoRequest): unknown; fromPartial(object: Partial): QueryGroupPolicyInfoRequest; @@ -702,8 +704,9 @@ export declare const QueryGroupPolicyInfoRequest: { toProtoMsg(message: QueryGroupPolicyInfoRequest): QueryGroupPolicyInfoRequestProtoMsg; }; export declare const QueryGroupPolicyInfoResponse: { - encode(message: QueryGroupPolicyInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupPolicyInfoResponse; + typeUrl: string; + encode(message: QueryGroupPolicyInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPolicyInfoResponse; fromJSON(object: any): QueryGroupPolicyInfoResponse; toJSON(message: QueryGroupPolicyInfoResponse): unknown; fromPartial(object: Partial): QueryGroupPolicyInfoResponse; @@ -716,8 +719,9 @@ export declare const QueryGroupPolicyInfoResponse: { toProtoMsg(message: QueryGroupPolicyInfoResponse): QueryGroupPolicyInfoResponseProtoMsg; }; export declare const QueryGroupMembersRequest: { - encode(message: QueryGroupMembersRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupMembersRequest; + typeUrl: string; + encode(message: QueryGroupMembersRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupMembersRequest; fromJSON(object: any): QueryGroupMembersRequest; toJSON(message: QueryGroupMembersRequest): unknown; fromPartial(object: Partial): QueryGroupMembersRequest; @@ -730,8 +734,9 @@ export declare const QueryGroupMembersRequest: { toProtoMsg(message: QueryGroupMembersRequest): QueryGroupMembersRequestProtoMsg; }; export declare const QueryGroupMembersResponse: { - encode(message: QueryGroupMembersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupMembersResponse; + typeUrl: string; + encode(message: QueryGroupMembersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupMembersResponse; fromJSON(object: any): QueryGroupMembersResponse; toJSON(message: QueryGroupMembersResponse): unknown; fromPartial(object: Partial): QueryGroupMembersResponse; @@ -744,8 +749,9 @@ export declare const QueryGroupMembersResponse: { toProtoMsg(message: QueryGroupMembersResponse): QueryGroupMembersResponseProtoMsg; }; export declare const QueryGroupsByAdminRequest: { - encode(message: QueryGroupsByAdminRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupsByAdminRequest; + typeUrl: string; + encode(message: QueryGroupsByAdminRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByAdminRequest; fromJSON(object: any): QueryGroupsByAdminRequest; toJSON(message: QueryGroupsByAdminRequest): unknown; fromPartial(object: Partial): QueryGroupsByAdminRequest; @@ -758,8 +764,9 @@ export declare const QueryGroupsByAdminRequest: { toProtoMsg(message: QueryGroupsByAdminRequest): QueryGroupsByAdminRequestProtoMsg; }; export declare const QueryGroupsByAdminResponse: { - encode(message: QueryGroupsByAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupsByAdminResponse; + typeUrl: string; + encode(message: QueryGroupsByAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByAdminResponse; fromJSON(object: any): QueryGroupsByAdminResponse; toJSON(message: QueryGroupsByAdminResponse): unknown; fromPartial(object: Partial): QueryGroupsByAdminResponse; @@ -772,8 +779,9 @@ export declare const QueryGroupsByAdminResponse: { toProtoMsg(message: QueryGroupsByAdminResponse): QueryGroupsByAdminResponseProtoMsg; }; export declare const QueryGroupPoliciesByGroupRequest: { - encode(message: QueryGroupPoliciesByGroupRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupPoliciesByGroupRequest; + typeUrl: string; + encode(message: QueryGroupPoliciesByGroupRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByGroupRequest; fromJSON(object: any): QueryGroupPoliciesByGroupRequest; toJSON(message: QueryGroupPoliciesByGroupRequest): unknown; fromPartial(object: Partial): QueryGroupPoliciesByGroupRequest; @@ -786,8 +794,9 @@ export declare const QueryGroupPoliciesByGroupRequest: { toProtoMsg(message: QueryGroupPoliciesByGroupRequest): QueryGroupPoliciesByGroupRequestProtoMsg; }; export declare const QueryGroupPoliciesByGroupResponse: { - encode(message: QueryGroupPoliciesByGroupResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupPoliciesByGroupResponse; + typeUrl: string; + encode(message: QueryGroupPoliciesByGroupResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByGroupResponse; fromJSON(object: any): QueryGroupPoliciesByGroupResponse; toJSON(message: QueryGroupPoliciesByGroupResponse): unknown; fromPartial(object: Partial): QueryGroupPoliciesByGroupResponse; @@ -800,8 +809,9 @@ export declare const QueryGroupPoliciesByGroupResponse: { toProtoMsg(message: QueryGroupPoliciesByGroupResponse): QueryGroupPoliciesByGroupResponseProtoMsg; }; export declare const QueryGroupPoliciesByAdminRequest: { - encode(message: QueryGroupPoliciesByAdminRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupPoliciesByAdminRequest; + typeUrl: string; + encode(message: QueryGroupPoliciesByAdminRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByAdminRequest; fromJSON(object: any): QueryGroupPoliciesByAdminRequest; toJSON(message: QueryGroupPoliciesByAdminRequest): unknown; fromPartial(object: Partial): QueryGroupPoliciesByAdminRequest; @@ -814,8 +824,9 @@ export declare const QueryGroupPoliciesByAdminRequest: { toProtoMsg(message: QueryGroupPoliciesByAdminRequest): QueryGroupPoliciesByAdminRequestProtoMsg; }; export declare const QueryGroupPoliciesByAdminResponse: { - encode(message: QueryGroupPoliciesByAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupPoliciesByAdminResponse; + typeUrl: string; + encode(message: QueryGroupPoliciesByAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByAdminResponse; fromJSON(object: any): QueryGroupPoliciesByAdminResponse; toJSON(message: QueryGroupPoliciesByAdminResponse): unknown; fromPartial(object: Partial): QueryGroupPoliciesByAdminResponse; @@ -828,8 +839,9 @@ export declare const QueryGroupPoliciesByAdminResponse: { toProtoMsg(message: QueryGroupPoliciesByAdminResponse): QueryGroupPoliciesByAdminResponseProtoMsg; }; export declare const QueryProposalRequest: { - encode(message: QueryProposalRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalRequest; + typeUrl: string; + encode(message: QueryProposalRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalRequest; fromJSON(object: any): QueryProposalRequest; toJSON(message: QueryProposalRequest): unknown; fromPartial(object: Partial): QueryProposalRequest; @@ -842,8 +854,9 @@ export declare const QueryProposalRequest: { toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg; }; export declare const QueryProposalResponse: { - encode(message: QueryProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalResponse; + typeUrl: string; + encode(message: QueryProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalResponse; fromJSON(object: any): QueryProposalResponse; toJSON(message: QueryProposalResponse): unknown; fromPartial(object: Partial): QueryProposalResponse; @@ -856,8 +869,9 @@ export declare const QueryProposalResponse: { toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg; }; export declare const QueryProposalsByGroupPolicyRequest: { - encode(message: QueryProposalsByGroupPolicyRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalsByGroupPolicyRequest; + typeUrl: string; + encode(message: QueryProposalsByGroupPolicyRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsByGroupPolicyRequest; fromJSON(object: any): QueryProposalsByGroupPolicyRequest; toJSON(message: QueryProposalsByGroupPolicyRequest): unknown; fromPartial(object: Partial): QueryProposalsByGroupPolicyRequest; @@ -870,8 +884,9 @@ export declare const QueryProposalsByGroupPolicyRequest: { toProtoMsg(message: QueryProposalsByGroupPolicyRequest): QueryProposalsByGroupPolicyRequestProtoMsg; }; export declare const QueryProposalsByGroupPolicyResponse: { - encode(message: QueryProposalsByGroupPolicyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProposalsByGroupPolicyResponse; + typeUrl: string; + encode(message: QueryProposalsByGroupPolicyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsByGroupPolicyResponse; fromJSON(object: any): QueryProposalsByGroupPolicyResponse; toJSON(message: QueryProposalsByGroupPolicyResponse): unknown; fromPartial(object: Partial): QueryProposalsByGroupPolicyResponse; @@ -884,8 +899,9 @@ export declare const QueryProposalsByGroupPolicyResponse: { toProtoMsg(message: QueryProposalsByGroupPolicyResponse): QueryProposalsByGroupPolicyResponseProtoMsg; }; export declare const QueryVoteByProposalVoterRequest: { - encode(message: QueryVoteByProposalVoterRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVoteByProposalVoterRequest; + typeUrl: string; + encode(message: QueryVoteByProposalVoterRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteByProposalVoterRequest; fromJSON(object: any): QueryVoteByProposalVoterRequest; toJSON(message: QueryVoteByProposalVoterRequest): unknown; fromPartial(object: Partial): QueryVoteByProposalVoterRequest; @@ -898,8 +914,9 @@ export declare const QueryVoteByProposalVoterRequest: { toProtoMsg(message: QueryVoteByProposalVoterRequest): QueryVoteByProposalVoterRequestProtoMsg; }; export declare const QueryVoteByProposalVoterResponse: { - encode(message: QueryVoteByProposalVoterResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVoteByProposalVoterResponse; + typeUrl: string; + encode(message: QueryVoteByProposalVoterResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteByProposalVoterResponse; fromJSON(object: any): QueryVoteByProposalVoterResponse; toJSON(message: QueryVoteByProposalVoterResponse): unknown; fromPartial(object: Partial): QueryVoteByProposalVoterResponse; @@ -912,8 +929,9 @@ export declare const QueryVoteByProposalVoterResponse: { toProtoMsg(message: QueryVoteByProposalVoterResponse): QueryVoteByProposalVoterResponseProtoMsg; }; export declare const QueryVotesByProposalRequest: { - encode(message: QueryVotesByProposalRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesByProposalRequest; + typeUrl: string; + encode(message: QueryVotesByProposalRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByProposalRequest; fromJSON(object: any): QueryVotesByProposalRequest; toJSON(message: QueryVotesByProposalRequest): unknown; fromPartial(object: Partial): QueryVotesByProposalRequest; @@ -926,8 +944,9 @@ export declare const QueryVotesByProposalRequest: { toProtoMsg(message: QueryVotesByProposalRequest): QueryVotesByProposalRequestProtoMsg; }; export declare const QueryVotesByProposalResponse: { - encode(message: QueryVotesByProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesByProposalResponse; + typeUrl: string; + encode(message: QueryVotesByProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByProposalResponse; fromJSON(object: any): QueryVotesByProposalResponse; toJSON(message: QueryVotesByProposalResponse): unknown; fromPartial(object: Partial): QueryVotesByProposalResponse; @@ -940,8 +959,9 @@ export declare const QueryVotesByProposalResponse: { toProtoMsg(message: QueryVotesByProposalResponse): QueryVotesByProposalResponseProtoMsg; }; export declare const QueryVotesByVoterRequest: { - encode(message: QueryVotesByVoterRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesByVoterRequest; + typeUrl: string; + encode(message: QueryVotesByVoterRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByVoterRequest; fromJSON(object: any): QueryVotesByVoterRequest; toJSON(message: QueryVotesByVoterRequest): unknown; fromPartial(object: Partial): QueryVotesByVoterRequest; @@ -954,8 +974,9 @@ export declare const QueryVotesByVoterRequest: { toProtoMsg(message: QueryVotesByVoterRequest): QueryVotesByVoterRequestProtoMsg; }; export declare const QueryVotesByVoterResponse: { - encode(message: QueryVotesByVoterResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryVotesByVoterResponse; + typeUrl: string; + encode(message: QueryVotesByVoterResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByVoterResponse; fromJSON(object: any): QueryVotesByVoterResponse; toJSON(message: QueryVotesByVoterResponse): unknown; fromPartial(object: Partial): QueryVotesByVoterResponse; @@ -968,8 +989,9 @@ export declare const QueryVotesByVoterResponse: { toProtoMsg(message: QueryVotesByVoterResponse): QueryVotesByVoterResponseProtoMsg; }; export declare const QueryGroupsByMemberRequest: { - encode(message: QueryGroupsByMemberRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupsByMemberRequest; + typeUrl: string; + encode(message: QueryGroupsByMemberRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByMemberRequest; fromJSON(object: any): QueryGroupsByMemberRequest; toJSON(message: QueryGroupsByMemberRequest): unknown; fromPartial(object: Partial): QueryGroupsByMemberRequest; @@ -982,8 +1004,9 @@ export declare const QueryGroupsByMemberRequest: { toProtoMsg(message: QueryGroupsByMemberRequest): QueryGroupsByMemberRequestProtoMsg; }; export declare const QueryGroupsByMemberResponse: { - encode(message: QueryGroupsByMemberResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryGroupsByMemberResponse; + typeUrl: string; + encode(message: QueryGroupsByMemberResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByMemberResponse; fromJSON(object: any): QueryGroupsByMemberResponse; toJSON(message: QueryGroupsByMemberResponse): unknown; fromPartial(object: Partial): QueryGroupsByMemberResponse; @@ -996,8 +1019,9 @@ export declare const QueryGroupsByMemberResponse: { toProtoMsg(message: QueryGroupsByMemberResponse): QueryGroupsByMemberResponseProtoMsg; }; export declare const QueryTallyResultRequest: { - encode(message: QueryTallyResultRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTallyResultRequest; + typeUrl: string; + encode(message: QueryTallyResultRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultRequest; fromJSON(object: any): QueryTallyResultRequest; toJSON(message: QueryTallyResultRequest): unknown; fromPartial(object: Partial): QueryTallyResultRequest; @@ -1010,8 +1034,9 @@ export declare const QueryTallyResultRequest: { toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg; }; export declare const QueryTallyResultResponse: { - encode(message: QueryTallyResultResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryTallyResultResponse; + typeUrl: string; + encode(message: QueryTallyResultResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultResponse; fromJSON(object: any): QueryTallyResultResponse; toJSON(message: QueryTallyResultResponse): unknown; fromPartial(object: Partial): QueryTallyResultResponse; diff --git a/packages/api/types/codegen/cosmos/group/v1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/group/v1/query.lcd.d.ts index eb9b1ff..f269545 100644 --- a/packages/api/types/codegen/cosmos/group/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/group/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryGroupInfoRequest, QueryGroupInfoResponseSDKType, QueryGroupPolicyInfoRequest, QueryGroupPolicyInfoResponseSDKType, QueryGroupMembersRequest, QueryGroupMembersResponseSDKType, QueryGroupsByAdminRequest, QueryGroupsByAdminResponseSDKType, QueryGroupPoliciesByGroupRequest, QueryGroupPoliciesByGroupResponseSDKType, QueryGroupPoliciesByAdminRequest, QueryGroupPoliciesByAdminResponseSDKType, QueryProposalRequest, QueryProposalResponseSDKType, QueryProposalsByGroupPolicyRequest, QueryProposalsByGroupPolicyResponseSDKType, QueryVoteByProposalVoterRequest, QueryVoteByProposalVoterResponseSDKType, QueryVotesByProposalRequest, QueryVotesByProposalResponseSDKType, QueryVotesByVoterRequest, QueryVotesByVoterResponseSDKType, QueryGroupsByMemberRequest, QueryGroupsByMemberResponseSDKType, QueryTallyResultRequest, QueryTallyResultResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/group/v1/tx.d.ts b/packages/api/types/codegen/cosmos/group/v1/tx.d.ts index e58e079..32ad14d 100644 --- a/packages/api/types/codegen/cosmos/group/v1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/group/v1/tx.d.ts @@ -1,7 +1,6 @@ import { MemberRequest, MemberRequestAmino, MemberRequestSDKType, VoteOption, ProposalExecutorResult, ThresholdDecisionPolicy, ThresholdDecisionPolicyProtoMsg, ThresholdDecisionPolicySDKType, PercentageDecisionPolicy, PercentageDecisionPolicyProtoMsg, PercentageDecisionPolicySDKType } from "./types"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Exec defines modes of execution of a proposal on creation or on new vote. */ export declare enum Exec { /** @@ -38,11 +37,11 @@ export interface MsgCreateGroupProtoMsg { /** MsgCreateGroup is the Msg/CreateGroup request type. */ export interface MsgCreateGroupAmino { /** admin is the account address of the group admin. */ - admin: string; + admin?: string; /** members defines the group members. */ members: MemberRequestAmino[]; /** metadata is any arbitrary metadata to attached to the group. */ - metadata: string; + metadata?: string; } export interface MsgCreateGroupAminoMsg { type: "cosmos-sdk/MsgCreateGroup"; @@ -57,7 +56,7 @@ export interface MsgCreateGroupSDKType { /** MsgCreateGroupResponse is the Msg/CreateGroup response type. */ export interface MsgCreateGroupResponse { /** group_id is the unique ID of the newly created group. */ - groupId: Long; + groupId: bigint; } export interface MsgCreateGroupResponseProtoMsg { typeUrl: "/cosmos.group.v1.MsgCreateGroupResponse"; @@ -66,7 +65,7 @@ export interface MsgCreateGroupResponseProtoMsg { /** MsgCreateGroupResponse is the Msg/CreateGroup response type. */ export interface MsgCreateGroupResponseAmino { /** group_id is the unique ID of the newly created group. */ - group_id: string; + group_id?: string; } export interface MsgCreateGroupResponseAminoMsg { type: "cosmos-sdk/MsgCreateGroupResponse"; @@ -74,14 +73,14 @@ export interface MsgCreateGroupResponseAminoMsg { } /** MsgCreateGroupResponse is the Msg/CreateGroup response type. */ export interface MsgCreateGroupResponseSDKType { - group_id: Long; + group_id: bigint; } /** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */ export interface MsgUpdateGroupMembers { /** admin is the account address of the group admin. */ admin: string; /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** * member_updates is the list of members to update, * set weight to 0 to remove a member. @@ -95,9 +94,9 @@ export interface MsgUpdateGroupMembersProtoMsg { /** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */ export interface MsgUpdateGroupMembersAmino { /** admin is the account address of the group admin. */ - admin: string; + admin?: string; /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** * member_updates is the list of members to update, * set weight to 0 to remove a member. @@ -111,7 +110,7 @@ export interface MsgUpdateGroupMembersAminoMsg { /** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */ export interface MsgUpdateGroupMembersSDKType { admin: string; - group_id: Long; + group_id: bigint; member_updates: MemberRequestSDKType[]; } /** MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type. */ @@ -136,7 +135,7 @@ export interface MsgUpdateGroupAdmin { /** admin is the current account address of the group admin. */ admin: string; /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** new_admin is the group new admin account address. */ newAdmin: string; } @@ -147,11 +146,11 @@ export interface MsgUpdateGroupAdminProtoMsg { /** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */ export interface MsgUpdateGroupAdminAmino { /** admin is the current account address of the group admin. */ - admin: string; + admin?: string; /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** new_admin is the group new admin account address. */ - new_admin: string; + new_admin?: string; } export interface MsgUpdateGroupAdminAminoMsg { type: "cosmos-sdk/MsgUpdateGroupAdmin"; @@ -160,7 +159,7 @@ export interface MsgUpdateGroupAdminAminoMsg { /** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */ export interface MsgUpdateGroupAdminSDKType { admin: string; - group_id: Long; + group_id: bigint; new_admin: string; } /** MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. */ @@ -185,7 +184,7 @@ export interface MsgUpdateGroupMetadata { /** admin is the account address of the group admin. */ admin: string; /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** metadata is the updated group's metadata. */ metadata: string; } @@ -196,11 +195,11 @@ export interface MsgUpdateGroupMetadataProtoMsg { /** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */ export interface MsgUpdateGroupMetadataAmino { /** admin is the account address of the group admin. */ - admin: string; + admin?: string; /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** metadata is the updated group's metadata. */ - metadata: string; + metadata?: string; } export interface MsgUpdateGroupMetadataAminoMsg { type: "cosmos-sdk/MsgUpdateGroupMetadata"; @@ -209,7 +208,7 @@ export interface MsgUpdateGroupMetadataAminoMsg { /** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */ export interface MsgUpdateGroupMetadataSDKType { admin: string; - group_id: Long; + group_id: bigint; metadata: string; } /** MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type. */ @@ -234,11 +233,11 @@ export interface MsgCreateGroupPolicy { /** admin is the account address of the group admin. */ admin: string; /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** metadata is any arbitrary metadata attached to the group policy. */ metadata: string; /** decision_policy specifies the group policy's decision policy. */ - decisionPolicy: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; + decisionPolicy?: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; } export interface MsgCreateGroupPolicyProtoMsg { typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicy"; @@ -250,11 +249,11 @@ export type MsgCreateGroupPolicyEncoded = Omit): MsgCreateGroup; @@ -819,8 +819,9 @@ export declare const MsgCreateGroup: { toProtoMsg(message: MsgCreateGroup): MsgCreateGroupProtoMsg; }; export declare const MsgCreateGroupResponse: { - encode(message: MsgCreateGroupResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateGroupResponse; + typeUrl: string; + encode(message: MsgCreateGroupResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupResponse; fromJSON(object: any): MsgCreateGroupResponse; toJSON(message: MsgCreateGroupResponse): unknown; fromPartial(object: Partial): MsgCreateGroupResponse; @@ -833,8 +834,9 @@ export declare const MsgCreateGroupResponse: { toProtoMsg(message: MsgCreateGroupResponse): MsgCreateGroupResponseProtoMsg; }; export declare const MsgUpdateGroupMembers: { - encode(message: MsgUpdateGroupMembers, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupMembers; + typeUrl: string; + encode(message: MsgUpdateGroupMembers, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMembers; fromJSON(object: any): MsgUpdateGroupMembers; toJSON(message: MsgUpdateGroupMembers): unknown; fromPartial(object: Partial): MsgUpdateGroupMembers; @@ -847,8 +849,9 @@ export declare const MsgUpdateGroupMembers: { toProtoMsg(message: MsgUpdateGroupMembers): MsgUpdateGroupMembersProtoMsg; }; export declare const MsgUpdateGroupMembersResponse: { - encode(_: MsgUpdateGroupMembersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupMembersResponse; + typeUrl: string; + encode(_: MsgUpdateGroupMembersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMembersResponse; fromJSON(_: any): MsgUpdateGroupMembersResponse; toJSON(_: MsgUpdateGroupMembersResponse): unknown; fromPartial(_: Partial): MsgUpdateGroupMembersResponse; @@ -861,8 +864,9 @@ export declare const MsgUpdateGroupMembersResponse: { toProtoMsg(message: MsgUpdateGroupMembersResponse): MsgUpdateGroupMembersResponseProtoMsg; }; export declare const MsgUpdateGroupAdmin: { - encode(message: MsgUpdateGroupAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupAdmin; + typeUrl: string; + encode(message: MsgUpdateGroupAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupAdmin; fromJSON(object: any): MsgUpdateGroupAdmin; toJSON(message: MsgUpdateGroupAdmin): unknown; fromPartial(object: Partial): MsgUpdateGroupAdmin; @@ -875,8 +879,9 @@ export declare const MsgUpdateGroupAdmin: { toProtoMsg(message: MsgUpdateGroupAdmin): MsgUpdateGroupAdminProtoMsg; }; export declare const MsgUpdateGroupAdminResponse: { - encode(_: MsgUpdateGroupAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupAdminResponse; + typeUrl: string; + encode(_: MsgUpdateGroupAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupAdminResponse; fromJSON(_: any): MsgUpdateGroupAdminResponse; toJSON(_: MsgUpdateGroupAdminResponse): unknown; fromPartial(_: Partial): MsgUpdateGroupAdminResponse; @@ -889,8 +894,9 @@ export declare const MsgUpdateGroupAdminResponse: { toProtoMsg(message: MsgUpdateGroupAdminResponse): MsgUpdateGroupAdminResponseProtoMsg; }; export declare const MsgUpdateGroupMetadata: { - encode(message: MsgUpdateGroupMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupMetadata; + typeUrl: string; + encode(message: MsgUpdateGroupMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMetadata; fromJSON(object: any): MsgUpdateGroupMetadata; toJSON(message: MsgUpdateGroupMetadata): unknown; fromPartial(object: Partial): MsgUpdateGroupMetadata; @@ -903,8 +909,9 @@ export declare const MsgUpdateGroupMetadata: { toProtoMsg(message: MsgUpdateGroupMetadata): MsgUpdateGroupMetadataProtoMsg; }; export declare const MsgUpdateGroupMetadataResponse: { - encode(_: MsgUpdateGroupMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupMetadataResponse; + typeUrl: string; + encode(_: MsgUpdateGroupMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMetadataResponse; fromJSON(_: any): MsgUpdateGroupMetadataResponse; toJSON(_: MsgUpdateGroupMetadataResponse): unknown; fromPartial(_: Partial): MsgUpdateGroupMetadataResponse; @@ -917,8 +924,9 @@ export declare const MsgUpdateGroupMetadataResponse: { toProtoMsg(message: MsgUpdateGroupMetadataResponse): MsgUpdateGroupMetadataResponseProtoMsg; }; export declare const MsgCreateGroupPolicy: { - encode(message: MsgCreateGroupPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateGroupPolicy; + typeUrl: string; + encode(message: MsgCreateGroupPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupPolicy; fromJSON(object: any): MsgCreateGroupPolicy; toJSON(message: MsgCreateGroupPolicy): unknown; fromPartial(object: Partial): MsgCreateGroupPolicy; @@ -931,8 +939,9 @@ export declare const MsgCreateGroupPolicy: { toProtoMsg(message: MsgCreateGroupPolicy): MsgCreateGroupPolicyProtoMsg; }; export declare const MsgCreateGroupPolicyResponse: { - encode(message: MsgCreateGroupPolicyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateGroupPolicyResponse; + typeUrl: string; + encode(message: MsgCreateGroupPolicyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupPolicyResponse; fromJSON(object: any): MsgCreateGroupPolicyResponse; toJSON(message: MsgCreateGroupPolicyResponse): unknown; fromPartial(object: Partial): MsgCreateGroupPolicyResponse; @@ -945,8 +954,9 @@ export declare const MsgCreateGroupPolicyResponse: { toProtoMsg(message: MsgCreateGroupPolicyResponse): MsgCreateGroupPolicyResponseProtoMsg; }; export declare const MsgUpdateGroupPolicyAdmin: { - encode(message: MsgUpdateGroupPolicyAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupPolicyAdmin; + typeUrl: string; + encode(message: MsgUpdateGroupPolicyAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyAdmin; fromJSON(object: any): MsgUpdateGroupPolicyAdmin; toJSON(message: MsgUpdateGroupPolicyAdmin): unknown; fromPartial(object: Partial): MsgUpdateGroupPolicyAdmin; @@ -959,8 +969,9 @@ export declare const MsgUpdateGroupPolicyAdmin: { toProtoMsg(message: MsgUpdateGroupPolicyAdmin): MsgUpdateGroupPolicyAdminProtoMsg; }; export declare const MsgUpdateGroupPolicyAdminResponse: { - encode(_: MsgUpdateGroupPolicyAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupPolicyAdminResponse; + typeUrl: string; + encode(_: MsgUpdateGroupPolicyAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyAdminResponse; fromJSON(_: any): MsgUpdateGroupPolicyAdminResponse; toJSON(_: MsgUpdateGroupPolicyAdminResponse): unknown; fromPartial(_: Partial): MsgUpdateGroupPolicyAdminResponse; @@ -973,8 +984,9 @@ export declare const MsgUpdateGroupPolicyAdminResponse: { toProtoMsg(message: MsgUpdateGroupPolicyAdminResponse): MsgUpdateGroupPolicyAdminResponseProtoMsg; }; export declare const MsgCreateGroupWithPolicy: { - encode(message: MsgCreateGroupWithPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateGroupWithPolicy; + typeUrl: string; + encode(message: MsgCreateGroupWithPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupWithPolicy; fromJSON(object: any): MsgCreateGroupWithPolicy; toJSON(message: MsgCreateGroupWithPolicy): unknown; fromPartial(object: Partial): MsgCreateGroupWithPolicy; @@ -987,8 +999,9 @@ export declare const MsgCreateGroupWithPolicy: { toProtoMsg(message: MsgCreateGroupWithPolicy): MsgCreateGroupWithPolicyProtoMsg; }; export declare const MsgCreateGroupWithPolicyResponse: { - encode(message: MsgCreateGroupWithPolicyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateGroupWithPolicyResponse; + typeUrl: string; + encode(message: MsgCreateGroupWithPolicyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupWithPolicyResponse; fromJSON(object: any): MsgCreateGroupWithPolicyResponse; toJSON(message: MsgCreateGroupWithPolicyResponse): unknown; fromPartial(object: Partial): MsgCreateGroupWithPolicyResponse; @@ -1001,8 +1014,9 @@ export declare const MsgCreateGroupWithPolicyResponse: { toProtoMsg(message: MsgCreateGroupWithPolicyResponse): MsgCreateGroupWithPolicyResponseProtoMsg; }; export declare const MsgUpdateGroupPolicyDecisionPolicy: { - encode(message: MsgUpdateGroupPolicyDecisionPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupPolicyDecisionPolicy; + typeUrl: string; + encode(message: MsgUpdateGroupPolicyDecisionPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyDecisionPolicy; fromJSON(object: any): MsgUpdateGroupPolicyDecisionPolicy; toJSON(message: MsgUpdateGroupPolicyDecisionPolicy): unknown; fromPartial(object: Partial): MsgUpdateGroupPolicyDecisionPolicy; @@ -1015,8 +1029,9 @@ export declare const MsgUpdateGroupPolicyDecisionPolicy: { toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicy): MsgUpdateGroupPolicyDecisionPolicyProtoMsg; }; export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: { - encode(_: MsgUpdateGroupPolicyDecisionPolicyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupPolicyDecisionPolicyResponse; + typeUrl: string; + encode(_: MsgUpdateGroupPolicyDecisionPolicyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyDecisionPolicyResponse; fromJSON(_: any): MsgUpdateGroupPolicyDecisionPolicyResponse; toJSON(_: MsgUpdateGroupPolicyDecisionPolicyResponse): unknown; fromPartial(_: Partial): MsgUpdateGroupPolicyDecisionPolicyResponse; @@ -1029,8 +1044,9 @@ export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: { toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicyResponse): MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg; }; export declare const MsgUpdateGroupPolicyMetadata: { - encode(message: MsgUpdateGroupPolicyMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupPolicyMetadata; + typeUrl: string; + encode(message: MsgUpdateGroupPolicyMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyMetadata; fromJSON(object: any): MsgUpdateGroupPolicyMetadata; toJSON(message: MsgUpdateGroupPolicyMetadata): unknown; fromPartial(object: Partial): MsgUpdateGroupPolicyMetadata; @@ -1043,8 +1059,9 @@ export declare const MsgUpdateGroupPolicyMetadata: { toProtoMsg(message: MsgUpdateGroupPolicyMetadata): MsgUpdateGroupPolicyMetadataProtoMsg; }; export declare const MsgUpdateGroupPolicyMetadataResponse: { - encode(_: MsgUpdateGroupPolicyMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateGroupPolicyMetadataResponse; + typeUrl: string; + encode(_: MsgUpdateGroupPolicyMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyMetadataResponse; fromJSON(_: any): MsgUpdateGroupPolicyMetadataResponse; toJSON(_: MsgUpdateGroupPolicyMetadataResponse): unknown; fromPartial(_: Partial): MsgUpdateGroupPolicyMetadataResponse; @@ -1057,8 +1074,9 @@ export declare const MsgUpdateGroupPolicyMetadataResponse: { toProtoMsg(message: MsgUpdateGroupPolicyMetadataResponse): MsgUpdateGroupPolicyMetadataResponseProtoMsg; }; export declare const MsgSubmitProposal: { - encode(message: MsgSubmitProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitProposal; + typeUrl: string; + encode(message: MsgSubmitProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposal; fromJSON(object: any): MsgSubmitProposal; toJSON(message: MsgSubmitProposal): unknown; fromPartial(object: Partial): MsgSubmitProposal; @@ -1071,8 +1089,9 @@ export declare const MsgSubmitProposal: { toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg; }; export declare const MsgSubmitProposalResponse: { - encode(message: MsgSubmitProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitProposalResponse; + typeUrl: string; + encode(message: MsgSubmitProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposalResponse; fromJSON(object: any): MsgSubmitProposalResponse; toJSON(message: MsgSubmitProposalResponse): unknown; fromPartial(object: Partial): MsgSubmitProposalResponse; @@ -1085,8 +1104,9 @@ export declare const MsgSubmitProposalResponse: { toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg; }; export declare const MsgWithdrawProposal: { - encode(message: MsgWithdrawProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgWithdrawProposal; + typeUrl: string; + encode(message: MsgWithdrawProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawProposal; fromJSON(object: any): MsgWithdrawProposal; toJSON(message: MsgWithdrawProposal): unknown; fromPartial(object: Partial): MsgWithdrawProposal; @@ -1099,8 +1119,9 @@ export declare const MsgWithdrawProposal: { toProtoMsg(message: MsgWithdrawProposal): MsgWithdrawProposalProtoMsg; }; export declare const MsgWithdrawProposalResponse: { - encode(_: MsgWithdrawProposalResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgWithdrawProposalResponse; + typeUrl: string; + encode(_: MsgWithdrawProposalResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawProposalResponse; fromJSON(_: any): MsgWithdrawProposalResponse; toJSON(_: MsgWithdrawProposalResponse): unknown; fromPartial(_: Partial): MsgWithdrawProposalResponse; @@ -1113,8 +1134,9 @@ export declare const MsgWithdrawProposalResponse: { toProtoMsg(message: MsgWithdrawProposalResponse): MsgWithdrawProposalResponseProtoMsg; }; export declare const MsgVote: { - encode(message: MsgVote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVote; + typeUrl: string; + encode(message: MsgVote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVote; fromJSON(object: any): MsgVote; toJSON(message: MsgVote): unknown; fromPartial(object: Partial): MsgVote; @@ -1127,8 +1149,9 @@ export declare const MsgVote: { toProtoMsg(message: MsgVote): MsgVoteProtoMsg; }; export declare const MsgVoteResponse: { - encode(_: MsgVoteResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgVoteResponse; + typeUrl: string; + encode(_: MsgVoteResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgVoteResponse; fromJSON(_: any): MsgVoteResponse; toJSON(_: MsgVoteResponse): unknown; fromPartial(_: Partial): MsgVoteResponse; @@ -1141,8 +1164,9 @@ export declare const MsgVoteResponse: { toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg; }; export declare const MsgExec: { - encode(message: MsgExec, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgExec; + typeUrl: string; + encode(message: MsgExec, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgExec; fromJSON(object: any): MsgExec; toJSON(message: MsgExec): unknown; fromPartial(object: Partial): MsgExec; @@ -1155,8 +1179,9 @@ export declare const MsgExec: { toProtoMsg(message: MsgExec): MsgExecProtoMsg; }; export declare const MsgExecResponse: { - encode(message: MsgExecResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgExecResponse; + typeUrl: string; + encode(message: MsgExecResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgExecResponse; fromJSON(object: any): MsgExecResponse; toJSON(message: MsgExecResponse): unknown; fromPartial(object: Partial): MsgExecResponse; @@ -1169,8 +1194,9 @@ export declare const MsgExecResponse: { toProtoMsg(message: MsgExecResponse): MsgExecResponseProtoMsg; }; export declare const MsgLeaveGroup: { - encode(message: MsgLeaveGroup, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgLeaveGroup; + typeUrl: string; + encode(message: MsgLeaveGroup, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgLeaveGroup; fromJSON(object: any): MsgLeaveGroup; toJSON(message: MsgLeaveGroup): unknown; fromPartial(object: Partial): MsgLeaveGroup; @@ -1183,8 +1209,9 @@ export declare const MsgLeaveGroup: { toProtoMsg(message: MsgLeaveGroup): MsgLeaveGroupProtoMsg; }; export declare const MsgLeaveGroupResponse: { - encode(_: MsgLeaveGroupResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgLeaveGroupResponse; + typeUrl: string; + encode(_: MsgLeaveGroupResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgLeaveGroupResponse; fromJSON(_: any): MsgLeaveGroupResponse; toJSON(_: MsgLeaveGroupResponse): unknown; fromPartial(_: Partial): MsgLeaveGroupResponse; @@ -1196,6 +1223,6 @@ export declare const MsgLeaveGroupResponse: { toProto(message: MsgLeaveGroupResponse): Uint8Array; toProtoMsg(message: MsgLeaveGroupResponse): MsgLeaveGroupResponseProtoMsg; }; -export declare const DecisionPolicy_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => ThresholdDecisionPolicy | PercentageDecisionPolicy | Any; +export declare const DecisionPolicy_InterfaceDecoder: (input: BinaryReader | Uint8Array) => ThresholdDecisionPolicy | PercentageDecisionPolicy | Any; export declare const DecisionPolicy_FromAmino: (content: AnyAmino) => Any; export declare const DecisionPolicy_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/group/v1/types.d.ts b/packages/api/types/codegen/cosmos/group/v1/types.d.ts index 17b827b..2b43015 100644 --- a/packages/api/types/codegen/cosmos/group/v1/types.d.ts +++ b/packages/api/types/codegen/cosmos/group/v1/types.d.ts @@ -1,8 +1,7 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** VoteOption enumerates the valid vote options for a given proposal. */ export declare enum VoteOption { /** @@ -96,13 +95,13 @@ export interface MemberProtoMsg { */ export interface MemberAmino { /** address is the member's account address. */ - address: string; + address?: string; /** weight is the member's voting weight that should be greater than 0. */ - weight: string; + weight?: string; /** metadata is any arbitrary metadata attached to the member. */ - metadata: string; + metadata?: string; /** added_at is a timestamp specifying when a member was added. */ - added_at?: TimestampAmino; + added_at?: string; } export interface MemberAminoMsg { type: "cosmos-sdk/Member"; @@ -142,11 +141,11 @@ export interface MemberRequestProtoMsg { */ export interface MemberRequestAmino { /** address is the member's account address. */ - address: string; + address?: string; /** weight is the member's voting weight that should be greater than 0. */ - weight: string; + weight?: string; /** metadata is any arbitrary metadata attached to the member. */ - metadata: string; + metadata?: string; } export interface MemberRequestAminoMsg { type: "cosmos-sdk/MemberRequest"; @@ -171,14 +170,14 @@ export interface MemberRequestSDKType { * given by `windows`. */ export interface ThresholdDecisionPolicy { - $typeUrl?: string; + $typeUrl?: "/cosmos.group.v1.ThresholdDecisionPolicy"; /** * threshold is the minimum weighted sum of `YES` votes that must be met or * exceeded for a proposal to succeed. */ threshold: string; /** windows defines the different windows for voting and execution. */ - windows: DecisionPolicyWindows; + windows?: DecisionPolicyWindows; } export interface ThresholdDecisionPolicyProtoMsg { typeUrl: "/cosmos.group.v1.ThresholdDecisionPolicy"; @@ -197,7 +196,7 @@ export interface ThresholdDecisionPolicyAmino { * threshold is the minimum weighted sum of `YES` votes that must be met or * exceeded for a proposal to succeed. */ - threshold: string; + threshold?: string; /** windows defines the different windows for voting and execution. */ windows?: DecisionPolicyWindowsAmino; } @@ -214,9 +213,9 @@ export interface ThresholdDecisionPolicyAminoMsg { * given by `windows`. */ export interface ThresholdDecisionPolicySDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.group.v1.ThresholdDecisionPolicy"; threshold: string; - windows: DecisionPolicyWindowsSDKType; + windows?: DecisionPolicyWindowsSDKType; } /** * PercentageDecisionPolicy is a decision policy where a proposal passes when @@ -227,14 +226,14 @@ export interface ThresholdDecisionPolicySDKType { * given by `windows`. */ export interface PercentageDecisionPolicy { - $typeUrl?: string; + $typeUrl?: "/cosmos.group.v1.PercentageDecisionPolicy"; /** * percentage is the minimum percentage the weighted sum of `YES` votes must * meet for a proposal to succeed. */ percentage: string; /** windows defines the different windows for voting and execution. */ - windows: DecisionPolicyWindows; + windows?: DecisionPolicyWindows; } export interface PercentageDecisionPolicyProtoMsg { typeUrl: "/cosmos.group.v1.PercentageDecisionPolicy"; @@ -253,7 +252,7 @@ export interface PercentageDecisionPolicyAmino { * percentage is the minimum percentage the weighted sum of `YES` votes must * meet for a proposal to succeed. */ - percentage: string; + percentage?: string; /** windows defines the different windows for voting and execution. */ windows?: DecisionPolicyWindowsAmino; } @@ -270,9 +269,9 @@ export interface PercentageDecisionPolicyAminoMsg { * given by `windows`. */ export interface PercentageDecisionPolicySDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.group.v1.PercentageDecisionPolicy"; percentage: string; - windows: DecisionPolicyWindowsSDKType; + windows?: DecisionPolicyWindowsSDKType; } /** DecisionPolicyWindows defines the different windows for voting and execution. */ export interface DecisionPolicyWindows { @@ -334,7 +333,7 @@ export interface DecisionPolicyWindowsSDKType { /** GroupInfo represents the high-level on-chain information for a group. */ export interface GroupInfo { /** id is the unique ID of the group. */ - id: Long; + id: bigint; /** admin is the account address of the group's admin. */ admin: string; /** metadata is any arbitrary metadata to attached to the group. */ @@ -345,7 +344,7 @@ export interface GroupInfo { * or any member is added or removed this version is incremented and will * cause proposals based on older versions of this group to fail */ - version: Long; + version: bigint; /** total_weight is the sum of the group members' weights. */ totalWeight: string; /** created_at is a timestamp specifying when a group was created. */ @@ -358,22 +357,22 @@ export interface GroupInfoProtoMsg { /** GroupInfo represents the high-level on-chain information for a group. */ export interface GroupInfoAmino { /** id is the unique ID of the group. */ - id: string; + id?: string; /** admin is the account address of the group's admin. */ - admin: string; + admin?: string; /** metadata is any arbitrary metadata to attached to the group. */ - metadata: string; + metadata?: string; /** * version is used to track changes to a group's membership structure that * would break existing proposals. Whenever any members weight is changed, * or any member is added or removed this version is incremented and will * cause proposals based on older versions of this group to fail */ - version: string; + version?: string; /** total_weight is the sum of the group members' weights. */ - total_weight: string; + total_weight?: string; /** created_at is a timestamp specifying when a group was created. */ - created_at?: TimestampAmino; + created_at?: string; } export interface GroupInfoAminoMsg { type: "cosmos-sdk/GroupInfo"; @@ -381,19 +380,19 @@ export interface GroupInfoAminoMsg { } /** GroupInfo represents the high-level on-chain information for a group. */ export interface GroupInfoSDKType { - id: Long; + id: bigint; admin: string; metadata: string; - version: Long; + version: bigint; total_weight: string; created_at: TimestampSDKType; } /** GroupMember represents the relationship between a group and a member. */ export interface GroupMember { /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** member is the member data. */ - member: Member; + member?: Member; } export interface GroupMemberProtoMsg { typeUrl: "/cosmos.group.v1.GroupMember"; @@ -402,7 +401,7 @@ export interface GroupMemberProtoMsg { /** GroupMember represents the relationship between a group and a member. */ export interface GroupMemberAmino { /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** member is the member data. */ member?: MemberAmino; } @@ -412,15 +411,15 @@ export interface GroupMemberAminoMsg { } /** GroupMember represents the relationship between a group and a member. */ export interface GroupMemberSDKType { - group_id: Long; - member: MemberSDKType; + group_id: bigint; + member?: MemberSDKType; } /** GroupPolicyInfo represents the high-level on-chain information for a group policy. */ export interface GroupPolicyInfo { /** address is the account address of group policy. */ address: string; /** group_id is the unique ID of the group. */ - groupId: Long; + groupId: bigint; /** admin is the account address of the group admin. */ admin: string; /** metadata is any arbitrary metadata to attached to the group policy. */ @@ -429,9 +428,9 @@ export interface GroupPolicyInfo { * version is used to track changes to a group's GroupPolicyInfo structure that * would create a different result on a running proposal. */ - version: Long; + version: bigint; /** decision_policy specifies the group policy's decision policy. */ - decisionPolicy: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; + decisionPolicy?: (ThresholdDecisionPolicy & PercentageDecisionPolicy & Any) | undefined; /** created_at is a timestamp specifying when a group policy was created. */ createdAt: Timestamp; } @@ -445,22 +444,22 @@ export type GroupPolicyInfoEncoded = Omit & { /** GroupPolicyInfo represents the high-level on-chain information for a group policy. */ export interface GroupPolicyInfoAmino { /** address is the account address of group policy. */ - address: string; + address?: string; /** group_id is the unique ID of the group. */ - group_id: string; + group_id?: string; /** admin is the account address of the group admin. */ - admin: string; + admin?: string; /** metadata is any arbitrary metadata to attached to the group policy. */ - metadata: string; + metadata?: string; /** * version is used to track changes to a group's GroupPolicyInfo structure that * would create a different result on a running proposal. */ - version: string; + version?: string; /** decision_policy specifies the group policy's decision policy. */ decision_policy?: AnyAmino; /** created_at is a timestamp specifying when a group policy was created. */ - created_at?: TimestampAmino; + created_at?: string; } export interface GroupPolicyInfoAminoMsg { type: "cosmos-sdk/GroupPolicyInfo"; @@ -469,11 +468,11 @@ export interface GroupPolicyInfoAminoMsg { /** GroupPolicyInfo represents the high-level on-chain information for a group policy. */ export interface GroupPolicyInfoSDKType { address: string; - group_id: Long; + group_id: bigint; admin: string; metadata: string; - version: Long; - decision_policy: ThresholdDecisionPolicySDKType | PercentageDecisionPolicySDKType | AnySDKType | undefined; + version: bigint; + decision_policy?: ThresholdDecisionPolicySDKType | PercentageDecisionPolicySDKType | AnySDKType | undefined; created_at: TimestampSDKType; } /** @@ -484,7 +483,7 @@ export interface GroupPolicyInfoSDKType { */ export interface Proposal { /** id is the unique id of the proposal. */ - id: Long; + id: bigint; /** group_policy_address is the account address of group policy. */ groupPolicyAddress: string; /** metadata is any arbitrary metadata to attached to the proposal. */ @@ -497,14 +496,14 @@ export interface Proposal { * group_version tracks the version of the group at proposal submission. * This field is here for informational purposes only. */ - groupVersion: Long; + groupVersion: bigint; /** * group_policy_version tracks the version of the group policy at proposal submission. * When a decision policy is changed, existing proposals from previous policy * versions will become invalid with the `ABORTED` status. * This field is here for informational purposes only. */ - groupPolicyVersion: Long; + groupPolicyVersion: bigint; /** status represents the high level position in the life cycle of the proposal. Initial value is Submitted. */ status: ProposalStatus; /** @@ -539,29 +538,29 @@ export interface ProposalProtoMsg { */ export interface ProposalAmino { /** id is the unique id of the proposal. */ - id: string; + id?: string; /** group_policy_address is the account address of group policy. */ - group_policy_address: string; + group_policy_address?: string; /** metadata is any arbitrary metadata to attached to the proposal. */ - metadata: string; + metadata?: string; /** proposers are the account addresses of the proposers. */ - proposers: string[]; + proposers?: string[]; /** submit_time is a timestamp specifying when a proposal was submitted. */ - submit_time?: TimestampAmino; + submit_time?: string; /** * group_version tracks the version of the group at proposal submission. * This field is here for informational purposes only. */ - group_version: string; + group_version?: string; /** * group_policy_version tracks the version of the group policy at proposal submission. * When a decision policy is changed, existing proposals from previous policy * versions will become invalid with the `ABORTED` status. * This field is here for informational purposes only. */ - group_policy_version: string; + group_policy_version?: string; /** status represents the high level position in the life cycle of the proposal. Initial value is Submitted. */ - status: ProposalStatus; + status?: ProposalStatus; /** * final_tally_result contains the sums of all weighted votes for this * proposal for each vote option. It is empty at submission, and only @@ -576,11 +575,11 @@ export interface ProposalAmino { * at this point, and the `final_tally_result`and `status` fields will be * accordingly updated. */ - voting_period_end?: TimestampAmino; + voting_period_end?: string; /** executor_result is the final result of the proposal execution. Initial value is NotRun. */ - executor_result: ProposalExecutorResult; + executor_result?: ProposalExecutorResult; /** messages is a list of `sdk.Msg`s that will be executed if the proposal passes. */ - messages: AnyAmino[]; + messages?: AnyAmino[]; } export interface ProposalAminoMsg { type: "cosmos-sdk/Proposal"; @@ -593,13 +592,13 @@ export interface ProposalAminoMsg { * passes as well as some optional metadata associated with the proposal. */ export interface ProposalSDKType { - id: Long; + id: bigint; group_policy_address: string; metadata: string; proposers: string[]; submit_time: TimestampSDKType; - group_version: Long; - group_policy_version: Long; + group_version: bigint; + group_policy_version: bigint; status: ProposalStatus; final_tally_result: TallyResultSDKType; voting_period_end: TimestampSDKType; @@ -624,13 +623,13 @@ export interface TallyResultProtoMsg { /** TallyResult represents the sum of weighted votes for each vote option. */ export interface TallyResultAmino { /** yes_count is the weighted sum of yes votes. */ - yes_count: string; + yes_count?: string; /** abstain_count is the weighted sum of abstainers. */ - abstain_count: string; + abstain_count?: string; /** no_count is the weighted sum of no votes. */ - no_count: string; + no_count?: string; /** no_with_veto_count is the weighted sum of veto. */ - no_with_veto_count: string; + no_with_veto_count?: string; } export interface TallyResultAminoMsg { type: "cosmos-sdk/TallyResult"; @@ -646,7 +645,7 @@ export interface TallyResultSDKType { /** Vote represents a vote for a proposal. */ export interface Vote { /** proposal is the unique ID of the proposal. */ - proposalId: Long; + proposalId: bigint; /** voter is the account address of the voter. */ voter: string; /** option is the voter's choice on the proposal. */ @@ -663,15 +662,15 @@ export interface VoteProtoMsg { /** Vote represents a vote for a proposal. */ export interface VoteAmino { /** proposal is the unique ID of the proposal. */ - proposal_id: string; + proposal_id?: string; /** voter is the account address of the voter. */ - voter: string; + voter?: string; /** option is the voter's choice on the proposal. */ - option: VoteOption; + option?: VoteOption; /** metadata is any arbitrary metadata to attached to the vote. */ - metadata: string; + metadata?: string; /** submit_time is the timestamp when the vote was submitted. */ - submit_time?: TimestampAmino; + submit_time?: string; } export interface VoteAminoMsg { type: "cosmos-sdk/Vote"; @@ -679,15 +678,16 @@ export interface VoteAminoMsg { } /** Vote represents a vote for a proposal. */ export interface VoteSDKType { - proposal_id: Long; + proposal_id: bigint; voter: string; option: VoteOption; metadata: string; submit_time: TimestampSDKType; } export declare const Member: { - encode(message: Member, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Member; + typeUrl: string; + encode(message: Member, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Member; fromJSON(object: any): Member; toJSON(message: Member): unknown; fromPartial(object: Partial): Member; @@ -700,8 +700,9 @@ export declare const Member: { toProtoMsg(message: Member): MemberProtoMsg; }; export declare const MemberRequest: { - encode(message: MemberRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MemberRequest; + typeUrl: string; + encode(message: MemberRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MemberRequest; fromJSON(object: any): MemberRequest; toJSON(message: MemberRequest): unknown; fromPartial(object: Partial): MemberRequest; @@ -714,8 +715,9 @@ export declare const MemberRequest: { toProtoMsg(message: MemberRequest): MemberRequestProtoMsg; }; export declare const ThresholdDecisionPolicy: { - encode(message: ThresholdDecisionPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ThresholdDecisionPolicy; + typeUrl: string; + encode(message: ThresholdDecisionPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ThresholdDecisionPolicy; fromJSON(object: any): ThresholdDecisionPolicy; toJSON(message: ThresholdDecisionPolicy): unknown; fromPartial(object: Partial): ThresholdDecisionPolicy; @@ -728,8 +730,9 @@ export declare const ThresholdDecisionPolicy: { toProtoMsg(message: ThresholdDecisionPolicy): ThresholdDecisionPolicyProtoMsg; }; export declare const PercentageDecisionPolicy: { - encode(message: PercentageDecisionPolicy, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PercentageDecisionPolicy; + typeUrl: string; + encode(message: PercentageDecisionPolicy, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PercentageDecisionPolicy; fromJSON(object: any): PercentageDecisionPolicy; toJSON(message: PercentageDecisionPolicy): unknown; fromPartial(object: Partial): PercentageDecisionPolicy; @@ -742,8 +745,9 @@ export declare const PercentageDecisionPolicy: { toProtoMsg(message: PercentageDecisionPolicy): PercentageDecisionPolicyProtoMsg; }; export declare const DecisionPolicyWindows: { - encode(message: DecisionPolicyWindows, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DecisionPolicyWindows; + typeUrl: string; + encode(message: DecisionPolicyWindows, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DecisionPolicyWindows; fromJSON(object: any): DecisionPolicyWindows; toJSON(message: DecisionPolicyWindows): unknown; fromPartial(object: Partial): DecisionPolicyWindows; @@ -756,8 +760,9 @@ export declare const DecisionPolicyWindows: { toProtoMsg(message: DecisionPolicyWindows): DecisionPolicyWindowsProtoMsg; }; export declare const GroupInfo: { - encode(message: GroupInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GroupInfo; + typeUrl: string; + encode(message: GroupInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GroupInfo; fromJSON(object: any): GroupInfo; toJSON(message: GroupInfo): unknown; fromPartial(object: Partial): GroupInfo; @@ -770,8 +775,9 @@ export declare const GroupInfo: { toProtoMsg(message: GroupInfo): GroupInfoProtoMsg; }; export declare const GroupMember: { - encode(message: GroupMember, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GroupMember; + typeUrl: string; + encode(message: GroupMember, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GroupMember; fromJSON(object: any): GroupMember; toJSON(message: GroupMember): unknown; fromPartial(object: Partial): GroupMember; @@ -784,8 +790,9 @@ export declare const GroupMember: { toProtoMsg(message: GroupMember): GroupMemberProtoMsg; }; export declare const GroupPolicyInfo: { - encode(message: GroupPolicyInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GroupPolicyInfo; + typeUrl: string; + encode(message: GroupPolicyInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GroupPolicyInfo; fromJSON(object: any): GroupPolicyInfo; toJSON(message: GroupPolicyInfo): unknown; fromPartial(object: Partial): GroupPolicyInfo; @@ -798,8 +805,9 @@ export declare const GroupPolicyInfo: { toProtoMsg(message: GroupPolicyInfo): GroupPolicyInfoProtoMsg; }; export declare const Proposal: { - encode(message: Proposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Proposal; + typeUrl: string; + encode(message: Proposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Proposal; fromJSON(object: any): Proposal; toJSON(message: Proposal): unknown; fromPartial(object: Partial): Proposal; @@ -812,8 +820,9 @@ export declare const Proposal: { toProtoMsg(message: Proposal): ProposalProtoMsg; }; export declare const TallyResult: { - encode(message: TallyResult, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TallyResult; + typeUrl: string; + encode(message: TallyResult, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TallyResult; fromJSON(object: any): TallyResult; toJSON(message: TallyResult): unknown; fromPartial(object: Partial): TallyResult; @@ -826,8 +835,9 @@ export declare const TallyResult: { toProtoMsg(message: TallyResult): TallyResultProtoMsg; }; export declare const Vote: { - encode(message: Vote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Vote; + typeUrl: string; + encode(message: Vote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Vote; fromJSON(object: any): Vote; toJSON(message: Vote): unknown; fromPartial(object: Partial): Vote; @@ -839,6 +849,6 @@ export declare const Vote: { toProto(message: Vote): Uint8Array; toProtoMsg(message: Vote): VoteProtoMsg; }; -export declare const DecisionPolicy_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => ThresholdDecisionPolicy | PercentageDecisionPolicy | Any; +export declare const DecisionPolicy_InterfaceDecoder: (input: BinaryReader | Uint8Array) => ThresholdDecisionPolicy | PercentageDecisionPolicy | Any; export declare const DecisionPolicy_FromAmino: (content: AnyAmino) => Any; export declare const DecisionPolicy_ToAmino: (content: Any) => AnyAmino; diff --git a/packages/api/types/codegen/cosmos/mint/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/mint/v1beta1/genesis.d.ts index 62fca06..664f153 100644 --- a/packages/api/types/codegen/cosmos/mint/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/mint/v1beta1/genesis.d.ts @@ -1,5 +1,5 @@ import { Minter, MinterAmino, MinterSDKType, Params, ParamsAmino, ParamsSDKType } from "./mint"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the mint module's genesis state. */ export interface GenesisState { /** minter is a space for holding current inflation information. */ @@ -28,8 +28,9 @@ export interface GenesisStateSDKType { params: ParamsSDKType; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/cosmos/mint/v1beta1/mint.d.ts b/packages/api/types/codegen/cosmos/mint/v1beta1/mint.d.ts index acb1741..ad7800a 100644 --- a/packages/api/types/codegen/cosmos/mint/v1beta1/mint.d.ts +++ b/packages/api/types/codegen/cosmos/mint/v1beta1/mint.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Minter represents the minting state. */ export interface Minter { /** current annual inflation rate */ @@ -14,9 +13,9 @@ export interface MinterProtoMsg { /** Minter represents the minting state. */ export interface MinterAmino { /** current annual inflation rate */ - inflation: string; + inflation?: string; /** current annual expected provisions */ - annual_provisions: string; + annual_provisions?: string; } export interface MinterAminoMsg { type: "cosmos-sdk/Minter"; @@ -40,7 +39,7 @@ export interface Params { /** goal of percent bonded atoms */ goalBonded: string; /** expected blocks per year */ - blocksPerYear: Long; + blocksPerYear: bigint; } export interface ParamsProtoMsg { typeUrl: "/cosmos.mint.v1beta1.Params"; @@ -49,17 +48,17 @@ export interface ParamsProtoMsg { /** Params holds parameters for the mint module. */ export interface ParamsAmino { /** type of coin to mint */ - mint_denom: string; + mint_denom?: string; /** maximum annual change in inflation rate */ - inflation_rate_change: string; + inflation_rate_change?: string; /** maximum inflation rate */ - inflation_max: string; + inflation_max?: string; /** minimum inflation rate */ - inflation_min: string; + inflation_min?: string; /** goal of percent bonded atoms */ - goal_bonded: string; + goal_bonded?: string; /** expected blocks per year */ - blocks_per_year: string; + blocks_per_year?: string; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -72,11 +71,12 @@ export interface ParamsSDKType { inflation_max: string; inflation_min: string; goal_bonded: string; - blocks_per_year: Long; + blocks_per_year: bigint; } export declare const Minter: { - encode(message: Minter, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Minter; + typeUrl: string; + encode(message: Minter, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Minter; fromJSON(object: any): Minter; toJSON(message: Minter): unknown; fromPartial(object: Partial): Minter; @@ -89,8 +89,9 @@ export declare const Minter: { toProtoMsg(message: Minter): MinterProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; diff --git a/packages/api/types/codegen/cosmos/mint/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/mint/v1beta1/query.d.ts index d929876..55aa91b 100644 --- a/packages/api/types/codegen/cosmos/mint/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/mint/v1beta1/query.d.ts @@ -1,5 +1,5 @@ import { Params, ParamsAmino, ParamsSDKType } from "./mint"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { } @@ -74,7 +74,7 @@ export interface QueryInflationResponseProtoMsg { */ export interface QueryInflationResponseAmino { /** inflation is the current minting inflation value. */ - inflation: Uint8Array; + inflation?: string; } export interface QueryInflationResponseAminoMsg { type: "cosmos-sdk/QueryInflationResponse"; @@ -131,7 +131,7 @@ export interface QueryAnnualProvisionsResponseProtoMsg { */ export interface QueryAnnualProvisionsResponseAmino { /** annual_provisions is the current minting annual provisions value. */ - annual_provisions: Uint8Array; + annual_provisions?: string; } export interface QueryAnnualProvisionsResponseAminoMsg { type: "cosmos-sdk/QueryAnnualProvisionsResponse"; @@ -145,8 +145,9 @@ export interface QueryAnnualProvisionsResponseSDKType { annual_provisions: Uint8Array; } export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -159,8 +160,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -173,8 +175,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryInflationRequest: { - encode(_: QueryInflationRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryInflationRequest; + typeUrl: string; + encode(_: QueryInflationRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryInflationRequest; fromJSON(_: any): QueryInflationRequest; toJSON(_: QueryInflationRequest): unknown; fromPartial(_: Partial): QueryInflationRequest; @@ -187,8 +190,9 @@ export declare const QueryInflationRequest: { toProtoMsg(message: QueryInflationRequest): QueryInflationRequestProtoMsg; }; export declare const QueryInflationResponse: { - encode(message: QueryInflationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryInflationResponse; + typeUrl: string; + encode(message: QueryInflationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryInflationResponse; fromJSON(object: any): QueryInflationResponse; toJSON(message: QueryInflationResponse): unknown; fromPartial(object: Partial): QueryInflationResponse; @@ -201,8 +205,9 @@ export declare const QueryInflationResponse: { toProtoMsg(message: QueryInflationResponse): QueryInflationResponseProtoMsg; }; export declare const QueryAnnualProvisionsRequest: { - encode(_: QueryAnnualProvisionsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnnualProvisionsRequest; + typeUrl: string; + encode(_: QueryAnnualProvisionsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAnnualProvisionsRequest; fromJSON(_: any): QueryAnnualProvisionsRequest; toJSON(_: QueryAnnualProvisionsRequest): unknown; fromPartial(_: Partial): QueryAnnualProvisionsRequest; @@ -215,8 +220,9 @@ export declare const QueryAnnualProvisionsRequest: { toProtoMsg(message: QueryAnnualProvisionsRequest): QueryAnnualProvisionsRequestProtoMsg; }; export declare const QueryAnnualProvisionsResponse: { - encode(message: QueryAnnualProvisionsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnnualProvisionsResponse; + typeUrl: string; + encode(message: QueryAnnualProvisionsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAnnualProvisionsResponse; fromJSON(object: any): QueryAnnualProvisionsResponse; toJSON(message: QueryAnnualProvisionsResponse): unknown; fromPartial(object: Partial): QueryAnnualProvisionsResponse; diff --git a/packages/api/types/codegen/cosmos/mint/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/mint/v1beta1/query.lcd.d.ts index bab0492..ba5133f 100644 --- a/packages/api/types/codegen/cosmos/mint/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/mint/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryParamsRequest, QueryParamsResponseSDKType, QueryInflationRequest, QueryInflationResponseSDKType, QueryAnnualProvisionsRequest, QueryAnnualProvisionsResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/nft/v1beta1/event.d.ts b/packages/api/types/codegen/cosmos/nft/v1beta1/event.d.ts index 2399cd6..443dd62 100644 --- a/packages/api/types/codegen/cosmos/nft/v1beta1/event.d.ts +++ b/packages/api/types/codegen/cosmos/nft/v1beta1/event.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** EventSend is emitted on Msg/Send */ export interface EventSend { classId: string; @@ -12,10 +12,10 @@ export interface EventSendProtoMsg { } /** EventSend is emitted on Msg/Send */ export interface EventSendAmino { - class_id: string; - id: string; - sender: string; - receiver: string; + class_id?: string; + id?: string; + sender?: string; + receiver?: string; } export interface EventSendAminoMsg { type: "cosmos-sdk/EventSend"; @@ -40,9 +40,9 @@ export interface EventMintProtoMsg { } /** EventMint is emitted on Mint */ export interface EventMintAmino { - class_id: string; - id: string; - owner: string; + class_id?: string; + id?: string; + owner?: string; } export interface EventMintAminoMsg { type: "cosmos-sdk/EventMint"; @@ -66,9 +66,9 @@ export interface EventBurnProtoMsg { } /** EventBurn is emitted on Burn */ export interface EventBurnAmino { - class_id: string; - id: string; - owner: string; + class_id?: string; + id?: string; + owner?: string; } export interface EventBurnAminoMsg { type: "cosmos-sdk/EventBurn"; @@ -81,8 +81,9 @@ export interface EventBurnSDKType { owner: string; } export declare const EventSend: { - encode(message: EventSend, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventSend; + typeUrl: string; + encode(message: EventSend, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventSend; fromJSON(object: any): EventSend; toJSON(message: EventSend): unknown; fromPartial(object: Partial): EventSend; @@ -95,8 +96,9 @@ export declare const EventSend: { toProtoMsg(message: EventSend): EventSendProtoMsg; }; export declare const EventMint: { - encode(message: EventMint, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventMint; + typeUrl: string; + encode(message: EventMint, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventMint; fromJSON(object: any): EventMint; toJSON(message: EventMint): unknown; fromPartial(object: Partial): EventMint; @@ -109,8 +111,9 @@ export declare const EventMint: { toProtoMsg(message: EventMint): EventMintProtoMsg; }; export declare const EventBurn: { - encode(message: EventBurn, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventBurn; + typeUrl: string; + encode(message: EventBurn, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventBurn; fromJSON(object: any): EventBurn; toJSON(message: EventBurn): unknown; fromPartial(object: Partial): EventBurn; diff --git a/packages/api/types/codegen/cosmos/nft/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/nft/v1beta1/genesis.d.ts index 7e989b4..9053517 100644 --- a/packages/api/types/codegen/cosmos/nft/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/nft/v1beta1/genesis.d.ts @@ -1,5 +1,5 @@ import { Class, ClassAmino, ClassSDKType, NFT, NFTAmino, NFTSDKType } from "./nft"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the nft module's genesis state. */ export interface GenesisState { /** class defines the class of the nft type. */ @@ -13,8 +13,8 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the nft module's genesis state. */ export interface GenesisStateAmino { /** class defines the class of the nft type. */ - classes: ClassAmino[]; - entries: EntryAmino[]; + classes?: ClassAmino[]; + entries?: EntryAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -39,9 +39,9 @@ export interface EntryProtoMsg { /** Entry Defines all nft owned by a person */ export interface EntryAmino { /** owner is the owner address of the following nft */ - owner: string; + owner?: string; /** nfts is a group of nfts of the same owner */ - nfts: NFTAmino[]; + nfts?: NFTAmino[]; } export interface EntryAminoMsg { type: "cosmos-sdk/Entry"; @@ -53,8 +53,9 @@ export interface EntrySDKType { nfts: NFTSDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; @@ -67,8 +68,9 @@ export declare const GenesisState: { toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const Entry: { - encode(message: Entry, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Entry; + typeUrl: string; + encode(message: Entry, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Entry; fromJSON(object: any): Entry; toJSON(message: Entry): unknown; fromPartial(object: Partial): Entry; diff --git a/packages/api/types/codegen/cosmos/nft/v1beta1/nft.d.ts b/packages/api/types/codegen/cosmos/nft/v1beta1/nft.d.ts index 2e611b4..c9efbaf 100644 --- a/packages/api/types/codegen/cosmos/nft/v1beta1/nft.d.ts +++ b/packages/api/types/codegen/cosmos/nft/v1beta1/nft.d.ts @@ -1,5 +1,5 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Class defines the class of the nft type. */ export interface Class { /** id defines the unique identifier of the NFT classification, similar to the contract address of ERC721 */ @@ -15,7 +15,7 @@ export interface Class { /** uri_hash is a hash of the document pointed by uri. Optional */ uriHash: string; /** data is the app specific metadata of the NFT class. Optional */ - data: Any; + data?: Any; } export interface ClassProtoMsg { typeUrl: "/cosmos.nft.v1beta1.Class"; @@ -24,17 +24,17 @@ export interface ClassProtoMsg { /** Class defines the class of the nft type. */ export interface ClassAmino { /** id defines the unique identifier of the NFT classification, similar to the contract address of ERC721 */ - id: string; + id?: string; /** name defines the human-readable name of the NFT classification. Optional */ - name: string; + name?: string; /** symbol is an abbreviated name for nft classification. Optional */ - symbol: string; + symbol?: string; /** description is a brief description of nft classification. Optional */ - description: string; + description?: string; /** uri for the class metadata stored off chain. It can define schema for Class and NFT `Data` attributes. Optional */ - uri: string; + uri?: string; /** uri_hash is a hash of the document pointed by uri. Optional */ - uri_hash: string; + uri_hash?: string; /** data is the app specific metadata of the NFT class. Optional */ data?: AnyAmino; } @@ -50,7 +50,7 @@ export interface ClassSDKType { description: string; uri: string; uri_hash: string; - data: AnySDKType; + data?: AnySDKType; } /** NFT defines the NFT. */ export interface NFT { @@ -63,7 +63,7 @@ export interface NFT { /** uri_hash is a hash of the document pointed by uri */ uriHash: string; /** data is an app specific data of the NFT. Optional */ - data: Any; + data?: Any; } export interface NFTProtoMsg { typeUrl: "/cosmos.nft.v1beta1.NFT"; @@ -72,13 +72,13 @@ export interface NFTProtoMsg { /** NFT defines the NFT. */ export interface NFTAmino { /** class_id associated with the NFT, similar to the contract address of ERC721 */ - class_id: string; + class_id?: string; /** id is a unique identifier of the NFT */ - id: string; + id?: string; /** uri for the NFT metadata stored off chain */ - uri: string; + uri?: string; /** uri_hash is a hash of the document pointed by uri */ - uri_hash: string; + uri_hash?: string; /** data is an app specific data of the NFT. Optional */ data?: AnyAmino; } @@ -92,11 +92,12 @@ export interface NFTSDKType { id: string; uri: string; uri_hash: string; - data: AnySDKType; + data?: AnySDKType; } export declare const Class: { - encode(message: Class, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Class; + typeUrl: string; + encode(message: Class, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Class; fromJSON(object: any): Class; toJSON(message: Class): unknown; fromPartial(object: Partial): Class; @@ -109,8 +110,9 @@ export declare const Class: { toProtoMsg(message: Class): ClassProtoMsg; }; export declare const NFT: { - encode(message: NFT, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): NFT; + typeUrl: string; + encode(message: NFT, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): NFT; fromJSON(object: any): NFT; toJSON(message: NFT): unknown; fromPartial(object: Partial): NFT; diff --git a/packages/api/types/codegen/cosmos/nft/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/nft/v1beta1/query.d.ts index 6a81eeb..fb5fb02 100644 --- a/packages/api/types/codegen/cosmos/nft/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/nft/v1beta1/query.d.ts @@ -1,7 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { NFT, NFTAmino, NFTSDKType, Class, ClassAmino, ClassSDKType } from "./nft"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryBalanceRequest is the request type for the Query/Balance RPC method */ export interface QueryBalanceRequest { classId: string; @@ -13,8 +12,8 @@ export interface QueryBalanceRequestProtoMsg { } /** QueryBalanceRequest is the request type for the Query/Balance RPC method */ export interface QueryBalanceRequestAmino { - class_id: string; - owner: string; + class_id?: string; + owner?: string; } export interface QueryBalanceRequestAminoMsg { type: "cosmos-sdk/QueryBalanceRequest"; @@ -27,7 +26,7 @@ export interface QueryBalanceRequestSDKType { } /** QueryBalanceResponse is the response type for the Query/Balance RPC method */ export interface QueryBalanceResponse { - amount: Long; + amount: bigint; } export interface QueryBalanceResponseProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryBalanceResponse"; @@ -35,7 +34,7 @@ export interface QueryBalanceResponseProtoMsg { } /** QueryBalanceResponse is the response type for the Query/Balance RPC method */ export interface QueryBalanceResponseAmino { - amount: string; + amount?: string; } export interface QueryBalanceResponseAminoMsg { type: "cosmos-sdk/QueryBalanceResponse"; @@ -43,7 +42,7 @@ export interface QueryBalanceResponseAminoMsg { } /** QueryBalanceResponse is the response type for the Query/Balance RPC method */ export interface QueryBalanceResponseSDKType { - amount: Long; + amount: bigint; } /** QueryOwnerRequest is the request type for the Query/Owner RPC method */ export interface QueryOwnerRequest { @@ -56,8 +55,8 @@ export interface QueryOwnerRequestProtoMsg { } /** QueryOwnerRequest is the request type for the Query/Owner RPC method */ export interface QueryOwnerRequestAmino { - class_id: string; - id: string; + class_id?: string; + id?: string; } export interface QueryOwnerRequestAminoMsg { type: "cosmos-sdk/QueryOwnerRequest"; @@ -78,7 +77,7 @@ export interface QueryOwnerResponseProtoMsg { } /** QueryOwnerResponse is the response type for the Query/Owner RPC method */ export interface QueryOwnerResponseAmino { - owner: string; + owner?: string; } export interface QueryOwnerResponseAminoMsg { type: "cosmos-sdk/QueryOwnerResponse"; @@ -98,7 +97,7 @@ export interface QuerySupplyRequestProtoMsg { } /** QuerySupplyRequest is the request type for the Query/Supply RPC method */ export interface QuerySupplyRequestAmino { - class_id: string; + class_id?: string; } export interface QuerySupplyRequestAminoMsg { type: "cosmos-sdk/QuerySupplyRequest"; @@ -110,7 +109,7 @@ export interface QuerySupplyRequestSDKType { } /** QuerySupplyResponse is the response type for the Query/Supply RPC method */ export interface QuerySupplyResponse { - amount: Long; + amount: bigint; } export interface QuerySupplyResponseProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QuerySupplyResponse"; @@ -118,7 +117,7 @@ export interface QuerySupplyResponseProtoMsg { } /** QuerySupplyResponse is the response type for the Query/Supply RPC method */ export interface QuerySupplyResponseAmino { - amount: string; + amount?: string; } export interface QuerySupplyResponseAminoMsg { type: "cosmos-sdk/QuerySupplyResponse"; @@ -126,13 +125,13 @@ export interface QuerySupplyResponseAminoMsg { } /** QuerySupplyResponse is the response type for the Query/Supply RPC method */ export interface QuerySupplyResponseSDKType { - amount: Long; + amount: bigint; } /** QueryNFTstRequest is the request type for the Query/NFTs RPC method */ export interface QueryNFTsRequest { classId: string; owner: string; - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryNFTsRequestProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryNFTsRequest"; @@ -140,8 +139,8 @@ export interface QueryNFTsRequestProtoMsg { } /** QueryNFTstRequest is the request type for the Query/NFTs RPC method */ export interface QueryNFTsRequestAmino { - class_id: string; - owner: string; + class_id?: string; + owner?: string; pagination?: PageRequestAmino; } export interface QueryNFTsRequestAminoMsg { @@ -152,12 +151,12 @@ export interface QueryNFTsRequestAminoMsg { export interface QueryNFTsRequestSDKType { class_id: string; owner: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryNFTsResponse is the response type for the Query/NFTs RPC methods */ export interface QueryNFTsResponse { nfts: NFT[]; - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryNFTsResponseProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryNFTsResponse"; @@ -165,7 +164,7 @@ export interface QueryNFTsResponseProtoMsg { } /** QueryNFTsResponse is the response type for the Query/NFTs RPC methods */ export interface QueryNFTsResponseAmino { - nfts: NFTAmino[]; + nfts?: NFTAmino[]; pagination?: PageResponseAmino; } export interface QueryNFTsResponseAminoMsg { @@ -175,7 +174,7 @@ export interface QueryNFTsResponseAminoMsg { /** QueryNFTsResponse is the response type for the Query/NFTs RPC methods */ export interface QueryNFTsResponseSDKType { nfts: NFTSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryNFTRequest is the request type for the Query/NFT RPC method */ export interface QueryNFTRequest { @@ -188,8 +187,8 @@ export interface QueryNFTRequestProtoMsg { } /** QueryNFTRequest is the request type for the Query/NFT RPC method */ export interface QueryNFTRequestAmino { - class_id: string; - id: string; + class_id?: string; + id?: string; } export interface QueryNFTRequestAminoMsg { type: "cosmos-sdk/QueryNFTRequest"; @@ -202,7 +201,7 @@ export interface QueryNFTRequestSDKType { } /** QueryNFTResponse is the response type for the Query/NFT RPC method */ export interface QueryNFTResponse { - nft: NFT; + nft?: NFT; } export interface QueryNFTResponseProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryNFTResponse"; @@ -218,7 +217,7 @@ export interface QueryNFTResponseAminoMsg { } /** QueryNFTResponse is the response type for the Query/NFT RPC method */ export interface QueryNFTResponseSDKType { - nft: NFTSDKType; + nft?: NFTSDKType; } /** QueryClassRequest is the request type for the Query/Class RPC method */ export interface QueryClassRequest { @@ -230,7 +229,7 @@ export interface QueryClassRequestProtoMsg { } /** QueryClassRequest is the request type for the Query/Class RPC method */ export interface QueryClassRequestAmino { - class_id: string; + class_id?: string; } export interface QueryClassRequestAminoMsg { type: "cosmos-sdk/QueryClassRequest"; @@ -242,7 +241,7 @@ export interface QueryClassRequestSDKType { } /** QueryClassResponse is the response type for the Query/Class RPC method */ export interface QueryClassResponse { - class: Class; + class?: Class; } export interface QueryClassResponseProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryClassResponse"; @@ -258,12 +257,12 @@ export interface QueryClassResponseAminoMsg { } /** QueryClassResponse is the response type for the Query/Class RPC method */ export interface QueryClassResponseSDKType { - class: ClassSDKType; + class?: ClassSDKType; } /** QueryClassesRequest is the request type for the Query/Classes RPC method */ export interface QueryClassesRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryClassesRequestProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryClassesRequest"; @@ -280,12 +279,12 @@ export interface QueryClassesRequestAminoMsg { } /** QueryClassesRequest is the request type for the Query/Classes RPC method */ export interface QueryClassesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryClassesResponse is the response type for the Query/Classes RPC method */ export interface QueryClassesResponse { classes: Class[]; - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryClassesResponseProtoMsg { typeUrl: "/cosmos.nft.v1beta1.QueryClassesResponse"; @@ -293,7 +292,7 @@ export interface QueryClassesResponseProtoMsg { } /** QueryClassesResponse is the response type for the Query/Classes RPC method */ export interface QueryClassesResponseAmino { - classes: ClassAmino[]; + classes?: ClassAmino[]; pagination?: PageResponseAmino; } export interface QueryClassesResponseAminoMsg { @@ -303,11 +302,12 @@ export interface QueryClassesResponseAminoMsg { /** QueryClassesResponse is the response type for the Query/Classes RPC method */ export interface QueryClassesResponseSDKType { classes: ClassSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } export declare const QueryBalanceRequest: { - encode(message: QueryBalanceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceRequest; + typeUrl: string; + encode(message: QueryBalanceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceRequest; fromJSON(object: any): QueryBalanceRequest; toJSON(message: QueryBalanceRequest): unknown; fromPartial(object: Partial): QueryBalanceRequest; @@ -320,8 +320,9 @@ export declare const QueryBalanceRequest: { toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg; }; export declare const QueryBalanceResponse: { - encode(message: QueryBalanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceResponse; + typeUrl: string; + encode(message: QueryBalanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceResponse; fromJSON(object: any): QueryBalanceResponse; toJSON(message: QueryBalanceResponse): unknown; fromPartial(object: Partial): QueryBalanceResponse; @@ -334,8 +335,9 @@ export declare const QueryBalanceResponse: { toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg; }; export declare const QueryOwnerRequest: { - encode(message: QueryOwnerRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryOwnerRequest; + typeUrl: string; + encode(message: QueryOwnerRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryOwnerRequest; fromJSON(object: any): QueryOwnerRequest; toJSON(message: QueryOwnerRequest): unknown; fromPartial(object: Partial): QueryOwnerRequest; @@ -348,8 +350,9 @@ export declare const QueryOwnerRequest: { toProtoMsg(message: QueryOwnerRequest): QueryOwnerRequestProtoMsg; }; export declare const QueryOwnerResponse: { - encode(message: QueryOwnerResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryOwnerResponse; + typeUrl: string; + encode(message: QueryOwnerResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryOwnerResponse; fromJSON(object: any): QueryOwnerResponse; toJSON(message: QueryOwnerResponse): unknown; fromPartial(object: Partial): QueryOwnerResponse; @@ -362,8 +365,9 @@ export declare const QueryOwnerResponse: { toProtoMsg(message: QueryOwnerResponse): QueryOwnerResponseProtoMsg; }; export declare const QuerySupplyRequest: { - encode(message: QuerySupplyRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyRequest; + typeUrl: string; + encode(message: QuerySupplyRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyRequest; fromJSON(object: any): QuerySupplyRequest; toJSON(message: QuerySupplyRequest): unknown; fromPartial(object: Partial): QuerySupplyRequest; @@ -376,8 +380,9 @@ export declare const QuerySupplyRequest: { toProtoMsg(message: QuerySupplyRequest): QuerySupplyRequestProtoMsg; }; export declare const QuerySupplyResponse: { - encode(message: QuerySupplyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyResponse; + typeUrl: string; + encode(message: QuerySupplyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyResponse; fromJSON(object: any): QuerySupplyResponse; toJSON(message: QuerySupplyResponse): unknown; fromPartial(object: Partial): QuerySupplyResponse; @@ -390,8 +395,9 @@ export declare const QuerySupplyResponse: { toProtoMsg(message: QuerySupplyResponse): QuerySupplyResponseProtoMsg; }; export declare const QueryNFTsRequest: { - encode(message: QueryNFTsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTsRequest; + typeUrl: string; + encode(message: QueryNFTsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryNFTsRequest; fromJSON(object: any): QueryNFTsRequest; toJSON(message: QueryNFTsRequest): unknown; fromPartial(object: Partial): QueryNFTsRequest; @@ -404,8 +410,9 @@ export declare const QueryNFTsRequest: { toProtoMsg(message: QueryNFTsRequest): QueryNFTsRequestProtoMsg; }; export declare const QueryNFTsResponse: { - encode(message: QueryNFTsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTsResponse; + typeUrl: string; + encode(message: QueryNFTsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryNFTsResponse; fromJSON(object: any): QueryNFTsResponse; toJSON(message: QueryNFTsResponse): unknown; fromPartial(object: Partial): QueryNFTsResponse; @@ -418,8 +425,9 @@ export declare const QueryNFTsResponse: { toProtoMsg(message: QueryNFTsResponse): QueryNFTsResponseProtoMsg; }; export declare const QueryNFTRequest: { - encode(message: QueryNFTRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTRequest; + typeUrl: string; + encode(message: QueryNFTRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryNFTRequest; fromJSON(object: any): QueryNFTRequest; toJSON(message: QueryNFTRequest): unknown; fromPartial(object: Partial): QueryNFTRequest; @@ -432,8 +440,9 @@ export declare const QueryNFTRequest: { toProtoMsg(message: QueryNFTRequest): QueryNFTRequestProtoMsg; }; export declare const QueryNFTResponse: { - encode(message: QueryNFTResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTResponse; + typeUrl: string; + encode(message: QueryNFTResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryNFTResponse; fromJSON(object: any): QueryNFTResponse; toJSON(message: QueryNFTResponse): unknown; fromPartial(object: Partial): QueryNFTResponse; @@ -446,8 +455,9 @@ export declare const QueryNFTResponse: { toProtoMsg(message: QueryNFTResponse): QueryNFTResponseProtoMsg; }; export declare const QueryClassRequest: { - encode(message: QueryClassRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassRequest; + typeUrl: string; + encode(message: QueryClassRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassRequest; fromJSON(object: any): QueryClassRequest; toJSON(message: QueryClassRequest): unknown; fromPartial(object: Partial): QueryClassRequest; @@ -460,8 +470,9 @@ export declare const QueryClassRequest: { toProtoMsg(message: QueryClassRequest): QueryClassRequestProtoMsg; }; export declare const QueryClassResponse: { - encode(message: QueryClassResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassResponse; + typeUrl: string; + encode(message: QueryClassResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassResponse; fromJSON(object: any): QueryClassResponse; toJSON(message: QueryClassResponse): unknown; fromPartial(object: Partial): QueryClassResponse; @@ -474,8 +485,9 @@ export declare const QueryClassResponse: { toProtoMsg(message: QueryClassResponse): QueryClassResponseProtoMsg; }; export declare const QueryClassesRequest: { - encode(message: QueryClassesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesRequest; + typeUrl: string; + encode(message: QueryClassesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesRequest; fromJSON(object: any): QueryClassesRequest; toJSON(message: QueryClassesRequest): unknown; fromPartial(object: Partial): QueryClassesRequest; @@ -488,8 +500,9 @@ export declare const QueryClassesRequest: { toProtoMsg(message: QueryClassesRequest): QueryClassesRequestProtoMsg; }; export declare const QueryClassesResponse: { - encode(message: QueryClassesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesResponse; + typeUrl: string; + encode(message: QueryClassesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesResponse; fromJSON(object: any): QueryClassesResponse; toJSON(message: QueryClassesResponse): unknown; fromPartial(object: Partial): QueryClassesResponse; diff --git a/packages/api/types/codegen/cosmos/nft/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/nft/v1beta1/query.lcd.d.ts index d5be098..10feda3 100644 --- a/packages/api/types/codegen/cosmos/nft/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/nft/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryBalanceRequest, QueryBalanceResponseSDKType, QueryOwnerRequest, QueryOwnerResponseSDKType, QuerySupplyRequest, QuerySupplyResponseSDKType, QueryNFTsRequest, QueryNFTsResponseSDKType, QueryNFTRequest, QueryNFTResponseSDKType, QueryClassRequest, QueryClassResponseSDKType, QueryClassesRequest, QueryClassesResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/nft/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/nft/v1beta1/tx.d.ts index f42f2d6..aa70b90 100644 --- a/packages/api/types/codegen/cosmos/nft/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/nft/v1beta1/tx.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** MsgSend represents a message to send a nft from one account to another account. */ export interface MsgSend { /** class_id defines the unique identifier of the nft classification, similar to the contract address of ERC721 */ @@ -17,13 +17,13 @@ export interface MsgSendProtoMsg { /** MsgSend represents a message to send a nft from one account to another account. */ export interface MsgSendAmino { /** class_id defines the unique identifier of the nft classification, similar to the contract address of ERC721 */ - class_id: string; + class_id?: string; /** id defines the unique identification of nft */ - id: string; + id?: string; /** sender is the address of the owner of nft */ - sender: string; + sender?: string; /** receiver is the receiver address of nft */ - receiver: string; + receiver?: string; } export interface MsgSendAminoMsg { type: "cosmos-sdk/MsgNFTSend"; @@ -54,8 +54,9 @@ export interface MsgSendResponseAminoMsg { export interface MsgSendResponseSDKType { } export declare const MsgSend: { - encode(message: MsgSend, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSend; + typeUrl: string; + encode(message: MsgSend, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSend; fromJSON(object: any): MsgSend; toJSON(message: MsgSend): unknown; fromPartial(object: Partial): MsgSend; @@ -68,8 +69,9 @@ export declare const MsgSend: { toProtoMsg(message: MsgSend): MsgSendProtoMsg; }; export declare const MsgSendResponse: { - encode(_: MsgSendResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSendResponse; + typeUrl: string; + encode(_: MsgSendResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSendResponse; fromJSON(_: any): MsgSendResponse; toJSON(_: MsgSendResponse): unknown; fromPartial(_: Partial): MsgSendResponse; diff --git a/packages/api/types/codegen/cosmos/orm/module/v1alpha1/module.d.ts b/packages/api/types/codegen/cosmos/orm/module/v1alpha1/module.d.ts index 6bb5862..6365e48 100644 --- a/packages/api/types/codegen/cosmos/orm/module/v1alpha1/module.d.ts +++ b/packages/api/types/codegen/cosmos/orm/module/v1alpha1/module.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * Module defines the ORM module which adds providers to the app container for * module-scoped DB's. In the future it may provide gRPC services for interacting @@ -29,8 +29,9 @@ export interface ModuleAminoMsg { export interface ModuleSDKType { } export declare const Module: { - encode(_: Module, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Module; + typeUrl: string; + encode(_: Module, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Module; fromJSON(_: any): Module; toJSON(_: Module): unknown; fromPartial(_: Partial): Module; diff --git a/packages/api/types/codegen/cosmos/orm/v1/orm.d.ts b/packages/api/types/codegen/cosmos/orm/v1/orm.d.ts index 825fe97..e423bcc 100644 --- a/packages/api/types/codegen/cosmos/orm/v1/orm.d.ts +++ b/packages/api/types/codegen/cosmos/orm/v1/orm.d.ts @@ -1,8 +1,8 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** TableDescriptor describes an ORM table. */ export interface TableDescriptor { /** primary_key defines the primary key for the table. */ - primaryKey: PrimaryKeyDescriptor; + primaryKey?: PrimaryKeyDescriptor; /** index defines one or more secondary indexes. */ index: SecondaryIndexDescriptor[]; /** @@ -21,13 +21,13 @@ export interface TableDescriptorAmino { /** primary_key defines the primary key for the table. */ primary_key?: PrimaryKeyDescriptorAmino; /** index defines one or more secondary indexes. */ - index: SecondaryIndexDescriptorAmino[]; + index?: SecondaryIndexDescriptorAmino[]; /** * id is a non-zero integer ID that must be unique within the * tables and singletons in this file. It may be deprecated in the future when this * can be auto-generated. */ - id: number; + id?: number; } export interface TableDescriptorAminoMsg { type: "cosmos-sdk/TableDescriptor"; @@ -35,7 +35,7 @@ export interface TableDescriptorAminoMsg { } /** TableDescriptor describes an ORM table. */ export interface TableDescriptorSDKType { - primary_key: PrimaryKeyDescriptorSDKType; + primary_key?: PrimaryKeyDescriptorSDKType; index: SecondaryIndexDescriptorSDKType[]; id: number; } @@ -119,13 +119,13 @@ export interface PrimaryKeyDescriptorAmino { * Primary keys are prefixed by the varint encoded table id and the byte 0x0 * plus any additional prefix specified by the schema. */ - fields: string; + fields?: string; /** * auto_increment specifies that the primary key is generated by an * auto-incrementing integer. If this is set to true fields must only * contain one field of that is of type uint64. */ - auto_increment: boolean; + auto_increment?: boolean; } export interface PrimaryKeyDescriptorAminoMsg { type: "cosmos-sdk/PrimaryKeyDescriptor"; @@ -176,15 +176,15 @@ export interface SecondaryIndexDescriptorAmino { * primary key can be reconstructed. Unique indexes instead of being suffixed * store the remaining primary key fields in the value.. */ - fields: string; + fields?: string; /** * id is a non-zero integer ID that must be unique within the indexes for this * table and less than 32768. It may be deprecated in the future when this can * be auto-generated. */ - id: number; + id?: number; /** unique specifies that this an unique index. */ - unique: boolean; + unique?: boolean; } export interface SecondaryIndexDescriptorAminoMsg { type: "cosmos-sdk/SecondaryIndexDescriptor"; @@ -216,7 +216,7 @@ export interface SingletonDescriptorAmino { * tables and singletons in this file. It may be deprecated in the future when this * can be auto-generated. */ - id: number; + id?: number; } export interface SingletonDescriptorAminoMsg { type: "cosmos-sdk/SingletonDescriptor"; @@ -227,8 +227,9 @@ export interface SingletonDescriptorSDKType { id: number; } export declare const TableDescriptor: { - encode(message: TableDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TableDescriptor; + typeUrl: string; + encode(message: TableDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TableDescriptor; fromJSON(object: any): TableDescriptor; toJSON(message: TableDescriptor): unknown; fromPartial(object: Partial): TableDescriptor; @@ -241,8 +242,9 @@ export declare const TableDescriptor: { toProtoMsg(message: TableDescriptor): TableDescriptorProtoMsg; }; export declare const PrimaryKeyDescriptor: { - encode(message: PrimaryKeyDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PrimaryKeyDescriptor; + typeUrl: string; + encode(message: PrimaryKeyDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PrimaryKeyDescriptor; fromJSON(object: any): PrimaryKeyDescriptor; toJSON(message: PrimaryKeyDescriptor): unknown; fromPartial(object: Partial): PrimaryKeyDescriptor; @@ -255,8 +257,9 @@ export declare const PrimaryKeyDescriptor: { toProtoMsg(message: PrimaryKeyDescriptor): PrimaryKeyDescriptorProtoMsg; }; export declare const SecondaryIndexDescriptor: { - encode(message: SecondaryIndexDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SecondaryIndexDescriptor; + typeUrl: string; + encode(message: SecondaryIndexDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SecondaryIndexDescriptor; fromJSON(object: any): SecondaryIndexDescriptor; toJSON(message: SecondaryIndexDescriptor): unknown; fromPartial(object: Partial): SecondaryIndexDescriptor; @@ -269,8 +272,9 @@ export declare const SecondaryIndexDescriptor: { toProtoMsg(message: SecondaryIndexDescriptor): SecondaryIndexDescriptorProtoMsg; }; export declare const SingletonDescriptor: { - encode(message: SingletonDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SingletonDescriptor; + typeUrl: string; + encode(message: SingletonDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SingletonDescriptor; fromJSON(object: any): SingletonDescriptor; toJSON(message: SingletonDescriptor): unknown; fromPartial(object: Partial): SingletonDescriptor; diff --git a/packages/api/types/codegen/cosmos/orm/v1alpha1/schema.d.ts b/packages/api/types/codegen/cosmos/orm/v1alpha1/schema.d.ts index 6cff3a9..2fc9019 100644 --- a/packages/api/types/codegen/cosmos/orm/v1alpha1/schema.d.ts +++ b/packages/api/types/codegen/cosmos/orm/v1alpha1/schema.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** StorageType */ export declare enum StorageType { /** @@ -61,12 +61,12 @@ export interface ModuleSchemaDescriptorProtoMsg { } /** ModuleSchemaDescriptor describe's a module's ORM schema. */ export interface ModuleSchemaDescriptorAmino { - schema_file: ModuleSchemaDescriptor_FileEntryAmino[]; + schema_file?: ModuleSchemaDescriptor_FileEntryAmino[]; /** * prefix is an optional prefix that precedes all keys in this module's * store. */ - prefix: Uint8Array; + prefix?: string; } export interface ModuleSchemaDescriptorAminoMsg { type: "cosmos-sdk/ModuleSchemaDescriptor"; @@ -107,19 +107,19 @@ export interface ModuleSchemaDescriptor_FileEntryAmino { * id is a prefix that will be varint encoded and prepended to all the * table keys specified in the file's tables. */ - id: number; + id?: number; /** * proto_file_name is the name of a file .proto in that contains * table definitions. The .proto file must be in a package that the * module has referenced using cosmos.app.v1.ModuleDescriptor.use_package. */ - proto_file_name: string; + proto_file_name?: string; /** * storage_type optionally indicates the type of storage this file's * tables should used. If it is left unspecified, the default KV-storage * of the app will be used. */ - storage_type: StorageType; + storage_type?: StorageType; } export interface ModuleSchemaDescriptor_FileEntryAminoMsg { type: "cosmos-sdk/FileEntry"; @@ -132,8 +132,9 @@ export interface ModuleSchemaDescriptor_FileEntrySDKType { storage_type: StorageType; } export declare const ModuleSchemaDescriptor: { - encode(message: ModuleSchemaDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModuleSchemaDescriptor; + typeUrl: string; + encode(message: ModuleSchemaDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModuleSchemaDescriptor; fromJSON(object: any): ModuleSchemaDescriptor; toJSON(message: ModuleSchemaDescriptor): unknown; fromPartial(object: Partial): ModuleSchemaDescriptor; @@ -146,8 +147,9 @@ export declare const ModuleSchemaDescriptor: { toProtoMsg(message: ModuleSchemaDescriptor): ModuleSchemaDescriptorProtoMsg; }; export declare const ModuleSchemaDescriptor_FileEntry: { - encode(message: ModuleSchemaDescriptor_FileEntry, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModuleSchemaDescriptor_FileEntry; + typeUrl: string; + encode(message: ModuleSchemaDescriptor_FileEntry, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModuleSchemaDescriptor_FileEntry; fromJSON(object: any): ModuleSchemaDescriptor_FileEntry; toJSON(message: ModuleSchemaDescriptor_FileEntry): unknown; fromPartial(object: Partial): ModuleSchemaDescriptor_FileEntry; diff --git a/packages/api/types/codegen/cosmos/params/v1beta1/params.d.ts b/packages/api/types/codegen/cosmos/params/v1beta1/params.d.ts index 3b0fdd2..9540789 100644 --- a/packages/api/types/codegen/cosmos/params/v1beta1/params.d.ts +++ b/packages/api/types/codegen/cosmos/params/v1beta1/params.d.ts @@ -1,7 +1,7 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** ParameterChangeProposal defines a proposal to change one or more parameters. */ export interface ParameterChangeProposal { - $typeUrl?: string; + $typeUrl?: "/cosmos.params.v1beta1.ParameterChangeProposal"; title: string; description: string; changes: ParamChange[]; @@ -12,9 +12,9 @@ export interface ParameterChangeProposalProtoMsg { } /** ParameterChangeProposal defines a proposal to change one or more parameters. */ export interface ParameterChangeProposalAmino { - title: string; - description: string; - changes: ParamChangeAmino[]; + title?: string; + description?: string; + changes?: ParamChangeAmino[]; } export interface ParameterChangeProposalAminoMsg { type: "cosmos-sdk/ParameterChangeProposal"; @@ -22,7 +22,7 @@ export interface ParameterChangeProposalAminoMsg { } /** ParameterChangeProposal defines a proposal to change one or more parameters. */ export interface ParameterChangeProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.params.v1beta1.ParameterChangeProposal"; title: string; description: string; changes: ParamChangeSDKType[]; @@ -45,9 +45,9 @@ export interface ParamChangeProtoMsg { * ParameterChangeProposal. */ export interface ParamChangeAmino { - subspace: string; - key: string; - value: string; + subspace?: string; + key?: string; + value?: string; } export interface ParamChangeAminoMsg { type: "cosmos-sdk/ParamChange"; @@ -63,8 +63,9 @@ export interface ParamChangeSDKType { value: string; } export declare const ParameterChangeProposal: { - encode(message: ParameterChangeProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ParameterChangeProposal; + typeUrl: string; + encode(message: ParameterChangeProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ParameterChangeProposal; fromJSON(object: any): ParameterChangeProposal; toJSON(message: ParameterChangeProposal): unknown; fromPartial(object: Partial): ParameterChangeProposal; @@ -77,8 +78,9 @@ export declare const ParameterChangeProposal: { toProtoMsg(message: ParameterChangeProposal): ParameterChangeProposalProtoMsg; }; export declare const ParamChange: { - encode(message: ParamChange, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ParamChange; + typeUrl: string; + encode(message: ParamChange, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ParamChange; fromJSON(object: any): ParamChange; toJSON(message: ParamChange): unknown; fromPartial(object: Partial): ParamChange; diff --git a/packages/api/types/codegen/cosmos/params/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/params/v1beta1/query.d.ts index b5423a5..c4e11a1 100644 --- a/packages/api/types/codegen/cosmos/params/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/params/v1beta1/query.d.ts @@ -1,5 +1,5 @@ import { ParamChange, ParamChangeAmino, ParamChangeSDKType } from "./params"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryParamsRequest is request type for the Query/Params RPC method. */ export interface QueryParamsRequest { /** subspace defines the module to query the parameter for. */ @@ -14,9 +14,9 @@ export interface QueryParamsRequestProtoMsg { /** QueryParamsRequest is request type for the Query/Params RPC method. */ export interface QueryParamsRequestAmino { /** subspace defines the module to query the parameter for. */ - subspace: string; + subspace?: string; /** key defines the key of the parameter in the subspace. */ - key: string; + key?: string; } export interface QueryParamsRequestAminoMsg { type: "cosmos-sdk/QueryParamsRequest"; @@ -101,7 +101,7 @@ export interface QuerySubspacesResponseProtoMsg { * Since: cosmos-sdk 0.46 */ export interface QuerySubspacesResponseAmino { - subspaces: SubspaceAmino[]; + subspaces?: SubspaceAmino[]; } export interface QuerySubspacesResponseAminoMsg { type: "cosmos-sdk/QuerySubspacesResponse"; @@ -137,8 +137,8 @@ export interface SubspaceProtoMsg { * Since: cosmos-sdk 0.46 */ export interface SubspaceAmino { - subspace: string; - keys: string[]; + subspace?: string; + keys?: string[]; } export interface SubspaceAminoMsg { type: "cosmos-sdk/Subspace"; @@ -155,8 +155,9 @@ export interface SubspaceSDKType { keys: string[]; } export declare const QueryParamsRequest: { - encode(message: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(message: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(object: any): QueryParamsRequest; toJSON(message: QueryParamsRequest): unknown; fromPartial(object: Partial): QueryParamsRequest; @@ -169,8 +170,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -183,8 +185,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QuerySubspacesRequest: { - encode(_: QuerySubspacesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySubspacesRequest; + typeUrl: string; + encode(_: QuerySubspacesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySubspacesRequest; fromJSON(_: any): QuerySubspacesRequest; toJSON(_: QuerySubspacesRequest): unknown; fromPartial(_: Partial): QuerySubspacesRequest; @@ -197,8 +200,9 @@ export declare const QuerySubspacesRequest: { toProtoMsg(message: QuerySubspacesRequest): QuerySubspacesRequestProtoMsg; }; export declare const QuerySubspacesResponse: { - encode(message: QuerySubspacesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySubspacesResponse; + typeUrl: string; + encode(message: QuerySubspacesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySubspacesResponse; fromJSON(object: any): QuerySubspacesResponse; toJSON(message: QuerySubspacesResponse): unknown; fromPartial(object: Partial): QuerySubspacesResponse; @@ -211,8 +215,9 @@ export declare const QuerySubspacesResponse: { toProtoMsg(message: QuerySubspacesResponse): QuerySubspacesResponseProtoMsg; }; export declare const Subspace: { - encode(message: Subspace, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Subspace; + typeUrl: string; + encode(message: Subspace, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Subspace; fromJSON(object: any): Subspace; toJSON(message: Subspace): unknown; fromPartial(object: Partial): Subspace; diff --git a/packages/api/types/codegen/cosmos/params/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/params/v1beta1/query.lcd.d.ts index 4d76132..aaa5da4 100644 --- a/packages/api/types/codegen/cosmos/params/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/params/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryParamsRequest, QueryParamsResponseSDKType, QuerySubspacesRequest, QuerySubspacesResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/slashing/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/slashing/v1beta1/genesis.d.ts index 0b27f0b..8d9910f 100644 --- a/packages/api/types/codegen/cosmos/slashing/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/slashing/v1beta1/genesis.d.ts @@ -1,6 +1,5 @@ import { Params, ParamsAmino, ParamsSDKType, ValidatorSigningInfo, ValidatorSigningInfoAmino, ValidatorSigningInfoSDKType } from "./slashing"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { /** params defines all the paramaters of related to deposit. */ @@ -28,12 +27,12 @@ export interface GenesisStateAmino { * signing_infos represents a map between validator addresses and their * signing infos. */ - signing_infos: SigningInfoAmino[]; + signing_infos?: SigningInfoAmino[]; /** * missed_blocks represents a map between validator addresses and their * missed blocks. */ - missed_blocks: ValidatorMissedBlocksAmino[]; + missed_blocks?: ValidatorMissedBlocksAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -59,7 +58,7 @@ export interface SigningInfoProtoMsg { /** SigningInfo stores validator signing info of corresponding address. */ export interface SigningInfoAmino { /** address is the validator address. */ - address: string; + address?: string; /** validator_signing_info represents the signing info of this validator. */ validator_signing_info?: ValidatorSigningInfoAmino; } @@ -92,9 +91,9 @@ export interface ValidatorMissedBlocksProtoMsg { */ export interface ValidatorMissedBlocksAmino { /** address is the validator address. */ - address: string; + address?: string; /** missed_blocks is an array of missed blocks by the validator. */ - missed_blocks: MissedBlockAmino[]; + missed_blocks?: MissedBlockAmino[]; } export interface ValidatorMissedBlocksAminoMsg { type: "cosmos-sdk/ValidatorMissedBlocks"; @@ -111,7 +110,7 @@ export interface ValidatorMissedBlocksSDKType { /** MissedBlock contains height and missed status as boolean. */ export interface MissedBlock { /** index is the height at which the block was missed. */ - index: Long; + index: bigint; /** missed is the missed status. */ missed: boolean; } @@ -122,9 +121,9 @@ export interface MissedBlockProtoMsg { /** MissedBlock contains height and missed status as boolean. */ export interface MissedBlockAmino { /** index is the height at which the block was missed. */ - index: string; + index?: string; /** missed is the missed status. */ - missed: boolean; + missed?: boolean; } export interface MissedBlockAminoMsg { type: "cosmos-sdk/MissedBlock"; @@ -132,12 +131,13 @@ export interface MissedBlockAminoMsg { } /** MissedBlock contains height and missed status as boolean. */ export interface MissedBlockSDKType { - index: Long; + index: bigint; missed: boolean; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; @@ -150,8 +150,9 @@ export declare const GenesisState: { toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const SigningInfo: { - encode(message: SigningInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SigningInfo; + typeUrl: string; + encode(message: SigningInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SigningInfo; fromJSON(object: any): SigningInfo; toJSON(message: SigningInfo): unknown; fromPartial(object: Partial): SigningInfo; @@ -164,8 +165,9 @@ export declare const SigningInfo: { toProtoMsg(message: SigningInfo): SigningInfoProtoMsg; }; export declare const ValidatorMissedBlocks: { - encode(message: ValidatorMissedBlocks, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorMissedBlocks; + typeUrl: string; + encode(message: ValidatorMissedBlocks, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorMissedBlocks; fromJSON(object: any): ValidatorMissedBlocks; toJSON(message: ValidatorMissedBlocks): unknown; fromPartial(object: Partial): ValidatorMissedBlocks; @@ -178,8 +180,9 @@ export declare const ValidatorMissedBlocks: { toProtoMsg(message: ValidatorMissedBlocks): ValidatorMissedBlocksProtoMsg; }; export declare const MissedBlock: { - encode(message: MissedBlock, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MissedBlock; + typeUrl: string; + encode(message: MissedBlock, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MissedBlock; fromJSON(object: any): MissedBlock; toJSON(message: MissedBlock): unknown; fromPartial(object: Partial): MissedBlock; diff --git a/packages/api/types/codegen/cosmos/slashing/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/slashing/v1beta1/query.d.ts index 08f8f58..650f43a 100644 --- a/packages/api/types/codegen/cosmos/slashing/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/slashing/v1beta1/query.d.ts @@ -1,6 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Params, ParamsAmino, ParamsSDKType, ValidatorSigningInfo, ValidatorSigningInfoAmino, ValidatorSigningInfoSDKType } from "./slashing"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryParamsRequest is the request type for the Query/Params RPC method */ export interface QueryParamsRequest { } @@ -56,7 +56,7 @@ export interface QuerySigningInfoRequestProtoMsg { */ export interface QuerySigningInfoRequestAmino { /** cons_address is the address to query signing info of */ - cons_address: string; + cons_address?: string; } export interface QuerySigningInfoRequestAminoMsg { type: "cosmos-sdk/QuerySigningInfoRequest"; @@ -105,7 +105,7 @@ export interface QuerySigningInfoResponseSDKType { * method */ export interface QuerySigningInfosRequest { - pagination: PageRequest; + pagination?: PageRequest; } export interface QuerySigningInfosRequestProtoMsg { typeUrl: "/cosmos.slashing.v1beta1.QuerySigningInfosRequest"; @@ -127,7 +127,7 @@ export interface QuerySigningInfosRequestAminoMsg { * method */ export interface QuerySigningInfosRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC @@ -136,7 +136,7 @@ export interface QuerySigningInfosRequestSDKType { export interface QuerySigningInfosResponse { /** info is the signing info of all validators */ info: ValidatorSigningInfo[]; - pagination: PageResponse; + pagination?: PageResponse; } export interface QuerySigningInfosResponseProtoMsg { typeUrl: "/cosmos.slashing.v1beta1.QuerySigningInfosResponse"; @@ -148,7 +148,7 @@ export interface QuerySigningInfosResponseProtoMsg { */ export interface QuerySigningInfosResponseAmino { /** info is the signing info of all validators */ - info: ValidatorSigningInfoAmino[]; + info?: ValidatorSigningInfoAmino[]; pagination?: PageResponseAmino; } export interface QuerySigningInfosResponseAminoMsg { @@ -161,11 +161,12 @@ export interface QuerySigningInfosResponseAminoMsg { */ export interface QuerySigningInfosResponseSDKType { info: ValidatorSigningInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -178,8 +179,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -192,8 +194,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QuerySigningInfoRequest: { - encode(message: QuerySigningInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfoRequest; + typeUrl: string; + encode(message: QuerySigningInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySigningInfoRequest; fromJSON(object: any): QuerySigningInfoRequest; toJSON(message: QuerySigningInfoRequest): unknown; fromPartial(object: Partial): QuerySigningInfoRequest; @@ -206,8 +209,9 @@ export declare const QuerySigningInfoRequest: { toProtoMsg(message: QuerySigningInfoRequest): QuerySigningInfoRequestProtoMsg; }; export declare const QuerySigningInfoResponse: { - encode(message: QuerySigningInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfoResponse; + typeUrl: string; + encode(message: QuerySigningInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySigningInfoResponse; fromJSON(object: any): QuerySigningInfoResponse; toJSON(message: QuerySigningInfoResponse): unknown; fromPartial(object: Partial): QuerySigningInfoResponse; @@ -220,8 +224,9 @@ export declare const QuerySigningInfoResponse: { toProtoMsg(message: QuerySigningInfoResponse): QuerySigningInfoResponseProtoMsg; }; export declare const QuerySigningInfosRequest: { - encode(message: QuerySigningInfosRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfosRequest; + typeUrl: string; + encode(message: QuerySigningInfosRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySigningInfosRequest; fromJSON(object: any): QuerySigningInfosRequest; toJSON(message: QuerySigningInfosRequest): unknown; fromPartial(object: Partial): QuerySigningInfosRequest; @@ -234,8 +239,9 @@ export declare const QuerySigningInfosRequest: { toProtoMsg(message: QuerySigningInfosRequest): QuerySigningInfosRequestProtoMsg; }; export declare const QuerySigningInfosResponse: { - encode(message: QuerySigningInfosResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySigningInfosResponse; + typeUrl: string; + encode(message: QuerySigningInfosResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySigningInfosResponse; fromJSON(object: any): QuerySigningInfosResponse; toJSON(message: QuerySigningInfosResponse): unknown; fromPartial(object: Partial): QuerySigningInfosResponse; diff --git a/packages/api/types/codegen/cosmos/slashing/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/slashing/v1beta1/query.lcd.d.ts index 68fa91b..0133013 100644 --- a/packages/api/types/codegen/cosmos/slashing/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/slashing/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryParamsRequest, QueryParamsResponseSDKType, QuerySigningInfoRequest, QuerySigningInfoResponseSDKType, QuerySigningInfosRequest, QuerySigningInfosResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/slashing/v1beta1/slashing.d.ts b/packages/api/types/codegen/cosmos/slashing/v1beta1/slashing.d.ts index 40ac2db..2975964 100644 --- a/packages/api/types/codegen/cosmos/slashing/v1beta1/slashing.d.ts +++ b/packages/api/types/codegen/cosmos/slashing/v1beta1/slashing.d.ts @@ -1,7 +1,6 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * ValidatorSigningInfo defines a validator's signing info for monitoring their * liveness activity. @@ -9,13 +8,13 @@ import * as _m0 from "protobufjs/minimal"; export interface ValidatorSigningInfo { address: string; /** Height at which validator was first a candidate OR was unjailed */ - startHeight: Long; + startHeight: bigint; /** * Index which is incremented each time the validator was a bonded * in a block and may have signed a precommit or not. This in conjunction with the * `SignedBlocksWindow` param determines the index in the `MissedBlocksBitArray`. */ - indexOffset: Long; + indexOffset: bigint; /** Timestamp until which the validator is jailed due to liveness downtime. */ jailedUntil: Timestamp; /** @@ -27,7 +26,7 @@ export interface ValidatorSigningInfo { * A counter kept to avoid unnecessary array reads. * Note that `Sum(MissedBlocksBitArray)` always equals `MissedBlocksCounter`. */ - missedBlocksCounter: Long; + missedBlocksCounter: bigint; } export interface ValidatorSigningInfoProtoMsg { typeUrl: "/cosmos.slashing.v1beta1.ValidatorSigningInfo"; @@ -38,27 +37,27 @@ export interface ValidatorSigningInfoProtoMsg { * liveness activity. */ export interface ValidatorSigningInfoAmino { - address: string; + address?: string; /** Height at which validator was first a candidate OR was unjailed */ - start_height: string; + start_height?: string; /** * Index which is incremented each time the validator was a bonded * in a block and may have signed a precommit or not. This in conjunction with the * `SignedBlocksWindow` param determines the index in the `MissedBlocksBitArray`. */ - index_offset: string; + index_offset?: string; /** Timestamp until which the validator is jailed due to liveness downtime. */ - jailed_until?: TimestampAmino; + jailed_until?: string; /** * Whether or not a validator has been tombstoned (killed out of validator set). It is set * once the validator commits an equivocation or for any other configured misbehiavor. */ - tombstoned: boolean; + tombstoned?: boolean; /** * A counter kept to avoid unnecessary array reads. * Note that `Sum(MissedBlocksBitArray)` always equals `MissedBlocksCounter`. */ - missed_blocks_counter: string; + missed_blocks_counter?: string; } export interface ValidatorSigningInfoAminoMsg { type: "cosmos-sdk/ValidatorSigningInfo"; @@ -70,15 +69,15 @@ export interface ValidatorSigningInfoAminoMsg { */ export interface ValidatorSigningInfoSDKType { address: string; - start_height: Long; - index_offset: Long; + start_height: bigint; + index_offset: bigint; jailed_until: TimestampSDKType; tombstoned: boolean; - missed_blocks_counter: Long; + missed_blocks_counter: bigint; } /** Params represents the parameters used for by the slashing module. */ export interface Params { - signedBlocksWindow: Long; + signedBlocksWindow: bigint; minSignedPerWindow: Uint8Array; downtimeJailDuration: Duration; slashFractionDoubleSign: Uint8Array; @@ -90,11 +89,11 @@ export interface ParamsProtoMsg { } /** Params represents the parameters used for by the slashing module. */ export interface ParamsAmino { - signed_blocks_window: string; - min_signed_per_window: Uint8Array; + signed_blocks_window?: string; + min_signed_per_window?: string; downtime_jail_duration?: DurationAmino; - slash_fraction_double_sign: Uint8Array; - slash_fraction_downtime: Uint8Array; + slash_fraction_double_sign?: string; + slash_fraction_downtime?: string; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -102,15 +101,16 @@ export interface ParamsAminoMsg { } /** Params represents the parameters used for by the slashing module. */ export interface ParamsSDKType { - signed_blocks_window: Long; + signed_blocks_window: bigint; min_signed_per_window: Uint8Array; downtime_jail_duration: DurationSDKType; slash_fraction_double_sign: Uint8Array; slash_fraction_downtime: Uint8Array; } export declare const ValidatorSigningInfo: { - encode(message: ValidatorSigningInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorSigningInfo; + typeUrl: string; + encode(message: ValidatorSigningInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorSigningInfo; fromJSON(object: any): ValidatorSigningInfo; toJSON(message: ValidatorSigningInfo): unknown; fromPartial(object: Partial): ValidatorSigningInfo; @@ -123,8 +123,9 @@ export declare const ValidatorSigningInfo: { toProtoMsg(message: ValidatorSigningInfo): ValidatorSigningInfoProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; diff --git a/packages/api/types/codegen/cosmos/slashing/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/slashing/v1beta1/tx.d.ts index d2fba43..e73df8a 100644 --- a/packages/api/types/codegen/cosmos/slashing/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/slashing/v1beta1/tx.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** MsgUnjail defines the Msg/Unjail request type */ export interface MsgUnjail { validatorAddr: string; @@ -37,8 +37,9 @@ export interface MsgUnjailResponseAminoMsg { export interface MsgUnjailResponseSDKType { } export declare const MsgUnjail: { - encode(message: MsgUnjail, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUnjail; + typeUrl: string; + encode(message: MsgUnjail, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUnjail; fromJSON(object: any): MsgUnjail; toJSON(message: MsgUnjail): unknown; fromPartial(object: Partial): MsgUnjail; @@ -51,8 +52,9 @@ export declare const MsgUnjail: { toProtoMsg(message: MsgUnjail): MsgUnjailProtoMsg; }; export declare const MsgUnjailResponse: { - encode(_: MsgUnjailResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUnjailResponse; + typeUrl: string; + encode(_: MsgUnjailResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUnjailResponse; fromJSON(_: any): MsgUnjailResponse; toJSON(_: MsgUnjailResponse): unknown; fromPartial(_: Partial): MsgUnjailResponse; diff --git a/packages/api/types/codegen/cosmos/staking/v1beta1/authz.d.ts b/packages/api/types/codegen/cosmos/staking/v1beta1/authz.d.ts index 14568c7..d31749d 100644 --- a/packages/api/types/codegen/cosmos/staking/v1beta1/authz.d.ts +++ b/packages/api/types/codegen/cosmos/staking/v1beta1/authz.d.ts @@ -1,5 +1,5 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * AuthorizationType defines the type of staking module authorization type * @@ -26,12 +26,12 @@ export declare function authorizationTypeToJSON(object: AuthorizationType): stri * Since: cosmos-sdk 0.43 */ export interface StakeAuthorization { - $typeUrl?: string; + $typeUrl?: "/cosmos.staking.v1beta1.StakeAuthorization"; /** * max_tokens specifies the maximum amount of tokens can be delegate to a validator. If it is * empty, there is no spend limit and any amount of coins can be delegated. */ - maxTokens: Coin; + maxTokens?: Coin; /** * allow_list specifies list of validator addresses to whom grantee can delegate tokens on behalf of granter's * account. @@ -65,7 +65,7 @@ export interface StakeAuthorizationAmino { /** deny_list specifies list of validator addresses to whom grantee can not delegate tokens. */ deny_list?: StakeAuthorization_ValidatorsAmino; /** authorization_type defines one of AuthorizationType. */ - authorization_type: AuthorizationType; + authorization_type?: AuthorizationType; } export interface StakeAuthorizationAminoMsg { type: "cosmos-sdk/StakeAuthorization"; @@ -77,8 +77,8 @@ export interface StakeAuthorizationAminoMsg { * Since: cosmos-sdk 0.43 */ export interface StakeAuthorizationSDKType { - $typeUrl?: string; - max_tokens: CoinSDKType; + $typeUrl?: "/cosmos.staking.v1beta1.StakeAuthorization"; + max_tokens?: CoinSDKType; allow_list?: StakeAuthorization_ValidatorsSDKType; deny_list?: StakeAuthorization_ValidatorsSDKType; authorization_type: AuthorizationType; @@ -93,7 +93,7 @@ export interface StakeAuthorization_ValidatorsProtoMsg { } /** Validators defines list of validator addresses. */ export interface StakeAuthorization_ValidatorsAmino { - address: string[]; + address?: string[]; } export interface StakeAuthorization_ValidatorsAminoMsg { type: "cosmos-sdk/Validators"; @@ -104,8 +104,9 @@ export interface StakeAuthorization_ValidatorsSDKType { address: string[]; } export declare const StakeAuthorization: { - encode(message: StakeAuthorization, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): StakeAuthorization; + typeUrl: string; + encode(message: StakeAuthorization, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): StakeAuthorization; fromJSON(object: any): StakeAuthorization; toJSON(message: StakeAuthorization): unknown; fromPartial(object: Partial): StakeAuthorization; @@ -118,8 +119,9 @@ export declare const StakeAuthorization: { toProtoMsg(message: StakeAuthorization): StakeAuthorizationProtoMsg; }; export declare const StakeAuthorization_Validators: { - encode(message: StakeAuthorization_Validators, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): StakeAuthorization_Validators; + typeUrl: string; + encode(message: StakeAuthorization_Validators, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): StakeAuthorization_Validators; fromJSON(object: any): StakeAuthorization_Validators; toJSON(message: StakeAuthorization_Validators): unknown; fromPartial(object: Partial): StakeAuthorization_Validators; diff --git a/packages/api/types/codegen/cosmos/staking/v1beta1/genesis.d.ts b/packages/api/types/codegen/cosmos/staking/v1beta1/genesis.d.ts index aec8f75..38b8d6d 100644 --- a/packages/api/types/codegen/cosmos/staking/v1beta1/genesis.d.ts +++ b/packages/api/types/codegen/cosmos/staking/v1beta1/genesis.d.ts @@ -1,6 +1,5 @@ import { Params, ParamsAmino, ParamsSDKType, Validator, ValidatorAmino, ValidatorSDKType, Delegation, DelegationAmino, DelegationSDKType, UnbondingDelegation, UnbondingDelegationAmino, UnbondingDelegationSDKType, Redelegation, RedelegationAmino, RedelegationSDKType } from "./staking"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { /** params defines all the paramaters of related to deposit. */ @@ -37,21 +36,21 @@ export interface GenesisStateAmino { * last_total_power tracks the total amounts of bonded tokens recorded during * the previous end block. */ - last_total_power: Uint8Array; + last_total_power?: string; /** * last_validator_powers is a special index that provides a historical list * of the last-block's bonded validators. */ - last_validator_powers: LastValidatorPowerAmino[]; + last_validator_powers?: LastValidatorPowerAmino[]; /** delegations defines the validator set at genesis. */ - validators: ValidatorAmino[]; + validators?: ValidatorAmino[]; /** delegations defines the delegations active at genesis. */ - delegations: DelegationAmino[]; + delegations?: DelegationAmino[]; /** unbonding_delegations defines the unbonding delegations active at genesis. */ - unbonding_delegations: UnbondingDelegationAmino[]; + unbonding_delegations?: UnbondingDelegationAmino[]; /** redelegations defines the redelegations active at genesis. */ - redelegations: RedelegationAmino[]; - exported: boolean; + redelegations?: RedelegationAmino[]; + exported?: boolean; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -73,7 +72,7 @@ export interface LastValidatorPower { /** address is the address of the validator. */ address: string; /** power defines the power of the validator. */ - power: Long; + power: bigint; } export interface LastValidatorPowerProtoMsg { typeUrl: "/cosmos.staking.v1beta1.LastValidatorPower"; @@ -82,9 +81,9 @@ export interface LastValidatorPowerProtoMsg { /** LastValidatorPower required for validator set update logic. */ export interface LastValidatorPowerAmino { /** address is the address of the validator. */ - address: string; + address?: string; /** power defines the power of the validator. */ - power: string; + power?: string; } export interface LastValidatorPowerAminoMsg { type: "cosmos-sdk/LastValidatorPower"; @@ -93,11 +92,12 @@ export interface LastValidatorPowerAminoMsg { /** LastValidatorPower required for validator set update logic. */ export interface LastValidatorPowerSDKType { address: string; - power: Long; + power: bigint; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; @@ -110,8 +110,9 @@ export declare const GenesisState: { toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const LastValidatorPower: { - encode(message: LastValidatorPower, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): LastValidatorPower; + typeUrl: string; + encode(message: LastValidatorPower, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): LastValidatorPower; fromJSON(object: any): LastValidatorPower; toJSON(message: LastValidatorPower): unknown; fromPartial(object: Partial): LastValidatorPower; diff --git a/packages/api/types/codegen/cosmos/staking/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/staking/v1beta1/query.d.ts index 035f5db..a1f0d75 100644 --- a/packages/api/types/codegen/cosmos/staking/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/staking/v1beta1/query.d.ts @@ -1,13 +1,12 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../base/query/v1beta1/pagination"; import { Validator, ValidatorAmino, ValidatorSDKType, DelegationResponse, DelegationResponseAmino, DelegationResponseSDKType, UnbondingDelegation, UnbondingDelegationAmino, UnbondingDelegationSDKType, RedelegationResponse, RedelegationResponseAmino, RedelegationResponseSDKType, HistoricalInfo, HistoricalInfoAmino, HistoricalInfoSDKType, Pool, PoolAmino, PoolSDKType, Params, ParamsAmino, ParamsSDKType } from "./staking"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryValidatorsRequest is request type for Query/Validators RPC method. */ export interface QueryValidatorsRequest { /** status enables to query for validators matching a given status. */ status: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryValidatorsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest"; @@ -16,7 +15,7 @@ export interface QueryValidatorsRequestProtoMsg { /** QueryValidatorsRequest is request type for Query/Validators RPC method. */ export interface QueryValidatorsRequestAmino { /** status enables to query for validators matching a given status. */ - status: string; + status?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -27,14 +26,14 @@ export interface QueryValidatorsRequestAminoMsg { /** QueryValidatorsRequest is request type for Query/Validators RPC method. */ export interface QueryValidatorsRequestSDKType { status: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryValidatorsResponse is response type for the Query/Validators RPC method */ export interface QueryValidatorsResponse { /** validators contains all the queried validators. */ validators: Validator[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryValidatorsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse"; @@ -43,7 +42,7 @@ export interface QueryValidatorsResponseProtoMsg { /** QueryValidatorsResponse is response type for the Query/Validators RPC method */ export interface QueryValidatorsResponseAmino { /** validators contains all the queried validators. */ - validators: ValidatorAmino[]; + validators?: ValidatorAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -54,7 +53,7 @@ export interface QueryValidatorsResponseAminoMsg { /** QueryValidatorsResponse is response type for the Query/Validators RPC method */ export interface QueryValidatorsResponseSDKType { validators: ValidatorSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryValidatorRequest is response type for the Query/Validator RPC method */ export interface QueryValidatorRequest { @@ -68,7 +67,7 @@ export interface QueryValidatorRequestProtoMsg { /** QueryValidatorRequest is response type for the Query/Validator RPC method */ export interface QueryValidatorRequestAmino { /** validator_addr defines the validator address to query for. */ - validator_addr: string; + validator_addr?: string; } export interface QueryValidatorRequestAminoMsg { type: "cosmos-sdk/QueryValidatorRequest"; @@ -108,7 +107,7 @@ export interface QueryValidatorDelegationsRequest { /** validator_addr defines the validator address to query for. */ validatorAddr: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryValidatorDelegationsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsRequest"; @@ -120,7 +119,7 @@ export interface QueryValidatorDelegationsRequestProtoMsg { */ export interface QueryValidatorDelegationsRequestAmino { /** validator_addr defines the validator address to query for. */ - validator_addr: string; + validator_addr?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -134,7 +133,7 @@ export interface QueryValidatorDelegationsRequestAminoMsg { */ export interface QueryValidatorDelegationsRequestSDKType { validator_addr: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryValidatorDelegationsResponse is response type for the @@ -143,7 +142,7 @@ export interface QueryValidatorDelegationsRequestSDKType { export interface QueryValidatorDelegationsResponse { delegationResponses: DelegationResponse[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryValidatorDelegationsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsResponse"; @@ -154,7 +153,7 @@ export interface QueryValidatorDelegationsResponseProtoMsg { * Query/ValidatorDelegations RPC method */ export interface QueryValidatorDelegationsResponseAmino { - delegation_responses: DelegationResponseAmino[]; + delegation_responses?: DelegationResponseAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -168,7 +167,7 @@ export interface QueryValidatorDelegationsResponseAminoMsg { */ export interface QueryValidatorDelegationsResponseSDKType { delegation_responses: DelegationResponseSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryValidatorUnbondingDelegationsRequest is required type for the @@ -178,7 +177,7 @@ export interface QueryValidatorUnbondingDelegationsRequest { /** validator_addr defines the validator address to query for. */ validatorAddr: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryValidatorUnbondingDelegationsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest"; @@ -190,7 +189,7 @@ export interface QueryValidatorUnbondingDelegationsRequestProtoMsg { */ export interface QueryValidatorUnbondingDelegationsRequestAmino { /** validator_addr defines the validator address to query for. */ - validator_addr: string; + validator_addr?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -204,7 +203,7 @@ export interface QueryValidatorUnbondingDelegationsRequestAminoMsg { */ export interface QueryValidatorUnbondingDelegationsRequestSDKType { validator_addr: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryValidatorUnbondingDelegationsResponse is response type for the @@ -213,7 +212,7 @@ export interface QueryValidatorUnbondingDelegationsRequestSDKType { export interface QueryValidatorUnbondingDelegationsResponse { unbondingResponses: UnbondingDelegation[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryValidatorUnbondingDelegationsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse"; @@ -224,7 +223,7 @@ export interface QueryValidatorUnbondingDelegationsResponseProtoMsg { * Query/ValidatorUnbondingDelegations RPC method. */ export interface QueryValidatorUnbondingDelegationsResponseAmino { - unbonding_responses: UnbondingDelegationAmino[]; + unbonding_responses?: UnbondingDelegationAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -238,7 +237,7 @@ export interface QueryValidatorUnbondingDelegationsResponseAminoMsg { */ export interface QueryValidatorUnbondingDelegationsResponseSDKType { unbonding_responses: UnbondingDelegationSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryDelegationRequest is request type for the Query/Delegation RPC method. */ export interface QueryDelegationRequest { @@ -254,9 +253,9 @@ export interface QueryDelegationRequestProtoMsg { /** QueryDelegationRequest is request type for the Query/Delegation RPC method. */ export interface QueryDelegationRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** validator_addr defines the validator address to query for. */ - validator_addr: string; + validator_addr?: string; } export interface QueryDelegationRequestAminoMsg { type: "cosmos-sdk/QueryDelegationRequest"; @@ -270,7 +269,7 @@ export interface QueryDelegationRequestSDKType { /** QueryDelegationResponse is response type for the Query/Delegation RPC method. */ export interface QueryDelegationResponse { /** delegation_responses defines the delegation info of a delegation. */ - delegationResponse: DelegationResponse; + delegationResponse?: DelegationResponse; } export interface QueryDelegationResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse"; @@ -287,7 +286,7 @@ export interface QueryDelegationResponseAminoMsg { } /** QueryDelegationResponse is response type for the Query/Delegation RPC method. */ export interface QueryDelegationResponseSDKType { - delegation_response: DelegationResponseSDKType; + delegation_response?: DelegationResponseSDKType; } /** * QueryUnbondingDelegationRequest is request type for the @@ -309,9 +308,9 @@ export interface QueryUnbondingDelegationRequestProtoMsg { */ export interface QueryUnbondingDelegationRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** validator_addr defines the validator address to query for. */ - validator_addr: string; + validator_addr?: string; } export interface QueryUnbondingDelegationRequestAminoMsg { type: "cosmos-sdk/QueryUnbondingDelegationRequest"; @@ -364,7 +363,7 @@ export interface QueryDelegatorDelegationsRequest { /** delegator_addr defines the delegator address to query for. */ delegatorAddr: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDelegatorDelegationsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest"; @@ -376,7 +375,7 @@ export interface QueryDelegatorDelegationsRequestProtoMsg { */ export interface QueryDelegatorDelegationsRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -390,7 +389,7 @@ export interface QueryDelegatorDelegationsRequestAminoMsg { */ export interface QueryDelegatorDelegationsRequestSDKType { delegator_addr: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryDelegatorDelegationsResponse is response type for the @@ -400,7 +399,7 @@ export interface QueryDelegatorDelegationsResponse { /** delegation_responses defines all the delegations' info of a delegator. */ delegationResponses: DelegationResponse[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDelegatorDelegationsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse"; @@ -412,7 +411,7 @@ export interface QueryDelegatorDelegationsResponseProtoMsg { */ export interface QueryDelegatorDelegationsResponseAmino { /** delegation_responses defines all the delegations' info of a delegator. */ - delegation_responses: DelegationResponseAmino[]; + delegation_responses?: DelegationResponseAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -426,7 +425,7 @@ export interface QueryDelegatorDelegationsResponseAminoMsg { */ export interface QueryDelegatorDelegationsResponseSDKType { delegation_responses: DelegationResponseSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryDelegatorUnbondingDelegationsRequest is request type for the @@ -436,7 +435,7 @@ export interface QueryDelegatorUnbondingDelegationsRequest { /** delegator_addr defines the delegator address to query for. */ delegatorAddr: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest"; @@ -448,7 +447,7 @@ export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg { */ export interface QueryDelegatorUnbondingDelegationsRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -462,7 +461,7 @@ export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg { */ export interface QueryDelegatorUnbondingDelegationsRequestSDKType { delegator_addr: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryUnbondingDelegatorDelegationsResponse is response type for the @@ -471,7 +470,7 @@ export interface QueryDelegatorUnbondingDelegationsRequestSDKType { export interface QueryDelegatorUnbondingDelegationsResponse { unbondingResponses: UnbondingDelegation[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse"; @@ -482,7 +481,7 @@ export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg { * Query/UnbondingDelegatorDelegations RPC method. */ export interface QueryDelegatorUnbondingDelegationsResponseAmino { - unbonding_responses: UnbondingDelegationAmino[]; + unbonding_responses?: UnbondingDelegationAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -496,7 +495,7 @@ export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg { */ export interface QueryDelegatorUnbondingDelegationsResponseSDKType { unbonding_responses: UnbondingDelegationSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryRedelegationsRequest is request type for the Query/Redelegations RPC @@ -510,7 +509,7 @@ export interface QueryRedelegationsRequest { /** dst_validator_addr defines the validator address to redelegate to. */ dstValidatorAddr: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryRedelegationsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsRequest"; @@ -522,11 +521,11 @@ export interface QueryRedelegationsRequestProtoMsg { */ export interface QueryRedelegationsRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** src_validator_addr defines the validator address to redelegate from. */ - src_validator_addr: string; + src_validator_addr?: string; /** dst_validator_addr defines the validator address to redelegate to. */ - dst_validator_addr: string; + dst_validator_addr?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -542,7 +541,7 @@ export interface QueryRedelegationsRequestSDKType { delegator_addr: string; src_validator_addr: string; dst_validator_addr: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryRedelegationsResponse is response type for the Query/Redelegations RPC @@ -551,7 +550,7 @@ export interface QueryRedelegationsRequestSDKType { export interface QueryRedelegationsResponse { redelegationResponses: RedelegationResponse[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryRedelegationsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsResponse"; @@ -562,7 +561,7 @@ export interface QueryRedelegationsResponseProtoMsg { * method. */ export interface QueryRedelegationsResponseAmino { - redelegation_responses: RedelegationResponseAmino[]; + redelegation_responses?: RedelegationResponseAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -576,7 +575,7 @@ export interface QueryRedelegationsResponseAminoMsg { */ export interface QueryRedelegationsResponseSDKType { redelegation_responses: RedelegationResponseSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryDelegatorValidatorsRequest is request type for the @@ -586,7 +585,7 @@ export interface QueryDelegatorValidatorsRequest { /** delegator_addr defines the delegator address to query for. */ delegatorAddr: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDelegatorValidatorsRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest"; @@ -598,7 +597,7 @@ export interface QueryDelegatorValidatorsRequestProtoMsg { */ export interface QueryDelegatorValidatorsRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -612,7 +611,7 @@ export interface QueryDelegatorValidatorsRequestAminoMsg { */ export interface QueryDelegatorValidatorsRequestSDKType { delegator_addr: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryDelegatorValidatorsResponse is response type for the @@ -622,7 +621,7 @@ export interface QueryDelegatorValidatorsResponse { /** validators defines the validators' info of a delegator. */ validators: Validator[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDelegatorValidatorsResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse"; @@ -634,7 +633,7 @@ export interface QueryDelegatorValidatorsResponseProtoMsg { */ export interface QueryDelegatorValidatorsResponseAmino { /** validators defines the validators' info of a delegator. */ - validators: ValidatorAmino[]; + validators?: ValidatorAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -648,7 +647,7 @@ export interface QueryDelegatorValidatorsResponseAminoMsg { */ export interface QueryDelegatorValidatorsResponseSDKType { validators: ValidatorSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryDelegatorValidatorRequest is request type for the @@ -670,9 +669,9 @@ export interface QueryDelegatorValidatorRequestProtoMsg { */ export interface QueryDelegatorValidatorRequestAmino { /** delegator_addr defines the delegator address to query for. */ - delegator_addr: string; + delegator_addr?: string; /** validator_addr defines the validator address to query for. */ - validator_addr: string; + validator_addr?: string; } export interface QueryDelegatorValidatorRequestAminoMsg { type: "cosmos-sdk/QueryDelegatorValidatorRequest"; @@ -723,7 +722,7 @@ export interface QueryDelegatorValidatorResponseSDKType { */ export interface QueryHistoricalInfoRequest { /** height defines at which height to query the historical info. */ - height: Long; + height: bigint; } export interface QueryHistoricalInfoRequestProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoRequest"; @@ -735,7 +734,7 @@ export interface QueryHistoricalInfoRequestProtoMsg { */ export interface QueryHistoricalInfoRequestAmino { /** height defines at which height to query the historical info. */ - height: string; + height?: string; } export interface QueryHistoricalInfoRequestAminoMsg { type: "cosmos-sdk/QueryHistoricalInfoRequest"; @@ -746,7 +745,7 @@ export interface QueryHistoricalInfoRequestAminoMsg { * method. */ export interface QueryHistoricalInfoRequestSDKType { - height: Long; + height: bigint; } /** * QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC @@ -754,7 +753,7 @@ export interface QueryHistoricalInfoRequestSDKType { */ export interface QueryHistoricalInfoResponse { /** hist defines the historical info at the given height. */ - hist: HistoricalInfo; + hist?: HistoricalInfo; } export interface QueryHistoricalInfoResponseProtoMsg { typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoResponse"; @@ -777,7 +776,7 @@ export interface QueryHistoricalInfoResponseAminoMsg { * method. */ export interface QueryHistoricalInfoResponseSDKType { - hist: HistoricalInfoSDKType; + hist?: HistoricalInfoSDKType; } /** QueryPoolRequest is request type for the Query/Pool RPC method. */ export interface QueryPoolRequest { @@ -858,8 +857,9 @@ export interface QueryParamsResponseSDKType { params: ParamsSDKType; } export declare const QueryValidatorsRequest: { - encode(message: QueryValidatorsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorsRequest; + typeUrl: string; + encode(message: QueryValidatorsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorsRequest; fromJSON(object: any): QueryValidatorsRequest; toJSON(message: QueryValidatorsRequest): unknown; fromPartial(object: Partial): QueryValidatorsRequest; @@ -872,8 +872,9 @@ export declare const QueryValidatorsRequest: { toProtoMsg(message: QueryValidatorsRequest): QueryValidatorsRequestProtoMsg; }; export declare const QueryValidatorsResponse: { - encode(message: QueryValidatorsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorsResponse; + typeUrl: string; + encode(message: QueryValidatorsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorsResponse; fromJSON(object: any): QueryValidatorsResponse; toJSON(message: QueryValidatorsResponse): unknown; fromPartial(object: Partial): QueryValidatorsResponse; @@ -886,8 +887,9 @@ export declare const QueryValidatorsResponse: { toProtoMsg(message: QueryValidatorsResponse): QueryValidatorsResponseProtoMsg; }; export declare const QueryValidatorRequest: { - encode(message: QueryValidatorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorRequest; + typeUrl: string; + encode(message: QueryValidatorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorRequest; fromJSON(object: any): QueryValidatorRequest; toJSON(message: QueryValidatorRequest): unknown; fromPartial(object: Partial): QueryValidatorRequest; @@ -900,8 +902,9 @@ export declare const QueryValidatorRequest: { toProtoMsg(message: QueryValidatorRequest): QueryValidatorRequestProtoMsg; }; export declare const QueryValidatorResponse: { - encode(message: QueryValidatorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorResponse; + typeUrl: string; + encode(message: QueryValidatorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorResponse; fromJSON(object: any): QueryValidatorResponse; toJSON(message: QueryValidatorResponse): unknown; fromPartial(object: Partial): QueryValidatorResponse; @@ -914,8 +917,9 @@ export declare const QueryValidatorResponse: { toProtoMsg(message: QueryValidatorResponse): QueryValidatorResponseProtoMsg; }; export declare const QueryValidatorDelegationsRequest: { - encode(message: QueryValidatorDelegationsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDelegationsRequest; + typeUrl: string; + encode(message: QueryValidatorDelegationsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorDelegationsRequest; fromJSON(object: any): QueryValidatorDelegationsRequest; toJSON(message: QueryValidatorDelegationsRequest): unknown; fromPartial(object: Partial): QueryValidatorDelegationsRequest; @@ -928,8 +932,9 @@ export declare const QueryValidatorDelegationsRequest: { toProtoMsg(message: QueryValidatorDelegationsRequest): QueryValidatorDelegationsRequestProtoMsg; }; export declare const QueryValidatorDelegationsResponse: { - encode(message: QueryValidatorDelegationsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDelegationsResponse; + typeUrl: string; + encode(message: QueryValidatorDelegationsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorDelegationsResponse; fromJSON(object: any): QueryValidatorDelegationsResponse; toJSON(message: QueryValidatorDelegationsResponse): unknown; fromPartial(object: Partial): QueryValidatorDelegationsResponse; @@ -942,8 +947,9 @@ export declare const QueryValidatorDelegationsResponse: { toProtoMsg(message: QueryValidatorDelegationsResponse): QueryValidatorDelegationsResponseProtoMsg; }; export declare const QueryValidatorUnbondingDelegationsRequest: { - encode(message: QueryValidatorUnbondingDelegationsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsRequest; + typeUrl: string; + encode(message: QueryValidatorUnbondingDelegationsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsRequest; fromJSON(object: any): QueryValidatorUnbondingDelegationsRequest; toJSON(message: QueryValidatorUnbondingDelegationsRequest): unknown; fromPartial(object: Partial): QueryValidatorUnbondingDelegationsRequest; @@ -956,8 +962,9 @@ export declare const QueryValidatorUnbondingDelegationsRequest: { toProtoMsg(message: QueryValidatorUnbondingDelegationsRequest): QueryValidatorUnbondingDelegationsRequestProtoMsg; }; export declare const QueryValidatorUnbondingDelegationsResponse: { - encode(message: QueryValidatorUnbondingDelegationsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsResponse; + typeUrl: string; + encode(message: QueryValidatorUnbondingDelegationsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsResponse; fromJSON(object: any): QueryValidatorUnbondingDelegationsResponse; toJSON(message: QueryValidatorUnbondingDelegationsResponse): unknown; fromPartial(object: Partial): QueryValidatorUnbondingDelegationsResponse; @@ -970,8 +977,9 @@ export declare const QueryValidatorUnbondingDelegationsResponse: { toProtoMsg(message: QueryValidatorUnbondingDelegationsResponse): QueryValidatorUnbondingDelegationsResponseProtoMsg; }; export declare const QueryDelegationRequest: { - encode(message: QueryDelegationRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationRequest; + typeUrl: string; + encode(message: QueryDelegationRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationRequest; fromJSON(object: any): QueryDelegationRequest; toJSON(message: QueryDelegationRequest): unknown; fromPartial(object: Partial): QueryDelegationRequest; @@ -984,8 +992,9 @@ export declare const QueryDelegationRequest: { toProtoMsg(message: QueryDelegationRequest): QueryDelegationRequestProtoMsg; }; export declare const QueryDelegationResponse: { - encode(message: QueryDelegationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationResponse; + typeUrl: string; + encode(message: QueryDelegationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegationResponse; fromJSON(object: any): QueryDelegationResponse; toJSON(message: QueryDelegationResponse): unknown; fromPartial(object: Partial): QueryDelegationResponse; @@ -998,8 +1007,9 @@ export declare const QueryDelegationResponse: { toProtoMsg(message: QueryDelegationResponse): QueryDelegationResponseProtoMsg; }; export declare const QueryUnbondingDelegationRequest: { - encode(message: QueryUnbondingDelegationRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUnbondingDelegationRequest; + typeUrl: string; + encode(message: QueryUnbondingDelegationRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUnbondingDelegationRequest; fromJSON(object: any): QueryUnbondingDelegationRequest; toJSON(message: QueryUnbondingDelegationRequest): unknown; fromPartial(object: Partial): QueryUnbondingDelegationRequest; @@ -1012,8 +1022,9 @@ export declare const QueryUnbondingDelegationRequest: { toProtoMsg(message: QueryUnbondingDelegationRequest): QueryUnbondingDelegationRequestProtoMsg; }; export declare const QueryUnbondingDelegationResponse: { - encode(message: QueryUnbondingDelegationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUnbondingDelegationResponse; + typeUrl: string; + encode(message: QueryUnbondingDelegationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUnbondingDelegationResponse; fromJSON(object: any): QueryUnbondingDelegationResponse; toJSON(message: QueryUnbondingDelegationResponse): unknown; fromPartial(object: Partial): QueryUnbondingDelegationResponse; @@ -1026,8 +1037,9 @@ export declare const QueryUnbondingDelegationResponse: { toProtoMsg(message: QueryUnbondingDelegationResponse): QueryUnbondingDelegationResponseProtoMsg; }; export declare const QueryDelegatorDelegationsRequest: { - encode(message: QueryDelegatorDelegationsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorDelegationsRequest; + typeUrl: string; + encode(message: QueryDelegatorDelegationsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorDelegationsRequest; fromJSON(object: any): QueryDelegatorDelegationsRequest; toJSON(message: QueryDelegatorDelegationsRequest): unknown; fromPartial(object: Partial): QueryDelegatorDelegationsRequest; @@ -1040,8 +1052,9 @@ export declare const QueryDelegatorDelegationsRequest: { toProtoMsg(message: QueryDelegatorDelegationsRequest): QueryDelegatorDelegationsRequestProtoMsg; }; export declare const QueryDelegatorDelegationsResponse: { - encode(message: QueryDelegatorDelegationsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorDelegationsResponse; + typeUrl: string; + encode(message: QueryDelegatorDelegationsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorDelegationsResponse; fromJSON(object: any): QueryDelegatorDelegationsResponse; toJSON(message: QueryDelegatorDelegationsResponse): unknown; fromPartial(object: Partial): QueryDelegatorDelegationsResponse; @@ -1054,8 +1067,9 @@ export declare const QueryDelegatorDelegationsResponse: { toProtoMsg(message: QueryDelegatorDelegationsResponse): QueryDelegatorDelegationsResponseProtoMsg; }; export declare const QueryDelegatorUnbondingDelegationsRequest: { - encode(message: QueryDelegatorUnbondingDelegationsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsRequest; + typeUrl: string; + encode(message: QueryDelegatorUnbondingDelegationsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsRequest; fromJSON(object: any): QueryDelegatorUnbondingDelegationsRequest; toJSON(message: QueryDelegatorUnbondingDelegationsRequest): unknown; fromPartial(object: Partial): QueryDelegatorUnbondingDelegationsRequest; @@ -1068,8 +1082,9 @@ export declare const QueryDelegatorUnbondingDelegationsRequest: { toProtoMsg(message: QueryDelegatorUnbondingDelegationsRequest): QueryDelegatorUnbondingDelegationsRequestProtoMsg; }; export declare const QueryDelegatorUnbondingDelegationsResponse: { - encode(message: QueryDelegatorUnbondingDelegationsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsResponse; + typeUrl: string; + encode(message: QueryDelegatorUnbondingDelegationsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsResponse; fromJSON(object: any): QueryDelegatorUnbondingDelegationsResponse; toJSON(message: QueryDelegatorUnbondingDelegationsResponse): unknown; fromPartial(object: Partial): QueryDelegatorUnbondingDelegationsResponse; @@ -1082,8 +1097,9 @@ export declare const QueryDelegatorUnbondingDelegationsResponse: { toProtoMsg(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseProtoMsg; }; export declare const QueryRedelegationsRequest: { - encode(message: QueryRedelegationsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryRedelegationsRequest; + typeUrl: string; + encode(message: QueryRedelegationsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryRedelegationsRequest; fromJSON(object: any): QueryRedelegationsRequest; toJSON(message: QueryRedelegationsRequest): unknown; fromPartial(object: Partial): QueryRedelegationsRequest; @@ -1096,8 +1112,9 @@ export declare const QueryRedelegationsRequest: { toProtoMsg(message: QueryRedelegationsRequest): QueryRedelegationsRequestProtoMsg; }; export declare const QueryRedelegationsResponse: { - encode(message: QueryRedelegationsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryRedelegationsResponse; + typeUrl: string; + encode(message: QueryRedelegationsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryRedelegationsResponse; fromJSON(object: any): QueryRedelegationsResponse; toJSON(message: QueryRedelegationsResponse): unknown; fromPartial(object: Partial): QueryRedelegationsResponse; @@ -1110,8 +1127,9 @@ export declare const QueryRedelegationsResponse: { toProtoMsg(message: QueryRedelegationsResponse): QueryRedelegationsResponseProtoMsg; }; export declare const QueryDelegatorValidatorsRequest: { - encode(message: QueryDelegatorValidatorsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest; + typeUrl: string; + encode(message: QueryDelegatorValidatorsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest; fromJSON(object: any): QueryDelegatorValidatorsRequest; toJSON(message: QueryDelegatorValidatorsRequest): unknown; fromPartial(object: Partial): QueryDelegatorValidatorsRequest; @@ -1124,8 +1142,9 @@ export declare const QueryDelegatorValidatorsRequest: { toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg; }; export declare const QueryDelegatorValidatorsResponse: { - encode(message: QueryDelegatorValidatorsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse; + typeUrl: string; + encode(message: QueryDelegatorValidatorsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse; fromJSON(object: any): QueryDelegatorValidatorsResponse; toJSON(message: QueryDelegatorValidatorsResponse): unknown; fromPartial(object: Partial): QueryDelegatorValidatorsResponse; @@ -1138,8 +1157,9 @@ export declare const QueryDelegatorValidatorsResponse: { toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg; }; export declare const QueryDelegatorValidatorRequest: { - encode(message: QueryDelegatorValidatorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorRequest; + typeUrl: string; + encode(message: QueryDelegatorValidatorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorRequest; fromJSON(object: any): QueryDelegatorValidatorRequest; toJSON(message: QueryDelegatorValidatorRequest): unknown; fromPartial(object: Partial): QueryDelegatorValidatorRequest; @@ -1152,8 +1172,9 @@ export declare const QueryDelegatorValidatorRequest: { toProtoMsg(message: QueryDelegatorValidatorRequest): QueryDelegatorValidatorRequestProtoMsg; }; export declare const QueryDelegatorValidatorResponse: { - encode(message: QueryDelegatorValidatorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorResponse; + typeUrl: string; + encode(message: QueryDelegatorValidatorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDelegatorValidatorResponse; fromJSON(object: any): QueryDelegatorValidatorResponse; toJSON(message: QueryDelegatorValidatorResponse): unknown; fromPartial(object: Partial): QueryDelegatorValidatorResponse; @@ -1166,8 +1187,9 @@ export declare const QueryDelegatorValidatorResponse: { toProtoMsg(message: QueryDelegatorValidatorResponse): QueryDelegatorValidatorResponseProtoMsg; }; export declare const QueryHistoricalInfoRequest: { - encode(message: QueryHistoricalInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryHistoricalInfoRequest; + typeUrl: string; + encode(message: QueryHistoricalInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryHistoricalInfoRequest; fromJSON(object: any): QueryHistoricalInfoRequest; toJSON(message: QueryHistoricalInfoRequest): unknown; fromPartial(object: Partial): QueryHistoricalInfoRequest; @@ -1180,8 +1202,9 @@ export declare const QueryHistoricalInfoRequest: { toProtoMsg(message: QueryHistoricalInfoRequest): QueryHistoricalInfoRequestProtoMsg; }; export declare const QueryHistoricalInfoResponse: { - encode(message: QueryHistoricalInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryHistoricalInfoResponse; + typeUrl: string; + encode(message: QueryHistoricalInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryHistoricalInfoResponse; fromJSON(object: any): QueryHistoricalInfoResponse; toJSON(message: QueryHistoricalInfoResponse): unknown; fromPartial(object: Partial): QueryHistoricalInfoResponse; @@ -1194,8 +1217,9 @@ export declare const QueryHistoricalInfoResponse: { toProtoMsg(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseProtoMsg; }; export declare const QueryPoolRequest: { - encode(_: QueryPoolRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryPoolRequest; + typeUrl: string; + encode(_: QueryPoolRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryPoolRequest; fromJSON(_: any): QueryPoolRequest; toJSON(_: QueryPoolRequest): unknown; fromPartial(_: Partial): QueryPoolRequest; @@ -1208,8 +1232,9 @@ export declare const QueryPoolRequest: { toProtoMsg(message: QueryPoolRequest): QueryPoolRequestProtoMsg; }; export declare const QueryPoolResponse: { - encode(message: QueryPoolResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryPoolResponse; + typeUrl: string; + encode(message: QueryPoolResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryPoolResponse; fromJSON(object: any): QueryPoolResponse; toJSON(message: QueryPoolResponse): unknown; fromPartial(object: Partial): QueryPoolResponse; @@ -1222,8 +1247,9 @@ export declare const QueryPoolResponse: { toProtoMsg(message: QueryPoolResponse): QueryPoolResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -1236,8 +1262,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; diff --git a/packages/api/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts index f477464..0f29585 100644 --- a/packages/api/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryValidatorsRequest, QueryValidatorsResponseSDKType, QueryValidatorRequest, QueryValidatorResponseSDKType, QueryValidatorDelegationsRequest, QueryValidatorDelegationsResponseSDKType, QueryValidatorUnbondingDelegationsRequest, QueryValidatorUnbondingDelegationsResponseSDKType, QueryDelegationRequest, QueryDelegationResponseSDKType, QueryUnbondingDelegationRequest, QueryUnbondingDelegationResponseSDKType, QueryDelegatorDelegationsRequest, QueryDelegatorDelegationsResponseSDKType, QueryDelegatorUnbondingDelegationsRequest, QueryDelegatorUnbondingDelegationsResponseSDKType, QueryRedelegationsRequest, QueryRedelegationsResponseSDKType, QueryDelegatorValidatorsRequest, QueryDelegatorValidatorsResponseSDKType, QueryDelegatorValidatorRequest, QueryDelegatorValidatorResponseSDKType, QueryHistoricalInfoRequest, QueryHistoricalInfoResponseSDKType, QueryPoolRequest, QueryPoolResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/staking/v1beta1/staking.d.ts b/packages/api/types/codegen/cosmos/staking/v1beta1/staking.d.ts index 61e3d2f..1997f71 100644 --- a/packages/api/types/codegen/cosmos/staking/v1beta1/staking.d.ts +++ b/packages/api/types/codegen/cosmos/staking/v1beta1/staking.d.ts @@ -1,10 +1,10 @@ import { Header, HeaderAmino, HeaderSDKType } from "../../../tendermint/types/types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; +import { Pubkey } from "@cosmjs/amino"; /** BondStatus is the status of a validator. */ export declare enum BondStatus { /** BOND_STATUS_UNSPECIFIED - UNSPECIFIED defines an invalid validator status. */ @@ -43,7 +43,7 @@ export interface HistoricalInfoProtoMsg { */ export interface HistoricalInfoAmino { header?: HeaderAmino; - valset: ValidatorAmino[]; + valset?: ValidatorAmino[]; } export interface HistoricalInfoAminoMsg { type: "cosmos-sdk/HistoricalInfo"; @@ -81,11 +81,11 @@ export interface CommissionRatesProtoMsg { */ export interface CommissionRatesAmino { /** rate is the commission rate charged to delegators, as a fraction. */ - rate: string; + rate?: string; /** max_rate defines the maximum commission rate which validator can ever charge, as a fraction. */ - max_rate: string; + max_rate?: string; /** max_change_rate defines the maximum daily increase of the validator commission, as a fraction. */ - max_change_rate: string; + max_change_rate?: string; } export interface CommissionRatesAminoMsg { type: "cosmos-sdk/CommissionRates"; @@ -116,7 +116,7 @@ export interface CommissionAmino { /** commission_rates defines the initial commission rates to be used for creating a validator. */ commission_rates?: CommissionRatesAmino; /** update_time is the last time the commission rate was changed. */ - update_time?: TimestampAmino; + update_time?: string; } export interface CommissionAminoMsg { type: "cosmos-sdk/Commission"; @@ -147,15 +147,15 @@ export interface DescriptionProtoMsg { /** Description defines a validator description. */ export interface DescriptionAmino { /** moniker defines a human-readable name for the validator. */ - moniker: string; + moniker?: string; /** identity defines an optional identity signature (ex. UPort or Keybase). */ - identity: string; + identity?: string; /** website defines an optional website link. */ - website: string; + website?: string; /** security_contact defines an optional email for security contact. */ - security_contact: string; + security_contact?: string; /** details define other optional details. */ - details: string; + details?: string; } export interface DescriptionAminoMsg { type: "cosmos-sdk/Description"; @@ -183,7 +183,7 @@ export interface Validator { /** operator_address defines the address of the validator's operator; bech encoded in JSON. */ operatorAddress: string; /** consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. */ - consensusPubkey: (Any) | undefined; + consensusPubkey?: (Any) | undefined; /** jailed defined whether the validator has been jailed from bonded status or not. */ jailed: boolean; /** status is the validator status (bonded/unbonding/unbonded). */ @@ -195,7 +195,7 @@ export interface Validator { /** description defines the description terms for the validator. */ description: Description; /** unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. */ - unbondingHeight: Long; + unbondingHeight: bigint; /** unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. */ unbondingTime: Timestamp; /** commission defines the commission parameters. */ @@ -226,23 +226,23 @@ export type ValidatorEncoded = Omit & { */ export interface ValidatorAmino { /** operator_address defines the address of the validator's operator; bech encoded in JSON. */ - operator_address: string; + operator_address?: string; /** consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. */ consensus_pubkey?: AnyAmino; /** jailed defined whether the validator has been jailed from bonded status or not. */ - jailed: boolean; + jailed?: boolean; /** status is the validator status (bonded/unbonding/unbonded). */ - status: BondStatus; + status?: BondStatus; /** tokens define the delegated tokens (incl. self-delegation). */ - tokens: string; + tokens?: string; /** delegator_shares defines total shares issued to a validator's delegators. */ - delegator_shares: string; + delegator_shares?: string; /** description defines the description terms for the validator. */ description?: DescriptionAmino; /** unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. */ - unbonding_height: string; + unbonding_height?: string; /** unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. */ - unbonding_time?: TimestampAmino; + unbonding_time?: string; /** commission defines the commission parameters. */ commission?: CommissionAmino; /** @@ -250,7 +250,7 @@ export interface ValidatorAmino { * * Since: cosmos-sdk 0.46 */ - min_self_delegation: string; + min_self_delegation?: string; } export interface ValidatorAminoMsg { type: "cosmos-sdk/Validator"; @@ -268,13 +268,13 @@ export interface ValidatorAminoMsg { */ export interface ValidatorSDKType { operator_address: string; - consensus_pubkey: AnySDKType | undefined; + consensus_pubkey?: AnySDKType | undefined; jailed: boolean; status: BondStatus; tokens: string; delegator_shares: string; description: DescriptionSDKType; - unbonding_height: Long; + unbonding_height: bigint; unbonding_time: TimestampSDKType; commission: CommissionSDKType; min_self_delegation: string; @@ -289,7 +289,7 @@ export interface ValAddressesProtoMsg { } /** ValAddresses defines a repeated set of validator addresses. */ export interface ValAddressesAmino { - addresses: string[]; + addresses?: string[]; } export interface ValAddressesAminoMsg { type: "cosmos-sdk/ValAddresses"; @@ -318,8 +318,8 @@ export interface DVPairProtoMsg { * be used to construct the key to getting an UnbondingDelegation from state. */ export interface DVPairAmino { - delegator_address: string; - validator_address: string; + delegator_address?: string; + validator_address?: string; } export interface DVPairAminoMsg { type: "cosmos-sdk/DVPair"; @@ -344,7 +344,7 @@ export interface DVPairsProtoMsg { } /** DVPairs defines an array of DVPair objects. */ export interface DVPairsAmino { - pairs: DVPairAmino[]; + pairs?: DVPairAmino[]; } export interface DVPairsAminoMsg { type: "cosmos-sdk/DVPairs"; @@ -376,9 +376,9 @@ export interface DVVTripletProtoMsg { * Redelegation from state. */ export interface DVVTripletAmino { - delegator_address: string; - validator_src_address: string; - validator_dst_address: string; + delegator_address?: string; + validator_src_address?: string; + validator_dst_address?: string; } export interface DVVTripletAminoMsg { type: "cosmos-sdk/DVVTriplet"; @@ -405,7 +405,7 @@ export interface DVVTripletsProtoMsg { } /** DVVTriplets defines an array of DVVTriplet objects. */ export interface DVVTripletsAmino { - triplets: DVVTripletAmino[]; + triplets?: DVVTripletAmino[]; } export interface DVVTripletsAminoMsg { type: "cosmos-sdk/DVVTriplets"; @@ -439,11 +439,11 @@ export interface DelegationProtoMsg { */ export interface DelegationAmino { /** delegator_address is the bech32-encoded address of the delegator. */ - delegator_address: string; + delegator_address?: string; /** validator_address is the bech32-encoded address of the validator. */ - validator_address: string; + validator_address?: string; /** shares define the delegation shares received. */ - shares: string; + shares?: string; } export interface DelegationAminoMsg { type: "cosmos-sdk/Delegation"; @@ -481,11 +481,11 @@ export interface UnbondingDelegationProtoMsg { */ export interface UnbondingDelegationAmino { /** delegator_address is the bech32-encoded address of the delegator. */ - delegator_address: string; + delegator_address?: string; /** validator_address is the bech32-encoded address of the validator. */ - validator_address: string; + validator_address?: string; /** entries are the unbonding delegation entries. */ - entries: UnbondingDelegationEntryAmino[]; + entries?: UnbondingDelegationEntryAmino[]; } export interface UnbondingDelegationAminoMsg { type: "cosmos-sdk/UnbondingDelegation"; @@ -503,7 +503,7 @@ export interface UnbondingDelegationSDKType { /** UnbondingDelegationEntry defines an unbonding object with relevant metadata. */ export interface UnbondingDelegationEntry { /** creation_height is the height which the unbonding took place. */ - creationHeight: Long; + creationHeight: bigint; /** completion_time is the unix time for unbonding completion. */ completionTime: Timestamp; /** initial_balance defines the tokens initially scheduled to receive at completion. */ @@ -518,13 +518,13 @@ export interface UnbondingDelegationEntryProtoMsg { /** UnbondingDelegationEntry defines an unbonding object with relevant metadata. */ export interface UnbondingDelegationEntryAmino { /** creation_height is the height which the unbonding took place. */ - creation_height: string; + creation_height?: string; /** completion_time is the unix time for unbonding completion. */ - completion_time?: TimestampAmino; + completion_time?: string; /** initial_balance defines the tokens initially scheduled to receive at completion. */ - initial_balance: string; + initial_balance?: string; /** balance defines the tokens to receive at completion. */ - balance: string; + balance?: string; } export interface UnbondingDelegationEntryAminoMsg { type: "cosmos-sdk/UnbondingDelegationEntry"; @@ -532,7 +532,7 @@ export interface UnbondingDelegationEntryAminoMsg { } /** UnbondingDelegationEntry defines an unbonding object with relevant metadata. */ export interface UnbondingDelegationEntrySDKType { - creation_height: Long; + creation_height: bigint; completion_time: TimestampSDKType; initial_balance: string; balance: string; @@ -540,7 +540,7 @@ export interface UnbondingDelegationEntrySDKType { /** RedelegationEntry defines a redelegation object with relevant metadata. */ export interface RedelegationEntry { /** creation_height defines the height which the redelegation took place. */ - creationHeight: Long; + creationHeight: bigint; /** completion_time defines the unix time for redelegation completion. */ completionTime: Timestamp; /** initial_balance defines the initial balance when redelegation started. */ @@ -555,13 +555,13 @@ export interface RedelegationEntryProtoMsg { /** RedelegationEntry defines a redelegation object with relevant metadata. */ export interface RedelegationEntryAmino { /** creation_height defines the height which the redelegation took place. */ - creation_height: string; + creation_height?: string; /** completion_time defines the unix time for redelegation completion. */ - completion_time?: TimestampAmino; + completion_time?: string; /** initial_balance defines the initial balance when redelegation started. */ - initial_balance: string; + initial_balance?: string; /** shares_dst is the amount of destination-validator shares created by redelegation. */ - shares_dst: string; + shares_dst?: string; } export interface RedelegationEntryAminoMsg { type: "cosmos-sdk/RedelegationEntry"; @@ -569,7 +569,7 @@ export interface RedelegationEntryAminoMsg { } /** RedelegationEntry defines a redelegation object with relevant metadata. */ export interface RedelegationEntrySDKType { - creation_height: Long; + creation_height: bigint; completion_time: TimestampSDKType; initial_balance: string; shares_dst: string; @@ -598,13 +598,13 @@ export interface RedelegationProtoMsg { */ export interface RedelegationAmino { /** delegator_address is the bech32-encoded address of the delegator. */ - delegator_address: string; + delegator_address?: string; /** validator_src_address is the validator redelegation source operator address. */ - validator_src_address: string; + validator_src_address?: string; /** validator_dst_address is the validator redelegation destination operator address. */ - validator_dst_address: string; + validator_dst_address?: string; /** entries are the redelegation entries. */ - entries: RedelegationEntryAmino[]; + entries?: RedelegationEntryAmino[]; } export interface RedelegationAminoMsg { type: "cosmos-sdk/Redelegation"; @@ -644,15 +644,15 @@ export interface ParamsAmino { /** unbonding_time is the time duration of unbonding. */ unbonding_time?: DurationAmino; /** max_validators is the maximum number of validators. */ - max_validators: number; + max_validators?: number; /** max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). */ - max_entries: number; + max_entries?: number; /** historical_entries is the number of historical entries to persist. */ - historical_entries: number; + historical_entries?: number; /** bond_denom defines the bondable coin denomination. */ - bond_denom: string; + bond_denom?: string; /** min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators */ - min_commission_rate: string; + min_commission_rate?: string; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -719,7 +719,7 @@ export interface RedelegationEntryResponseProtoMsg { */ export interface RedelegationEntryResponseAmino { redelegation_entry?: RedelegationEntryAmino; - balance: string; + balance?: string; } export interface RedelegationEntryResponseAminoMsg { type: "cosmos-sdk/RedelegationEntryResponse"; @@ -754,7 +754,7 @@ export interface RedelegationResponseProtoMsg { */ export interface RedelegationResponseAmino { redelegation?: RedelegationAmino; - entries: RedelegationEntryResponseAmino[]; + entries?: RedelegationEntryResponseAmino[]; } export interface RedelegationResponseAminoMsg { type: "cosmos-sdk/RedelegationResponse"; @@ -802,8 +802,9 @@ export interface PoolSDKType { bonded_tokens: string; } export declare const HistoricalInfo: { - encode(message: HistoricalInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalInfo; + typeUrl: string; + encode(message: HistoricalInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): HistoricalInfo; fromJSON(object: any): HistoricalInfo; toJSON(message: HistoricalInfo): unknown; fromPartial(object: Partial): HistoricalInfo; @@ -816,8 +817,9 @@ export declare const HistoricalInfo: { toProtoMsg(message: HistoricalInfo): HistoricalInfoProtoMsg; }; export declare const CommissionRates: { - encode(message: CommissionRates, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommissionRates; + typeUrl: string; + encode(message: CommissionRates, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommissionRates; fromJSON(object: any): CommissionRates; toJSON(message: CommissionRates): unknown; fromPartial(object: Partial): CommissionRates; @@ -830,8 +832,9 @@ export declare const CommissionRates: { toProtoMsg(message: CommissionRates): CommissionRatesProtoMsg; }; export declare const Commission: { - encode(message: Commission, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Commission; + typeUrl: string; + encode(message: Commission, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Commission; fromJSON(object: any): Commission; toJSON(message: Commission): unknown; fromPartial(object: Partial): Commission; @@ -844,8 +847,9 @@ export declare const Commission: { toProtoMsg(message: Commission): CommissionProtoMsg; }; export declare const Description: { - encode(message: Description, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Description; + typeUrl: string; + encode(message: Description, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Description; fromJSON(object: any): Description; toJSON(message: Description): unknown; fromPartial(object: Partial): Description; @@ -858,8 +862,9 @@ export declare const Description: { toProtoMsg(message: Description): DescriptionProtoMsg; }; export declare const Validator: { - encode(message: Validator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Validator; + typeUrl: string; + encode(message: Validator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Validator; fromJSON(object: any): Validator; toJSON(message: Validator): unknown; fromPartial(object: Partial): Validator; @@ -872,8 +877,9 @@ export declare const Validator: { toProtoMsg(message: Validator): ValidatorProtoMsg; }; export declare const ValAddresses: { - encode(message: ValAddresses, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValAddresses; + typeUrl: string; + encode(message: ValAddresses, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValAddresses; fromJSON(object: any): ValAddresses; toJSON(message: ValAddresses): unknown; fromPartial(object: Partial): ValAddresses; @@ -886,8 +892,9 @@ export declare const ValAddresses: { toProtoMsg(message: ValAddresses): ValAddressesProtoMsg; }; export declare const DVPair: { - encode(message: DVPair, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DVPair; + typeUrl: string; + encode(message: DVPair, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DVPair; fromJSON(object: any): DVPair; toJSON(message: DVPair): unknown; fromPartial(object: Partial): DVPair; @@ -900,8 +907,9 @@ export declare const DVPair: { toProtoMsg(message: DVPair): DVPairProtoMsg; }; export declare const DVPairs: { - encode(message: DVPairs, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DVPairs; + typeUrl: string; + encode(message: DVPairs, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DVPairs; fromJSON(object: any): DVPairs; toJSON(message: DVPairs): unknown; fromPartial(object: Partial): DVPairs; @@ -914,8 +922,9 @@ export declare const DVPairs: { toProtoMsg(message: DVPairs): DVPairsProtoMsg; }; export declare const DVVTriplet: { - encode(message: DVVTriplet, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DVVTriplet; + typeUrl: string; + encode(message: DVVTriplet, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DVVTriplet; fromJSON(object: any): DVVTriplet; toJSON(message: DVVTriplet): unknown; fromPartial(object: Partial): DVVTriplet; @@ -928,8 +937,9 @@ export declare const DVVTriplet: { toProtoMsg(message: DVVTriplet): DVVTripletProtoMsg; }; export declare const DVVTriplets: { - encode(message: DVVTriplets, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DVVTriplets; + typeUrl: string; + encode(message: DVVTriplets, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DVVTriplets; fromJSON(object: any): DVVTriplets; toJSON(message: DVVTriplets): unknown; fromPartial(object: Partial): DVVTriplets; @@ -942,8 +952,9 @@ export declare const DVVTriplets: { toProtoMsg(message: DVVTriplets): DVVTripletsProtoMsg; }; export declare const Delegation: { - encode(message: Delegation, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Delegation; + typeUrl: string; + encode(message: Delegation, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Delegation; fromJSON(object: any): Delegation; toJSON(message: Delegation): unknown; fromPartial(object: Partial): Delegation; @@ -956,8 +967,9 @@ export declare const Delegation: { toProtoMsg(message: Delegation): DelegationProtoMsg; }; export declare const UnbondingDelegation: { - encode(message: UnbondingDelegation, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): UnbondingDelegation; + typeUrl: string; + encode(message: UnbondingDelegation, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): UnbondingDelegation; fromJSON(object: any): UnbondingDelegation; toJSON(message: UnbondingDelegation): unknown; fromPartial(object: Partial): UnbondingDelegation; @@ -970,8 +982,9 @@ export declare const UnbondingDelegation: { toProtoMsg(message: UnbondingDelegation): UnbondingDelegationProtoMsg; }; export declare const UnbondingDelegationEntry: { - encode(message: UnbondingDelegationEntry, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): UnbondingDelegationEntry; + typeUrl: string; + encode(message: UnbondingDelegationEntry, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): UnbondingDelegationEntry; fromJSON(object: any): UnbondingDelegationEntry; toJSON(message: UnbondingDelegationEntry): unknown; fromPartial(object: Partial): UnbondingDelegationEntry; @@ -984,8 +997,9 @@ export declare const UnbondingDelegationEntry: { toProtoMsg(message: UnbondingDelegationEntry): UnbondingDelegationEntryProtoMsg; }; export declare const RedelegationEntry: { - encode(message: RedelegationEntry, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RedelegationEntry; + typeUrl: string; + encode(message: RedelegationEntry, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RedelegationEntry; fromJSON(object: any): RedelegationEntry; toJSON(message: RedelegationEntry): unknown; fromPartial(object: Partial): RedelegationEntry; @@ -998,8 +1012,9 @@ export declare const RedelegationEntry: { toProtoMsg(message: RedelegationEntry): RedelegationEntryProtoMsg; }; export declare const Redelegation: { - encode(message: Redelegation, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Redelegation; + typeUrl: string; + encode(message: Redelegation, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Redelegation; fromJSON(object: any): Redelegation; toJSON(message: Redelegation): unknown; fromPartial(object: Partial): Redelegation; @@ -1012,8 +1027,9 @@ export declare const Redelegation: { toProtoMsg(message: Redelegation): RedelegationProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; @@ -1026,8 +1042,9 @@ export declare const Params: { toProtoMsg(message: Params): ParamsProtoMsg; }; export declare const DelegationResponse: { - encode(message: DelegationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DelegationResponse; + typeUrl: string; + encode(message: DelegationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DelegationResponse; fromJSON(object: any): DelegationResponse; toJSON(message: DelegationResponse): unknown; fromPartial(object: Partial): DelegationResponse; @@ -1040,8 +1057,9 @@ export declare const DelegationResponse: { toProtoMsg(message: DelegationResponse): DelegationResponseProtoMsg; }; export declare const RedelegationEntryResponse: { - encode(message: RedelegationEntryResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RedelegationEntryResponse; + typeUrl: string; + encode(message: RedelegationEntryResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RedelegationEntryResponse; fromJSON(object: any): RedelegationEntryResponse; toJSON(message: RedelegationEntryResponse): unknown; fromPartial(object: Partial): RedelegationEntryResponse; @@ -1054,8 +1072,9 @@ export declare const RedelegationEntryResponse: { toProtoMsg(message: RedelegationEntryResponse): RedelegationEntryResponseProtoMsg; }; export declare const RedelegationResponse: { - encode(message: RedelegationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RedelegationResponse; + typeUrl: string; + encode(message: RedelegationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RedelegationResponse; fromJSON(object: any): RedelegationResponse; toJSON(message: RedelegationResponse): unknown; fromPartial(object: Partial): RedelegationResponse; @@ -1068,8 +1087,9 @@ export declare const RedelegationResponse: { toProtoMsg(message: RedelegationResponse): RedelegationResponseProtoMsg; }; export declare const Pool: { - encode(message: Pool, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Pool; + typeUrl: string; + encode(message: Pool, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Pool; fromJSON(object: any): Pool; toJSON(message: Pool): unknown; fromPartial(object: Partial): Pool; @@ -1081,9 +1101,6 @@ export declare const Pool: { toProto(message: Pool): Uint8Array; toProtoMsg(message: Pool): PoolProtoMsg; }; -export declare const Cosmos_cryptoPubKey_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => Any; -export declare const Cosmos_cryptoPubKey_FromAmino: (content: AnyAmino) => string; -export declare const Cosmos_cryptoPubKey_ToAmino: (content: Any) => { - typeUrl: string; - value: Uint8Array; -}; +export declare const Cosmos_cryptoPubKey_InterfaceDecoder: (input: BinaryReader | Uint8Array) => Any; +export declare const Cosmos_cryptoPubKey_FromAmino: (content: AnyAmino) => Any; +export declare const Cosmos_cryptoPubKey_ToAmino: (content: Any) => Pubkey | null; diff --git a/packages/api/types/codegen/cosmos/staking/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/staking/v1beta1/tx.d.ts index f47e5f6..bf48cf6 100644 --- a/packages/api/types/codegen/cosmos/staking/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/staking/v1beta1/tx.d.ts @@ -1,9 +1,9 @@ import { Description, DescriptionAmino, DescriptionSDKType, CommissionRates, CommissionRatesAmino, CommissionRatesSDKType } from "./staking"; import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../binary"; +import { Pubkey } from "@cosmjs/amino"; /** MsgCreateValidator defines a SDK message for creating a new validator. */ export interface MsgCreateValidator { description: Description; @@ -11,7 +11,7 @@ export interface MsgCreateValidator { minSelfDelegation: string; delegatorAddress: string; validatorAddress: string; - pubkey: (Any) | undefined; + pubkey?: (Any) | undefined; value: Coin; } export interface MsgCreateValidatorProtoMsg { @@ -25,9 +25,9 @@ export type MsgCreateValidatorEncoded = Omit & { export interface MsgCreateValidatorAmino { description?: DescriptionAmino; commission?: CommissionRatesAmino; - min_self_delegation: string; - delegator_address: string; - validator_address: string; + min_self_delegation?: string; + delegator_address?: string; + validator_address?: string; pubkey?: AnyAmino; value?: CoinAmino; } @@ -42,7 +42,7 @@ export interface MsgCreateValidatorSDKType { min_self_delegation: string; delegator_address: string; validator_address: string; - pubkey: AnySDKType | undefined; + pubkey?: AnySDKType | undefined; value: CoinSDKType; } /** MsgCreateValidatorResponse defines the Msg/CreateValidator response type. */ @@ -82,15 +82,15 @@ export interface MsgEditValidatorProtoMsg { /** MsgEditValidator defines a SDK message for editing an existing validator. */ export interface MsgEditValidatorAmino { description?: DescriptionAmino; - validator_address: string; + validator_address?: string; /** * We pass a reference to the new commission rate and min self delegation as * it's not mandatory to update. If not updated, the deserialized rate will be * zero with no way to distinguish if an update was intended. * REF: #2373 */ - commission_rate: string; - min_self_delegation: string; + commission_rate?: string; + min_self_delegation?: string; } export interface MsgEditValidatorAminoMsg { type: "cosmos-sdk/MsgEditValidator"; @@ -138,8 +138,8 @@ export interface MsgDelegateProtoMsg { * from a delegator to a validator. */ export interface MsgDelegateAmino { - delegator_address: string; - validator_address: string; + delegator_address?: string; + validator_address?: string; amount?: CoinAmino; } export interface MsgDelegateAminoMsg { @@ -191,9 +191,9 @@ export interface MsgBeginRedelegateProtoMsg { * of coins from a delegator and source validator to a destination validator. */ export interface MsgBeginRedelegateAmino { - delegator_address: string; - validator_src_address: string; - validator_dst_address: string; + delegator_address?: string; + validator_src_address?: string; + validator_dst_address?: string; amount?: CoinAmino; } export interface MsgBeginRedelegateAminoMsg { @@ -220,7 +220,7 @@ export interface MsgBeginRedelegateResponseProtoMsg { } /** MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type. */ export interface MsgBeginRedelegateResponseAmino { - completion_time?: TimestampAmino; + completion_time?: string; } export interface MsgBeginRedelegateResponseAminoMsg { type: "cosmos-sdk/MsgBeginRedelegateResponse"; @@ -248,8 +248,8 @@ export interface MsgUndelegateProtoMsg { * delegate and a validator. */ export interface MsgUndelegateAmino { - delegator_address: string; - validator_address: string; + delegator_address?: string; + validator_address?: string; amount?: CoinAmino; } export interface MsgUndelegateAminoMsg { @@ -275,7 +275,7 @@ export interface MsgUndelegateResponseProtoMsg { } /** MsgUndelegateResponse defines the Msg/Undelegate response type. */ export interface MsgUndelegateResponseAmino { - completion_time?: TimestampAmino; + completion_time?: string; } export interface MsgUndelegateResponseAminoMsg { type: "cosmos-sdk/MsgUndelegateResponse"; @@ -296,7 +296,7 @@ export interface MsgCancelUnbondingDelegation { /** amount is always less than or equal to unbonding delegation entry balance */ amount: Coin; /** creation_height is the height which the unbonding took place. */ - creationHeight: Long; + creationHeight: bigint; } export interface MsgCancelUnbondingDelegationProtoMsg { typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation"; @@ -308,12 +308,12 @@ export interface MsgCancelUnbondingDelegationProtoMsg { * Since: cosmos-sdk 0.46 */ export interface MsgCancelUnbondingDelegationAmino { - delegator_address: string; - validator_address: string; + delegator_address?: string; + validator_address?: string; /** amount is always less than or equal to unbonding delegation entry balance */ amount?: CoinAmino; /** creation_height is the height which the unbonding took place. */ - creation_height: string; + creation_height?: string; } export interface MsgCancelUnbondingDelegationAminoMsg { type: "cosmos-sdk/MsgCancelUnbondingDelegation"; @@ -328,7 +328,7 @@ export interface MsgCancelUnbondingDelegationSDKType { delegator_address: string; validator_address: string; amount: CoinSDKType; - creation_height: Long; + creation_height: bigint; } /** * MsgCancelUnbondingDelegationResponse @@ -360,8 +360,9 @@ export interface MsgCancelUnbondingDelegationResponseAminoMsg { export interface MsgCancelUnbondingDelegationResponseSDKType { } export declare const MsgCreateValidator: { - encode(message: MsgCreateValidator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateValidator; + typeUrl: string; + encode(message: MsgCreateValidator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateValidator; fromJSON(object: any): MsgCreateValidator; toJSON(message: MsgCreateValidator): unknown; fromPartial(object: Partial): MsgCreateValidator; @@ -374,8 +375,9 @@ export declare const MsgCreateValidator: { toProtoMsg(message: MsgCreateValidator): MsgCreateValidatorProtoMsg; }; export declare const MsgCreateValidatorResponse: { - encode(_: MsgCreateValidatorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateValidatorResponse; + typeUrl: string; + encode(_: MsgCreateValidatorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateValidatorResponse; fromJSON(_: any): MsgCreateValidatorResponse; toJSON(_: MsgCreateValidatorResponse): unknown; fromPartial(_: Partial): MsgCreateValidatorResponse; @@ -388,8 +390,9 @@ export declare const MsgCreateValidatorResponse: { toProtoMsg(message: MsgCreateValidatorResponse): MsgCreateValidatorResponseProtoMsg; }; export declare const MsgEditValidator: { - encode(message: MsgEditValidator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgEditValidator; + typeUrl: string; + encode(message: MsgEditValidator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgEditValidator; fromJSON(object: any): MsgEditValidator; toJSON(message: MsgEditValidator): unknown; fromPartial(object: Partial): MsgEditValidator; @@ -402,8 +405,9 @@ export declare const MsgEditValidator: { toProtoMsg(message: MsgEditValidator): MsgEditValidatorProtoMsg; }; export declare const MsgEditValidatorResponse: { - encode(_: MsgEditValidatorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgEditValidatorResponse; + typeUrl: string; + encode(_: MsgEditValidatorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgEditValidatorResponse; fromJSON(_: any): MsgEditValidatorResponse; toJSON(_: MsgEditValidatorResponse): unknown; fromPartial(_: Partial): MsgEditValidatorResponse; @@ -416,8 +420,9 @@ export declare const MsgEditValidatorResponse: { toProtoMsg(message: MsgEditValidatorResponse): MsgEditValidatorResponseProtoMsg; }; export declare const MsgDelegate: { - encode(message: MsgDelegate, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDelegate; + typeUrl: string; + encode(message: MsgDelegate, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDelegate; fromJSON(object: any): MsgDelegate; toJSON(message: MsgDelegate): unknown; fromPartial(object: Partial): MsgDelegate; @@ -430,8 +435,9 @@ export declare const MsgDelegate: { toProtoMsg(message: MsgDelegate): MsgDelegateProtoMsg; }; export declare const MsgDelegateResponse: { - encode(_: MsgDelegateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgDelegateResponse; + typeUrl: string; + encode(_: MsgDelegateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgDelegateResponse; fromJSON(_: any): MsgDelegateResponse; toJSON(_: MsgDelegateResponse): unknown; fromPartial(_: Partial): MsgDelegateResponse; @@ -444,8 +450,9 @@ export declare const MsgDelegateResponse: { toProtoMsg(message: MsgDelegateResponse): MsgDelegateResponseProtoMsg; }; export declare const MsgBeginRedelegate: { - encode(message: MsgBeginRedelegate, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBeginRedelegate; + typeUrl: string; + encode(message: MsgBeginRedelegate, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBeginRedelegate; fromJSON(object: any): MsgBeginRedelegate; toJSON(message: MsgBeginRedelegate): unknown; fromPartial(object: Partial): MsgBeginRedelegate; @@ -458,8 +465,9 @@ export declare const MsgBeginRedelegate: { toProtoMsg(message: MsgBeginRedelegate): MsgBeginRedelegateProtoMsg; }; export declare const MsgBeginRedelegateResponse: { - encode(message: MsgBeginRedelegateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBeginRedelegateResponse; + typeUrl: string; + encode(message: MsgBeginRedelegateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBeginRedelegateResponse; fromJSON(object: any): MsgBeginRedelegateResponse; toJSON(message: MsgBeginRedelegateResponse): unknown; fromPartial(object: Partial): MsgBeginRedelegateResponse; @@ -472,8 +480,9 @@ export declare const MsgBeginRedelegateResponse: { toProtoMsg(message: MsgBeginRedelegateResponse): MsgBeginRedelegateResponseProtoMsg; }; export declare const MsgUndelegate: { - encode(message: MsgUndelegate, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUndelegate; + typeUrl: string; + encode(message: MsgUndelegate, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUndelegate; fromJSON(object: any): MsgUndelegate; toJSON(message: MsgUndelegate): unknown; fromPartial(object: Partial): MsgUndelegate; @@ -486,8 +495,9 @@ export declare const MsgUndelegate: { toProtoMsg(message: MsgUndelegate): MsgUndelegateProtoMsg; }; export declare const MsgUndelegateResponse: { - encode(message: MsgUndelegateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUndelegateResponse; + typeUrl: string; + encode(message: MsgUndelegateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUndelegateResponse; fromJSON(object: any): MsgUndelegateResponse; toJSON(message: MsgUndelegateResponse): unknown; fromPartial(object: Partial): MsgUndelegateResponse; @@ -500,8 +510,9 @@ export declare const MsgUndelegateResponse: { toProtoMsg(message: MsgUndelegateResponse): MsgUndelegateResponseProtoMsg; }; export declare const MsgCancelUnbondingDelegation: { - encode(message: MsgCancelUnbondingDelegation, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelUnbondingDelegation; + typeUrl: string; + encode(message: MsgCancelUnbondingDelegation, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelUnbondingDelegation; fromJSON(object: any): MsgCancelUnbondingDelegation; toJSON(message: MsgCancelUnbondingDelegation): unknown; fromPartial(object: Partial): MsgCancelUnbondingDelegation; @@ -514,8 +525,9 @@ export declare const MsgCancelUnbondingDelegation: { toProtoMsg(message: MsgCancelUnbondingDelegation): MsgCancelUnbondingDelegationProtoMsg; }; export declare const MsgCancelUnbondingDelegationResponse: { - encode(_: MsgCancelUnbondingDelegationResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelUnbondingDelegationResponse; + typeUrl: string; + encode(_: MsgCancelUnbondingDelegationResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelUnbondingDelegationResponse; fromJSON(_: any): MsgCancelUnbondingDelegationResponse; toJSON(_: MsgCancelUnbondingDelegationResponse): unknown; fromPartial(_: Partial): MsgCancelUnbondingDelegationResponse; @@ -527,9 +539,6 @@ export declare const MsgCancelUnbondingDelegationResponse: { toProto(message: MsgCancelUnbondingDelegationResponse): Uint8Array; toProtoMsg(message: MsgCancelUnbondingDelegationResponse): MsgCancelUnbondingDelegationResponseProtoMsg; }; -export declare const Cosmos_cryptoPubKey_InterfaceDecoder: (input: _m0.Reader | Uint8Array) => Any; -export declare const Cosmos_cryptoPubKey_FromAmino: (content: AnyAmino) => string; -export declare const Cosmos_cryptoPubKey_ToAmino: (content: Any) => { - typeUrl: string; - value: Uint8Array; -}; +export declare const Cosmos_cryptoPubKey_InterfaceDecoder: (input: BinaryReader | Uint8Array) => Any; +export declare const Cosmos_cryptoPubKey_FromAmino: (content: AnyAmino) => Any; +export declare const Cosmos_cryptoPubKey_ToAmino: (content: Any) => Pubkey | null; diff --git a/packages/api/types/codegen/cosmos/tx/signing/v1beta1/signing.d.ts b/packages/api/types/codegen/cosmos/tx/signing/v1beta1/signing.d.ts index 7ac8b66..931ea80 100644 --- a/packages/api/types/codegen/cosmos/tx/signing/v1beta1/signing.d.ts +++ b/packages/api/types/codegen/cosmos/tx/signing/v1beta1/signing.d.ts @@ -1,7 +1,6 @@ import { CompactBitArray, CompactBitArrayAmino, CompactBitArraySDKType } from "../../../crypto/multisig/v1beta1/multisig"; import { Any, AnyAmino, AnySDKType } from "../../../../google/protobuf/any"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * SignMode represents a signing mode with its own security guarantees. * @@ -74,7 +73,7 @@ export interface SignatureDescriptorsProtoMsg { /** SignatureDescriptors wraps multiple SignatureDescriptor's. */ export interface SignatureDescriptorsAmino { /** signatures are the signature descriptors */ - signatures: SignatureDescriptorAmino[]; + signatures?: SignatureDescriptorAmino[]; } export interface SignatureDescriptorsAminoMsg { type: "cosmos-sdk/SignatureDescriptors"; @@ -92,14 +91,14 @@ export interface SignatureDescriptorsSDKType { */ export interface SignatureDescriptor { /** public_key is the public key of the signer */ - publicKey: Any; - data: SignatureDescriptor_Data; + publicKey?: Any; + data?: SignatureDescriptor_Data; /** * sequence is the sequence of the account, which describes the * number of committed transactions signed by a given address. It is used to prevent * replay attacks. */ - sequence: Long; + sequence: bigint; } export interface SignatureDescriptorProtoMsg { typeUrl: "/cosmos.tx.signing.v1beta1.SignatureDescriptor"; @@ -120,7 +119,7 @@ export interface SignatureDescriptorAmino { * number of committed transactions signed by a given address. It is used to prevent * replay attacks. */ - sequence: string; + sequence?: string; } export interface SignatureDescriptorAminoMsg { type: "cosmos-sdk/SignatureDescriptor"; @@ -133,9 +132,9 @@ export interface SignatureDescriptorAminoMsg { * clients. */ export interface SignatureDescriptorSDKType { - public_key: AnySDKType; - data: SignatureDescriptor_DataSDKType; - sequence: Long; + public_key?: AnySDKType; + data?: SignatureDescriptor_DataSDKType; + sequence: bigint; } /** Data represents signature data */ export interface SignatureDescriptor_Data { @@ -178,9 +177,9 @@ export interface SignatureDescriptor_Data_SingleProtoMsg { /** Single is the signature data for a single signer */ export interface SignatureDescriptor_Data_SingleAmino { /** mode is the signing mode of the single signer */ - mode: SignMode; + mode?: SignMode; /** signature is the raw signature bytes */ - signature: Uint8Array; + signature?: string; } export interface SignatureDescriptor_Data_SingleAminoMsg { type: "cosmos-sdk/Single"; @@ -194,7 +193,7 @@ export interface SignatureDescriptor_Data_SingleSDKType { /** Multi is the signature data for a multisig public key */ export interface SignatureDescriptor_Data_Multi { /** bitarray specifies which keys within the multisig are signing */ - bitarray: CompactBitArray; + bitarray?: CompactBitArray; /** signatures is the signatures of the multi-signature */ signatures: SignatureDescriptor_Data[]; } @@ -207,7 +206,7 @@ export interface SignatureDescriptor_Data_MultiAmino { /** bitarray specifies which keys within the multisig are signing */ bitarray?: CompactBitArrayAmino; /** signatures is the signatures of the multi-signature */ - signatures: SignatureDescriptor_DataAmino[]; + signatures?: SignatureDescriptor_DataAmino[]; } export interface SignatureDescriptor_Data_MultiAminoMsg { type: "cosmos-sdk/Multi"; @@ -215,12 +214,13 @@ export interface SignatureDescriptor_Data_MultiAminoMsg { } /** Multi is the signature data for a multisig public key */ export interface SignatureDescriptor_Data_MultiSDKType { - bitarray: CompactBitArraySDKType; + bitarray?: CompactBitArraySDKType; signatures: SignatureDescriptor_DataSDKType[]; } export declare const SignatureDescriptors: { - encode(message: SignatureDescriptors, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignatureDescriptors; + typeUrl: string; + encode(message: SignatureDescriptors, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignatureDescriptors; fromJSON(object: any): SignatureDescriptors; toJSON(message: SignatureDescriptors): unknown; fromPartial(object: Partial): SignatureDescriptors; @@ -233,8 +233,9 @@ export declare const SignatureDescriptors: { toProtoMsg(message: SignatureDescriptors): SignatureDescriptorsProtoMsg; }; export declare const SignatureDescriptor: { - encode(message: SignatureDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignatureDescriptor; + typeUrl: string; + encode(message: SignatureDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignatureDescriptor; fromJSON(object: any): SignatureDescriptor; toJSON(message: SignatureDescriptor): unknown; fromPartial(object: Partial): SignatureDescriptor; @@ -247,8 +248,9 @@ export declare const SignatureDescriptor: { toProtoMsg(message: SignatureDescriptor): SignatureDescriptorProtoMsg; }; export declare const SignatureDescriptor_Data: { - encode(message: SignatureDescriptor_Data, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignatureDescriptor_Data; + typeUrl: string; + encode(message: SignatureDescriptor_Data, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignatureDescriptor_Data; fromJSON(object: any): SignatureDescriptor_Data; toJSON(message: SignatureDescriptor_Data): unknown; fromPartial(object: Partial): SignatureDescriptor_Data; @@ -261,8 +263,9 @@ export declare const SignatureDescriptor_Data: { toProtoMsg(message: SignatureDescriptor_Data): SignatureDescriptor_DataProtoMsg; }; export declare const SignatureDescriptor_Data_Single: { - encode(message: SignatureDescriptor_Data_Single, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignatureDescriptor_Data_Single; + typeUrl: string; + encode(message: SignatureDescriptor_Data_Single, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignatureDescriptor_Data_Single; fromJSON(object: any): SignatureDescriptor_Data_Single; toJSON(message: SignatureDescriptor_Data_Single): unknown; fromPartial(object: Partial): SignatureDescriptor_Data_Single; @@ -275,8 +278,9 @@ export declare const SignatureDescriptor_Data_Single: { toProtoMsg(message: SignatureDescriptor_Data_Single): SignatureDescriptor_Data_SingleProtoMsg; }; export declare const SignatureDescriptor_Data_Multi: { - encode(message: SignatureDescriptor_Data_Multi, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignatureDescriptor_Data_Multi; + typeUrl: string; + encode(message: SignatureDescriptor_Data_Multi, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignatureDescriptor_Data_Multi; fromJSON(object: any): SignatureDescriptor_Data_Multi; toJSON(message: SignatureDescriptor_Data_Multi): unknown; fromPartial(object: Partial): SignatureDescriptor_Data_Multi; diff --git a/packages/api/types/codegen/cosmos/tx/v1beta1/service.d.ts b/packages/api/types/codegen/cosmos/tx/v1beta1/service.d.ts index 7de34e6..48fb856 100644 --- a/packages/api/types/codegen/cosmos/tx/v1beta1/service.d.ts +++ b/packages/api/types/codegen/cosmos/tx/v1beta1/service.d.ts @@ -3,8 +3,7 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageRe import { TxResponse, TxResponseAmino, TxResponseSDKType, GasInfo, GasInfoAmino, GasInfoSDKType, Result, ResultAmino, ResultSDKType } from "../../base/abci/v1beta1/abci"; import { BlockID, BlockIDAmino, BlockIDSDKType } from "../../../tendermint/types/types"; import { Block, BlockAmino, BlockSDKType } from "../../../tendermint/types/block"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** OrderBy defines the sorting order */ export declare enum OrderBy { /** ORDER_BY_UNSPECIFIED - ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults to ASC in this case. */ @@ -56,15 +55,15 @@ export interface GetTxsEventRequest { * Deprecated post v0.46.x: use page and limit instead. */ /** @deprecated */ - pagination: PageRequest; + pagination?: PageRequest; orderBy: OrderBy; /** page is the page number to query, starts at 1. If not provided, will default to first page. */ - page: Long; + page: bigint; /** * limit is the total number of results to be returned in the result page. * If left empty it will default to a value to be set by each app. */ - limit: Long; + limit: bigint; } export interface GetTxsEventRequestProtoMsg { typeUrl: "/cosmos.tx.v1beta1.GetTxsEventRequest"; @@ -76,21 +75,21 @@ export interface GetTxsEventRequestProtoMsg { */ export interface GetTxsEventRequestAmino { /** events is the list of transaction event type. */ - events: string[]; + events?: string[]; /** * pagination defines a pagination for the request. * Deprecated post v0.46.x: use page and limit instead. */ /** @deprecated */ pagination?: PageRequestAmino; - order_by: OrderBy; + order_by?: OrderBy; /** page is the page number to query, starts at 1. If not provided, will default to first page. */ - page: string; + page?: string; /** * limit is the total number of results to be returned in the result page. * If left empty it will default to a value to be set by each app. */ - limit: string; + limit?: string; } export interface GetTxsEventRequestAminoMsg { type: "cosmos-sdk/GetTxsEventRequest"; @@ -103,10 +102,10 @@ export interface GetTxsEventRequestAminoMsg { export interface GetTxsEventRequestSDKType { events: string[]; /** @deprecated */ - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; order_by: OrderBy; - page: Long; - limit: Long; + page: bigint; + limit: bigint; } /** * GetTxsEventResponse is the response type for the Service.TxsByEvents @@ -122,9 +121,9 @@ export interface GetTxsEventResponse { * Deprecated post v0.46.x: use total instead. */ /** @deprecated */ - pagination: PageResponse; + pagination?: PageResponse; /** total is total number of results available */ - total: Long; + total: bigint; } export interface GetTxsEventResponseProtoMsg { typeUrl: "/cosmos.tx.v1beta1.GetTxsEventResponse"; @@ -136,9 +135,9 @@ export interface GetTxsEventResponseProtoMsg { */ export interface GetTxsEventResponseAmino { /** txs is the list of queried transactions. */ - txs: TxAmino[]; + txs?: TxAmino[]; /** tx_responses is the list of queried TxResponses. */ - tx_responses: TxResponseAmino[]; + tx_responses?: TxResponseAmino[]; /** * pagination defines a pagination for the response. * Deprecated post v0.46.x: use total instead. @@ -146,7 +145,7 @@ export interface GetTxsEventResponseAmino { /** @deprecated */ pagination?: PageResponseAmino; /** total is total number of results available */ - total: string; + total?: string; } export interface GetTxsEventResponseAminoMsg { type: "cosmos-sdk/GetTxsEventResponse"; @@ -160,8 +159,8 @@ export interface GetTxsEventResponseSDKType { txs: TxSDKType[]; tx_responses: TxResponseSDKType[]; /** @deprecated */ - pagination: PageResponseSDKType; - total: Long; + pagination?: PageResponseSDKType; + total: bigint; } /** * BroadcastTxRequest is the request type for the Service.BroadcastTxRequest @@ -182,8 +181,8 @@ export interface BroadcastTxRequestProtoMsg { */ export interface BroadcastTxRequestAmino { /** tx_bytes is the raw transaction. */ - tx_bytes: Uint8Array; - mode: BroadcastMode; + tx_bytes?: string; + mode?: BroadcastMode; } export interface BroadcastTxRequestAminoMsg { type: "cosmos-sdk/BroadcastTxRequest"; @@ -203,7 +202,7 @@ export interface BroadcastTxRequestSDKType { */ export interface BroadcastTxResponse { /** tx_response is the queried TxResponses. */ - txResponse: TxResponse; + txResponse?: TxResponse; } export interface BroadcastTxResponseProtoMsg { typeUrl: "/cosmos.tx.v1beta1.BroadcastTxResponse"; @@ -226,7 +225,7 @@ export interface BroadcastTxResponseAminoMsg { * Service.BroadcastTx method. */ export interface BroadcastTxResponseSDKType { - tx_response: TxResponseSDKType; + tx_response?: TxResponseSDKType; } /** * SimulateRequest is the request type for the Service.Simulate @@ -238,7 +237,7 @@ export interface SimulateRequest { * Deprecated. Send raw tx bytes instead. */ /** @deprecated */ - tx: Tx; + tx?: Tx; /** * tx_bytes is the raw transaction. * @@ -266,7 +265,7 @@ export interface SimulateRequestAmino { * * Since: cosmos-sdk 0.43 */ - tx_bytes: Uint8Array; + tx_bytes?: string; } export interface SimulateRequestAminoMsg { type: "cosmos-sdk/SimulateRequest"; @@ -278,7 +277,7 @@ export interface SimulateRequestAminoMsg { */ export interface SimulateRequestSDKType { /** @deprecated */ - tx: TxSDKType; + tx?: TxSDKType; tx_bytes: Uint8Array; } /** @@ -287,9 +286,9 @@ export interface SimulateRequestSDKType { */ export interface SimulateResponse { /** gas_info is the information about gas used in the simulation. */ - gasInfo: GasInfo; + gasInfo?: GasInfo; /** result is the result of the simulation. */ - result: Result; + result?: Result; } export interface SimulateResponseProtoMsg { typeUrl: "/cosmos.tx.v1beta1.SimulateResponse"; @@ -314,8 +313,8 @@ export interface SimulateResponseAminoMsg { * Service.SimulateRPC method. */ export interface SimulateResponseSDKType { - gas_info: GasInfoSDKType; - result: ResultSDKType; + gas_info?: GasInfoSDKType; + result?: ResultSDKType; } /** * GetTxRequest is the request type for the Service.GetTx @@ -335,7 +334,7 @@ export interface GetTxRequestProtoMsg { */ export interface GetTxRequestAmino { /** hash is the tx hash to query, encoded as a hex string. */ - hash: string; + hash?: string; } export interface GetTxRequestAminoMsg { type: "cosmos-sdk/GetTxRequest"; @@ -351,9 +350,9 @@ export interface GetTxRequestSDKType { /** GetTxResponse is the response type for the Service.GetTx method. */ export interface GetTxResponse { /** tx is the queried transaction. */ - tx: Tx; + tx?: Tx; /** tx_response is the queried TxResponses. */ - txResponse: TxResponse; + txResponse?: TxResponse; } export interface GetTxResponseProtoMsg { typeUrl: "/cosmos.tx.v1beta1.GetTxResponse"; @@ -372,8 +371,8 @@ export interface GetTxResponseAminoMsg { } /** GetTxResponse is the response type for the Service.GetTx method. */ export interface GetTxResponseSDKType { - tx: TxSDKType; - tx_response: TxResponseSDKType; + tx?: TxSDKType; + tx_response?: TxResponseSDKType; } /** * GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs @@ -383,9 +382,9 @@ export interface GetTxResponseSDKType { */ export interface GetBlockWithTxsRequest { /** height is the height of the block to query. */ - height: Long; + height: bigint; /** pagination defines a pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface GetBlockWithTxsRequestProtoMsg { typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsRequest"; @@ -399,7 +398,7 @@ export interface GetBlockWithTxsRequestProtoMsg { */ export interface GetBlockWithTxsRequestAmino { /** height is the height of the block to query. */ - height: string; + height?: string; /** pagination defines a pagination for the request. */ pagination?: PageRequestAmino; } @@ -414,8 +413,8 @@ export interface GetBlockWithTxsRequestAminoMsg { * Since: cosmos-sdk 0.45.2 */ export interface GetBlockWithTxsRequestSDKType { - height: Long; - pagination: PageRequestSDKType; + height: bigint; + pagination?: PageRequestSDKType; } /** * GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs method. @@ -425,10 +424,10 @@ export interface GetBlockWithTxsRequestSDKType { export interface GetBlockWithTxsResponse { /** txs are the transactions in the block. */ txs: Tx[]; - blockId: BlockID; - block: Block; + blockId?: BlockID; + block?: Block; /** pagination defines a pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface GetBlockWithTxsResponseProtoMsg { typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsResponse"; @@ -441,7 +440,7 @@ export interface GetBlockWithTxsResponseProtoMsg { */ export interface GetBlockWithTxsResponseAmino { /** txs are the transactions in the block. */ - txs: TxAmino[]; + txs?: TxAmino[]; block_id?: BlockIDAmino; block?: BlockAmino; /** pagination defines a pagination for the response. */ @@ -458,13 +457,14 @@ export interface GetBlockWithTxsResponseAminoMsg { */ export interface GetBlockWithTxsResponseSDKType { txs: TxSDKType[]; - block_id: BlockIDSDKType; - block: BlockSDKType; - pagination: PageResponseSDKType; + block_id?: BlockIDSDKType; + block?: BlockSDKType; + pagination?: PageResponseSDKType; } export declare const GetTxsEventRequest: { - encode(message: GetTxsEventRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetTxsEventRequest; + typeUrl: string; + encode(message: GetTxsEventRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetTxsEventRequest; fromJSON(object: any): GetTxsEventRequest; toJSON(message: GetTxsEventRequest): unknown; fromPartial(object: Partial): GetTxsEventRequest; @@ -477,8 +477,9 @@ export declare const GetTxsEventRequest: { toProtoMsg(message: GetTxsEventRequest): GetTxsEventRequestProtoMsg; }; export declare const GetTxsEventResponse: { - encode(message: GetTxsEventResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetTxsEventResponse; + typeUrl: string; + encode(message: GetTxsEventResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetTxsEventResponse; fromJSON(object: any): GetTxsEventResponse; toJSON(message: GetTxsEventResponse): unknown; fromPartial(object: Partial): GetTxsEventResponse; @@ -491,8 +492,9 @@ export declare const GetTxsEventResponse: { toProtoMsg(message: GetTxsEventResponse): GetTxsEventResponseProtoMsg; }; export declare const BroadcastTxRequest: { - encode(message: BroadcastTxRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BroadcastTxRequest; + typeUrl: string; + encode(message: BroadcastTxRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BroadcastTxRequest; fromJSON(object: any): BroadcastTxRequest; toJSON(message: BroadcastTxRequest): unknown; fromPartial(object: Partial): BroadcastTxRequest; @@ -505,8 +507,9 @@ export declare const BroadcastTxRequest: { toProtoMsg(message: BroadcastTxRequest): BroadcastTxRequestProtoMsg; }; export declare const BroadcastTxResponse: { - encode(message: BroadcastTxResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BroadcastTxResponse; + typeUrl: string; + encode(message: BroadcastTxResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BroadcastTxResponse; fromJSON(object: any): BroadcastTxResponse; toJSON(message: BroadcastTxResponse): unknown; fromPartial(object: Partial): BroadcastTxResponse; @@ -519,8 +522,9 @@ export declare const BroadcastTxResponse: { toProtoMsg(message: BroadcastTxResponse): BroadcastTxResponseProtoMsg; }; export declare const SimulateRequest: { - encode(message: SimulateRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SimulateRequest; + typeUrl: string; + encode(message: SimulateRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SimulateRequest; fromJSON(object: any): SimulateRequest; toJSON(message: SimulateRequest): unknown; fromPartial(object: Partial): SimulateRequest; @@ -533,8 +537,9 @@ export declare const SimulateRequest: { toProtoMsg(message: SimulateRequest): SimulateRequestProtoMsg; }; export declare const SimulateResponse: { - encode(message: SimulateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SimulateResponse; + typeUrl: string; + encode(message: SimulateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SimulateResponse; fromJSON(object: any): SimulateResponse; toJSON(message: SimulateResponse): unknown; fromPartial(object: Partial): SimulateResponse; @@ -547,8 +552,9 @@ export declare const SimulateResponse: { toProtoMsg(message: SimulateResponse): SimulateResponseProtoMsg; }; export declare const GetTxRequest: { - encode(message: GetTxRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetTxRequest; + typeUrl: string; + encode(message: GetTxRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetTxRequest; fromJSON(object: any): GetTxRequest; toJSON(message: GetTxRequest): unknown; fromPartial(object: Partial): GetTxRequest; @@ -561,8 +567,9 @@ export declare const GetTxRequest: { toProtoMsg(message: GetTxRequest): GetTxRequestProtoMsg; }; export declare const GetTxResponse: { - encode(message: GetTxResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetTxResponse; + typeUrl: string; + encode(message: GetTxResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetTxResponse; fromJSON(object: any): GetTxResponse; toJSON(message: GetTxResponse): unknown; fromPartial(object: Partial): GetTxResponse; @@ -575,8 +582,9 @@ export declare const GetTxResponse: { toProtoMsg(message: GetTxResponse): GetTxResponseProtoMsg; }; export declare const GetBlockWithTxsRequest: { - encode(message: GetBlockWithTxsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockWithTxsRequest; + typeUrl: string; + encode(message: GetBlockWithTxsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetBlockWithTxsRequest; fromJSON(object: any): GetBlockWithTxsRequest; toJSON(message: GetBlockWithTxsRequest): unknown; fromPartial(object: Partial): GetBlockWithTxsRequest; @@ -589,8 +597,9 @@ export declare const GetBlockWithTxsRequest: { toProtoMsg(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestProtoMsg; }; export declare const GetBlockWithTxsResponse: { - encode(message: GetBlockWithTxsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockWithTxsResponse; + typeUrl: string; + encode(message: GetBlockWithTxsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GetBlockWithTxsResponse; fromJSON(object: any): GetBlockWithTxsResponse; toJSON(message: GetBlockWithTxsResponse): unknown; fromPartial(object: Partial): GetBlockWithTxsResponse; diff --git a/packages/api/types/codegen/cosmos/tx/v1beta1/service.lcd.d.ts b/packages/api/types/codegen/cosmos/tx/v1beta1/service.lcd.d.ts index 5a4e8c9..e4a8e7b 100644 --- a/packages/api/types/codegen/cosmos/tx/v1beta1/service.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/tx/v1beta1/service.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { GetTxRequest, GetTxResponseSDKType, GetTxsEventRequest, GetTxsEventResponseSDKType, GetBlockWithTxsRequest, GetBlockWithTxsResponseSDKType } from "./service"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/tx/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/tx/v1beta1/tx.d.ts index 099908d..67d1655 100644 --- a/packages/api/types/codegen/cosmos/tx/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/tx/v1beta1/tx.d.ts @@ -2,17 +2,16 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; import { SignMode } from "../signing/v1beta1/signing"; import { CompactBitArray, CompactBitArrayAmino, CompactBitArraySDKType } from "../../crypto/multisig/v1beta1/multisig"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Tx is the standard type used for broadcasting transactions. */ export interface Tx { /** body is the processable content of the transaction */ - body: TxBody; + body?: TxBody; /** * auth_info is the authorization related content of the transaction, * specifically signers, signer modes and fee */ - authInfo: AuthInfo; + authInfo?: AuthInfo; /** * signatures is a list of signatures that matches the length and order of * AuthInfo's signer_infos to allow connecting signature meta information like @@ -38,7 +37,7 @@ export interface TxAmino { * AuthInfo's signer_infos to allow connecting signature meta information like * public key and signing mode by position. */ - signatures: Uint8Array[]; + signatures?: string[]; } export interface TxAminoMsg { type: "cosmos-sdk/Tx"; @@ -46,8 +45,8 @@ export interface TxAminoMsg { } /** Tx is the standard type used for broadcasting transactions. */ export interface TxSDKType { - body: TxBodySDKType; - auth_info: AuthInfoSDKType; + body?: TxBodySDKType; + auth_info?: AuthInfoSDKType; signatures: Uint8Array[]; } /** @@ -91,18 +90,18 @@ export interface TxRawAmino { * body_bytes is a protobuf serialization of a TxBody that matches the * representation in SignDoc. */ - body_bytes: Uint8Array; + body_bytes?: string; /** * auth_info_bytes is a protobuf serialization of an AuthInfo that matches the * representation in SignDoc. */ - auth_info_bytes: Uint8Array; + auth_info_bytes?: string; /** * signatures is a list of signatures that matches the length and order of * AuthInfo's signer_infos to allow connecting signature meta information like * public key and signing mode by position. */ - signatures: Uint8Array[]; + signatures?: string[]; } export interface TxRawAminoMsg { type: "cosmos-sdk/TxRaw"; @@ -139,7 +138,7 @@ export interface SignDoc { */ chainId: string; /** account_number is the account number of the account in state */ - accountNumber: Long; + accountNumber: bigint; } export interface SignDocProtoMsg { typeUrl: "/cosmos.tx.v1beta1.SignDoc"; @@ -151,20 +150,20 @@ export interface SignDocAmino { * body_bytes is protobuf serialization of a TxBody that matches the * representation in TxRaw. */ - body_bytes: Uint8Array; + body_bytes?: string; /** * auth_info_bytes is a protobuf serialization of an AuthInfo that matches the * representation in TxRaw. */ - auth_info_bytes: Uint8Array; + auth_info_bytes?: string; /** * chain_id is the unique identifier of the chain this transaction targets. * It prevents signed transactions from being used on another chain by an * attacker */ - chain_id: string; + chain_id?: string; /** account_number is the account number of the account in state */ - account_number: string; + account_number?: string; } export interface SignDocAminoMsg { type: "cosmos-sdk/SignDoc"; @@ -175,7 +174,7 @@ export interface SignDocSDKType { body_bytes: Uint8Array; auth_info_bytes: Uint8Array; chain_id: string; - account_number: Long; + account_number: bigint; } /** * SignDocDirectAux is the type used for generating sign bytes for @@ -190,7 +189,7 @@ export interface SignDocDirectAux { */ bodyBytes: Uint8Array; /** public_key is the public key of the signing account. */ - publicKey: Any; + publicKey?: Any; /** * chain_id is the identifier of the chain this transaction targets. * It prevents signed transactions from being used on another chain by an @@ -198,9 +197,9 @@ export interface SignDocDirectAux { */ chainId: string; /** account_number is the account number of the account in state. */ - accountNumber: Long; + accountNumber: bigint; /** sequence is the sequence number of the signing account. */ - sequence: Long; + sequence: bigint; /** * Tip is the optional tip used for transactions fees paid in another denom. * It should be left empty if the signer is not the tipper for this @@ -209,7 +208,7 @@ export interface SignDocDirectAux { * This field is ignored if the chain didn't enable tips, i.e. didn't add the * `TipDecorator` in its posthandler. */ - tip: Tip; + tip?: Tip; } export interface SignDocDirectAuxProtoMsg { typeUrl: "/cosmos.tx.v1beta1.SignDocDirectAux"; @@ -226,7 +225,7 @@ export interface SignDocDirectAuxAmino { * body_bytes is protobuf serialization of a TxBody that matches the * representation in TxRaw. */ - body_bytes: Uint8Array; + body_bytes?: string; /** public_key is the public key of the signing account. */ public_key?: AnyAmino; /** @@ -234,11 +233,11 @@ export interface SignDocDirectAuxAmino { * It prevents signed transactions from being used on another chain by an * attacker. */ - chain_id: string; + chain_id?: string; /** account_number is the account number of the account in state. */ - account_number: string; + account_number?: string; /** sequence is the sequence number of the signing account. */ - sequence: string; + sequence?: string; /** * Tip is the optional tip used for transactions fees paid in another denom. * It should be left empty if the signer is not the tipper for this @@ -261,11 +260,11 @@ export interface SignDocDirectAuxAminoMsg { */ export interface SignDocDirectAuxSDKType { body_bytes: Uint8Array; - public_key: AnySDKType; + public_key?: AnySDKType; chain_id: string; - account_number: Long; - sequence: Long; - tip: TipSDKType; + account_number: bigint; + sequence: bigint; + tip?: TipSDKType; } /** TxBody is the body of a transaction that all signers sign over. */ export interface TxBody { @@ -289,7 +288,7 @@ export interface TxBody { * timeout is the block height after which this transaction will not * be processed by the chain */ - timeoutHeight: Long; + timeoutHeight: bigint; /** * extension_options are arbitrary options that can be added by chains * when the default options are not sufficient. If any of these are present @@ -318,30 +317,30 @@ export interface TxBodyAmino { * is referred to as the primary signer and pays the fee for the whole * transaction. */ - messages: AnyAmino[]; + messages?: AnyAmino[]; /** * memo is any arbitrary note/comment to be added to the transaction. * WARNING: in clients, any publicly exposed text should not be called memo, * but should be called `note` instead (see https://github.com/cosmos/cosmos-sdk/issues/9122). */ - memo: string; + memo?: string; /** * timeout is the block height after which this transaction will not * be processed by the chain */ - timeout_height: string; + timeout_height?: string; /** * extension_options are arbitrary options that can be added by chains * when the default options are not sufficient. If any of these are present * and can't be handled, the transaction will be rejected */ - extension_options: AnyAmino[]; + extension_options?: AnyAmino[]; /** * extension_options are arbitrary options that can be added by chains * when the default options are not sufficient. If any of these are present * and can't be handled, they will be ignored */ - non_critical_extension_options: AnyAmino[]; + non_critical_extension_options?: AnyAmino[]; } export interface TxBodyAminoMsg { type: "cosmos-sdk/TxBody"; @@ -351,7 +350,7 @@ export interface TxBodyAminoMsg { export interface TxBodySDKType { messages: AnySDKType[]; memo: string; - timeout_height: Long; + timeout_height: bigint; extension_options: AnySDKType[]; non_critical_extension_options: AnySDKType[]; } @@ -373,7 +372,7 @@ export interface AuthInfo { * based on the cost of evaluating the body and doing signature verification * of the signers. This can be estimated via simulation. */ - fee: Fee; + fee?: Fee; /** * Tip is the optional tip used for transactions fees paid in another denom. * @@ -382,7 +381,7 @@ export interface AuthInfo { * * Since: cosmos-sdk 0.46 */ - tip: Tip; + tip?: Tip; } export interface AuthInfoProtoMsg { typeUrl: "/cosmos.tx.v1beta1.AuthInfo"; @@ -399,7 +398,7 @@ export interface AuthInfoAmino { * messages. The first element is the primary signer and the one which pays * the fee. */ - signer_infos: SignerInfoAmino[]; + signer_infos?: SignerInfoAmino[]; /** * Fee is the fee and gas limit for the transaction. The first signer is the * primary signer and the one which pays the fee. The fee can be calculated @@ -427,8 +426,8 @@ export interface AuthInfoAminoMsg { */ export interface AuthInfoSDKType { signer_infos: SignerInfoSDKType[]; - fee: FeeSDKType; - tip: TipSDKType; + fee?: FeeSDKType; + tip?: TipSDKType; } /** * SignerInfo describes the public key and signing mode of a single top-level @@ -440,18 +439,18 @@ export interface SignerInfo { * that already exist in state. If unset, the verifier can use the required \ * signer address for this position and lookup the public key. */ - publicKey: Any; + publicKey?: Any; /** * mode_info describes the signing mode of the signer and is a nested * structure to support nested multisig pubkey's */ - modeInfo: ModeInfo; + modeInfo?: ModeInfo; /** * sequence is the sequence of the account, which describes the * number of committed transactions signed by a given address. It is used to * prevent replay attacks. */ - sequence: Long; + sequence: bigint; } export interface SignerInfoProtoMsg { typeUrl: "/cosmos.tx.v1beta1.SignerInfo"; @@ -478,7 +477,7 @@ export interface SignerInfoAmino { * number of committed transactions signed by a given address. It is used to * prevent replay attacks. */ - sequence: string; + sequence?: string; } export interface SignerInfoAminoMsg { type: "cosmos-sdk/SignerInfo"; @@ -489,9 +488,9 @@ export interface SignerInfoAminoMsg { * signer. */ export interface SignerInfoSDKType { - public_key: AnySDKType; - mode_info: ModeInfoSDKType; - sequence: Long; + public_key?: AnySDKType; + mode_info?: ModeInfoSDKType; + sequence: bigint; } /** ModeInfo describes the signing mode of a single or nested multisig signer. */ export interface ModeInfo { @@ -540,7 +539,7 @@ export interface ModeInfo_SingleProtoMsg { */ export interface ModeInfo_SingleAmino { /** mode is the signing mode of the single signer */ - mode: SignMode; + mode?: SignMode; } export interface ModeInfo_SingleAminoMsg { type: "cosmos-sdk/Single"; @@ -557,7 +556,7 @@ export interface ModeInfo_SingleSDKType { /** Multi is the mode info for a multisig public key */ export interface ModeInfo_Multi { /** bitarray specifies which keys within the multisig are signing */ - bitarray: CompactBitArray; + bitarray?: CompactBitArray; /** * mode_infos is the corresponding modes of the signers of the multisig * which could include nested multisig public keys @@ -576,7 +575,7 @@ export interface ModeInfo_MultiAmino { * mode_infos is the corresponding modes of the signers of the multisig * which could include nested multisig public keys */ - mode_infos: ModeInfoAmino[]; + mode_infos?: ModeInfoAmino[]; } export interface ModeInfo_MultiAminoMsg { type: "cosmos-sdk/Multi"; @@ -584,7 +583,7 @@ export interface ModeInfo_MultiAminoMsg { } /** Multi is the mode info for a multisig public key */ export interface ModeInfo_MultiSDKType { - bitarray: CompactBitArraySDKType; + bitarray?: CompactBitArraySDKType; mode_infos: ModeInfoSDKType[]; } /** @@ -599,7 +598,7 @@ export interface Fee { * gas_limit is the maximum gas that can be used in transaction processing * before an out of gas error occurs */ - gasLimit: Long; + gasLimit: bigint; /** * if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees. * the payer must be a tx signer (and thus have signed this field in AuthInfo). @@ -624,24 +623,24 @@ export interface FeeProtoMsg { */ export interface FeeAmino { /** amount is the amount of coins to be paid as a fee */ - amount: CoinAmino[]; + amount?: CoinAmino[]; /** * gas_limit is the maximum gas that can be used in transaction processing * before an out of gas error occurs */ - gas_limit: string; + gas_limit?: string; /** * if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees. * the payer must be a tx signer (and thus have signed this field in AuthInfo). * setting this field does *not* change the ordering of required signers for the transaction. */ - payer: string; + payer?: string; /** * if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used * to pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does * not support fee grants, this will fail */ - granter: string; + granter?: string; } export interface FeeAminoMsg { type: "cosmos-sdk/Fee"; @@ -654,7 +653,7 @@ export interface FeeAminoMsg { */ export interface FeeSDKType { amount: CoinSDKType[]; - gas_limit: Long; + gas_limit: bigint; payer: string; granter: string; } @@ -680,9 +679,9 @@ export interface TipProtoMsg { */ export interface TipAmino { /** amount is the amount of the tip */ - amount: CoinAmino[]; + amount?: CoinAmino[]; /** tipper is the address of the account paying for the tip */ - tipper: string; + tipper?: string; } export interface TipAminoMsg { type: "cosmos-sdk/Tip"; @@ -717,7 +716,7 @@ export interface AuxSignerData { * signs. Note: we use the same sign doc even if we're signing with * LEGACY_AMINO_JSON. */ - signDoc: SignDocDirectAux; + signDoc?: SignDocDirectAux; /** mode is the signing mode of the single signer. */ mode: SignMode; /** sig is the signature of the sign doc. */ @@ -741,7 +740,7 @@ export interface AuxSignerDataAmino { * AuxSignerData across different chains, the bech32 prefix of the target * chain (where the final transaction is broadcasted) should be used. */ - address: string; + address?: string; /** * sign_doc is the SIGN_MODE_DIRECT_AUX sign doc that the auxiliary signer * signs. Note: we use the same sign doc even if we're signing with @@ -749,9 +748,9 @@ export interface AuxSignerDataAmino { */ sign_doc?: SignDocDirectAuxAmino; /** mode is the signing mode of the single signer. */ - mode: SignMode; + mode?: SignMode; /** sig is the signature of the sign doc. */ - sig: Uint8Array; + sig?: string; } export interface AuxSignerDataAminoMsg { type: "cosmos-sdk/AuxSignerData"; @@ -767,13 +766,14 @@ export interface AuxSignerDataAminoMsg { */ export interface AuxSignerDataSDKType { address: string; - sign_doc: SignDocDirectAuxSDKType; + sign_doc?: SignDocDirectAuxSDKType; mode: SignMode; sig: Uint8Array; } export declare const Tx: { - encode(message: Tx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Tx; + typeUrl: string; + encode(message: Tx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Tx; fromJSON(object: any): Tx; toJSON(message: Tx): unknown; fromPartial(object: Partial): Tx; @@ -786,8 +786,9 @@ export declare const Tx: { toProtoMsg(message: Tx): TxProtoMsg; }; export declare const TxRaw: { - encode(message: TxRaw, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxRaw; + typeUrl: string; + encode(message: TxRaw, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxRaw; fromJSON(object: any): TxRaw; toJSON(message: TxRaw): unknown; fromPartial(object: Partial): TxRaw; @@ -800,8 +801,9 @@ export declare const TxRaw: { toProtoMsg(message: TxRaw): TxRawProtoMsg; }; export declare const SignDoc: { - encode(message: SignDoc, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignDoc; + typeUrl: string; + encode(message: SignDoc, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignDoc; fromJSON(object: any): SignDoc; toJSON(message: SignDoc): unknown; fromPartial(object: Partial): SignDoc; @@ -814,8 +816,9 @@ export declare const SignDoc: { toProtoMsg(message: SignDoc): SignDocProtoMsg; }; export declare const SignDocDirectAux: { - encode(message: SignDocDirectAux, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignDocDirectAux; + typeUrl: string; + encode(message: SignDocDirectAux, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignDocDirectAux; fromJSON(object: any): SignDocDirectAux; toJSON(message: SignDocDirectAux): unknown; fromPartial(object: Partial): SignDocDirectAux; @@ -828,8 +831,9 @@ export declare const SignDocDirectAux: { toProtoMsg(message: SignDocDirectAux): SignDocDirectAuxProtoMsg; }; export declare const TxBody: { - encode(message: TxBody, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxBody; + typeUrl: string; + encode(message: TxBody, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxBody; fromJSON(object: any): TxBody; toJSON(message: TxBody): unknown; fromPartial(object: Partial): TxBody; @@ -842,8 +846,9 @@ export declare const TxBody: { toProtoMsg(message: TxBody): TxBodyProtoMsg; }; export declare const AuthInfo: { - encode(message: AuthInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AuthInfo; + typeUrl: string; + encode(message: AuthInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AuthInfo; fromJSON(object: any): AuthInfo; toJSON(message: AuthInfo): unknown; fromPartial(object: Partial): AuthInfo; @@ -856,8 +861,9 @@ export declare const AuthInfo: { toProtoMsg(message: AuthInfo): AuthInfoProtoMsg; }; export declare const SignerInfo: { - encode(message: SignerInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignerInfo; + typeUrl: string; + encode(message: SignerInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignerInfo; fromJSON(object: any): SignerInfo; toJSON(message: SignerInfo): unknown; fromPartial(object: Partial): SignerInfo; @@ -870,8 +876,9 @@ export declare const SignerInfo: { toProtoMsg(message: SignerInfo): SignerInfoProtoMsg; }; export declare const ModeInfo: { - encode(message: ModeInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModeInfo; + typeUrl: string; + encode(message: ModeInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModeInfo; fromJSON(object: any): ModeInfo; toJSON(message: ModeInfo): unknown; fromPartial(object: Partial): ModeInfo; @@ -884,8 +891,9 @@ export declare const ModeInfo: { toProtoMsg(message: ModeInfo): ModeInfoProtoMsg; }; export declare const ModeInfo_Single: { - encode(message: ModeInfo_Single, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModeInfo_Single; + typeUrl: string; + encode(message: ModeInfo_Single, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModeInfo_Single; fromJSON(object: any): ModeInfo_Single; toJSON(message: ModeInfo_Single): unknown; fromPartial(object: Partial): ModeInfo_Single; @@ -898,8 +906,9 @@ export declare const ModeInfo_Single: { toProtoMsg(message: ModeInfo_Single): ModeInfo_SingleProtoMsg; }; export declare const ModeInfo_Multi: { - encode(message: ModeInfo_Multi, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModeInfo_Multi; + typeUrl: string; + encode(message: ModeInfo_Multi, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModeInfo_Multi; fromJSON(object: any): ModeInfo_Multi; toJSON(message: ModeInfo_Multi): unknown; fromPartial(object: Partial): ModeInfo_Multi; @@ -912,8 +921,9 @@ export declare const ModeInfo_Multi: { toProtoMsg(message: ModeInfo_Multi): ModeInfo_MultiProtoMsg; }; export declare const Fee: { - encode(message: Fee, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Fee; + typeUrl: string; + encode(message: Fee, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Fee; fromJSON(object: any): Fee; toJSON(message: Fee): unknown; fromPartial(object: Partial): Fee; @@ -926,8 +936,9 @@ export declare const Fee: { toProtoMsg(message: Fee): FeeProtoMsg; }; export declare const Tip: { - encode(message: Tip, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Tip; + typeUrl: string; + encode(message: Tip, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Tip; fromJSON(object: any): Tip; toJSON(message: Tip): unknown; fromPartial(object: Partial): Tip; @@ -940,8 +951,9 @@ export declare const Tip: { toProtoMsg(message: Tip): TipProtoMsg; }; export declare const AuxSignerData: { - encode(message: AuxSignerData, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AuxSignerData; + typeUrl: string; + encode(message: AuxSignerData, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AuxSignerData; fromJSON(object: any): AuxSignerData; toJSON(message: AuxSignerData): unknown; fromPartial(object: Partial): AuxSignerData; diff --git a/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.d.ts b/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.d.ts index 5ce555f..8dfe699 100644 --- a/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.d.ts +++ b/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.d.ts @@ -1,6 +1,5 @@ import { Plan, PlanAmino, PlanSDKType, ModuleVersion, ModuleVersionAmino, ModuleVersionSDKType } from "./upgrade"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * QueryCurrentPlanRequest is the request type for the Query/CurrentPlan RPC * method. @@ -33,7 +32,7 @@ export interface QueryCurrentPlanRequestSDKType { */ export interface QueryCurrentPlanResponse { /** plan is the current upgrade plan. */ - plan: Plan; + plan?: Plan; } export interface QueryCurrentPlanResponseProtoMsg { typeUrl: "/cosmos.upgrade.v1beta1.QueryCurrentPlanResponse"; @@ -56,7 +55,7 @@ export interface QueryCurrentPlanResponseAminoMsg { * method. */ export interface QueryCurrentPlanResponseSDKType { - plan: PlanSDKType; + plan?: PlanSDKType; } /** * QueryCurrentPlanRequest is the request type for the Query/AppliedPlan RPC @@ -76,7 +75,7 @@ export interface QueryAppliedPlanRequestProtoMsg { */ export interface QueryAppliedPlanRequestAmino { /** name is the name of the applied plan to query for. */ - name: string; + name?: string; } export interface QueryAppliedPlanRequestAminoMsg { type: "cosmos-sdk/QueryAppliedPlanRequest"; @@ -95,7 +94,7 @@ export interface QueryAppliedPlanRequestSDKType { */ export interface QueryAppliedPlanResponse { /** height is the block height at which the plan was applied. */ - height: Long; + height: bigint; } export interface QueryAppliedPlanResponseProtoMsg { typeUrl: "/cosmos.upgrade.v1beta1.QueryAppliedPlanResponse"; @@ -107,7 +106,7 @@ export interface QueryAppliedPlanResponseProtoMsg { */ export interface QueryAppliedPlanResponseAmino { /** height is the block height at which the plan was applied. */ - height: string; + height?: string; } export interface QueryAppliedPlanResponseAminoMsg { type: "cosmos-sdk/QueryAppliedPlanResponse"; @@ -118,7 +117,7 @@ export interface QueryAppliedPlanResponseAminoMsg { * method. */ export interface QueryAppliedPlanResponseSDKType { - height: Long; + height: bigint; } /** * QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState @@ -130,7 +129,7 @@ export interface QueryUpgradedConsensusStateRequest { * last height of the current chain must be sent in request * as this is the height under which next consensus state is stored */ - lastHeight: Long; + lastHeight: bigint; } export interface QueryUpgradedConsensusStateRequestProtoMsg { typeUrl: "/cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateRequest"; @@ -146,7 +145,7 @@ export interface QueryUpgradedConsensusStateRequestAmino { * last height of the current chain must be sent in request * as this is the height under which next consensus state is stored */ - last_height: string; + last_height?: string; } export interface QueryUpgradedConsensusStateRequestAminoMsg { type: "cosmos-sdk/QueryUpgradedConsensusStateRequest"; @@ -158,7 +157,7 @@ export interface QueryUpgradedConsensusStateRequestAminoMsg { */ /** @deprecated */ export interface QueryUpgradedConsensusStateRequestSDKType { - last_height: Long; + last_height: bigint; } /** * QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState @@ -180,7 +179,7 @@ export interface QueryUpgradedConsensusStateResponseProtoMsg { /** @deprecated */ export interface QueryUpgradedConsensusStateResponseAmino { /** Since: cosmos-sdk 0.43 */ - upgraded_consensus_state: Uint8Array; + upgraded_consensus_state?: string; } export interface QueryUpgradedConsensusStateResponseAminoMsg { type: "cosmos-sdk/QueryUpgradedConsensusStateResponse"; @@ -224,7 +223,7 @@ export interface QueryModuleVersionsRequestAmino { * consensus version from state. Leaving this empty will * fetch the full list of module versions from state */ - module_name: string; + module_name?: string; } export interface QueryModuleVersionsRequestAminoMsg { type: "cosmos-sdk/QueryModuleVersionsRequest"; @@ -261,7 +260,7 @@ export interface QueryModuleVersionsResponseProtoMsg { */ export interface QueryModuleVersionsResponseAmino { /** module_versions is a list of module names with their consensus versions. */ - module_versions: ModuleVersionAmino[]; + module_versions?: ModuleVersionAmino[]; } export interface QueryModuleVersionsResponseAminoMsg { type: "cosmos-sdk/QueryModuleVersionsResponse"; @@ -323,7 +322,7 @@ export interface QueryAuthorityResponseProtoMsg { * Since: cosmos-sdk 0.46 */ export interface QueryAuthorityResponseAmino { - address: string; + address?: string; } export interface QueryAuthorityResponseAminoMsg { type: "cosmos-sdk/QueryAuthorityResponse"; @@ -338,8 +337,9 @@ export interface QueryAuthorityResponseSDKType { address: string; } export declare const QueryCurrentPlanRequest: { - encode(_: QueryCurrentPlanRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCurrentPlanRequest; + typeUrl: string; + encode(_: QueryCurrentPlanRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCurrentPlanRequest; fromJSON(_: any): QueryCurrentPlanRequest; toJSON(_: QueryCurrentPlanRequest): unknown; fromPartial(_: Partial): QueryCurrentPlanRequest; @@ -352,8 +352,9 @@ export declare const QueryCurrentPlanRequest: { toProtoMsg(message: QueryCurrentPlanRequest): QueryCurrentPlanRequestProtoMsg; }; export declare const QueryCurrentPlanResponse: { - encode(message: QueryCurrentPlanResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCurrentPlanResponse; + typeUrl: string; + encode(message: QueryCurrentPlanResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCurrentPlanResponse; fromJSON(object: any): QueryCurrentPlanResponse; toJSON(message: QueryCurrentPlanResponse): unknown; fromPartial(object: Partial): QueryCurrentPlanResponse; @@ -366,8 +367,9 @@ export declare const QueryCurrentPlanResponse: { toProtoMsg(message: QueryCurrentPlanResponse): QueryCurrentPlanResponseProtoMsg; }; export declare const QueryAppliedPlanRequest: { - encode(message: QueryAppliedPlanRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAppliedPlanRequest; + typeUrl: string; + encode(message: QueryAppliedPlanRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAppliedPlanRequest; fromJSON(object: any): QueryAppliedPlanRequest; toJSON(message: QueryAppliedPlanRequest): unknown; fromPartial(object: Partial): QueryAppliedPlanRequest; @@ -380,8 +382,9 @@ export declare const QueryAppliedPlanRequest: { toProtoMsg(message: QueryAppliedPlanRequest): QueryAppliedPlanRequestProtoMsg; }; export declare const QueryAppliedPlanResponse: { - encode(message: QueryAppliedPlanResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAppliedPlanResponse; + typeUrl: string; + encode(message: QueryAppliedPlanResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAppliedPlanResponse; fromJSON(object: any): QueryAppliedPlanResponse; toJSON(message: QueryAppliedPlanResponse): unknown; fromPartial(object: Partial): QueryAppliedPlanResponse; @@ -394,8 +397,9 @@ export declare const QueryAppliedPlanResponse: { toProtoMsg(message: QueryAppliedPlanResponse): QueryAppliedPlanResponseProtoMsg; }; export declare const QueryUpgradedConsensusStateRequest: { - encode(message: QueryUpgradedConsensusStateRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedConsensusStateRequest; + typeUrl: string; + encode(message: QueryUpgradedConsensusStateRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedConsensusStateRequest; fromJSON(object: any): QueryUpgradedConsensusStateRequest; toJSON(message: QueryUpgradedConsensusStateRequest): unknown; fromPartial(object: Partial): QueryUpgradedConsensusStateRequest; @@ -408,8 +412,9 @@ export declare const QueryUpgradedConsensusStateRequest: { toProtoMsg(message: QueryUpgradedConsensusStateRequest): QueryUpgradedConsensusStateRequestProtoMsg; }; export declare const QueryUpgradedConsensusStateResponse: { - encode(message: QueryUpgradedConsensusStateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedConsensusStateResponse; + typeUrl: string; + encode(message: QueryUpgradedConsensusStateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedConsensusStateResponse; fromJSON(object: any): QueryUpgradedConsensusStateResponse; toJSON(message: QueryUpgradedConsensusStateResponse): unknown; fromPartial(object: Partial): QueryUpgradedConsensusStateResponse; @@ -422,8 +427,9 @@ export declare const QueryUpgradedConsensusStateResponse: { toProtoMsg(message: QueryUpgradedConsensusStateResponse): QueryUpgradedConsensusStateResponseProtoMsg; }; export declare const QueryModuleVersionsRequest: { - encode(message: QueryModuleVersionsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleVersionsRequest; + typeUrl: string; + encode(message: QueryModuleVersionsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleVersionsRequest; fromJSON(object: any): QueryModuleVersionsRequest; toJSON(message: QueryModuleVersionsRequest): unknown; fromPartial(object: Partial): QueryModuleVersionsRequest; @@ -436,8 +442,9 @@ export declare const QueryModuleVersionsRequest: { toProtoMsg(message: QueryModuleVersionsRequest): QueryModuleVersionsRequestProtoMsg; }; export declare const QueryModuleVersionsResponse: { - encode(message: QueryModuleVersionsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryModuleVersionsResponse; + typeUrl: string; + encode(message: QueryModuleVersionsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryModuleVersionsResponse; fromJSON(object: any): QueryModuleVersionsResponse; toJSON(message: QueryModuleVersionsResponse): unknown; fromPartial(object: Partial): QueryModuleVersionsResponse; @@ -450,8 +457,9 @@ export declare const QueryModuleVersionsResponse: { toProtoMsg(message: QueryModuleVersionsResponse): QueryModuleVersionsResponseProtoMsg; }; export declare const QueryAuthorityRequest: { - encode(_: QueryAuthorityRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAuthorityRequest; + typeUrl: string; + encode(_: QueryAuthorityRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAuthorityRequest; fromJSON(_: any): QueryAuthorityRequest; toJSON(_: QueryAuthorityRequest): unknown; fromPartial(_: Partial): QueryAuthorityRequest; @@ -464,8 +472,9 @@ export declare const QueryAuthorityRequest: { toProtoMsg(message: QueryAuthorityRequest): QueryAuthorityRequestProtoMsg; }; export declare const QueryAuthorityResponse: { - encode(message: QueryAuthorityResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAuthorityResponse; + typeUrl: string; + encode(message: QueryAuthorityResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAuthorityResponse; fromJSON(object: any): QueryAuthorityResponse; toJSON(message: QueryAuthorityResponse): unknown; fromPartial(object: Partial): QueryAuthorityResponse; diff --git a/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts b/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts index 2096c97..c76598b 100644 --- a/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts +++ b/packages/api/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryCurrentPlanRequest, QueryCurrentPlanResponseSDKType, QueryAppliedPlanRequest, QueryAppliedPlanResponseSDKType, QueryUpgradedConsensusStateRequest, QueryUpgradedConsensusStateResponseSDKType, QueryModuleVersionsRequest, QueryModuleVersionsResponseSDKType, QueryAuthorityRequest, QueryAuthorityResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/cosmos/upgrade/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/upgrade/v1beta1/tx.d.ts index c88776b..34cfaef 100644 --- a/packages/api/types/codegen/cosmos/upgrade/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/upgrade/v1beta1/tx.d.ts @@ -1,5 +1,5 @@ import { Plan, PlanAmino, PlanSDKType } from "./upgrade"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgSoftwareUpgrade is the Msg/SoftwareUpgrade request type. * @@ -22,7 +22,7 @@ export interface MsgSoftwareUpgradeProtoMsg { */ export interface MsgSoftwareUpgradeAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** plan is the upgrade plan. */ plan?: PlanAmino; } @@ -88,7 +88,7 @@ export interface MsgCancelUpgradeProtoMsg { */ export interface MsgCancelUpgradeAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; } export interface MsgCancelUpgradeAminoMsg { type: "cosmos-sdk/MsgCancelUpgrade"; @@ -132,8 +132,9 @@ export interface MsgCancelUpgradeResponseAminoMsg { export interface MsgCancelUpgradeResponseSDKType { } export declare const MsgSoftwareUpgrade: { - encode(message: MsgSoftwareUpgrade, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSoftwareUpgrade; + typeUrl: string; + encode(message: MsgSoftwareUpgrade, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSoftwareUpgrade; fromJSON(object: any): MsgSoftwareUpgrade; toJSON(message: MsgSoftwareUpgrade): unknown; fromPartial(object: Partial): MsgSoftwareUpgrade; @@ -146,8 +147,9 @@ export declare const MsgSoftwareUpgrade: { toProtoMsg(message: MsgSoftwareUpgrade): MsgSoftwareUpgradeProtoMsg; }; export declare const MsgSoftwareUpgradeResponse: { - encode(_: MsgSoftwareUpgradeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSoftwareUpgradeResponse; + typeUrl: string; + encode(_: MsgSoftwareUpgradeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSoftwareUpgradeResponse; fromJSON(_: any): MsgSoftwareUpgradeResponse; toJSON(_: MsgSoftwareUpgradeResponse): unknown; fromPartial(_: Partial): MsgSoftwareUpgradeResponse; @@ -160,8 +162,9 @@ export declare const MsgSoftwareUpgradeResponse: { toProtoMsg(message: MsgSoftwareUpgradeResponse): MsgSoftwareUpgradeResponseProtoMsg; }; export declare const MsgCancelUpgrade: { - encode(message: MsgCancelUpgrade, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelUpgrade; + typeUrl: string; + encode(message: MsgCancelUpgrade, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelUpgrade; fromJSON(object: any): MsgCancelUpgrade; toJSON(message: MsgCancelUpgrade): unknown; fromPartial(object: Partial): MsgCancelUpgrade; @@ -174,8 +177,9 @@ export declare const MsgCancelUpgrade: { toProtoMsg(message: MsgCancelUpgrade): MsgCancelUpgradeProtoMsg; }; export declare const MsgCancelUpgradeResponse: { - encode(_: MsgCancelUpgradeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelUpgradeResponse; + typeUrl: string; + encode(_: MsgCancelUpgradeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelUpgradeResponse; fromJSON(_: any): MsgCancelUpgradeResponse; toJSON(_: MsgCancelUpgradeResponse): unknown; fromPartial(_: Partial): MsgCancelUpgradeResponse; diff --git a/packages/api/types/codegen/cosmos/upgrade/v1beta1/upgrade.d.ts b/packages/api/types/codegen/cosmos/upgrade/v1beta1/upgrade.d.ts index 7edafd7..b3fff20 100644 --- a/packages/api/types/codegen/cosmos/upgrade/v1beta1/upgrade.d.ts +++ b/packages/api/types/codegen/cosmos/upgrade/v1beta1/upgrade.d.ts @@ -1,7 +1,6 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** Plan specifies information about a planned upgrade and when it should occur. */ export interface Plan { /** @@ -25,7 +24,7 @@ export interface Plan { * The height at which the upgrade must be performed. * Only used if Time is not set. */ - height: Long; + height: bigint; /** * Any application specific upgrade info to be included on-chain * such as a git commit that validators could automatically upgrade to @@ -37,7 +36,7 @@ export interface Plan { * If this field is not empty, an error will be thrown. */ /** @deprecated */ - upgradedClientState: Any; + upgradedClientState?: Any; } export interface PlanProtoMsg { typeUrl: "/cosmos.upgrade.v1beta1.Plan"; @@ -54,24 +53,24 @@ export interface PlanAmino { * assumed that the software is out-of-date when the upgrade Time or Height is * reached and the software will exit. */ - name: string; + name?: string; /** * Deprecated: Time based upgrades have been deprecated. Time based upgrade logic * has been removed from the SDK. * If this field is not empty, an error will be thrown. */ /** @deprecated */ - time?: TimestampAmino; + time?: string; /** * The height at which the upgrade must be performed. * Only used if Time is not set. */ - height: string; + height?: string; /** * Any application specific upgrade info to be included on-chain * such as a git commit that validators could automatically upgrade to */ - info: string; + info?: string; /** * Deprecated: UpgradedClientState field has been deprecated. IBC upgrade logic has been * moved to the IBC module in the sub module 02-client. @@ -89,10 +88,10 @@ export interface PlanSDKType { name: string; /** @deprecated */ time: TimestampSDKType; - height: Long; + height: bigint; info: string; /** @deprecated */ - upgraded_client_state: AnySDKType; + upgraded_client_state?: AnySDKType; } /** * SoftwareUpgradeProposal is a gov Content type for initiating a software @@ -102,7 +101,7 @@ export interface PlanSDKType { */ /** @deprecated */ export interface SoftwareUpgradeProposal { - $typeUrl?: string; + $typeUrl?: "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal"; title: string; description: string; plan: Plan; @@ -119,8 +118,8 @@ export interface SoftwareUpgradeProposalProtoMsg { */ /** @deprecated */ export interface SoftwareUpgradeProposalAmino { - title: string; - description: string; + title?: string; + description?: string; plan?: PlanAmino; } export interface SoftwareUpgradeProposalAminoMsg { @@ -135,7 +134,7 @@ export interface SoftwareUpgradeProposalAminoMsg { */ /** @deprecated */ export interface SoftwareUpgradeProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal"; title: string; description: string; plan: PlanSDKType; @@ -148,7 +147,7 @@ export interface SoftwareUpgradeProposalSDKType { */ /** @deprecated */ export interface CancelSoftwareUpgradeProposal { - $typeUrl?: string; + $typeUrl?: "/cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal"; title: string; description: string; } @@ -164,8 +163,8 @@ export interface CancelSoftwareUpgradeProposalProtoMsg { */ /** @deprecated */ export interface CancelSoftwareUpgradeProposalAmino { - title: string; - description: string; + title?: string; + description?: string; } export interface CancelSoftwareUpgradeProposalAminoMsg { type: "cosmos-sdk/CancelSoftwareUpgradeProposal"; @@ -179,7 +178,7 @@ export interface CancelSoftwareUpgradeProposalAminoMsg { */ /** @deprecated */ export interface CancelSoftwareUpgradeProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal"; title: string; description: string; } @@ -192,7 +191,7 @@ export interface ModuleVersion { /** name of the app module */ name: string; /** consensus version of the app module */ - version: Long; + version: bigint; } export interface ModuleVersionProtoMsg { typeUrl: "/cosmos.upgrade.v1beta1.ModuleVersion"; @@ -205,9 +204,9 @@ export interface ModuleVersionProtoMsg { */ export interface ModuleVersionAmino { /** name of the app module */ - name: string; + name?: string; /** consensus version of the app module */ - version: string; + version?: string; } export interface ModuleVersionAminoMsg { type: "cosmos-sdk/ModuleVersion"; @@ -220,11 +219,12 @@ export interface ModuleVersionAminoMsg { */ export interface ModuleVersionSDKType { name: string; - version: Long; + version: bigint; } export declare const Plan: { - encode(message: Plan, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Plan; + typeUrl: string; + encode(message: Plan, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Plan; fromJSON(object: any): Plan; toJSON(message: Plan): unknown; fromPartial(object: Partial): Plan; @@ -237,8 +237,9 @@ export declare const Plan: { toProtoMsg(message: Plan): PlanProtoMsg; }; export declare const SoftwareUpgradeProposal: { - encode(message: SoftwareUpgradeProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SoftwareUpgradeProposal; + typeUrl: string; + encode(message: SoftwareUpgradeProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SoftwareUpgradeProposal; fromJSON(object: any): SoftwareUpgradeProposal; toJSON(message: SoftwareUpgradeProposal): unknown; fromPartial(object: Partial): SoftwareUpgradeProposal; @@ -251,8 +252,9 @@ export declare const SoftwareUpgradeProposal: { toProtoMsg(message: SoftwareUpgradeProposal): SoftwareUpgradeProposalProtoMsg; }; export declare const CancelSoftwareUpgradeProposal: { - encode(message: CancelSoftwareUpgradeProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CancelSoftwareUpgradeProposal; + typeUrl: string; + encode(message: CancelSoftwareUpgradeProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CancelSoftwareUpgradeProposal; fromJSON(object: any): CancelSoftwareUpgradeProposal; toJSON(message: CancelSoftwareUpgradeProposal): unknown; fromPartial(object: Partial): CancelSoftwareUpgradeProposal; @@ -265,8 +267,9 @@ export declare const CancelSoftwareUpgradeProposal: { toProtoMsg(message: CancelSoftwareUpgradeProposal): CancelSoftwareUpgradeProposalProtoMsg; }; export declare const ModuleVersion: { - encode(message: ModuleVersion, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ModuleVersion; + typeUrl: string; + encode(message: ModuleVersion, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ModuleVersion; fromJSON(object: any): ModuleVersion; toJSON(message: ModuleVersion): unknown; fromPartial(object: Partial): ModuleVersion; diff --git a/packages/api/types/codegen/cosmos/vesting/v1beta1/tx.d.ts b/packages/api/types/codegen/cosmos/vesting/v1beta1/tx.d.ts index c2afe08..3ce30fa 100644 --- a/packages/api/types/codegen/cosmos/vesting/v1beta1/tx.d.ts +++ b/packages/api/types/codegen/cosmos/vesting/v1beta1/tx.d.ts @@ -1,7 +1,6 @@ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { Period, PeriodAmino, PeriodSDKType } from "./vesting"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgCreateVestingAccount defines a message that enables creating a vesting * account. @@ -10,7 +9,7 @@ export interface MsgCreateVestingAccount { fromAddress: string; toAddress: string; amount: Coin[]; - endTime: Long; + endTime: bigint; delayed: boolean; } export interface MsgCreateVestingAccountProtoMsg { @@ -22,11 +21,11 @@ export interface MsgCreateVestingAccountProtoMsg { * account. */ export interface MsgCreateVestingAccountAmino { - from_address: string; - to_address: string; - amount: CoinAmino[]; - end_time: string; - delayed: boolean; + from_address?: string; + to_address?: string; + amount?: CoinAmino[]; + end_time?: string; + delayed?: boolean; } export interface MsgCreateVestingAccountAminoMsg { type: "cosmos-sdk/MsgCreateVestingAccount"; @@ -40,7 +39,7 @@ export interface MsgCreateVestingAccountSDKType { from_address: string; to_address: string; amount: CoinSDKType[]; - end_time: Long; + end_time: bigint; delayed: boolean; } /** MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. */ @@ -82,9 +81,9 @@ export interface MsgCreatePermanentLockedAccountProtoMsg { * Since: cosmos-sdk 0.46 */ export interface MsgCreatePermanentLockedAccountAmino { - from_address: string; - to_address: string; - amount: CoinAmino[]; + from_address?: string; + to_address?: string; + amount?: CoinAmino[]; } export interface MsgCreatePermanentLockedAccountAminoMsg { type: "cosmos-sdk/MsgCreatePermanentLockedAccount"; @@ -139,7 +138,7 @@ export interface MsgCreatePermanentLockedAccountResponseSDKType { export interface MsgCreatePeriodicVestingAccount { fromAddress: string; toAddress: string; - startTime: Long; + startTime: bigint; vestingPeriods: Period[]; } export interface MsgCreatePeriodicVestingAccountProtoMsg { @@ -153,10 +152,10 @@ export interface MsgCreatePeriodicVestingAccountProtoMsg { * Since: cosmos-sdk 0.46 */ export interface MsgCreatePeriodicVestingAccountAmino { - from_address: string; - to_address: string; - start_time: string; - vesting_periods: PeriodAmino[]; + from_address?: string; + to_address?: string; + start_time?: string; + vesting_periods?: PeriodAmino[]; } export interface MsgCreatePeriodicVestingAccountAminoMsg { type: "cosmos-sdk/MsgCreatePeriodicVestingAccount"; @@ -171,7 +170,7 @@ export interface MsgCreatePeriodicVestingAccountAminoMsg { export interface MsgCreatePeriodicVestingAccountSDKType { from_address: string; to_address: string; - start_time: Long; + start_time: bigint; vesting_periods: PeriodSDKType[]; } /** @@ -207,8 +206,9 @@ export interface MsgCreatePeriodicVestingAccountResponseAminoMsg { export interface MsgCreatePeriodicVestingAccountResponseSDKType { } export declare const MsgCreateVestingAccount: { - encode(message: MsgCreateVestingAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateVestingAccount; + typeUrl: string; + encode(message: MsgCreateVestingAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateVestingAccount; fromJSON(object: any): MsgCreateVestingAccount; toJSON(message: MsgCreateVestingAccount): unknown; fromPartial(object: Partial): MsgCreateVestingAccount; @@ -221,8 +221,9 @@ export declare const MsgCreateVestingAccount: { toProtoMsg(message: MsgCreateVestingAccount): MsgCreateVestingAccountProtoMsg; }; export declare const MsgCreateVestingAccountResponse: { - encode(_: MsgCreateVestingAccountResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateVestingAccountResponse; + typeUrl: string; + encode(_: MsgCreateVestingAccountResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateVestingAccountResponse; fromJSON(_: any): MsgCreateVestingAccountResponse; toJSON(_: MsgCreateVestingAccountResponse): unknown; fromPartial(_: Partial): MsgCreateVestingAccountResponse; @@ -235,8 +236,9 @@ export declare const MsgCreateVestingAccountResponse: { toProtoMsg(message: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseProtoMsg; }; export declare const MsgCreatePermanentLockedAccount: { - encode(message: MsgCreatePermanentLockedAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreatePermanentLockedAccount; + typeUrl: string; + encode(message: MsgCreatePermanentLockedAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePermanentLockedAccount; fromJSON(object: any): MsgCreatePermanentLockedAccount; toJSON(message: MsgCreatePermanentLockedAccount): unknown; fromPartial(object: Partial): MsgCreatePermanentLockedAccount; @@ -249,8 +251,9 @@ export declare const MsgCreatePermanentLockedAccount: { toProtoMsg(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountProtoMsg; }; export declare const MsgCreatePermanentLockedAccountResponse: { - encode(_: MsgCreatePermanentLockedAccountResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreatePermanentLockedAccountResponse; + typeUrl: string; + encode(_: MsgCreatePermanentLockedAccountResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePermanentLockedAccountResponse; fromJSON(_: any): MsgCreatePermanentLockedAccountResponse; toJSON(_: MsgCreatePermanentLockedAccountResponse): unknown; fromPartial(_: Partial): MsgCreatePermanentLockedAccountResponse; @@ -263,8 +266,9 @@ export declare const MsgCreatePermanentLockedAccountResponse: { toProtoMsg(message: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseProtoMsg; }; export declare const MsgCreatePeriodicVestingAccount: { - encode(message: MsgCreatePeriodicVestingAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreatePeriodicVestingAccount; + typeUrl: string; + encode(message: MsgCreatePeriodicVestingAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePeriodicVestingAccount; fromJSON(object: any): MsgCreatePeriodicVestingAccount; toJSON(message: MsgCreatePeriodicVestingAccount): unknown; fromPartial(object: Partial): MsgCreatePeriodicVestingAccount; @@ -277,8 +281,9 @@ export declare const MsgCreatePeriodicVestingAccount: { toProtoMsg(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountProtoMsg; }; export declare const MsgCreatePeriodicVestingAccountResponse: { - encode(_: MsgCreatePeriodicVestingAccountResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreatePeriodicVestingAccountResponse; + typeUrl: string; + encode(_: MsgCreatePeriodicVestingAccountResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePeriodicVestingAccountResponse; fromJSON(_: any): MsgCreatePeriodicVestingAccountResponse; toJSON(_: MsgCreatePeriodicVestingAccountResponse): unknown; fromPartial(_: Partial): MsgCreatePeriodicVestingAccountResponse; diff --git a/packages/api/types/codegen/cosmos/vesting/v1beta1/vesting.d.ts b/packages/api/types/codegen/cosmos/vesting/v1beta1/vesting.d.ts index 033f882..3fb565f 100644 --- a/packages/api/types/codegen/cosmos/vesting/v1beta1/vesting.d.ts +++ b/packages/api/types/codegen/cosmos/vesting/v1beta1/vesting.d.ts @@ -1,17 +1,16 @@ import { BaseAccount, BaseAccountAmino, BaseAccountSDKType } from "../../auth/v1beta1/auth"; import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * BaseVestingAccount implements the VestingAccount interface. It contains all * the necessary fields needed for any vesting account implementation. */ export interface BaseVestingAccount { - baseAccount: BaseAccount; + baseAccount?: BaseAccount; originalVesting: Coin[]; delegatedFree: Coin[]; delegatedVesting: Coin[]; - endTime: Long; + endTime: bigint; } export interface BaseVestingAccountProtoMsg { typeUrl: "/cosmos.vesting.v1beta1.BaseVestingAccount"; @@ -23,10 +22,10 @@ export interface BaseVestingAccountProtoMsg { */ export interface BaseVestingAccountAmino { base_account?: BaseAccountAmino; - original_vesting: CoinAmino[]; - delegated_free: CoinAmino[]; - delegated_vesting: CoinAmino[]; - end_time: string; + original_vesting?: CoinAmino[]; + delegated_free?: CoinAmino[]; + delegated_vesting?: CoinAmino[]; + end_time?: string; } export interface BaseVestingAccountAminoMsg { type: "cosmos-sdk/BaseVestingAccount"; @@ -37,19 +36,19 @@ export interface BaseVestingAccountAminoMsg { * the necessary fields needed for any vesting account implementation. */ export interface BaseVestingAccountSDKType { - base_account: BaseAccountSDKType; + base_account?: BaseAccountSDKType; original_vesting: CoinSDKType[]; delegated_free: CoinSDKType[]; delegated_vesting: CoinSDKType[]; - end_time: Long; + end_time: bigint; } /** * ContinuousVestingAccount implements the VestingAccount interface. It * continuously vests by unlocking coins linearly with respect to time. */ export interface ContinuousVestingAccount { - baseVestingAccount: BaseVestingAccount; - startTime: Long; + baseVestingAccount?: BaseVestingAccount; + startTime: bigint; } export interface ContinuousVestingAccountProtoMsg { typeUrl: "/cosmos.vesting.v1beta1.ContinuousVestingAccount"; @@ -61,7 +60,7 @@ export interface ContinuousVestingAccountProtoMsg { */ export interface ContinuousVestingAccountAmino { base_vesting_account?: BaseVestingAccountAmino; - start_time: string; + start_time?: string; } export interface ContinuousVestingAccountAminoMsg { type: "cosmos-sdk/ContinuousVestingAccount"; @@ -72,8 +71,8 @@ export interface ContinuousVestingAccountAminoMsg { * continuously vests by unlocking coins linearly with respect to time. */ export interface ContinuousVestingAccountSDKType { - base_vesting_account: BaseVestingAccountSDKType; - start_time: Long; + base_vesting_account?: BaseVestingAccountSDKType; + start_time: bigint; } /** * DelayedVestingAccount implements the VestingAccount interface. It vests all @@ -81,7 +80,7 @@ export interface ContinuousVestingAccountSDKType { * locked until a specified time. */ export interface DelayedVestingAccount { - baseVestingAccount: BaseVestingAccount; + baseVestingAccount?: BaseVestingAccount; } export interface DelayedVestingAccountProtoMsg { typeUrl: "/cosmos.vesting.v1beta1.DelayedVestingAccount"; @@ -105,11 +104,11 @@ export interface DelayedVestingAccountAminoMsg { * locked until a specified time. */ export interface DelayedVestingAccountSDKType { - base_vesting_account: BaseVestingAccountSDKType; + base_vesting_account?: BaseVestingAccountSDKType; } /** Period defines a length of time and amount of coins that will vest. */ export interface Period { - length: Long; + length: bigint; amount: Coin[]; } export interface PeriodProtoMsg { @@ -118,8 +117,8 @@ export interface PeriodProtoMsg { } /** Period defines a length of time and amount of coins that will vest. */ export interface PeriodAmino { - length: string; - amount: CoinAmino[]; + length?: string; + amount?: CoinAmino[]; } export interface PeriodAminoMsg { type: "cosmos-sdk/Period"; @@ -127,7 +126,7 @@ export interface PeriodAminoMsg { } /** Period defines a length of time and amount of coins that will vest. */ export interface PeriodSDKType { - length: Long; + length: bigint; amount: CoinSDKType[]; } /** @@ -135,8 +134,8 @@ export interface PeriodSDKType { * periodically vests by unlocking coins during each specified period. */ export interface PeriodicVestingAccount { - baseVestingAccount: BaseVestingAccount; - startTime: Long; + baseVestingAccount?: BaseVestingAccount; + startTime: bigint; vestingPeriods: Period[]; } export interface PeriodicVestingAccountProtoMsg { @@ -149,8 +148,8 @@ export interface PeriodicVestingAccountProtoMsg { */ export interface PeriodicVestingAccountAmino { base_vesting_account?: BaseVestingAccountAmino; - start_time: string; - vesting_periods: PeriodAmino[]; + start_time?: string; + vesting_periods?: PeriodAmino[]; } export interface PeriodicVestingAccountAminoMsg { type: "cosmos-sdk/PeriodicVestingAccount"; @@ -161,8 +160,8 @@ export interface PeriodicVestingAccountAminoMsg { * periodically vests by unlocking coins during each specified period. */ export interface PeriodicVestingAccountSDKType { - base_vesting_account: BaseVestingAccountSDKType; - start_time: Long; + base_vesting_account?: BaseVestingAccountSDKType; + start_time: bigint; vesting_periods: PeriodSDKType[]; } /** @@ -173,7 +172,7 @@ export interface PeriodicVestingAccountSDKType { * Since: cosmos-sdk 0.43 */ export interface PermanentLockedAccount { - baseVestingAccount: BaseVestingAccount; + baseVestingAccount?: BaseVestingAccount; } export interface PermanentLockedAccountProtoMsg { typeUrl: "/cosmos.vesting.v1beta1.PermanentLockedAccount"; @@ -201,11 +200,12 @@ export interface PermanentLockedAccountAminoMsg { * Since: cosmos-sdk 0.43 */ export interface PermanentLockedAccountSDKType { - base_vesting_account: BaseVestingAccountSDKType; + base_vesting_account?: BaseVestingAccountSDKType; } export declare const BaseVestingAccount: { - encode(message: BaseVestingAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BaseVestingAccount; + typeUrl: string; + encode(message: BaseVestingAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BaseVestingAccount; fromJSON(object: any): BaseVestingAccount; toJSON(message: BaseVestingAccount): unknown; fromPartial(object: Partial): BaseVestingAccount; @@ -218,8 +218,9 @@ export declare const BaseVestingAccount: { toProtoMsg(message: BaseVestingAccount): BaseVestingAccountProtoMsg; }; export declare const ContinuousVestingAccount: { - encode(message: ContinuousVestingAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ContinuousVestingAccount; + typeUrl: string; + encode(message: ContinuousVestingAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ContinuousVestingAccount; fromJSON(object: any): ContinuousVestingAccount; toJSON(message: ContinuousVestingAccount): unknown; fromPartial(object: Partial): ContinuousVestingAccount; @@ -232,8 +233,9 @@ export declare const ContinuousVestingAccount: { toProtoMsg(message: ContinuousVestingAccount): ContinuousVestingAccountProtoMsg; }; export declare const DelayedVestingAccount: { - encode(message: DelayedVestingAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DelayedVestingAccount; + typeUrl: string; + encode(message: DelayedVestingAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DelayedVestingAccount; fromJSON(object: any): DelayedVestingAccount; toJSON(message: DelayedVestingAccount): unknown; fromPartial(object: Partial): DelayedVestingAccount; @@ -246,8 +248,9 @@ export declare const DelayedVestingAccount: { toProtoMsg(message: DelayedVestingAccount): DelayedVestingAccountProtoMsg; }; export declare const Period: { - encode(message: Period, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Period; + typeUrl: string; + encode(message: Period, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Period; fromJSON(object: any): Period; toJSON(message: Period): unknown; fromPartial(object: Partial): Period; @@ -260,8 +263,9 @@ export declare const Period: { toProtoMsg(message: Period): PeriodProtoMsg; }; export declare const PeriodicVestingAccount: { - encode(message: PeriodicVestingAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PeriodicVestingAccount; + typeUrl: string; + encode(message: PeriodicVestingAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PeriodicVestingAccount; fromJSON(object: any): PeriodicVestingAccount; toJSON(message: PeriodicVestingAccount): unknown; fromPartial(object: Partial): PeriodicVestingAccount; @@ -274,8 +278,9 @@ export declare const PeriodicVestingAccount: { toProtoMsg(message: PeriodicVestingAccount): PeriodicVestingAccountProtoMsg; }; export declare const PermanentLockedAccount: { - encode(message: PermanentLockedAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PermanentLockedAccount; + typeUrl: string; + encode(message: PermanentLockedAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PermanentLockedAccount; fromJSON(object: any): PermanentLockedAccount; toJSON(message: PermanentLockedAccount): unknown; fromPartial(object: Partial): PermanentLockedAccount; diff --git a/packages/api/types/codegen/cosmos_proto/bundle.d.ts b/packages/api/types/codegen/cosmos_proto/bundle.d.ts index aa94a24..d2e5d12 100644 --- a/packages/api/types/codegen/cosmos_proto/bundle.d.ts +++ b/packages/api/types/codegen/cosmos_proto/bundle.d.ts @@ -6,8 +6,9 @@ export declare const cosmos_proto: { ScalarTypeSDKType: typeof _1.ScalarType; ScalarTypeAmino: typeof _1.ScalarType; InterfaceDescriptor: { - encode(message: _1.InterfaceDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _1.InterfaceDescriptor; + typeUrl: string; + encode(message: _1.InterfaceDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _1.InterfaceDescriptor; fromJSON(object: any): _1.InterfaceDescriptor; toJSON(message: _1.InterfaceDescriptor): unknown; fromPartial(object: Partial<_1.InterfaceDescriptor>): _1.InterfaceDescriptor; @@ -19,8 +20,9 @@ export declare const cosmos_proto: { toProtoMsg(message: _1.InterfaceDescriptor): _1.InterfaceDescriptorProtoMsg; }; ScalarDescriptor: { - encode(message: _1.ScalarDescriptor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _1.ScalarDescriptor; + typeUrl: string; + encode(message: _1.ScalarDescriptor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _1.ScalarDescriptor; fromJSON(object: any): _1.ScalarDescriptor; toJSON(message: _1.ScalarDescriptor): unknown; fromPartial(object: Partial<_1.ScalarDescriptor>): _1.ScalarDescriptor; diff --git a/packages/api/types/codegen/cosmos_proto/cosmos.d.ts b/packages/api/types/codegen/cosmos_proto/cosmos.d.ts index 4e1cf24..4cd0b70 100644 --- a/packages/api/types/codegen/cosmos_proto/cosmos.d.ts +++ b/packages/api/types/codegen/cosmos_proto/cosmos.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../binary"; export declare enum ScalarType { SCALAR_TYPE_UNSPECIFIED = 0, SCALAR_TYPE_STRING = 1, @@ -42,12 +42,12 @@ export interface InterfaceDescriptorAmino { * package.name, ex. for the package a.b and interface named C, the * fully-qualified name will be a.b.C. */ - name: string; + name?: string; /** * description is a human-readable description of the interface and its * purpose. */ - description: string; + description?: string; } export interface InterfaceDescriptorAminoMsg { type: "/cosmos_proto.InterfaceDescriptor"; @@ -112,20 +112,20 @@ export interface ScalarDescriptorAmino { * package.name, ex. for the package a.b and scalar named C, the * fully-qualified name will be a.b.C. */ - name: string; + name?: string; /** * description is a human-readable description of the scalar and its * encoding format. For instance a big integer or decimal scalar should * specify precisely the expected encoding format. */ - description: string; + description?: string; /** * field_type is the type of field with which this scalar can be used. * Scalars can be used with one and only one type of field so that * encoding standards and simple and clear. Currently only string and * bytes fields are supported for scalars. */ - field_type: ScalarType[]; + field_type?: ScalarType[]; } export interface ScalarDescriptorAminoMsg { type: "/cosmos_proto.ScalarDescriptor"; @@ -146,8 +146,9 @@ export interface ScalarDescriptorSDKType { field_type: ScalarType[]; } export declare const InterfaceDescriptor: { - encode(message: InterfaceDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): InterfaceDescriptor; + typeUrl: string; + encode(message: InterfaceDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): InterfaceDescriptor; fromJSON(object: any): InterfaceDescriptor; toJSON(message: InterfaceDescriptor): unknown; fromPartial(object: Partial): InterfaceDescriptor; @@ -159,8 +160,9 @@ export declare const InterfaceDescriptor: { toProtoMsg(message: InterfaceDescriptor): InterfaceDescriptorProtoMsg; }; export declare const ScalarDescriptor: { - encode(message: ScalarDescriptor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ScalarDescriptor; + typeUrl: string; + encode(message: ScalarDescriptor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ScalarDescriptor; fromJSON(object: any): ScalarDescriptor; toJSON(message: ScalarDescriptor): unknown; fromPartial(object: Partial): ScalarDescriptor; diff --git a/packages/api/types/codegen/google/bundle.d.ts b/packages/api/types/codegen/google/bundle.d.ts index c551af3..cd1d0ec 100644 --- a/packages/api/types/codegen/google/bundle.d.ts +++ b/packages/api/types/codegen/google/bundle.d.ts @@ -1,429 +1,503 @@ -import * as _100 from "./protobuf/descriptor"; -import * as _101 from "./protobuf/any"; -import * as _102 from "./protobuf/timestamp"; -import * as _103 from "./protobuf/duration"; +import * as _100 from "./api/http"; +import * as _101 from "./protobuf/descriptor"; +import * as _102 from "./protobuf/any"; +import * as _103 from "./protobuf/timestamp"; +import * as _104 from "./protobuf/duration"; export declare namespace google { - const api: {}; + const api: { + Http: { + typeUrl: string; + encode(message: _100.Http, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _100.Http; + fromJSON(object: any): _100.Http; + toJSON(message: _100.Http): unknown; + fromPartial(object: Partial<_100.Http>): _100.Http; + fromAmino(object: _100.HttpAmino): _100.Http; + toAmino(message: _100.Http): _100.HttpAmino; + fromAminoMsg(object: _100.HttpAminoMsg): _100.Http; + fromProtoMsg(message: _100.HttpProtoMsg): _100.Http; + toProto(message: _100.Http): Uint8Array; + toProtoMsg(message: _100.Http): _100.HttpProtoMsg; + }; + HttpRule: { + typeUrl: string; + encode(message: _100.HttpRule, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _100.HttpRule; + fromJSON(object: any): _100.HttpRule; + toJSON(message: _100.HttpRule): unknown; + fromPartial(object: Partial<_100.HttpRule>): _100.HttpRule; + fromAmino(object: _100.HttpRuleAmino): _100.HttpRule; + toAmino(message: _100.HttpRule): _100.HttpRuleAmino; + fromAminoMsg(object: _100.HttpRuleAminoMsg): _100.HttpRule; + fromProtoMsg(message: _100.HttpRuleProtoMsg): _100.HttpRule; + toProto(message: _100.HttpRule): Uint8Array; + toProtoMsg(message: _100.HttpRule): _100.HttpRuleProtoMsg; + }; + CustomHttpPattern: { + typeUrl: string; + encode(message: _100.CustomHttpPattern, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _100.CustomHttpPattern; + fromJSON(object: any): _100.CustomHttpPattern; + toJSON(message: _100.CustomHttpPattern): unknown; + fromPartial(object: Partial<_100.CustomHttpPattern>): _100.CustomHttpPattern; + fromAmino(object: _100.CustomHttpPatternAmino): _100.CustomHttpPattern; + toAmino(message: _100.CustomHttpPattern): _100.CustomHttpPatternAmino; + fromAminoMsg(object: _100.CustomHttpPatternAminoMsg): _100.CustomHttpPattern; + fromProtoMsg(message: _100.CustomHttpPatternProtoMsg): _100.CustomHttpPattern; + toProto(message: _100.CustomHttpPattern): Uint8Array; + toProtoMsg(message: _100.CustomHttpPattern): _100.CustomHttpPatternProtoMsg; + }; + }; const protobuf: { Duration: { - encode(message: _103.Duration, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _103.Duration; - fromJSON(object: any): _103.Duration; - toJSON(message: _103.Duration): unknown; - fromPartial(object: Partial<_103.Duration>): _103.Duration; - fromAmino(object: string): _103.Duration; - toAmino(message: _103.Duration): string; - fromAminoMsg(object: _103.DurationAminoMsg): _103.Duration; - fromProtoMsg(message: _103.DurationProtoMsg): _103.Duration; - toProto(message: _103.Duration): Uint8Array; - toProtoMsg(message: _103.Duration): _103.DurationProtoMsg; + typeUrl: string; + encode(message: _104.Duration, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _104.Duration; + fromJSON(object: any): _104.Duration; + toJSON(message: _104.Duration): unknown; + fromPartial(object: Partial<_104.Duration>): _104.Duration; + fromAmino(object: string): _104.Duration; + toAmino(message: _104.Duration): string; + fromAminoMsg(object: _104.DurationAminoMsg): _104.Duration; + fromProtoMsg(message: _104.DurationProtoMsg): _104.Duration; + toProto(message: _104.Duration): Uint8Array; + toProtoMsg(message: _104.Duration): _104.DurationProtoMsg; }; Timestamp: { - encode(message: _102.Timestamp, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _102.Timestamp; - fromJSON(object: any): _102.Timestamp; - toJSON(message: _102.Timestamp): unknown; - fromPartial(object: Partial<_102.Timestamp>): _102.Timestamp; - fromAmino(object: string): _102.Timestamp; - toAmino(message: _102.Timestamp): string; - fromAminoMsg(object: _102.TimestampAminoMsg): _102.Timestamp; - fromProtoMsg(message: _102.TimestampProtoMsg): _102.Timestamp; - toProto(message: _102.Timestamp): Uint8Array; - toProtoMsg(message: _102.Timestamp): _102.TimestampProtoMsg; + typeUrl: string; + encode(message: _103.Timestamp, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _103.Timestamp; + fromJSON(object: any): _103.Timestamp; + toJSON(message: _103.Timestamp): unknown; + fromPartial(object: Partial<_103.Timestamp>): _103.Timestamp; + fromAmino(object: string): _103.Timestamp; + toAmino(message: _103.Timestamp): string; + fromAminoMsg(object: _103.TimestampAminoMsg): _103.Timestamp; + fromProtoMsg(message: _103.TimestampProtoMsg): _103.Timestamp; + toProto(message: _103.Timestamp): Uint8Array; + toProtoMsg(message: _103.Timestamp): _103.TimestampProtoMsg; }; Any: { - encode(message: _101.Any, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _101.Any; - fromJSON(object: any): _101.Any; - toJSON(message: _101.Any): unknown; - fromPartial(object: Partial<_101.Any>): _101.Any; - fromAmino(object: _101.AnyAmino): _101.Any; - toAmino(message: _101.Any): _101.AnyAmino; - fromAminoMsg(object: _101.AnyAminoMsg): _101.Any; - fromProtoMsg(message: _101.AnyProtoMsg): _101.Any; - toProto(message: _101.Any): Uint8Array; - toProtoMsg(message: _101.Any): _101.AnyProtoMsg; - }; - fieldDescriptorProto_TypeFromJSON(object: any): _100.FieldDescriptorProto_Type; - fieldDescriptorProto_TypeToJSON(object: _100.FieldDescriptorProto_Type): string; - fieldDescriptorProto_LabelFromJSON(object: any): _100.FieldDescriptorProto_Label; - fieldDescriptorProto_LabelToJSON(object: _100.FieldDescriptorProto_Label): string; - fileOptions_OptimizeModeFromJSON(object: any): _100.FileOptions_OptimizeMode; - fileOptions_OptimizeModeToJSON(object: _100.FileOptions_OptimizeMode): string; - fieldOptions_CTypeFromJSON(object: any): _100.FieldOptions_CType; - fieldOptions_CTypeToJSON(object: _100.FieldOptions_CType): string; - fieldOptions_JSTypeFromJSON(object: any): _100.FieldOptions_JSType; - fieldOptions_JSTypeToJSON(object: _100.FieldOptions_JSType): string; - methodOptions_IdempotencyLevelFromJSON(object: any): _100.MethodOptions_IdempotencyLevel; - methodOptions_IdempotencyLevelToJSON(object: _100.MethodOptions_IdempotencyLevel): string; - FieldDescriptorProto_Type: typeof _100.FieldDescriptorProto_Type; - FieldDescriptorProto_TypeSDKType: typeof _100.FieldDescriptorProto_Type; - FieldDescriptorProto_TypeAmino: typeof _100.FieldDescriptorProto_Type; - FieldDescriptorProto_Label: typeof _100.FieldDescriptorProto_Label; - FieldDescriptorProto_LabelSDKType: typeof _100.FieldDescriptorProto_Label; - FieldDescriptorProto_LabelAmino: typeof _100.FieldDescriptorProto_Label; - FileOptions_OptimizeMode: typeof _100.FileOptions_OptimizeMode; - FileOptions_OptimizeModeSDKType: typeof _100.FileOptions_OptimizeMode; - FileOptions_OptimizeModeAmino: typeof _100.FileOptions_OptimizeMode; - FieldOptions_CType: typeof _100.FieldOptions_CType; - FieldOptions_CTypeSDKType: typeof _100.FieldOptions_CType; - FieldOptions_CTypeAmino: typeof _100.FieldOptions_CType; - FieldOptions_JSType: typeof _100.FieldOptions_JSType; - FieldOptions_JSTypeSDKType: typeof _100.FieldOptions_JSType; - FieldOptions_JSTypeAmino: typeof _100.FieldOptions_JSType; - MethodOptions_IdempotencyLevel: typeof _100.MethodOptions_IdempotencyLevel; - MethodOptions_IdempotencyLevelSDKType: typeof _100.MethodOptions_IdempotencyLevel; - MethodOptions_IdempotencyLevelAmino: typeof _100.MethodOptions_IdempotencyLevel; + typeUrl: string; + encode(message: _102.Any, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _102.Any; + fromJSON(object: any): _102.Any; + toJSON(message: _102.Any): unknown; + fromPartial(object: Partial<_102.Any>): _102.Any; + fromAmino(object: _102.AnyAmino): _102.Any; + toAmino(message: _102.Any): _102.AnyAmino; + fromAminoMsg(object: _102.AnyAminoMsg): _102.Any; + fromProtoMsg(message: _102.AnyProtoMsg): _102.Any; + toProto(message: _102.Any): Uint8Array; + toProtoMsg(message: _102.Any): _102.AnyProtoMsg; + }; + fieldDescriptorProto_TypeFromJSON(object: any): _101.FieldDescriptorProto_Type; + fieldDescriptorProto_TypeToJSON(object: _101.FieldDescriptorProto_Type): string; + fieldDescriptorProto_LabelFromJSON(object: any): _101.FieldDescriptorProto_Label; + fieldDescriptorProto_LabelToJSON(object: _101.FieldDescriptorProto_Label): string; + fileOptions_OptimizeModeFromJSON(object: any): _101.FileOptions_OptimizeMode; + fileOptions_OptimizeModeToJSON(object: _101.FileOptions_OptimizeMode): string; + fieldOptions_CTypeFromJSON(object: any): _101.FieldOptions_CType; + fieldOptions_CTypeToJSON(object: _101.FieldOptions_CType): string; + fieldOptions_JSTypeFromJSON(object: any): _101.FieldOptions_JSType; + fieldOptions_JSTypeToJSON(object: _101.FieldOptions_JSType): string; + methodOptions_IdempotencyLevelFromJSON(object: any): _101.MethodOptions_IdempotencyLevel; + methodOptions_IdempotencyLevelToJSON(object: _101.MethodOptions_IdempotencyLevel): string; + FieldDescriptorProto_Type: typeof _101.FieldDescriptorProto_Type; + FieldDescriptorProto_TypeSDKType: typeof _101.FieldDescriptorProto_Type; + FieldDescriptorProto_TypeAmino: typeof _101.FieldDescriptorProto_Type; + FieldDescriptorProto_Label: typeof _101.FieldDescriptorProto_Label; + FieldDescriptorProto_LabelSDKType: typeof _101.FieldDescriptorProto_Label; + FieldDescriptorProto_LabelAmino: typeof _101.FieldDescriptorProto_Label; + FileOptions_OptimizeMode: typeof _101.FileOptions_OptimizeMode; + FileOptions_OptimizeModeSDKType: typeof _101.FileOptions_OptimizeMode; + FileOptions_OptimizeModeAmino: typeof _101.FileOptions_OptimizeMode; + FieldOptions_CType: typeof _101.FieldOptions_CType; + FieldOptions_CTypeSDKType: typeof _101.FieldOptions_CType; + FieldOptions_CTypeAmino: typeof _101.FieldOptions_CType; + FieldOptions_JSType: typeof _101.FieldOptions_JSType; + FieldOptions_JSTypeSDKType: typeof _101.FieldOptions_JSType; + FieldOptions_JSTypeAmino: typeof _101.FieldOptions_JSType; + MethodOptions_IdempotencyLevel: typeof _101.MethodOptions_IdempotencyLevel; + MethodOptions_IdempotencyLevelSDKType: typeof _101.MethodOptions_IdempotencyLevel; + MethodOptions_IdempotencyLevelAmino: typeof _101.MethodOptions_IdempotencyLevel; FileDescriptorSet: { - encode(message: _100.FileDescriptorSet, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.FileDescriptorSet; - fromJSON(object: any): _100.FileDescriptorSet; - toJSON(message: _100.FileDescriptorSet): unknown; - fromPartial(object: Partial<_100.FileDescriptorSet>): _100.FileDescriptorSet; - fromAmino(object: _100.FileDescriptorSetAmino): _100.FileDescriptorSet; - toAmino(message: _100.FileDescriptorSet): _100.FileDescriptorSetAmino; - fromAminoMsg(object: _100.FileDescriptorSetAminoMsg): _100.FileDescriptorSet; - fromProtoMsg(message: _100.FileDescriptorSetProtoMsg): _100.FileDescriptorSet; - toProto(message: _100.FileDescriptorSet): Uint8Array; - toProtoMsg(message: _100.FileDescriptorSet): _100.FileDescriptorSetProtoMsg; + typeUrl: string; + encode(message: _101.FileDescriptorSet, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.FileDescriptorSet; + fromJSON(object: any): _101.FileDescriptorSet; + toJSON(message: _101.FileDescriptorSet): unknown; + fromPartial(object: Partial<_101.FileDescriptorSet>): _101.FileDescriptorSet; + fromAmino(object: _101.FileDescriptorSetAmino): _101.FileDescriptorSet; + toAmino(message: _101.FileDescriptorSet): _101.FileDescriptorSetAmino; + fromAminoMsg(object: _101.FileDescriptorSetAminoMsg): _101.FileDescriptorSet; + fromProtoMsg(message: _101.FileDescriptorSetProtoMsg): _101.FileDescriptorSet; + toProto(message: _101.FileDescriptorSet): Uint8Array; + toProtoMsg(message: _101.FileDescriptorSet): _101.FileDescriptorSetProtoMsg; }; FileDescriptorProto: { - encode(message: _100.FileDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.FileDescriptorProto; - fromJSON(object: any): _100.FileDescriptorProto; - toJSON(message: _100.FileDescriptorProto): unknown; - fromPartial(object: Partial<_100.FileDescriptorProto>): _100.FileDescriptorProto; - fromAmino(object: _100.FileDescriptorProtoAmino): _100.FileDescriptorProto; - toAmino(message: _100.FileDescriptorProto): _100.FileDescriptorProtoAmino; - fromAminoMsg(object: _100.FileDescriptorProtoAminoMsg): _100.FileDescriptorProto; - fromProtoMsg(message: _100.FileDescriptorProtoProtoMsg): _100.FileDescriptorProto; - toProto(message: _100.FileDescriptorProto): Uint8Array; - toProtoMsg(message: _100.FileDescriptorProto): _100.FileDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.FileDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.FileDescriptorProto; + fromJSON(object: any): _101.FileDescriptorProto; + toJSON(message: _101.FileDescriptorProto): unknown; + fromPartial(object: Partial<_101.FileDescriptorProto>): _101.FileDescriptorProto; + fromAmino(object: _101.FileDescriptorProtoAmino): _101.FileDescriptorProto; + toAmino(message: _101.FileDescriptorProto): _101.FileDescriptorProtoAmino; + fromAminoMsg(object: _101.FileDescriptorProtoAminoMsg): _101.FileDescriptorProto; + fromProtoMsg(message: _101.FileDescriptorProtoProtoMsg): _101.FileDescriptorProto; + toProto(message: _101.FileDescriptorProto): Uint8Array; + toProtoMsg(message: _101.FileDescriptorProto): _101.FileDescriptorProtoProtoMsg; }; DescriptorProto: { - encode(message: _100.DescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.DescriptorProto; - fromJSON(object: any): _100.DescriptorProto; - toJSON(message: _100.DescriptorProto): unknown; - fromPartial(object: Partial<_100.DescriptorProto>): _100.DescriptorProto; - fromAmino(object: _100.DescriptorProtoAmino): _100.DescriptorProto; - toAmino(message: _100.DescriptorProto): _100.DescriptorProtoAmino; - fromAminoMsg(object: _100.DescriptorProtoAminoMsg): _100.DescriptorProto; - fromProtoMsg(message: _100.DescriptorProtoProtoMsg): _100.DescriptorProto; - toProto(message: _100.DescriptorProto): Uint8Array; - toProtoMsg(message: _100.DescriptorProto): _100.DescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.DescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.DescriptorProto; + fromJSON(object: any): _101.DescriptorProto; + toJSON(message: _101.DescriptorProto): unknown; + fromPartial(object: Partial<_101.DescriptorProto>): _101.DescriptorProto; + fromAmino(object: _101.DescriptorProtoAmino): _101.DescriptorProto; + toAmino(message: _101.DescriptorProto): _101.DescriptorProtoAmino; + fromAminoMsg(object: _101.DescriptorProtoAminoMsg): _101.DescriptorProto; + fromProtoMsg(message: _101.DescriptorProtoProtoMsg): _101.DescriptorProto; + toProto(message: _101.DescriptorProto): Uint8Array; + toProtoMsg(message: _101.DescriptorProto): _101.DescriptorProtoProtoMsg; }; DescriptorProto_ExtensionRange: { - encode(message: _100.DescriptorProto_ExtensionRange, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.DescriptorProto_ExtensionRange; - fromJSON(object: any): _100.DescriptorProto_ExtensionRange; - toJSON(message: _100.DescriptorProto_ExtensionRange): unknown; - fromPartial(object: Partial<_100.DescriptorProto_ExtensionRange>): _100.DescriptorProto_ExtensionRange; - fromAmino(object: _100.DescriptorProto_ExtensionRangeAmino): _100.DescriptorProto_ExtensionRange; - toAmino(message: _100.DescriptorProto_ExtensionRange): _100.DescriptorProto_ExtensionRangeAmino; - fromAminoMsg(object: _100.DescriptorProto_ExtensionRangeAminoMsg): _100.DescriptorProto_ExtensionRange; - fromProtoMsg(message: _100.DescriptorProto_ExtensionRangeProtoMsg): _100.DescriptorProto_ExtensionRange; - toProto(message: _100.DescriptorProto_ExtensionRange): Uint8Array; - toProtoMsg(message: _100.DescriptorProto_ExtensionRange): _100.DescriptorProto_ExtensionRangeProtoMsg; + typeUrl: string; + encode(message: _101.DescriptorProto_ExtensionRange, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.DescriptorProto_ExtensionRange; + fromJSON(object: any): _101.DescriptorProto_ExtensionRange; + toJSON(message: _101.DescriptorProto_ExtensionRange): unknown; + fromPartial(object: Partial<_101.DescriptorProto_ExtensionRange>): _101.DescriptorProto_ExtensionRange; + fromAmino(object: _101.DescriptorProto_ExtensionRangeAmino): _101.DescriptorProto_ExtensionRange; + toAmino(message: _101.DescriptorProto_ExtensionRange): _101.DescriptorProto_ExtensionRangeAmino; + fromAminoMsg(object: _101.DescriptorProto_ExtensionRangeAminoMsg): _101.DescriptorProto_ExtensionRange; + fromProtoMsg(message: _101.DescriptorProto_ExtensionRangeProtoMsg): _101.DescriptorProto_ExtensionRange; + toProto(message: _101.DescriptorProto_ExtensionRange): Uint8Array; + toProtoMsg(message: _101.DescriptorProto_ExtensionRange): _101.DescriptorProto_ExtensionRangeProtoMsg; }; DescriptorProto_ReservedRange: { - encode(message: _100.DescriptorProto_ReservedRange, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.DescriptorProto_ReservedRange; - fromJSON(object: any): _100.DescriptorProto_ReservedRange; - toJSON(message: _100.DescriptorProto_ReservedRange): unknown; - fromPartial(object: Partial<_100.DescriptorProto_ReservedRange>): _100.DescriptorProto_ReservedRange; - fromAmino(object: _100.DescriptorProto_ReservedRangeAmino): _100.DescriptorProto_ReservedRange; - toAmino(message: _100.DescriptorProto_ReservedRange): _100.DescriptorProto_ReservedRangeAmino; - fromAminoMsg(object: _100.DescriptorProto_ReservedRangeAminoMsg): _100.DescriptorProto_ReservedRange; - fromProtoMsg(message: _100.DescriptorProto_ReservedRangeProtoMsg): _100.DescriptorProto_ReservedRange; - toProto(message: _100.DescriptorProto_ReservedRange): Uint8Array; - toProtoMsg(message: _100.DescriptorProto_ReservedRange): _100.DescriptorProto_ReservedRangeProtoMsg; + typeUrl: string; + encode(message: _101.DescriptorProto_ReservedRange, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.DescriptorProto_ReservedRange; + fromJSON(object: any): _101.DescriptorProto_ReservedRange; + toJSON(message: _101.DescriptorProto_ReservedRange): unknown; + fromPartial(object: Partial<_101.DescriptorProto_ReservedRange>): _101.DescriptorProto_ReservedRange; + fromAmino(object: _101.DescriptorProto_ReservedRangeAmino): _101.DescriptorProto_ReservedRange; + toAmino(message: _101.DescriptorProto_ReservedRange): _101.DescriptorProto_ReservedRangeAmino; + fromAminoMsg(object: _101.DescriptorProto_ReservedRangeAminoMsg): _101.DescriptorProto_ReservedRange; + fromProtoMsg(message: _101.DescriptorProto_ReservedRangeProtoMsg): _101.DescriptorProto_ReservedRange; + toProto(message: _101.DescriptorProto_ReservedRange): Uint8Array; + toProtoMsg(message: _101.DescriptorProto_ReservedRange): _101.DescriptorProto_ReservedRangeProtoMsg; }; ExtensionRangeOptions: { - encode(message: _100.ExtensionRangeOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.ExtensionRangeOptions; - fromJSON(object: any): _100.ExtensionRangeOptions; - toJSON(message: _100.ExtensionRangeOptions): unknown; - fromPartial(object: Partial<_100.ExtensionRangeOptions>): _100.ExtensionRangeOptions; - fromAmino(object: _100.ExtensionRangeOptionsAmino): _100.ExtensionRangeOptions; - toAmino(message: _100.ExtensionRangeOptions): _100.ExtensionRangeOptionsAmino; - fromAminoMsg(object: _100.ExtensionRangeOptionsAminoMsg): _100.ExtensionRangeOptions; - fromProtoMsg(message: _100.ExtensionRangeOptionsProtoMsg): _100.ExtensionRangeOptions; - toProto(message: _100.ExtensionRangeOptions): Uint8Array; - toProtoMsg(message: _100.ExtensionRangeOptions): _100.ExtensionRangeOptionsProtoMsg; + typeUrl: string; + encode(message: _101.ExtensionRangeOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.ExtensionRangeOptions; + fromJSON(object: any): _101.ExtensionRangeOptions; + toJSON(message: _101.ExtensionRangeOptions): unknown; + fromPartial(object: Partial<_101.ExtensionRangeOptions>): _101.ExtensionRangeOptions; + fromAmino(object: _101.ExtensionRangeOptionsAmino): _101.ExtensionRangeOptions; + toAmino(message: _101.ExtensionRangeOptions): _101.ExtensionRangeOptionsAmino; + fromAminoMsg(object: _101.ExtensionRangeOptionsAminoMsg): _101.ExtensionRangeOptions; + fromProtoMsg(message: _101.ExtensionRangeOptionsProtoMsg): _101.ExtensionRangeOptions; + toProto(message: _101.ExtensionRangeOptions): Uint8Array; + toProtoMsg(message: _101.ExtensionRangeOptions): _101.ExtensionRangeOptionsProtoMsg; }; FieldDescriptorProto: { - encode(message: _100.FieldDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.FieldDescriptorProto; - fromJSON(object: any): _100.FieldDescriptorProto; - toJSON(message: _100.FieldDescriptorProto): unknown; - fromPartial(object: Partial<_100.FieldDescriptorProto>): _100.FieldDescriptorProto; - fromAmino(object: _100.FieldDescriptorProtoAmino): _100.FieldDescriptorProto; - toAmino(message: _100.FieldDescriptorProto): _100.FieldDescriptorProtoAmino; - fromAminoMsg(object: _100.FieldDescriptorProtoAminoMsg): _100.FieldDescriptorProto; - fromProtoMsg(message: _100.FieldDescriptorProtoProtoMsg): _100.FieldDescriptorProto; - toProto(message: _100.FieldDescriptorProto): Uint8Array; - toProtoMsg(message: _100.FieldDescriptorProto): _100.FieldDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.FieldDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.FieldDescriptorProto; + fromJSON(object: any): _101.FieldDescriptorProto; + toJSON(message: _101.FieldDescriptorProto): unknown; + fromPartial(object: Partial<_101.FieldDescriptorProto>): _101.FieldDescriptorProto; + fromAmino(object: _101.FieldDescriptorProtoAmino): _101.FieldDescriptorProto; + toAmino(message: _101.FieldDescriptorProto): _101.FieldDescriptorProtoAmino; + fromAminoMsg(object: _101.FieldDescriptorProtoAminoMsg): _101.FieldDescriptorProto; + fromProtoMsg(message: _101.FieldDescriptorProtoProtoMsg): _101.FieldDescriptorProto; + toProto(message: _101.FieldDescriptorProto): Uint8Array; + toProtoMsg(message: _101.FieldDescriptorProto): _101.FieldDescriptorProtoProtoMsg; }; OneofDescriptorProto: { - encode(message: _100.OneofDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.OneofDescriptorProto; - fromJSON(object: any): _100.OneofDescriptorProto; - toJSON(message: _100.OneofDescriptorProto): unknown; - fromPartial(object: Partial<_100.OneofDescriptorProto>): _100.OneofDescriptorProto; - fromAmino(object: _100.OneofDescriptorProtoAmino): _100.OneofDescriptorProto; - toAmino(message: _100.OneofDescriptorProto): _100.OneofDescriptorProtoAmino; - fromAminoMsg(object: _100.OneofDescriptorProtoAminoMsg): _100.OneofDescriptorProto; - fromProtoMsg(message: _100.OneofDescriptorProtoProtoMsg): _100.OneofDescriptorProto; - toProto(message: _100.OneofDescriptorProto): Uint8Array; - toProtoMsg(message: _100.OneofDescriptorProto): _100.OneofDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.OneofDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.OneofDescriptorProto; + fromJSON(object: any): _101.OneofDescriptorProto; + toJSON(message: _101.OneofDescriptorProto): unknown; + fromPartial(object: Partial<_101.OneofDescriptorProto>): _101.OneofDescriptorProto; + fromAmino(object: _101.OneofDescriptorProtoAmino): _101.OneofDescriptorProto; + toAmino(message: _101.OneofDescriptorProto): _101.OneofDescriptorProtoAmino; + fromAminoMsg(object: _101.OneofDescriptorProtoAminoMsg): _101.OneofDescriptorProto; + fromProtoMsg(message: _101.OneofDescriptorProtoProtoMsg): _101.OneofDescriptorProto; + toProto(message: _101.OneofDescriptorProto): Uint8Array; + toProtoMsg(message: _101.OneofDescriptorProto): _101.OneofDescriptorProtoProtoMsg; }; EnumDescriptorProto: { - encode(message: _100.EnumDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.EnumDescriptorProto; - fromJSON(object: any): _100.EnumDescriptorProto; - toJSON(message: _100.EnumDescriptorProto): unknown; - fromPartial(object: Partial<_100.EnumDescriptorProto>): _100.EnumDescriptorProto; - fromAmino(object: _100.EnumDescriptorProtoAmino): _100.EnumDescriptorProto; - toAmino(message: _100.EnumDescriptorProto): _100.EnumDescriptorProtoAmino; - fromAminoMsg(object: _100.EnumDescriptorProtoAminoMsg): _100.EnumDescriptorProto; - fromProtoMsg(message: _100.EnumDescriptorProtoProtoMsg): _100.EnumDescriptorProto; - toProto(message: _100.EnumDescriptorProto): Uint8Array; - toProtoMsg(message: _100.EnumDescriptorProto): _100.EnumDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.EnumDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.EnumDescriptorProto; + fromJSON(object: any): _101.EnumDescriptorProto; + toJSON(message: _101.EnumDescriptorProto): unknown; + fromPartial(object: Partial<_101.EnumDescriptorProto>): _101.EnumDescriptorProto; + fromAmino(object: _101.EnumDescriptorProtoAmino): _101.EnumDescriptorProto; + toAmino(message: _101.EnumDescriptorProto): _101.EnumDescriptorProtoAmino; + fromAminoMsg(object: _101.EnumDescriptorProtoAminoMsg): _101.EnumDescriptorProto; + fromProtoMsg(message: _101.EnumDescriptorProtoProtoMsg): _101.EnumDescriptorProto; + toProto(message: _101.EnumDescriptorProto): Uint8Array; + toProtoMsg(message: _101.EnumDescriptorProto): _101.EnumDescriptorProtoProtoMsg; }; EnumDescriptorProto_EnumReservedRange: { - encode(message: _100.EnumDescriptorProto_EnumReservedRange, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.EnumDescriptorProto_EnumReservedRange; - fromJSON(object: any): _100.EnumDescriptorProto_EnumReservedRange; - toJSON(message: _100.EnumDescriptorProto_EnumReservedRange): unknown; - fromPartial(object: Partial<_100.EnumDescriptorProto_EnumReservedRange>): _100.EnumDescriptorProto_EnumReservedRange; - fromAmino(object: _100.EnumDescriptorProto_EnumReservedRangeAmino): _100.EnumDescriptorProto_EnumReservedRange; - toAmino(message: _100.EnumDescriptorProto_EnumReservedRange): _100.EnumDescriptorProto_EnumReservedRangeAmino; - fromAminoMsg(object: _100.EnumDescriptorProto_EnumReservedRangeAminoMsg): _100.EnumDescriptorProto_EnumReservedRange; - fromProtoMsg(message: _100.EnumDescriptorProto_EnumReservedRangeProtoMsg): _100.EnumDescriptorProto_EnumReservedRange; - toProto(message: _100.EnumDescriptorProto_EnumReservedRange): Uint8Array; - toProtoMsg(message: _100.EnumDescriptorProto_EnumReservedRange): _100.EnumDescriptorProto_EnumReservedRangeProtoMsg; + typeUrl: string; + encode(message: _101.EnumDescriptorProto_EnumReservedRange, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.EnumDescriptorProto_EnumReservedRange; + fromJSON(object: any): _101.EnumDescriptorProto_EnumReservedRange; + toJSON(message: _101.EnumDescriptorProto_EnumReservedRange): unknown; + fromPartial(object: Partial<_101.EnumDescriptorProto_EnumReservedRange>): _101.EnumDescriptorProto_EnumReservedRange; + fromAmino(object: _101.EnumDescriptorProto_EnumReservedRangeAmino): _101.EnumDescriptorProto_EnumReservedRange; + toAmino(message: _101.EnumDescriptorProto_EnumReservedRange): _101.EnumDescriptorProto_EnumReservedRangeAmino; + fromAminoMsg(object: _101.EnumDescriptorProto_EnumReservedRangeAminoMsg): _101.EnumDescriptorProto_EnumReservedRange; + fromProtoMsg(message: _101.EnumDescriptorProto_EnumReservedRangeProtoMsg): _101.EnumDescriptorProto_EnumReservedRange; + toProto(message: _101.EnumDescriptorProto_EnumReservedRange): Uint8Array; + toProtoMsg(message: _101.EnumDescriptorProto_EnumReservedRange): _101.EnumDescriptorProto_EnumReservedRangeProtoMsg; }; EnumValueDescriptorProto: { - encode(message: _100.EnumValueDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.EnumValueDescriptorProto; - fromJSON(object: any): _100.EnumValueDescriptorProto; - toJSON(message: _100.EnumValueDescriptorProto): unknown; - fromPartial(object: Partial<_100.EnumValueDescriptorProto>): _100.EnumValueDescriptorProto; - fromAmino(object: _100.EnumValueDescriptorProtoAmino): _100.EnumValueDescriptorProto; - toAmino(message: _100.EnumValueDescriptorProto): _100.EnumValueDescriptorProtoAmino; - fromAminoMsg(object: _100.EnumValueDescriptorProtoAminoMsg): _100.EnumValueDescriptorProto; - fromProtoMsg(message: _100.EnumValueDescriptorProtoProtoMsg): _100.EnumValueDescriptorProto; - toProto(message: _100.EnumValueDescriptorProto): Uint8Array; - toProtoMsg(message: _100.EnumValueDescriptorProto): _100.EnumValueDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.EnumValueDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.EnumValueDescriptorProto; + fromJSON(object: any): _101.EnumValueDescriptorProto; + toJSON(message: _101.EnumValueDescriptorProto): unknown; + fromPartial(object: Partial<_101.EnumValueDescriptorProto>): _101.EnumValueDescriptorProto; + fromAmino(object: _101.EnumValueDescriptorProtoAmino): _101.EnumValueDescriptorProto; + toAmino(message: _101.EnumValueDescriptorProto): _101.EnumValueDescriptorProtoAmino; + fromAminoMsg(object: _101.EnumValueDescriptorProtoAminoMsg): _101.EnumValueDescriptorProto; + fromProtoMsg(message: _101.EnumValueDescriptorProtoProtoMsg): _101.EnumValueDescriptorProto; + toProto(message: _101.EnumValueDescriptorProto): Uint8Array; + toProtoMsg(message: _101.EnumValueDescriptorProto): _101.EnumValueDescriptorProtoProtoMsg; }; ServiceDescriptorProto: { - encode(message: _100.ServiceDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.ServiceDescriptorProto; - fromJSON(object: any): _100.ServiceDescriptorProto; - toJSON(message: _100.ServiceDescriptorProto): unknown; - fromPartial(object: Partial<_100.ServiceDescriptorProto>): _100.ServiceDescriptorProto; - fromAmino(object: _100.ServiceDescriptorProtoAmino): _100.ServiceDescriptorProto; - toAmino(message: _100.ServiceDescriptorProto): _100.ServiceDescriptorProtoAmino; - fromAminoMsg(object: _100.ServiceDescriptorProtoAminoMsg): _100.ServiceDescriptorProto; - fromProtoMsg(message: _100.ServiceDescriptorProtoProtoMsg): _100.ServiceDescriptorProto; - toProto(message: _100.ServiceDescriptorProto): Uint8Array; - toProtoMsg(message: _100.ServiceDescriptorProto): _100.ServiceDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.ServiceDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.ServiceDescriptorProto; + fromJSON(object: any): _101.ServiceDescriptorProto; + toJSON(message: _101.ServiceDescriptorProto): unknown; + fromPartial(object: Partial<_101.ServiceDescriptorProto>): _101.ServiceDescriptorProto; + fromAmino(object: _101.ServiceDescriptorProtoAmino): _101.ServiceDescriptorProto; + toAmino(message: _101.ServiceDescriptorProto): _101.ServiceDescriptorProtoAmino; + fromAminoMsg(object: _101.ServiceDescriptorProtoAminoMsg): _101.ServiceDescriptorProto; + fromProtoMsg(message: _101.ServiceDescriptorProtoProtoMsg): _101.ServiceDescriptorProto; + toProto(message: _101.ServiceDescriptorProto): Uint8Array; + toProtoMsg(message: _101.ServiceDescriptorProto): _101.ServiceDescriptorProtoProtoMsg; }; MethodDescriptorProto: { - encode(message: _100.MethodDescriptorProto, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.MethodDescriptorProto; - fromJSON(object: any): _100.MethodDescriptorProto; - toJSON(message: _100.MethodDescriptorProto): unknown; - fromPartial(object: Partial<_100.MethodDescriptorProto>): _100.MethodDescriptorProto; - fromAmino(object: _100.MethodDescriptorProtoAmino): _100.MethodDescriptorProto; - toAmino(message: _100.MethodDescriptorProto): _100.MethodDescriptorProtoAmino; - fromAminoMsg(object: _100.MethodDescriptorProtoAminoMsg): _100.MethodDescriptorProto; - fromProtoMsg(message: _100.MethodDescriptorProtoProtoMsg): _100.MethodDescriptorProto; - toProto(message: _100.MethodDescriptorProto): Uint8Array; - toProtoMsg(message: _100.MethodDescriptorProto): _100.MethodDescriptorProtoProtoMsg; + typeUrl: string; + encode(message: _101.MethodDescriptorProto, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.MethodDescriptorProto; + fromJSON(object: any): _101.MethodDescriptorProto; + toJSON(message: _101.MethodDescriptorProto): unknown; + fromPartial(object: Partial<_101.MethodDescriptorProto>): _101.MethodDescriptorProto; + fromAmino(object: _101.MethodDescriptorProtoAmino): _101.MethodDescriptorProto; + toAmino(message: _101.MethodDescriptorProto): _101.MethodDescriptorProtoAmino; + fromAminoMsg(object: _101.MethodDescriptorProtoAminoMsg): _101.MethodDescriptorProto; + fromProtoMsg(message: _101.MethodDescriptorProtoProtoMsg): _101.MethodDescriptorProto; + toProto(message: _101.MethodDescriptorProto): Uint8Array; + toProtoMsg(message: _101.MethodDescriptorProto): _101.MethodDescriptorProtoProtoMsg; }; FileOptions: { - encode(message: _100.FileOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.FileOptions; - fromJSON(object: any): _100.FileOptions; - toJSON(message: _100.FileOptions): unknown; - fromPartial(object: Partial<_100.FileOptions>): _100.FileOptions; - fromAmino(object: _100.FileOptionsAmino): _100.FileOptions; - toAmino(message: _100.FileOptions): _100.FileOptionsAmino; - fromAminoMsg(object: _100.FileOptionsAminoMsg): _100.FileOptions; - fromProtoMsg(message: _100.FileOptionsProtoMsg): _100.FileOptions; - toProto(message: _100.FileOptions): Uint8Array; - toProtoMsg(message: _100.FileOptions): _100.FileOptionsProtoMsg; + typeUrl: string; + encode(message: _101.FileOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.FileOptions; + fromJSON(object: any): _101.FileOptions; + toJSON(message: _101.FileOptions): unknown; + fromPartial(object: Partial<_101.FileOptions>): _101.FileOptions; + fromAmino(object: _101.FileOptionsAmino): _101.FileOptions; + toAmino(message: _101.FileOptions): _101.FileOptionsAmino; + fromAminoMsg(object: _101.FileOptionsAminoMsg): _101.FileOptions; + fromProtoMsg(message: _101.FileOptionsProtoMsg): _101.FileOptions; + toProto(message: _101.FileOptions): Uint8Array; + toProtoMsg(message: _101.FileOptions): _101.FileOptionsProtoMsg; }; MessageOptions: { - encode(message: _100.MessageOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.MessageOptions; - fromJSON(object: any): _100.MessageOptions; - toJSON(message: _100.MessageOptions): unknown; - fromPartial(object: Partial<_100.MessageOptions>): _100.MessageOptions; - fromAmino(object: _100.MessageOptionsAmino): _100.MessageOptions; - toAmino(message: _100.MessageOptions): _100.MessageOptionsAmino; - fromAminoMsg(object: _100.MessageOptionsAminoMsg): _100.MessageOptions; - fromProtoMsg(message: _100.MessageOptionsProtoMsg): _100.MessageOptions; - toProto(message: _100.MessageOptions): Uint8Array; - toProtoMsg(message: _100.MessageOptions): _100.MessageOptionsProtoMsg; + typeUrl: string; + encode(message: _101.MessageOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.MessageOptions; + fromJSON(object: any): _101.MessageOptions; + toJSON(message: _101.MessageOptions): unknown; + fromPartial(object: Partial<_101.MessageOptions>): _101.MessageOptions; + fromAmino(object: _101.MessageOptionsAmino): _101.MessageOptions; + toAmino(message: _101.MessageOptions): _101.MessageOptionsAmino; + fromAminoMsg(object: _101.MessageOptionsAminoMsg): _101.MessageOptions; + fromProtoMsg(message: _101.MessageOptionsProtoMsg): _101.MessageOptions; + toProto(message: _101.MessageOptions): Uint8Array; + toProtoMsg(message: _101.MessageOptions): _101.MessageOptionsProtoMsg; }; FieldOptions: { - encode(message: _100.FieldOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.FieldOptions; - fromJSON(object: any): _100.FieldOptions; - toJSON(message: _100.FieldOptions): unknown; - fromPartial(object: Partial<_100.FieldOptions>): _100.FieldOptions; - fromAmino(object: _100.FieldOptionsAmino): _100.FieldOptions; - toAmino(message: _100.FieldOptions): _100.FieldOptionsAmino; - fromAminoMsg(object: _100.FieldOptionsAminoMsg): _100.FieldOptions; - fromProtoMsg(message: _100.FieldOptionsProtoMsg): _100.FieldOptions; - toProto(message: _100.FieldOptions): Uint8Array; - toProtoMsg(message: _100.FieldOptions): _100.FieldOptionsProtoMsg; + typeUrl: string; + encode(message: _101.FieldOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.FieldOptions; + fromJSON(object: any): _101.FieldOptions; + toJSON(message: _101.FieldOptions): unknown; + fromPartial(object: Partial<_101.FieldOptions>): _101.FieldOptions; + fromAmino(object: _101.FieldOptionsAmino): _101.FieldOptions; + toAmino(message: _101.FieldOptions): _101.FieldOptionsAmino; + fromAminoMsg(object: _101.FieldOptionsAminoMsg): _101.FieldOptions; + fromProtoMsg(message: _101.FieldOptionsProtoMsg): _101.FieldOptions; + toProto(message: _101.FieldOptions): Uint8Array; + toProtoMsg(message: _101.FieldOptions): _101.FieldOptionsProtoMsg; }; OneofOptions: { - encode(message: _100.OneofOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.OneofOptions; - fromJSON(object: any): _100.OneofOptions; - toJSON(message: _100.OneofOptions): unknown; - fromPartial(object: Partial<_100.OneofOptions>): _100.OneofOptions; - fromAmino(object: _100.OneofOptionsAmino): _100.OneofOptions; - toAmino(message: _100.OneofOptions): _100.OneofOptionsAmino; - fromAminoMsg(object: _100.OneofOptionsAminoMsg): _100.OneofOptions; - fromProtoMsg(message: _100.OneofOptionsProtoMsg): _100.OneofOptions; - toProto(message: _100.OneofOptions): Uint8Array; - toProtoMsg(message: _100.OneofOptions): _100.OneofOptionsProtoMsg; + typeUrl: string; + encode(message: _101.OneofOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.OneofOptions; + fromJSON(object: any): _101.OneofOptions; + toJSON(message: _101.OneofOptions): unknown; + fromPartial(object: Partial<_101.OneofOptions>): _101.OneofOptions; + fromAmino(object: _101.OneofOptionsAmino): _101.OneofOptions; + toAmino(message: _101.OneofOptions): _101.OneofOptionsAmino; + fromAminoMsg(object: _101.OneofOptionsAminoMsg): _101.OneofOptions; + fromProtoMsg(message: _101.OneofOptionsProtoMsg): _101.OneofOptions; + toProto(message: _101.OneofOptions): Uint8Array; + toProtoMsg(message: _101.OneofOptions): _101.OneofOptionsProtoMsg; }; EnumOptions: { - encode(message: _100.EnumOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.EnumOptions; - fromJSON(object: any): _100.EnumOptions; - toJSON(message: _100.EnumOptions): unknown; - fromPartial(object: Partial<_100.EnumOptions>): _100.EnumOptions; - fromAmino(object: _100.EnumOptionsAmino): _100.EnumOptions; - toAmino(message: _100.EnumOptions): _100.EnumOptionsAmino; - fromAminoMsg(object: _100.EnumOptionsAminoMsg): _100.EnumOptions; - fromProtoMsg(message: _100.EnumOptionsProtoMsg): _100.EnumOptions; - toProto(message: _100.EnumOptions): Uint8Array; - toProtoMsg(message: _100.EnumOptions): _100.EnumOptionsProtoMsg; + typeUrl: string; + encode(message: _101.EnumOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.EnumOptions; + fromJSON(object: any): _101.EnumOptions; + toJSON(message: _101.EnumOptions): unknown; + fromPartial(object: Partial<_101.EnumOptions>): _101.EnumOptions; + fromAmino(object: _101.EnumOptionsAmino): _101.EnumOptions; + toAmino(message: _101.EnumOptions): _101.EnumOptionsAmino; + fromAminoMsg(object: _101.EnumOptionsAminoMsg): _101.EnumOptions; + fromProtoMsg(message: _101.EnumOptionsProtoMsg): _101.EnumOptions; + toProto(message: _101.EnumOptions): Uint8Array; + toProtoMsg(message: _101.EnumOptions): _101.EnumOptionsProtoMsg; }; EnumValueOptions: { - encode(message: _100.EnumValueOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.EnumValueOptions; - fromJSON(object: any): _100.EnumValueOptions; - toJSON(message: _100.EnumValueOptions): unknown; - fromPartial(object: Partial<_100.EnumValueOptions>): _100.EnumValueOptions; - fromAmino(object: _100.EnumValueOptionsAmino): _100.EnumValueOptions; - toAmino(message: _100.EnumValueOptions): _100.EnumValueOptionsAmino; - fromAminoMsg(object: _100.EnumValueOptionsAminoMsg): _100.EnumValueOptions; - fromProtoMsg(message: _100.EnumValueOptionsProtoMsg): _100.EnumValueOptions; - toProto(message: _100.EnumValueOptions): Uint8Array; - toProtoMsg(message: _100.EnumValueOptions): _100.EnumValueOptionsProtoMsg; + typeUrl: string; + encode(message: _101.EnumValueOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.EnumValueOptions; + fromJSON(object: any): _101.EnumValueOptions; + toJSON(message: _101.EnumValueOptions): unknown; + fromPartial(object: Partial<_101.EnumValueOptions>): _101.EnumValueOptions; + fromAmino(object: _101.EnumValueOptionsAmino): _101.EnumValueOptions; + toAmino(message: _101.EnumValueOptions): _101.EnumValueOptionsAmino; + fromAminoMsg(object: _101.EnumValueOptionsAminoMsg): _101.EnumValueOptions; + fromProtoMsg(message: _101.EnumValueOptionsProtoMsg): _101.EnumValueOptions; + toProto(message: _101.EnumValueOptions): Uint8Array; + toProtoMsg(message: _101.EnumValueOptions): _101.EnumValueOptionsProtoMsg; }; ServiceOptions: { - encode(message: _100.ServiceOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.ServiceOptions; - fromJSON(object: any): _100.ServiceOptions; - toJSON(message: _100.ServiceOptions): unknown; - fromPartial(object: Partial<_100.ServiceOptions>): _100.ServiceOptions; - fromAmino(object: _100.ServiceOptionsAmino): _100.ServiceOptions; - toAmino(message: _100.ServiceOptions): _100.ServiceOptionsAmino; - fromAminoMsg(object: _100.ServiceOptionsAminoMsg): _100.ServiceOptions; - fromProtoMsg(message: _100.ServiceOptionsProtoMsg): _100.ServiceOptions; - toProto(message: _100.ServiceOptions): Uint8Array; - toProtoMsg(message: _100.ServiceOptions): _100.ServiceOptionsProtoMsg; + typeUrl: string; + encode(message: _101.ServiceOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.ServiceOptions; + fromJSON(object: any): _101.ServiceOptions; + toJSON(message: _101.ServiceOptions): unknown; + fromPartial(object: Partial<_101.ServiceOptions>): _101.ServiceOptions; + fromAmino(object: _101.ServiceOptionsAmino): _101.ServiceOptions; + toAmino(message: _101.ServiceOptions): _101.ServiceOptionsAmino; + fromAminoMsg(object: _101.ServiceOptionsAminoMsg): _101.ServiceOptions; + fromProtoMsg(message: _101.ServiceOptionsProtoMsg): _101.ServiceOptions; + toProto(message: _101.ServiceOptions): Uint8Array; + toProtoMsg(message: _101.ServiceOptions): _101.ServiceOptionsProtoMsg; }; MethodOptions: { - encode(message: _100.MethodOptions, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.MethodOptions; - fromJSON(object: any): _100.MethodOptions; - toJSON(message: _100.MethodOptions): unknown; - fromPartial(object: Partial<_100.MethodOptions>): _100.MethodOptions; - fromAmino(object: _100.MethodOptionsAmino): _100.MethodOptions; - toAmino(message: _100.MethodOptions): _100.MethodOptionsAmino; - fromAminoMsg(object: _100.MethodOptionsAminoMsg): _100.MethodOptions; - fromProtoMsg(message: _100.MethodOptionsProtoMsg): _100.MethodOptions; - toProto(message: _100.MethodOptions): Uint8Array; - toProtoMsg(message: _100.MethodOptions): _100.MethodOptionsProtoMsg; + typeUrl: string; + encode(message: _101.MethodOptions, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.MethodOptions; + fromJSON(object: any): _101.MethodOptions; + toJSON(message: _101.MethodOptions): unknown; + fromPartial(object: Partial<_101.MethodOptions>): _101.MethodOptions; + fromAmino(object: _101.MethodOptionsAmino): _101.MethodOptions; + toAmino(message: _101.MethodOptions): _101.MethodOptionsAmino; + fromAminoMsg(object: _101.MethodOptionsAminoMsg): _101.MethodOptions; + fromProtoMsg(message: _101.MethodOptionsProtoMsg): _101.MethodOptions; + toProto(message: _101.MethodOptions): Uint8Array; + toProtoMsg(message: _101.MethodOptions): _101.MethodOptionsProtoMsg; }; UninterpretedOption: { - encode(message: _100.UninterpretedOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.UninterpretedOption; - fromJSON(object: any): _100.UninterpretedOption; - toJSON(message: _100.UninterpretedOption): unknown; - fromPartial(object: Partial<_100.UninterpretedOption>): _100.UninterpretedOption; - fromAmino(object: _100.UninterpretedOptionAmino): _100.UninterpretedOption; - toAmino(message: _100.UninterpretedOption): _100.UninterpretedOptionAmino; - fromAminoMsg(object: _100.UninterpretedOptionAminoMsg): _100.UninterpretedOption; - fromProtoMsg(message: _100.UninterpretedOptionProtoMsg): _100.UninterpretedOption; - toProto(message: _100.UninterpretedOption): Uint8Array; - toProtoMsg(message: _100.UninterpretedOption): _100.UninterpretedOptionProtoMsg; + typeUrl: string; + encode(message: _101.UninterpretedOption, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.UninterpretedOption; + fromJSON(object: any): _101.UninterpretedOption; + toJSON(message: _101.UninterpretedOption): unknown; + fromPartial(object: Partial<_101.UninterpretedOption>): _101.UninterpretedOption; + fromAmino(object: _101.UninterpretedOptionAmino): _101.UninterpretedOption; + toAmino(message: _101.UninterpretedOption): _101.UninterpretedOptionAmino; + fromAminoMsg(object: _101.UninterpretedOptionAminoMsg): _101.UninterpretedOption; + fromProtoMsg(message: _101.UninterpretedOptionProtoMsg): _101.UninterpretedOption; + toProto(message: _101.UninterpretedOption): Uint8Array; + toProtoMsg(message: _101.UninterpretedOption): _101.UninterpretedOptionProtoMsg; }; UninterpretedOption_NamePart: { - encode(message: _100.UninterpretedOption_NamePart, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.UninterpretedOption_NamePart; - fromJSON(object: any): _100.UninterpretedOption_NamePart; - toJSON(message: _100.UninterpretedOption_NamePart): unknown; - fromPartial(object: Partial<_100.UninterpretedOption_NamePart>): _100.UninterpretedOption_NamePart; - fromAmino(object: _100.UninterpretedOption_NamePartAmino): _100.UninterpretedOption_NamePart; - toAmino(message: _100.UninterpretedOption_NamePart): _100.UninterpretedOption_NamePartAmino; - fromAminoMsg(object: _100.UninterpretedOption_NamePartAminoMsg): _100.UninterpretedOption_NamePart; - fromProtoMsg(message: _100.UninterpretedOption_NamePartProtoMsg): _100.UninterpretedOption_NamePart; - toProto(message: _100.UninterpretedOption_NamePart): Uint8Array; - toProtoMsg(message: _100.UninterpretedOption_NamePart): _100.UninterpretedOption_NamePartProtoMsg; + typeUrl: string; + encode(message: _101.UninterpretedOption_NamePart, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.UninterpretedOption_NamePart; + fromJSON(object: any): _101.UninterpretedOption_NamePart; + toJSON(message: _101.UninterpretedOption_NamePart): unknown; + fromPartial(object: Partial<_101.UninterpretedOption_NamePart>): _101.UninterpretedOption_NamePart; + fromAmino(object: _101.UninterpretedOption_NamePartAmino): _101.UninterpretedOption_NamePart; + toAmino(message: _101.UninterpretedOption_NamePart): _101.UninterpretedOption_NamePartAmino; + fromAminoMsg(object: _101.UninterpretedOption_NamePartAminoMsg): _101.UninterpretedOption_NamePart; + fromProtoMsg(message: _101.UninterpretedOption_NamePartProtoMsg): _101.UninterpretedOption_NamePart; + toProto(message: _101.UninterpretedOption_NamePart): Uint8Array; + toProtoMsg(message: _101.UninterpretedOption_NamePart): _101.UninterpretedOption_NamePartProtoMsg; }; SourceCodeInfo: { - encode(message: _100.SourceCodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.SourceCodeInfo; - fromJSON(object: any): _100.SourceCodeInfo; - toJSON(message: _100.SourceCodeInfo): unknown; - fromPartial(object: Partial<_100.SourceCodeInfo>): _100.SourceCodeInfo; - fromAmino(object: _100.SourceCodeInfoAmino): _100.SourceCodeInfo; - toAmino(message: _100.SourceCodeInfo): _100.SourceCodeInfoAmino; - fromAminoMsg(object: _100.SourceCodeInfoAminoMsg): _100.SourceCodeInfo; - fromProtoMsg(message: _100.SourceCodeInfoProtoMsg): _100.SourceCodeInfo; - toProto(message: _100.SourceCodeInfo): Uint8Array; - toProtoMsg(message: _100.SourceCodeInfo): _100.SourceCodeInfoProtoMsg; + typeUrl: string; + encode(message: _101.SourceCodeInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.SourceCodeInfo; + fromJSON(object: any): _101.SourceCodeInfo; + toJSON(message: _101.SourceCodeInfo): unknown; + fromPartial(object: Partial<_101.SourceCodeInfo>): _101.SourceCodeInfo; + fromAmino(object: _101.SourceCodeInfoAmino): _101.SourceCodeInfo; + toAmino(message: _101.SourceCodeInfo): _101.SourceCodeInfoAmino; + fromAminoMsg(object: _101.SourceCodeInfoAminoMsg): _101.SourceCodeInfo; + fromProtoMsg(message: _101.SourceCodeInfoProtoMsg): _101.SourceCodeInfo; + toProto(message: _101.SourceCodeInfo): Uint8Array; + toProtoMsg(message: _101.SourceCodeInfo): _101.SourceCodeInfoProtoMsg; }; SourceCodeInfo_Location: { - encode(message: _100.SourceCodeInfo_Location, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.SourceCodeInfo_Location; - fromJSON(object: any): _100.SourceCodeInfo_Location; - toJSON(message: _100.SourceCodeInfo_Location): unknown; - fromPartial(object: Partial<_100.SourceCodeInfo_Location>): _100.SourceCodeInfo_Location; - fromAmino(object: _100.SourceCodeInfo_LocationAmino): _100.SourceCodeInfo_Location; - toAmino(message: _100.SourceCodeInfo_Location): _100.SourceCodeInfo_LocationAmino; - fromAminoMsg(object: _100.SourceCodeInfo_LocationAminoMsg): _100.SourceCodeInfo_Location; - fromProtoMsg(message: _100.SourceCodeInfo_LocationProtoMsg): _100.SourceCodeInfo_Location; - toProto(message: _100.SourceCodeInfo_Location): Uint8Array; - toProtoMsg(message: _100.SourceCodeInfo_Location): _100.SourceCodeInfo_LocationProtoMsg; + typeUrl: string; + encode(message: _101.SourceCodeInfo_Location, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.SourceCodeInfo_Location; + fromJSON(object: any): _101.SourceCodeInfo_Location; + toJSON(message: _101.SourceCodeInfo_Location): unknown; + fromPartial(object: Partial<_101.SourceCodeInfo_Location>): _101.SourceCodeInfo_Location; + fromAmino(object: _101.SourceCodeInfo_LocationAmino): _101.SourceCodeInfo_Location; + toAmino(message: _101.SourceCodeInfo_Location): _101.SourceCodeInfo_LocationAmino; + fromAminoMsg(object: _101.SourceCodeInfo_LocationAminoMsg): _101.SourceCodeInfo_Location; + fromProtoMsg(message: _101.SourceCodeInfo_LocationProtoMsg): _101.SourceCodeInfo_Location; + toProto(message: _101.SourceCodeInfo_Location): Uint8Array; + toProtoMsg(message: _101.SourceCodeInfo_Location): _101.SourceCodeInfo_LocationProtoMsg; }; GeneratedCodeInfo: { - encode(message: _100.GeneratedCodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.GeneratedCodeInfo; - fromJSON(object: any): _100.GeneratedCodeInfo; - toJSON(message: _100.GeneratedCodeInfo): unknown; - fromPartial(object: Partial<_100.GeneratedCodeInfo>): _100.GeneratedCodeInfo; - fromAmino(object: _100.GeneratedCodeInfoAmino): _100.GeneratedCodeInfo; - toAmino(message: _100.GeneratedCodeInfo): _100.GeneratedCodeInfoAmino; - fromAminoMsg(object: _100.GeneratedCodeInfoAminoMsg): _100.GeneratedCodeInfo; - fromProtoMsg(message: _100.GeneratedCodeInfoProtoMsg): _100.GeneratedCodeInfo; - toProto(message: _100.GeneratedCodeInfo): Uint8Array; - toProtoMsg(message: _100.GeneratedCodeInfo): _100.GeneratedCodeInfoProtoMsg; + typeUrl: string; + encode(message: _101.GeneratedCodeInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.GeneratedCodeInfo; + fromJSON(object: any): _101.GeneratedCodeInfo; + toJSON(message: _101.GeneratedCodeInfo): unknown; + fromPartial(object: Partial<_101.GeneratedCodeInfo>): _101.GeneratedCodeInfo; + fromAmino(object: _101.GeneratedCodeInfoAmino): _101.GeneratedCodeInfo; + toAmino(message: _101.GeneratedCodeInfo): _101.GeneratedCodeInfoAmino; + fromAminoMsg(object: _101.GeneratedCodeInfoAminoMsg): _101.GeneratedCodeInfo; + fromProtoMsg(message: _101.GeneratedCodeInfoProtoMsg): _101.GeneratedCodeInfo; + toProto(message: _101.GeneratedCodeInfo): Uint8Array; + toProtoMsg(message: _101.GeneratedCodeInfo): _101.GeneratedCodeInfoProtoMsg; }; GeneratedCodeInfo_Annotation: { - encode(message: _100.GeneratedCodeInfo_Annotation, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _100.GeneratedCodeInfo_Annotation; - fromJSON(object: any): _100.GeneratedCodeInfo_Annotation; - toJSON(message: _100.GeneratedCodeInfo_Annotation): unknown; - fromPartial(object: Partial<_100.GeneratedCodeInfo_Annotation>): _100.GeneratedCodeInfo_Annotation; - fromAmino(object: _100.GeneratedCodeInfo_AnnotationAmino): _100.GeneratedCodeInfo_Annotation; - toAmino(message: _100.GeneratedCodeInfo_Annotation): _100.GeneratedCodeInfo_AnnotationAmino; - fromAminoMsg(object: _100.GeneratedCodeInfo_AnnotationAminoMsg): _100.GeneratedCodeInfo_Annotation; - fromProtoMsg(message: _100.GeneratedCodeInfo_AnnotationProtoMsg): _100.GeneratedCodeInfo_Annotation; - toProto(message: _100.GeneratedCodeInfo_Annotation): Uint8Array; - toProtoMsg(message: _100.GeneratedCodeInfo_Annotation): _100.GeneratedCodeInfo_AnnotationProtoMsg; + typeUrl: string; + encode(message: _101.GeneratedCodeInfo_Annotation, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _101.GeneratedCodeInfo_Annotation; + fromJSON(object: any): _101.GeneratedCodeInfo_Annotation; + toJSON(message: _101.GeneratedCodeInfo_Annotation): unknown; + fromPartial(object: Partial<_101.GeneratedCodeInfo_Annotation>): _101.GeneratedCodeInfo_Annotation; + fromAmino(object: _101.GeneratedCodeInfo_AnnotationAmino): _101.GeneratedCodeInfo_Annotation; + toAmino(message: _101.GeneratedCodeInfo_Annotation): _101.GeneratedCodeInfo_AnnotationAmino; + fromAminoMsg(object: _101.GeneratedCodeInfo_AnnotationAminoMsg): _101.GeneratedCodeInfo_Annotation; + fromProtoMsg(message: _101.GeneratedCodeInfo_AnnotationProtoMsg): _101.GeneratedCodeInfo_Annotation; + toProto(message: _101.GeneratedCodeInfo_Annotation): Uint8Array; + toProtoMsg(message: _101.GeneratedCodeInfo_Annotation): _101.GeneratedCodeInfo_AnnotationProtoMsg; }; }; } diff --git a/packages/api/types/codegen/google/protobuf/any.d.ts b/packages/api/types/codegen/google/protobuf/any.d.ts index 449d937..cfff952 100644 --- a/packages/api/types/codegen/google/protobuf/any.d.ts +++ b/packages/api/types/codegen/google/protobuf/any.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** * `Any` contains an arbitrary serialized protocol buffer message along with a * URL that describes the type of the serialized message. @@ -81,7 +81,7 @@ import * as _m0 from "protobufjs/minimal"; * } */ export interface Any { - $typeUrl?: string; + $typeUrl?: "/google.protobuf.Any" | string; /** * A URL/resource name that uniquely identifies the type of the serialized * protocol buffer message. This string must contain at least @@ -320,13 +320,14 @@ export interface AnyAminoMsg { * } */ export interface AnySDKType { - $typeUrl?: string; + $typeUrl?: "/google.protobuf.Any" | string; type_url: string; value: Uint8Array; } export declare const Any: { - encode(message: Any, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Any; + typeUrl: string; + encode(message: Any, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Any; fromJSON(object: any): Any; toJSON(message: Any): unknown; fromPartial(object: Partial): Any; diff --git a/packages/api/types/codegen/google/protobuf/descriptor.d.ts b/packages/api/types/codegen/google/protobuf/descriptor.d.ts index 3765d31..76fd371 100644 --- a/packages/api/types/codegen/google/protobuf/descriptor.d.ts +++ b/packages/api/types/codegen/google/protobuf/descriptor.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export declare enum FieldDescriptorProto_Type { /** * TYPE_DOUBLE - 0 is reserved for errors. @@ -131,7 +130,7 @@ export interface FileDescriptorSetProtoMsg { * files it parses. */ export interface FileDescriptorSetAmino { - file: FileDescriptorProtoAmino[]; + file?: FileDescriptorProtoAmino[]; } export interface FileDescriptorSetAminoMsg { type: "/google.protobuf.FileDescriptorSet"; @@ -163,14 +162,14 @@ export interface FileDescriptorProto { enumType: EnumDescriptorProto[]; service: ServiceDescriptorProto[]; extension: FieldDescriptorProto[]; - options: FileOptions; + options?: FileOptions; /** * This field contains optional information about the original source code. * You may safely remove this entire field without harming runtime * functionality of the descriptors -- the information is needed only by * development tools. */ - sourceCodeInfo: SourceCodeInfo; + sourceCodeInfo?: SourceCodeInfo; /** * The syntax of the proto file. * The supported values are "proto2" and "proto3". @@ -184,22 +183,22 @@ export interface FileDescriptorProtoProtoMsg { /** Describes a complete .proto file. */ export interface FileDescriptorProtoAmino { /** file name, relative to root of source tree */ - name: string; - package: string; + name?: string; + package?: string; /** Names of files imported by this file. */ - dependency: string[]; + dependency?: string[]; /** Indexes of the public imported files in the dependency list above. */ - public_dependency: number[]; + public_dependency?: number[]; /** * Indexes of the weak imported files in the dependency list. * For Google-internal migration only. Do not use. */ - weak_dependency: number[]; + weak_dependency?: number[]; /** All top-level definitions in this file. */ - message_type: DescriptorProtoAmino[]; - enum_type: EnumDescriptorProtoAmino[]; - service: ServiceDescriptorProtoAmino[]; - extension: FieldDescriptorProtoAmino[]; + message_type?: DescriptorProtoAmino[]; + enum_type?: EnumDescriptorProtoAmino[]; + service?: ServiceDescriptorProtoAmino[]; + extension?: FieldDescriptorProtoAmino[]; options?: FileOptionsAmino; /** * This field contains optional information about the original source code. @@ -212,7 +211,7 @@ export interface FileDescriptorProtoAmino { * The syntax of the proto file. * The supported values are "proto2" and "proto3". */ - syntax: string; + syntax?: string; } export interface FileDescriptorProtoAminoMsg { type: "/google.protobuf.FileDescriptorProto"; @@ -229,8 +228,8 @@ export interface FileDescriptorProtoSDKType { enum_type: EnumDescriptorProtoSDKType[]; service: ServiceDescriptorProtoSDKType[]; extension: FieldDescriptorProtoSDKType[]; - options: FileOptionsSDKType; - source_code_info: SourceCodeInfoSDKType; + options?: FileOptionsSDKType; + source_code_info?: SourceCodeInfoSDKType; syntax: string; } /** Describes a message type. */ @@ -242,7 +241,7 @@ export interface DescriptorProto { enumType: EnumDescriptorProto[]; extensionRange: DescriptorProto_ExtensionRange[]; oneofDecl: OneofDescriptorProto[]; - options: MessageOptions; + options?: MessageOptions; reservedRange: DescriptorProto_ReservedRange[]; /** * Reserved field names, which may not be used by fields in the same message. @@ -256,20 +255,20 @@ export interface DescriptorProtoProtoMsg { } /** Describes a message type. */ export interface DescriptorProtoAmino { - name: string; - field: FieldDescriptorProtoAmino[]; - extension: FieldDescriptorProtoAmino[]; - nested_type: DescriptorProtoAmino[]; - enum_type: EnumDescriptorProtoAmino[]; - extension_range: DescriptorProto_ExtensionRangeAmino[]; - oneof_decl: OneofDescriptorProtoAmino[]; + name?: string; + field?: FieldDescriptorProtoAmino[]; + extension?: FieldDescriptorProtoAmino[]; + nested_type?: DescriptorProtoAmino[]; + enum_type?: EnumDescriptorProtoAmino[]; + extension_range?: DescriptorProto_ExtensionRangeAmino[]; + oneof_decl?: OneofDescriptorProtoAmino[]; options?: MessageOptionsAmino; - reserved_range: DescriptorProto_ReservedRangeAmino[]; + reserved_range?: DescriptorProto_ReservedRangeAmino[]; /** * Reserved field names, which may not be used by fields in the same message. * A given name may only be reserved once. */ - reserved_name: string[]; + reserved_name?: string[]; } export interface DescriptorProtoAminoMsg { type: "/google.protobuf.DescriptorProto"; @@ -284,7 +283,7 @@ export interface DescriptorProtoSDKType { enum_type: EnumDescriptorProtoSDKType[]; extension_range: DescriptorProto_ExtensionRangeSDKType[]; oneof_decl: OneofDescriptorProtoSDKType[]; - options: MessageOptionsSDKType; + options?: MessageOptionsSDKType; reserved_range: DescriptorProto_ReservedRangeSDKType[]; reserved_name: string[]; } @@ -293,7 +292,7 @@ export interface DescriptorProto_ExtensionRange { start: number; /** Exclusive. */ end: number; - options: ExtensionRangeOptions; + options?: ExtensionRangeOptions; } export interface DescriptorProto_ExtensionRangeProtoMsg { typeUrl: "/google.protobuf.ExtensionRange"; @@ -301,9 +300,9 @@ export interface DescriptorProto_ExtensionRangeProtoMsg { } export interface DescriptorProto_ExtensionRangeAmino { /** Inclusive. */ - start: number; + start?: number; /** Exclusive. */ - end: number; + end?: number; options?: ExtensionRangeOptionsAmino; } export interface DescriptorProto_ExtensionRangeAminoMsg { @@ -313,7 +312,7 @@ export interface DescriptorProto_ExtensionRangeAminoMsg { export interface DescriptorProto_ExtensionRangeSDKType { start: number; end: number; - options: ExtensionRangeOptionsSDKType; + options?: ExtensionRangeOptionsSDKType; } /** * Range of reserved tag numbers. Reserved tag numbers may not be used by @@ -337,9 +336,9 @@ export interface DescriptorProto_ReservedRangeProtoMsg { */ export interface DescriptorProto_ReservedRangeAmino { /** Inclusive. */ - start: number; + start?: number; /** Exclusive. */ - end: number; + end?: number; } export interface DescriptorProto_ReservedRangeAminoMsg { type: "/google.protobuf.ReservedRange"; @@ -364,7 +363,7 @@ export interface ExtensionRangeOptionsProtoMsg { } export interface ExtensionRangeOptionsAmino { /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface ExtensionRangeOptionsAminoMsg { type: "/google.protobuf.ExtensionRangeOptions"; @@ -416,7 +415,7 @@ export interface FieldDescriptorProto { * it to camelCase. */ jsonName: string; - options: FieldOptions; + options?: FieldOptions; } export interface FieldDescriptorProtoProtoMsg { typeUrl: "/google.protobuf.FieldDescriptorProto"; @@ -424,14 +423,14 @@ export interface FieldDescriptorProtoProtoMsg { } /** Describes a field within a message. */ export interface FieldDescriptorProtoAmino { - name: string; - number: number; - label: FieldDescriptorProto_Label; + name?: string; + number?: number; + label?: FieldDescriptorProto_Label; /** * If type_name is set, this need not be set. If both this and type_name * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. */ - type: FieldDescriptorProto_Type; + type?: FieldDescriptorProto_Type; /** * For message and enum types, this is the name of the type. If the name * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping @@ -439,12 +438,12 @@ export interface FieldDescriptorProtoAmino { * message are searched, then within the parent, on up to the root * namespace). */ - type_name: string; + type_name?: string; /** * For extensions, this is the name of the type being extended. It is * resolved in the same manner as type_name. */ - extendee: string; + extendee?: string; /** * For numeric types, contains the original text representation of the value. * For booleans, "true" or "false". @@ -452,19 +451,19 @@ export interface FieldDescriptorProtoAmino { * For bytes, contains the C escaped value. All bytes >= 128 are escaped. * TODO(kenton): Base-64 encode? */ - default_value: string; + default_value?: string; /** * If set, gives the index of a oneof in the containing type's oneof_decl * list. This field is a member of that oneof. */ - oneof_index: number; + oneof_index?: number; /** * JSON name of this field. The value is set by protocol compiler. If the * user has set a "json_name" option on this field, that option's value * will be used. Otherwise, it's deduced from the field's name by converting * it to camelCase. */ - json_name: string; + json_name?: string; options?: FieldOptionsAmino; } export interface FieldDescriptorProtoAminoMsg { @@ -482,12 +481,12 @@ export interface FieldDescriptorProtoSDKType { default_value: string; oneof_index: number; json_name: string; - options: FieldOptionsSDKType; + options?: FieldOptionsSDKType; } /** Describes a oneof. */ export interface OneofDescriptorProto { name: string; - options: OneofOptions; + options?: OneofOptions; } export interface OneofDescriptorProtoProtoMsg { typeUrl: "/google.protobuf.OneofDescriptorProto"; @@ -495,7 +494,7 @@ export interface OneofDescriptorProtoProtoMsg { } /** Describes a oneof. */ export interface OneofDescriptorProtoAmino { - name: string; + name?: string; options?: OneofOptionsAmino; } export interface OneofDescriptorProtoAminoMsg { @@ -505,13 +504,13 @@ export interface OneofDescriptorProtoAminoMsg { /** Describes a oneof. */ export interface OneofDescriptorProtoSDKType { name: string; - options: OneofOptionsSDKType; + options?: OneofOptionsSDKType; } /** Describes an enum type. */ export interface EnumDescriptorProto { name: string; value: EnumValueDescriptorProto[]; - options: EnumOptions; + options?: EnumOptions; /** * Range of reserved numeric values. Reserved numeric values may not be used * by enum values in the same enum declaration. Reserved ranges may not @@ -530,20 +529,20 @@ export interface EnumDescriptorProtoProtoMsg { } /** Describes an enum type. */ export interface EnumDescriptorProtoAmino { - name: string; - value: EnumValueDescriptorProtoAmino[]; + name?: string; + value?: EnumValueDescriptorProtoAmino[]; options?: EnumOptionsAmino; /** * Range of reserved numeric values. Reserved numeric values may not be used * by enum values in the same enum declaration. Reserved ranges may not * overlap. */ - reserved_range: EnumDescriptorProto_EnumReservedRangeAmino[]; + reserved_range?: EnumDescriptorProto_EnumReservedRangeAmino[]; /** * Reserved enum value names, which may not be reused. A given name may only * be reserved once. */ - reserved_name: string[]; + reserved_name?: string[]; } export interface EnumDescriptorProtoAminoMsg { type: "/google.protobuf.EnumDescriptorProto"; @@ -553,7 +552,7 @@ export interface EnumDescriptorProtoAminoMsg { export interface EnumDescriptorProtoSDKType { name: string; value: EnumValueDescriptorProtoSDKType[]; - options: EnumOptionsSDKType; + options?: EnumOptionsSDKType; reserved_range: EnumDescriptorProto_EnumReservedRangeSDKType[]; reserved_name: string[]; } @@ -585,9 +584,9 @@ export interface EnumDescriptorProto_EnumReservedRangeProtoMsg { */ export interface EnumDescriptorProto_EnumReservedRangeAmino { /** Inclusive. */ - start: number; + start?: number; /** Inclusive. */ - end: number; + end?: number; } export interface EnumDescriptorProto_EnumReservedRangeAminoMsg { type: "/google.protobuf.EnumReservedRange"; @@ -609,7 +608,7 @@ export interface EnumDescriptorProto_EnumReservedRangeSDKType { export interface EnumValueDescriptorProto { name: string; number: number; - options: EnumValueOptions; + options?: EnumValueOptions; } export interface EnumValueDescriptorProtoProtoMsg { typeUrl: "/google.protobuf.EnumValueDescriptorProto"; @@ -617,8 +616,8 @@ export interface EnumValueDescriptorProtoProtoMsg { } /** Describes a value within an enum. */ export interface EnumValueDescriptorProtoAmino { - name: string; - number: number; + name?: string; + number?: number; options?: EnumValueOptionsAmino; } export interface EnumValueDescriptorProtoAminoMsg { @@ -629,13 +628,13 @@ export interface EnumValueDescriptorProtoAminoMsg { export interface EnumValueDescriptorProtoSDKType { name: string; number: number; - options: EnumValueOptionsSDKType; + options?: EnumValueOptionsSDKType; } /** Describes a service. */ export interface ServiceDescriptorProto { name: string; method: MethodDescriptorProto[]; - options: ServiceOptions; + options?: ServiceOptions; } export interface ServiceDescriptorProtoProtoMsg { typeUrl: "/google.protobuf.ServiceDescriptorProto"; @@ -643,8 +642,8 @@ export interface ServiceDescriptorProtoProtoMsg { } /** Describes a service. */ export interface ServiceDescriptorProtoAmino { - name: string; - method: MethodDescriptorProtoAmino[]; + name?: string; + method?: MethodDescriptorProtoAmino[]; options?: ServiceOptionsAmino; } export interface ServiceDescriptorProtoAminoMsg { @@ -655,7 +654,7 @@ export interface ServiceDescriptorProtoAminoMsg { export interface ServiceDescriptorProtoSDKType { name: string; method: MethodDescriptorProtoSDKType[]; - options: ServiceOptionsSDKType; + options?: ServiceOptionsSDKType; } /** Describes a method of a service. */ export interface MethodDescriptorProto { @@ -666,7 +665,7 @@ export interface MethodDescriptorProto { */ inputType: string; outputType: string; - options: MethodOptions; + options?: MethodOptions; /** Identifies if client streams multiple client messages */ clientStreaming: boolean; /** Identifies if server streams multiple server messages */ @@ -678,18 +677,18 @@ export interface MethodDescriptorProtoProtoMsg { } /** Describes a method of a service. */ export interface MethodDescriptorProtoAmino { - name: string; + name?: string; /** * Input and output type names. These are resolved in the same way as * FieldDescriptorProto.type_name, but must refer to a message type. */ - input_type: string; - output_type: string; + input_type?: string; + output_type?: string; options?: MethodOptionsAmino; /** Identifies if client streams multiple client messages */ - client_streaming: boolean; + client_streaming?: boolean; /** Identifies if server streams multiple server messages */ - server_streaming: boolean; + server_streaming?: boolean; } export interface MethodDescriptorProtoAminoMsg { type: "/google.protobuf.MethodDescriptorProto"; @@ -700,7 +699,7 @@ export interface MethodDescriptorProtoSDKType { name: string; input_type: string; output_type: string; - options: MethodOptionsSDKType; + options?: MethodOptionsSDKType; client_streaming: boolean; server_streaming: boolean; } @@ -832,7 +831,7 @@ export interface FileOptionsAmino { * inappropriate because proto packages do not normally start with backwards * domain names. */ - java_package: string; + java_package?: string; /** * If set, all the classes from the .proto file are wrapped in a single * outer class with the given name. This applies to both Proto1 @@ -840,7 +839,7 @@ export interface FileOptionsAmino { * a .proto always translates to a single class, but you may want to * explicitly choose the class name). */ - java_outer_classname: string; + java_outer_classname?: string; /** * If set true, then the Java code generator will generate a separate .java * file for each top-level message, enum, and service defined in the .proto @@ -849,10 +848,10 @@ export interface FileOptionsAmino { * generated to contain the file's getDescriptor() method as well as any * top-level extensions defined in the file. */ - java_multiple_files: boolean; + java_multiple_files?: boolean; /** This option does nothing. */ /** @deprecated */ - java_generate_equals_and_hash: boolean; + java_generate_equals_and_hash?: boolean; /** * If set true, then the Java2 code generator will generate code that * throws an exception whenever an attempt is made to assign a non-UTF-8 @@ -861,8 +860,8 @@ export interface FileOptionsAmino { * However, an extension field still accepts non-UTF-8 byte sequences. * This option has no effect on when used with the lite runtime. */ - java_string_check_utf8: boolean; - optimize_for: FileOptions_OptimizeMode; + java_string_check_utf8?: boolean; + optimize_for?: FileOptions_OptimizeMode; /** * Sets the Go package where structs generated from this .proto will be * placed. If omitted, the Go package will be derived from the following: @@ -870,7 +869,7 @@ export interface FileOptionsAmino { * - Otherwise, the package statement in the .proto file, if present. * - Otherwise, the basename of the .proto file, without extension. */ - go_package: string; + go_package?: string; /** * Should generic services be generated in each language? "Generic" services * are not specific to any particular RPC system. They are generated by the @@ -883,64 +882,64 @@ export interface FileOptionsAmino { * these default to false. Old code which depends on generic services should * explicitly set them to true. */ - cc_generic_services: boolean; - java_generic_services: boolean; - py_generic_services: boolean; - php_generic_services: boolean; + cc_generic_services?: boolean; + java_generic_services?: boolean; + py_generic_services?: boolean; + php_generic_services?: boolean; /** * Is this file deprecated? * Depending on the target platform, this can emit Deprecated annotations * for everything in the file, or it will be completely ignored; in the very * least, this is a formalization for deprecating files. */ - deprecated: boolean; + deprecated?: boolean; /** * Enables the use of arenas for the proto messages in this file. This applies * only to generated classes for C++. */ - cc_enable_arenas: boolean; + cc_enable_arenas?: boolean; /** * Sets the objective c class prefix which is prepended to all objective c * generated classes from this .proto. There is no default. */ - objc_class_prefix: string; + objc_class_prefix?: string; /** Namespace for generated classes; defaults to the package. */ - csharp_namespace: string; + csharp_namespace?: string; /** * By default Swift generators will take the proto package and CamelCase it * replacing '.' with underscore and use that to prefix the types/symbols * defined. When this options is provided, they will use this value instead * to prefix the types/symbols defined. */ - swift_prefix: string; + swift_prefix?: string; /** * Sets the php class prefix which is prepended to all php generated classes * from this .proto. Default is empty. */ - php_class_prefix: string; + php_class_prefix?: string; /** * Use this option to change the namespace of php generated classes. Default * is empty. When this option is empty, the package name will be used for * determining the namespace. */ - php_namespace: string; + php_namespace?: string; /** * Use this option to change the namespace of php generated metadata classes. * Default is empty. When this option is empty, the proto file name will be * used for determining the namespace. */ - php_metadata_namespace: string; + php_metadata_namespace?: string; /** * Use this option to change the package of ruby generated classes. Default * is empty. When this option is not set, the package name will be used for * determining the ruby package. */ - ruby_package: string; + ruby_package?: string; /** * The parser stores options it doesn't recognize here. * See the documentation for the "Options" section above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface FileOptionsAminoMsg { type: "/google.protobuf.FileOptions"; @@ -1057,20 +1056,20 @@ export interface MessageOptionsAmino { * Because this is an option, the above two restrictions are not enforced by * the protocol compiler. */ - message_set_wire_format: boolean; + message_set_wire_format?: boolean; /** * Disables the generation of the standard "descriptor()" accessor, which can * conflict with a field of the same name. This is meant to make migration * from proto1 easier; new code should avoid fields named "descriptor". */ - no_standard_descriptor_accessor: boolean; + no_standard_descriptor_accessor?: boolean; /** * Is this message deprecated? * Depending on the target platform, this can emit Deprecated annotations * for the message, or it will be completely ignored; in the very least, * this is a formalization for deprecating messages. */ - deprecated: boolean; + deprecated?: boolean; /** * Whether the message is an automatically generated map entry type for the * maps field. @@ -1094,9 +1093,9 @@ export interface MessageOptionsAmino { * instead. The option should only be implicitly set by the proto compiler * parser. */ - map_entry: boolean; + map_entry?: boolean; /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface MessageOptionsAminoMsg { type: "/google.protobuf.MessageOptions"; @@ -1193,7 +1192,7 @@ export interface FieldOptionsAmino { * options below. This option is not yet implemented in the open source * release -- sorry, we'll try to include it in a future version! */ - ctype: FieldOptions_CType; + ctype?: FieldOptions_CType; /** * The packed option can be enabled for repeated primitive fields to enable * a more efficient representation on the wire. Rather than repeatedly @@ -1201,7 +1200,7 @@ export interface FieldOptionsAmino { * a single length-delimited blob. In proto3, only explicit setting it to * false will avoid using packed encoding. */ - packed: boolean; + packed?: boolean; /** * The jstype option determines the JavaScript type used for values of the * field. The option is permitted only for 64 bit integral and fixed types @@ -1215,7 +1214,7 @@ export interface FieldOptionsAmino { * This option is an enum to permit additional types to be added, e.g. * goog.math.Integer. */ - jstype: FieldOptions_JSType; + jstype?: FieldOptions_JSType; /** * Should this field be parsed lazily? Lazy applies only to message-type * fields. It means that when the outer message is initially parsed, the @@ -1246,18 +1245,18 @@ export interface FieldOptionsAmino { * check its required fields, regardless of whether or not the message has * been parsed. */ - lazy: boolean; + lazy?: boolean; /** * Is this field deprecated? * Depending on the target platform, this can emit Deprecated annotations * for accessors, or it will be completely ignored; in the very least, this * is a formalization for deprecating fields. */ - deprecated: boolean; + deprecated?: boolean; /** For Google-internal migration only. Do not use. */ - weak: boolean; + weak?: boolean; /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface FieldOptionsAminoMsg { type: "/google.protobuf.FieldOptions"; @@ -1282,7 +1281,7 @@ export interface OneofOptionsProtoMsg { } export interface OneofOptionsAmino { /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface OneofOptionsAminoMsg { type: "/google.protobuf.OneofOptions"; @@ -1316,16 +1315,16 @@ export interface EnumOptionsAmino { * Set this option to true to allow mapping different tag names to the same * value. */ - allow_alias: boolean; + allow_alias?: boolean; /** * Is this enum deprecated? * Depending on the target platform, this can emit Deprecated annotations * for the enum, or it will be completely ignored; in the very least, this * is a formalization for deprecating enums. */ - deprecated: boolean; + deprecated?: boolean; /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface EnumOptionsAminoMsg { type: "/google.protobuf.EnumOptions"; @@ -1358,9 +1357,9 @@ export interface EnumValueOptionsAmino { * for the enum value, or it will be completely ignored; in the very least, * this is a formalization for deprecating enum values. */ - deprecated: boolean; + deprecated?: boolean; /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface EnumValueOptionsAminoMsg { type: "/google.protobuf.EnumValueOptions"; @@ -1392,9 +1391,9 @@ export interface ServiceOptionsAmino { * for the service, or it will be completely ignored; in the very least, * this is a formalization for deprecating services. */ - deprecated: boolean; + deprecated?: boolean; /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface ServiceOptionsAminoMsg { type: "/google.protobuf.ServiceOptions"; @@ -1427,10 +1426,10 @@ export interface MethodOptionsAmino { * for the method, or it will be completely ignored; in the very least, * this is a formalization for deprecating methods. */ - deprecated: boolean; - idempotency_level: MethodOptions_IdempotencyLevel; + deprecated?: boolean; + idempotency_level?: MethodOptions_IdempotencyLevel; /** The parser stores options it doesn't recognize here. See above. */ - uninterpreted_option: UninterpretedOptionAmino[]; + uninterpreted_option?: UninterpretedOptionAmino[]; } export interface MethodOptionsAminoMsg { type: "/google.protobuf.MethodOptions"; @@ -1456,8 +1455,8 @@ export interface UninterpretedOption { * identified it as during parsing. Exactly one of these should be set. */ identifierValue: string; - positiveIntValue: Long; - negativeIntValue: Long; + positiveIntValue: bigint; + negativeIntValue: bigint; doubleValue: number; stringValue: Uint8Array; aggregateValue: string; @@ -1475,17 +1474,17 @@ export interface UninterpretedOptionProtoMsg { * in them. */ export interface UninterpretedOptionAmino { - name: UninterpretedOption_NamePartAmino[]; + name?: UninterpretedOption_NamePartAmino[]; /** * The value of the uninterpreted option, in whatever type the tokenizer * identified it as during parsing. Exactly one of these should be set. */ - identifier_value: string; - positive_int_value: string; - negative_int_value: string; - double_value: number; - string_value: Uint8Array; - aggregate_value: string; + identifier_value?: string; + positive_int_value?: string; + negative_int_value?: string; + double_value?: number; + string_value?: string; + aggregate_value?: string; } export interface UninterpretedOptionAminoMsg { type: "/google.protobuf.UninterpretedOption"; @@ -1502,8 +1501,8 @@ export interface UninterpretedOptionAminoMsg { export interface UninterpretedOptionSDKType { name: UninterpretedOption_NamePartSDKType[]; identifier_value: string; - positive_int_value: Long; - negative_int_value: Long; + positive_int_value: bigint; + negative_int_value: bigint; double_value: number; string_value: Uint8Array; aggregate_value: string; @@ -1531,8 +1530,8 @@ export interface UninterpretedOption_NamePartProtoMsg { * "foo.(bar.baz).qux". */ export interface UninterpretedOption_NamePartAmino { - name_part: string; - is_extension: boolean; + name_part?: string; + is_extension?: boolean; } export interface UninterpretedOption_NamePartAminoMsg { type: "/google.protobuf.NamePart"; @@ -1655,7 +1654,7 @@ export interface SourceCodeInfoAmino { * ignore those that it doesn't understand, as more types of locations could * be recorded in the future. */ - location: SourceCodeInfo_LocationAmino[]; + location?: SourceCodeInfo_LocationAmino[]; } export interface SourceCodeInfoAminoMsg { type: "/google.protobuf.SourceCodeInfo"; @@ -1786,7 +1785,7 @@ export interface SourceCodeInfo_LocationAmino { * this path refers to the whole field declaration (from the beginning * of the label to the terminating semicolon). */ - path: number[]; + path?: number[]; /** * Always has exactly three or four elements: start line, start column, * end line (optional, otherwise assumed same as start line), end column. @@ -1794,7 +1793,7 @@ export interface SourceCodeInfo_LocationAmino { * and column numbers are zero-based -- typically you will want to add * 1 to each before displaying to a user. */ - span: number[]; + span?: number[]; /** * If this SourceCodeInfo represents a complete declaration, these are any * comments appearing before and after the declaration which appear to be @@ -1844,9 +1843,9 @@ export interface SourceCodeInfo_LocationAmino { * * // ignored detached comments. */ - leading_comments: string; - trailing_comments: string; - leading_detached_comments: string[]; + leading_comments?: string; + trailing_comments?: string; + leading_detached_comments?: string[]; } export interface SourceCodeInfo_LocationAminoMsg { type: "/google.protobuf.Location"; @@ -1885,7 +1884,7 @@ export interface GeneratedCodeInfoAmino { * An Annotation connects some span of text in generated code to an element * of its generating .proto file. */ - annotation: GeneratedCodeInfo_AnnotationAmino[]; + annotation?: GeneratedCodeInfo_AnnotationAmino[]; } export interface GeneratedCodeInfoAminoMsg { type: "/google.protobuf.GeneratedCodeInfo"; @@ -1928,20 +1927,20 @@ export interface GeneratedCodeInfo_AnnotationAmino { * Identifies the element in the original source .proto file. This field * is formatted the same as SourceCodeInfo.Location.path. */ - path: number[]; + path?: number[]; /** Identifies the filesystem path to the original source .proto. */ - source_file: string; + source_file?: string; /** * Identifies the starting offset in bytes in the generated code * that relates to the identified object. */ - begin: number; + begin?: number; /** * Identifies the ending offset in bytes in the generated code that * relates to the identified offset. The end offset should be one past * the last relevant byte (so the length of the text = end - begin). */ - end: number; + end?: number; } export interface GeneratedCodeInfo_AnnotationAminoMsg { type: "/google.protobuf.Annotation"; @@ -1954,8 +1953,9 @@ export interface GeneratedCodeInfo_AnnotationSDKType { end: number; } export declare const FileDescriptorSet: { - encode(message: FileDescriptorSet, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): FileDescriptorSet; + typeUrl: string; + encode(message: FileDescriptorSet, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): FileDescriptorSet; fromJSON(object: any): FileDescriptorSet; toJSON(message: FileDescriptorSet): unknown; fromPartial(object: Partial): FileDescriptorSet; @@ -1967,8 +1967,9 @@ export declare const FileDescriptorSet: { toProtoMsg(message: FileDescriptorSet): FileDescriptorSetProtoMsg; }; export declare const FileDescriptorProto: { - encode(message: FileDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): FileDescriptorProto; + typeUrl: string; + encode(message: FileDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): FileDescriptorProto; fromJSON(object: any): FileDescriptorProto; toJSON(message: FileDescriptorProto): unknown; fromPartial(object: Partial): FileDescriptorProto; @@ -1980,8 +1981,9 @@ export declare const FileDescriptorProto: { toProtoMsg(message: FileDescriptorProto): FileDescriptorProtoProtoMsg; }; export declare const DescriptorProto: { - encode(message: DescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto; + typeUrl: string; + encode(message: DescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto; fromJSON(object: any): DescriptorProto; toJSON(message: DescriptorProto): unknown; fromPartial(object: Partial): DescriptorProto; @@ -1993,8 +1995,9 @@ export declare const DescriptorProto: { toProtoMsg(message: DescriptorProto): DescriptorProtoProtoMsg; }; export declare const DescriptorProto_ExtensionRange: { - encode(message: DescriptorProto_ExtensionRange, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto_ExtensionRange; + typeUrl: string; + encode(message: DescriptorProto_ExtensionRange, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto_ExtensionRange; fromJSON(object: any): DescriptorProto_ExtensionRange; toJSON(message: DescriptorProto_ExtensionRange): unknown; fromPartial(object: Partial): DescriptorProto_ExtensionRange; @@ -2006,8 +2009,9 @@ export declare const DescriptorProto_ExtensionRange: { toProtoMsg(message: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRangeProtoMsg; }; export declare const DescriptorProto_ReservedRange: { - encode(message: DescriptorProto_ReservedRange, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto_ReservedRange; + typeUrl: string; + encode(message: DescriptorProto_ReservedRange, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DescriptorProto_ReservedRange; fromJSON(object: any): DescriptorProto_ReservedRange; toJSON(message: DescriptorProto_ReservedRange): unknown; fromPartial(object: Partial): DescriptorProto_ReservedRange; @@ -2019,8 +2023,9 @@ export declare const DescriptorProto_ReservedRange: { toProtoMsg(message: DescriptorProto_ReservedRange): DescriptorProto_ReservedRangeProtoMsg; }; export declare const ExtensionRangeOptions: { - encode(message: ExtensionRangeOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionRangeOptions; + typeUrl: string; + encode(message: ExtensionRangeOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ExtensionRangeOptions; fromJSON(object: any): ExtensionRangeOptions; toJSON(message: ExtensionRangeOptions): unknown; fromPartial(object: Partial): ExtensionRangeOptions; @@ -2032,8 +2037,9 @@ export declare const ExtensionRangeOptions: { toProtoMsg(message: ExtensionRangeOptions): ExtensionRangeOptionsProtoMsg; }; export declare const FieldDescriptorProto: { - encode(message: FieldDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): FieldDescriptorProto; + typeUrl: string; + encode(message: FieldDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): FieldDescriptorProto; fromJSON(object: any): FieldDescriptorProto; toJSON(message: FieldDescriptorProto): unknown; fromPartial(object: Partial): FieldDescriptorProto; @@ -2045,8 +2051,9 @@ export declare const FieldDescriptorProto: { toProtoMsg(message: FieldDescriptorProto): FieldDescriptorProtoProtoMsg; }; export declare const OneofDescriptorProto: { - encode(message: OneofDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): OneofDescriptorProto; + typeUrl: string; + encode(message: OneofDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): OneofDescriptorProto; fromJSON(object: any): OneofDescriptorProto; toJSON(message: OneofDescriptorProto): unknown; fromPartial(object: Partial): OneofDescriptorProto; @@ -2058,8 +2065,9 @@ export declare const OneofDescriptorProto: { toProtoMsg(message: OneofDescriptorProto): OneofDescriptorProtoProtoMsg; }; export declare const EnumDescriptorProto: { - encode(message: EnumDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EnumDescriptorProto; + typeUrl: string; + encode(message: EnumDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EnumDescriptorProto; fromJSON(object: any): EnumDescriptorProto; toJSON(message: EnumDescriptorProto): unknown; fromPartial(object: Partial): EnumDescriptorProto; @@ -2071,8 +2079,9 @@ export declare const EnumDescriptorProto: { toProtoMsg(message: EnumDescriptorProto): EnumDescriptorProtoProtoMsg; }; export declare const EnumDescriptorProto_EnumReservedRange: { - encode(message: EnumDescriptorProto_EnumReservedRange, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EnumDescriptorProto_EnumReservedRange; + typeUrl: string; + encode(message: EnumDescriptorProto_EnumReservedRange, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EnumDescriptorProto_EnumReservedRange; fromJSON(object: any): EnumDescriptorProto_EnumReservedRange; toJSON(message: EnumDescriptorProto_EnumReservedRange): unknown; fromPartial(object: Partial): EnumDescriptorProto_EnumReservedRange; @@ -2084,8 +2093,9 @@ export declare const EnumDescriptorProto_EnumReservedRange: { toProtoMsg(message: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRangeProtoMsg; }; export declare const EnumValueDescriptorProto: { - encode(message: EnumValueDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EnumValueDescriptorProto; + typeUrl: string; + encode(message: EnumValueDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EnumValueDescriptorProto; fromJSON(object: any): EnumValueDescriptorProto; toJSON(message: EnumValueDescriptorProto): unknown; fromPartial(object: Partial): EnumValueDescriptorProto; @@ -2097,8 +2107,9 @@ export declare const EnumValueDescriptorProto: { toProtoMsg(message: EnumValueDescriptorProto): EnumValueDescriptorProtoProtoMsg; }; export declare const ServiceDescriptorProto: { - encode(message: ServiceDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ServiceDescriptorProto; + typeUrl: string; + encode(message: ServiceDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ServiceDescriptorProto; fromJSON(object: any): ServiceDescriptorProto; toJSON(message: ServiceDescriptorProto): unknown; fromPartial(object: Partial): ServiceDescriptorProto; @@ -2110,8 +2121,9 @@ export declare const ServiceDescriptorProto: { toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg; }; export declare const MethodDescriptorProto: { - encode(message: MethodDescriptorProto, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MethodDescriptorProto; + typeUrl: string; + encode(message: MethodDescriptorProto, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MethodDescriptorProto; fromJSON(object: any): MethodDescriptorProto; toJSON(message: MethodDescriptorProto): unknown; fromPartial(object: Partial): MethodDescriptorProto; @@ -2123,8 +2135,9 @@ export declare const MethodDescriptorProto: { toProtoMsg(message: MethodDescriptorProto): MethodDescriptorProtoProtoMsg; }; export declare const FileOptions: { - encode(message: FileOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): FileOptions; + typeUrl: string; + encode(message: FileOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): FileOptions; fromJSON(object: any): FileOptions; toJSON(message: FileOptions): unknown; fromPartial(object: Partial): FileOptions; @@ -2136,8 +2149,9 @@ export declare const FileOptions: { toProtoMsg(message: FileOptions): FileOptionsProtoMsg; }; export declare const MessageOptions: { - encode(message: MessageOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MessageOptions; + typeUrl: string; + encode(message: MessageOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MessageOptions; fromJSON(object: any): MessageOptions; toJSON(message: MessageOptions): unknown; fromPartial(object: Partial): MessageOptions; @@ -2149,8 +2163,9 @@ export declare const MessageOptions: { toProtoMsg(message: MessageOptions): MessageOptionsProtoMsg; }; export declare const FieldOptions: { - encode(message: FieldOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions; + typeUrl: string; + encode(message: FieldOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): FieldOptions; fromJSON(object: any): FieldOptions; toJSON(message: FieldOptions): unknown; fromPartial(object: Partial): FieldOptions; @@ -2162,8 +2177,9 @@ export declare const FieldOptions: { toProtoMsg(message: FieldOptions): FieldOptionsProtoMsg; }; export declare const OneofOptions: { - encode(message: OneofOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): OneofOptions; + typeUrl: string; + encode(message: OneofOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): OneofOptions; fromJSON(object: any): OneofOptions; toJSON(message: OneofOptions): unknown; fromPartial(object: Partial): OneofOptions; @@ -2175,8 +2191,9 @@ export declare const OneofOptions: { toProtoMsg(message: OneofOptions): OneofOptionsProtoMsg; }; export declare const EnumOptions: { - encode(message: EnumOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EnumOptions; + typeUrl: string; + encode(message: EnumOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EnumOptions; fromJSON(object: any): EnumOptions; toJSON(message: EnumOptions): unknown; fromPartial(object: Partial): EnumOptions; @@ -2188,8 +2205,9 @@ export declare const EnumOptions: { toProtoMsg(message: EnumOptions): EnumOptionsProtoMsg; }; export declare const EnumValueOptions: { - encode(message: EnumValueOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EnumValueOptions; + typeUrl: string; + encode(message: EnumValueOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EnumValueOptions; fromJSON(object: any): EnumValueOptions; toJSON(message: EnumValueOptions): unknown; fromPartial(object: Partial): EnumValueOptions; @@ -2201,8 +2219,9 @@ export declare const EnumValueOptions: { toProtoMsg(message: EnumValueOptions): EnumValueOptionsProtoMsg; }; export declare const ServiceOptions: { - encode(message: ServiceOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ServiceOptions; + typeUrl: string; + encode(message: ServiceOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ServiceOptions; fromJSON(object: any): ServiceOptions; toJSON(message: ServiceOptions): unknown; fromPartial(object: Partial): ServiceOptions; @@ -2214,8 +2233,9 @@ export declare const ServiceOptions: { toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg; }; export declare const MethodOptions: { - encode(message: MethodOptions, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MethodOptions; + typeUrl: string; + encode(message: MethodOptions, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MethodOptions; fromJSON(object: any): MethodOptions; toJSON(message: MethodOptions): unknown; fromPartial(object: Partial): MethodOptions; @@ -2227,8 +2247,9 @@ export declare const MethodOptions: { toProtoMsg(message: MethodOptions): MethodOptionsProtoMsg; }; export declare const UninterpretedOption: { - encode(message: UninterpretedOption, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): UninterpretedOption; + typeUrl: string; + encode(message: UninterpretedOption, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): UninterpretedOption; fromJSON(object: any): UninterpretedOption; toJSON(message: UninterpretedOption): unknown; fromPartial(object: Partial): UninterpretedOption; @@ -2240,8 +2261,9 @@ export declare const UninterpretedOption: { toProtoMsg(message: UninterpretedOption): UninterpretedOptionProtoMsg; }; export declare const UninterpretedOption_NamePart: { - encode(message: UninterpretedOption_NamePart, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): UninterpretedOption_NamePart; + typeUrl: string; + encode(message: UninterpretedOption_NamePart, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): UninterpretedOption_NamePart; fromJSON(object: any): UninterpretedOption_NamePart; toJSON(message: UninterpretedOption_NamePart): unknown; fromPartial(object: Partial): UninterpretedOption_NamePart; @@ -2253,8 +2275,9 @@ export declare const UninterpretedOption_NamePart: { toProtoMsg(message: UninterpretedOption_NamePart): UninterpretedOption_NamePartProtoMsg; }; export declare const SourceCodeInfo: { - encode(message: SourceCodeInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SourceCodeInfo; + typeUrl: string; + encode(message: SourceCodeInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SourceCodeInfo; fromJSON(object: any): SourceCodeInfo; toJSON(message: SourceCodeInfo): unknown; fromPartial(object: Partial): SourceCodeInfo; @@ -2266,8 +2289,9 @@ export declare const SourceCodeInfo: { toProtoMsg(message: SourceCodeInfo): SourceCodeInfoProtoMsg; }; export declare const SourceCodeInfo_Location: { - encode(message: SourceCodeInfo_Location, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SourceCodeInfo_Location; + typeUrl: string; + encode(message: SourceCodeInfo_Location, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SourceCodeInfo_Location; fromJSON(object: any): SourceCodeInfo_Location; toJSON(message: SourceCodeInfo_Location): unknown; fromPartial(object: Partial): SourceCodeInfo_Location; @@ -2279,8 +2303,9 @@ export declare const SourceCodeInfo_Location: { toProtoMsg(message: SourceCodeInfo_Location): SourceCodeInfo_LocationProtoMsg; }; export declare const GeneratedCodeInfo: { - encode(message: GeneratedCodeInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GeneratedCodeInfo; + typeUrl: string; + encode(message: GeneratedCodeInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GeneratedCodeInfo; fromJSON(object: any): GeneratedCodeInfo; toJSON(message: GeneratedCodeInfo): unknown; fromPartial(object: Partial): GeneratedCodeInfo; @@ -2292,8 +2317,9 @@ export declare const GeneratedCodeInfo: { toProtoMsg(message: GeneratedCodeInfo): GeneratedCodeInfoProtoMsg; }; export declare const GeneratedCodeInfo_Annotation: { - encode(message: GeneratedCodeInfo_Annotation, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GeneratedCodeInfo_Annotation; + typeUrl: string; + encode(message: GeneratedCodeInfo_Annotation, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GeneratedCodeInfo_Annotation; fromJSON(object: any): GeneratedCodeInfo_Annotation; toJSON(message: GeneratedCodeInfo_Annotation): unknown; fromPartial(object: Partial): GeneratedCodeInfo_Annotation; diff --git a/packages/api/types/codegen/google/protobuf/duration.d.ts b/packages/api/types/codegen/google/protobuf/duration.d.ts index bcbbf4b..70906d7 100644 --- a/packages/api/types/codegen/google/protobuf/duration.d.ts +++ b/packages/api/types/codegen/google/protobuf/duration.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** * A Duration represents a signed, fixed-length span of time represented * as a count of seconds and fractions of seconds at nanosecond @@ -66,7 +65,7 @@ export interface Duration { * to +315,576,000,000 inclusive. Note: these bounds are computed from: * 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years */ - seconds: Long; + seconds: bigint; /** * Signed fractions of a second at nanosecond resolution of the span * of time. Durations less than one second are represented with a 0 @@ -207,12 +206,13 @@ export interface DurationAminoMsg { * microsecond should be expressed in JSON format as "3.000001s". */ export interface DurationSDKType { - seconds: Long; + seconds: bigint; nanos: number; } export declare const Duration: { - encode(message: Duration, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Duration; + typeUrl: string; + encode(message: Duration, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Duration; fromJSON(object: any): Duration; toJSON(message: Duration): unknown; fromPartial(object: Partial): Duration; diff --git a/packages/api/types/codegen/google/protobuf/timestamp.d.ts b/packages/api/types/codegen/google/protobuf/timestamp.d.ts index b6d7ead..20f180a 100644 --- a/packages/api/types/codegen/google/protobuf/timestamp.d.ts +++ b/packages/api/types/codegen/google/protobuf/timestamp.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** * A Timestamp represents a point in time independent of any time zone or local * calendar, encoded as a count of seconds and fractions of seconds at @@ -90,7 +89,7 @@ export interface Timestamp { * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to * 9999-12-31T23:59:59Z inclusive. */ - seconds: Long; + seconds: bigint; /** * Non-negative fractions of a second at nanosecond resolution. Negative * second values with fractions must still have non-negative nanos values @@ -277,12 +276,13 @@ export interface TimestampAminoMsg { * ) to obtain a formatter capable of generating timestamps in this format. */ export interface TimestampSDKType { - seconds: Long; + seconds: bigint; nanos: number; } export declare const Timestamp: { - encode(message: Timestamp, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Timestamp; + typeUrl: string; + encode(message: Timestamp, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Timestamp; fromJSON(object: any): Timestamp; toJSON(message: Timestamp): unknown; fromPartial(object: Partial): Timestamp; diff --git a/packages/api/types/codegen/helpers.d.ts b/packages/api/types/codegen/helpers.d.ts index 89ae3fb..39f0b29 100644 --- a/packages/api/types/codegen/helpers.d.ts +++ b/packages/api/types/codegen/helpers.d.ts @@ -1,24 +1,22 @@ /** -* This file and any referenced files were automatically generated by @osmonauts/telescope@0.99.0 +* This file and any referenced files were automatically generated by @cosmology/telescope@1.5.2 * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain * and run the transpile command or yarn proto command to regenerate this bundle. */ -import Long from 'long'; -export { Long }; export declare function bytesFromBase64(b64: string): Uint8Array; export declare function base64FromBytes(arr: Uint8Array): string; export interface AminoHeight { readonly revision_number?: string; readonly revision_height?: string; } -export declare function omitDefault(input: T): T | undefined; +export declare function omitDefault(input: T): T | undefined; interface Duration { /** * Signed seconds of the span of time. Must be from -315,576,000,000 * to +315,576,000,000 inclusive. Note: these bounds are computed from: * 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years */ - seconds: Long; + seconds: bigint; /** * Signed fractions of a second at nanosecond resolution of the span * of time. Durations less than one second are represented with a 0 @@ -35,24 +33,24 @@ export declare function isSet(value: any): boolean; export declare function isObject(value: any): boolean; export interface PageRequest { key: Uint8Array; - offset: Long; - limit: Long; + offset: bigint; + limit: bigint; countTotal: boolean; reverse: boolean; } export interface PageRequestParams { - "pagination.key"?: string; - "pagination.offset"?: string; - "pagination.limit"?: string; - "pagination.count_total"?: boolean; - "pagination.reverse"?: boolean; + 'pagination.key'?: string; + 'pagination.offset'?: string; + 'pagination.limit'?: string; + 'pagination.count_total'?: boolean; + 'pagination.reverse'?: boolean; } export interface Params { params: PageRequestParams; } export declare const setPaginationParams: (options: Params, pagination?: PageRequest) => Params; -type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; -export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { +type Builtin = Date | Function | Uint8Array | string | number | bigint | boolean | undefined; +export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; @@ -68,7 +66,7 @@ interface Timestamp { * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to * 9999-12-31T23:59:59Z inclusive. */ - seconds: Long; + seconds: bigint; /** * Non-negative fractions of a second at nanosecond resolution. Negative * second values with fractions must still have non-negative nanos values @@ -80,3 +78,4 @@ interface Timestamp { export declare function toTimestamp(date: Date): Timestamp; export declare function fromTimestamp(t: Timestamp): Date; export declare function fromJsonTimestamp(o: any): Timestamp; +export {}; diff --git a/packages/api/types/codegen/ibc/applications/transfer/v1/genesis.d.ts b/packages/api/types/codegen/ibc/applications/transfer/v1/genesis.d.ts index 38ed640..d4176dd 100644 --- a/packages/api/types/codegen/ibc/applications/transfer/v1/genesis.d.ts +++ b/packages/api/types/codegen/ibc/applications/transfer/v1/genesis.d.ts @@ -1,5 +1,5 @@ import { DenomTrace, DenomTraceAmino, DenomTraceSDKType, Params, ParamsAmino, ParamsSDKType } from "./transfer"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** GenesisState defines the ibc-transfer genesis state */ export interface GenesisState { portId: string; @@ -12,8 +12,8 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the ibc-transfer genesis state */ export interface GenesisStateAmino { - port_id: string; - denom_traces: DenomTraceAmino[]; + port_id?: string; + denom_traces?: DenomTraceAmino[]; params?: ParamsAmino; } export interface GenesisStateAminoMsg { @@ -27,8 +27,9 @@ export interface GenesisStateSDKType { params: ParamsSDKType; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; diff --git a/packages/api/types/codegen/ibc/applications/transfer/v1/query.d.ts b/packages/api/types/codegen/ibc/applications/transfer/v1/query.d.ts index 75ccbdf..e40b3f4 100644 --- a/packages/api/types/codegen/ibc/applications/transfer/v1/query.d.ts +++ b/packages/api/types/codegen/ibc/applications/transfer/v1/query.d.ts @@ -1,6 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../../cosmos/base/query/v1beta1/pagination"; import { DenomTrace, DenomTraceAmino, DenomTraceSDKType, Params, ParamsAmino, ParamsSDKType } from "./transfer"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * QueryDenomTraceRequest is the request type for the Query/DenomTrace RPC * method @@ -19,7 +19,7 @@ export interface QueryDenomTraceRequestProtoMsg { */ export interface QueryDenomTraceRequestAmino { /** hash (in hex format) or denom (full denom with ibc prefix) of the denomination trace information. */ - hash: string; + hash?: string; } export interface QueryDenomTraceRequestAminoMsg { type: "cosmos-sdk/QueryDenomTraceRequest"; @@ -38,7 +38,7 @@ export interface QueryDenomTraceRequestSDKType { */ export interface QueryDenomTraceResponse { /** denom_trace returns the requested denomination trace information. */ - denomTrace: DenomTrace; + denomTrace?: DenomTrace; } export interface QueryDenomTraceResponseProtoMsg { typeUrl: "/ibc.applications.transfer.v1.QueryDenomTraceResponse"; @@ -61,7 +61,7 @@ export interface QueryDenomTraceResponseAminoMsg { * method. */ export interface QueryDenomTraceResponseSDKType { - denom_trace: DenomTraceSDKType; + denom_trace?: DenomTraceSDKType; } /** * QueryConnectionsRequest is the request type for the Query/DenomTraces RPC @@ -69,7 +69,7 @@ export interface QueryDenomTraceResponseSDKType { */ export interface QueryDenomTracesRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryDenomTracesRequestProtoMsg { typeUrl: "/ibc.applications.transfer.v1.QueryDenomTracesRequest"; @@ -92,7 +92,7 @@ export interface QueryDenomTracesRequestAminoMsg { * method */ export interface QueryDenomTracesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryConnectionsResponse is the response type for the Query/DenomTraces RPC @@ -102,7 +102,7 @@ export interface QueryDenomTracesResponse { /** denom_traces returns all denominations trace information. */ denomTraces: DenomTrace[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryDenomTracesResponseProtoMsg { typeUrl: "/ibc.applications.transfer.v1.QueryDenomTracesResponse"; @@ -114,7 +114,7 @@ export interface QueryDenomTracesResponseProtoMsg { */ export interface QueryDenomTracesResponseAmino { /** denom_traces returns all denominations trace information. */ - denom_traces: DenomTraceAmino[]; + denom_traces?: DenomTraceAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -128,7 +128,7 @@ export interface QueryDenomTracesResponseAminoMsg { */ export interface QueryDenomTracesResponseSDKType { denom_traces: DenomTraceSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { @@ -150,7 +150,7 @@ export interface QueryParamsRequestSDKType { /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** params defines the parameters of the module. */ - params: Params; + params?: Params; } export interface QueryParamsResponseProtoMsg { typeUrl: "/ibc.applications.transfer.v1.QueryParamsResponse"; @@ -167,7 +167,7 @@ export interface QueryParamsResponseAminoMsg { } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { - params: ParamsSDKType; + params?: ParamsSDKType; } /** * QueryDenomHashRequest is the request type for the Query/DenomHash RPC @@ -187,7 +187,7 @@ export interface QueryDenomHashRequestProtoMsg { */ export interface QueryDenomHashRequestAmino { /** The denomination trace ([port_id]/[channel_id])+/[denom] */ - trace: string; + trace?: string; } export interface QueryDenomHashRequestAminoMsg { type: "cosmos-sdk/QueryDenomHashRequest"; @@ -218,7 +218,7 @@ export interface QueryDenomHashResponseProtoMsg { */ export interface QueryDenomHashResponseAmino { /** hash (in hex format) of the denomination trace information. */ - hash: string; + hash?: string; } export interface QueryDenomHashResponseAminoMsg { type: "cosmos-sdk/QueryDenomHashResponse"; @@ -245,9 +245,9 @@ export interface QueryEscrowAddressRequestProtoMsg { /** QueryEscrowAddressRequest is the request type for the EscrowAddress RPC method. */ export interface QueryEscrowAddressRequestAmino { /** unique port identifier */ - port_id: string; + port_id?: string; /** unique channel identifier */ - channel_id: string; + channel_id?: string; } export interface QueryEscrowAddressRequestAminoMsg { type: "cosmos-sdk/QueryEscrowAddressRequest"; @@ -270,7 +270,7 @@ export interface QueryEscrowAddressResponseProtoMsg { /** QueryEscrowAddressResponse is the response type of the EscrowAddress RPC method. */ export interface QueryEscrowAddressResponseAmino { /** the escrow account address */ - escrow_address: string; + escrow_address?: string; } export interface QueryEscrowAddressResponseAminoMsg { type: "cosmos-sdk/QueryEscrowAddressResponse"; @@ -281,8 +281,9 @@ export interface QueryEscrowAddressResponseSDKType { escrow_address: string; } export declare const QueryDenomTraceRequest: { - encode(message: QueryDenomTraceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomTraceRequest; + typeUrl: string; + encode(message: QueryDenomTraceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomTraceRequest; fromJSON(object: any): QueryDenomTraceRequest; toJSON(message: QueryDenomTraceRequest): unknown; fromPartial(object: Partial): QueryDenomTraceRequest; @@ -295,8 +296,9 @@ export declare const QueryDenomTraceRequest: { toProtoMsg(message: QueryDenomTraceRequest): QueryDenomTraceRequestProtoMsg; }; export declare const QueryDenomTraceResponse: { - encode(message: QueryDenomTraceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomTraceResponse; + typeUrl: string; + encode(message: QueryDenomTraceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomTraceResponse; fromJSON(object: any): QueryDenomTraceResponse; toJSON(message: QueryDenomTraceResponse): unknown; fromPartial(object: Partial): QueryDenomTraceResponse; @@ -309,8 +311,9 @@ export declare const QueryDenomTraceResponse: { toProtoMsg(message: QueryDenomTraceResponse): QueryDenomTraceResponseProtoMsg; }; export declare const QueryDenomTracesRequest: { - encode(message: QueryDenomTracesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomTracesRequest; + typeUrl: string; + encode(message: QueryDenomTracesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomTracesRequest; fromJSON(object: any): QueryDenomTracesRequest; toJSON(message: QueryDenomTracesRequest): unknown; fromPartial(object: Partial): QueryDenomTracesRequest; @@ -323,8 +326,9 @@ export declare const QueryDenomTracesRequest: { toProtoMsg(message: QueryDenomTracesRequest): QueryDenomTracesRequestProtoMsg; }; export declare const QueryDenomTracesResponse: { - encode(message: QueryDenomTracesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomTracesResponse; + typeUrl: string; + encode(message: QueryDenomTracesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomTracesResponse; fromJSON(object: any): QueryDenomTracesResponse; toJSON(message: QueryDenomTracesResponse): unknown; fromPartial(object: Partial): QueryDenomTracesResponse; @@ -337,8 +341,9 @@ export declare const QueryDenomTracesResponse: { toProtoMsg(message: QueryDenomTracesResponse): QueryDenomTracesResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -351,8 +356,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -365,8 +371,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryDenomHashRequest: { - encode(message: QueryDenomHashRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomHashRequest; + typeUrl: string; + encode(message: QueryDenomHashRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomHashRequest; fromJSON(object: any): QueryDenomHashRequest; toJSON(message: QueryDenomHashRequest): unknown; fromPartial(object: Partial): QueryDenomHashRequest; @@ -379,8 +386,9 @@ export declare const QueryDenomHashRequest: { toProtoMsg(message: QueryDenomHashRequest): QueryDenomHashRequestProtoMsg; }; export declare const QueryDenomHashResponse: { - encode(message: QueryDenomHashResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryDenomHashResponse; + typeUrl: string; + encode(message: QueryDenomHashResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryDenomHashResponse; fromJSON(object: any): QueryDenomHashResponse; toJSON(message: QueryDenomHashResponse): unknown; fromPartial(object: Partial): QueryDenomHashResponse; @@ -393,8 +401,9 @@ export declare const QueryDenomHashResponse: { toProtoMsg(message: QueryDenomHashResponse): QueryDenomHashResponseProtoMsg; }; export declare const QueryEscrowAddressRequest: { - encode(message: QueryEscrowAddressRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryEscrowAddressRequest; + typeUrl: string; + encode(message: QueryEscrowAddressRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryEscrowAddressRequest; fromJSON(object: any): QueryEscrowAddressRequest; toJSON(message: QueryEscrowAddressRequest): unknown; fromPartial(object: Partial): QueryEscrowAddressRequest; @@ -407,8 +416,9 @@ export declare const QueryEscrowAddressRequest: { toProtoMsg(message: QueryEscrowAddressRequest): QueryEscrowAddressRequestProtoMsg; }; export declare const QueryEscrowAddressResponse: { - encode(message: QueryEscrowAddressResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryEscrowAddressResponse; + typeUrl: string; + encode(message: QueryEscrowAddressResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryEscrowAddressResponse; fromJSON(object: any): QueryEscrowAddressResponse; toJSON(message: QueryEscrowAddressResponse): unknown; fromPartial(object: Partial): QueryEscrowAddressResponse; diff --git a/packages/api/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts b/packages/api/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts index 3c02e8a..8c8ba87 100644 --- a/packages/api/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryDenomTraceRequest, QueryDenomTraceResponseSDKType, QueryDenomTracesRequest, QueryDenomTracesResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType, QueryDenomHashRequest, QueryDenomHashResponseSDKType, QueryEscrowAddressRequest, QueryEscrowAddressResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/ibc/applications/transfer/v1/transfer.d.ts b/packages/api/types/codegen/ibc/applications/transfer/v1/transfer.d.ts index ecdc093..d2b412f 100644 --- a/packages/api/types/codegen/ibc/applications/transfer/v1/transfer.d.ts +++ b/packages/api/types/codegen/ibc/applications/transfer/v1/transfer.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * DenomTrace contains the base denomination for ICS20 fungible tokens and the * source tracing information path. @@ -25,9 +25,9 @@ export interface DenomTraceAmino { * path defines the chain of port/channel identifiers used for tracing the * source of the fungible token. */ - path: string; + path?: string; /** base denomination of the relayed fungible token. */ - base_denom: string; + base_denom?: string; } export interface DenomTraceAminoMsg { type: "cosmos-sdk/DenomTrace"; @@ -74,12 +74,12 @@ export interface ParamsAmino { * send_enabled enables or disables all cross-chain token transfers from this * chain. */ - send_enabled: boolean; + send_enabled?: boolean; /** * receive_enabled enables or disables all cross-chain token transfers to this * chain. */ - receive_enabled: boolean; + receive_enabled?: boolean; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -96,8 +96,9 @@ export interface ParamsSDKType { receive_enabled: boolean; } export declare const DenomTrace: { - encode(message: DenomTrace, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DenomTrace; + typeUrl: string; + encode(message: DenomTrace, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DenomTrace; fromJSON(object: any): DenomTrace; toJSON(message: DenomTrace): unknown; fromPartial(object: Partial): DenomTrace; @@ -110,8 +111,9 @@ export declare const DenomTrace: { toProtoMsg(message: DenomTrace): DenomTraceProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; diff --git a/packages/api/types/codegen/ibc/applications/transfer/v1/tx.d.ts b/packages/api/types/codegen/ibc/applications/transfer/v1/tx.d.ts index 75d2bab..2e23d05 100644 --- a/packages/api/types/codegen/ibc/applications/transfer/v1/tx.d.ts +++ b/packages/api/types/codegen/ibc/applications/transfer/v1/tx.d.ts @@ -1,7 +1,6 @@ import { Coin, CoinAmino, CoinSDKType } from "../../../../cosmos/base/v1beta1/coin"; import { Height, HeightAmino, HeightSDKType } from "../../../core/client/v1/client"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between * ICS20 enabled chains. See ICS Spec here: @@ -27,7 +26,7 @@ export interface MsgTransfer { * Timeout timestamp in absolute nanoseconds since unix epoch. * The timeout is disabled when set to 0. */ - timeoutTimestamp: Long; + timeoutTimestamp: bigint; } export interface MsgTransferProtoMsg { typeUrl: "/ibc.applications.transfer.v1.MsgTransfer"; @@ -40,15 +39,15 @@ export interface MsgTransferProtoMsg { */ export interface MsgTransferAmino { /** the port on which the packet will be sent */ - source_port: string; + source_port?: string; /** the channel by which the packet will be sent */ - source_channel: string; + source_channel?: string; /** the tokens to be transferred */ token?: CoinAmino; /** the sender address */ - sender: string; + sender?: string; /** the recipient address on the destination chain */ - receiver: string; + receiver?: string; /** * Timeout height relative to the current block height. * The timeout is disabled when set to 0. @@ -58,7 +57,7 @@ export interface MsgTransferAmino { * Timeout timestamp in absolute nanoseconds since unix epoch. * The timeout is disabled when set to 0. */ - timeout_timestamp: string; + timeout_timestamp?: string; } export interface MsgTransferAminoMsg { type: "cosmos-sdk/MsgTransfer"; @@ -76,7 +75,7 @@ export interface MsgTransferSDKType { sender: string; receiver: string; timeout_height: HeightSDKType; - timeout_timestamp: Long; + timeout_timestamp: bigint; } /** MsgTransferResponse defines the Msg/Transfer response type. */ export interface MsgTransferResponse { @@ -96,8 +95,9 @@ export interface MsgTransferResponseAminoMsg { export interface MsgTransferResponseSDKType { } export declare const MsgTransfer: { - encode(message: MsgTransfer, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgTransfer; + typeUrl: string; + encode(message: MsgTransfer, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgTransfer; fromJSON(object: any): MsgTransfer; toJSON(message: MsgTransfer): unknown; fromPartial(object: Partial): MsgTransfer; @@ -110,8 +110,9 @@ export declare const MsgTransfer: { toProtoMsg(message: MsgTransfer): MsgTransferProtoMsg; }; export declare const MsgTransferResponse: { - encode(_: MsgTransferResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgTransferResponse; + typeUrl: string; + encode(_: MsgTransferResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgTransferResponse; fromJSON(_: any): MsgTransferResponse; toJSON(_: MsgTransferResponse): unknown; fromPartial(_: Partial): MsgTransferResponse; diff --git a/packages/api/types/codegen/ibc/bundle.d.ts b/packages/api/types/codegen/ibc/bundle.d.ts index 31fa3aa..31d85fe 100644 --- a/packages/api/types/codegen/ibc/bundle.d.ts +++ b/packages/api/types/codegen/ibc/bundle.d.ts @@ -1,48 +1,48 @@ -import * as _104 from "./applications/transfer/v1/genesis"; -import * as _105 from "./applications/transfer/v1/query"; -import * as _106 from "./applications/transfer/v1/transfer"; -import * as _107 from "./applications/transfer/v1/tx"; -import * as _108 from "./core/client/v1/client"; -import * as _109 from "./core/client/v1/genesis"; -import * as _110 from "./core/client/v1/query"; -import * as _111 from "./core/client/v1/tx"; -import * as _234 from "./applications/transfer/v1/query.lcd"; -import * as _235 from "./core/client/v1/query.lcd"; -import * as _236 from "./applications/transfer/v1/query.rpc.Query"; -import * as _237 from "./core/client/v1/query.rpc.Query"; -import * as _238 from "./applications/transfer/v1/tx.rpc.msg"; -import * as _239 from "./core/client/v1/tx.rpc.msg"; +import * as _105 from "./applications/transfer/v1/genesis"; +import * as _106 from "./applications/transfer/v1/query"; +import * as _107 from "./applications/transfer/v1/transfer"; +import * as _108 from "./applications/transfer/v1/tx"; +import * as _109 from "./core/client/v1/client"; +import * as _110 from "./core/client/v1/genesis"; +import * as _111 from "./core/client/v1/query"; +import * as _112 from "./core/client/v1/tx"; +import * as _235 from "./applications/transfer/v1/query.lcd"; +import * as _236 from "./core/client/v1/query.lcd"; +import * as _237 from "./applications/transfer/v1/query.rpc.Query"; +import * as _238 from "./core/client/v1/query.rpc.Query"; +import * as _239 from "./applications/transfer/v1/tx.rpc.msg"; +import * as _240 from "./core/client/v1/tx.rpc.msg"; export declare namespace ibc { namespace applications { namespace transfer { const v1: { - MsgClientImpl: typeof _238.MsgClientImpl; - QueryClientImpl: typeof _236.QueryClientImpl; + MsgClientImpl: typeof _239.MsgClientImpl; + QueryClientImpl: typeof _237.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - denomTrace(request: _105.QueryDenomTraceRequest): Promise<_105.QueryDenomTraceResponse>; - denomTraces(request?: _105.QueryDenomTracesRequest | undefined): Promise<_105.QueryDenomTracesResponse>; - params(request?: _105.QueryParamsRequest | undefined): Promise<_105.QueryParamsResponse>; - denomHash(request: _105.QueryDenomHashRequest): Promise<_105.QueryDenomHashResponse>; - escrowAddress(request: _105.QueryEscrowAddressRequest): Promise<_105.QueryEscrowAddressResponse>; + denomTrace(request: _106.QueryDenomTraceRequest): Promise<_106.QueryDenomTraceResponse>; + denomTraces(request?: _106.QueryDenomTracesRequest | undefined): Promise<_106.QueryDenomTracesResponse>; + params(request?: _106.QueryParamsRequest | undefined): Promise<_106.QueryParamsResponse>; + denomHash(request: _106.QueryDenomHashRequest): Promise<_106.QueryDenomHashResponse>; + escrowAddress(request: _106.QueryEscrowAddressRequest): Promise<_106.QueryEscrowAddressResponse>; }; - LCDQueryClient: typeof _234.LCDQueryClient; + LCDQueryClient: typeof _235.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - transfer(value: _107.MsgTransfer): { + transfer(value: _108.MsgTransfer): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - transfer(value: _107.MsgTransfer): { + transfer(value: _108.MsgTransfer): { typeUrl: string; - value: _107.MsgTransfer; + value: _108.MsgTransfer; }; }; toJSON: { - transfer(value: _107.MsgTransfer): { + transfer(value: _108.MsgTransfer): { typeUrl: string; value: unknown; }; @@ -50,232 +50,247 @@ export declare namespace ibc { fromJSON: { transfer(value: any): { typeUrl: string; - value: _107.MsgTransfer; + value: _108.MsgTransfer; }; }; fromPartial: { - transfer(value: _107.MsgTransfer): { + transfer(value: _108.MsgTransfer): { typeUrl: string; - value: _107.MsgTransfer; + value: _108.MsgTransfer; }; }; }; AminoConverter: { "/ibc.applications.transfer.v1.MsgTransfer": { aminoType: string; - toAmino: (message: _107.MsgTransfer) => _107.MsgTransferAmino; - fromAmino: (object: _107.MsgTransferAmino) => _107.MsgTransfer; + toAmino: (message: _108.MsgTransfer) => _108.MsgTransferAmino; + fromAmino: (object: _108.MsgTransferAmino) => _108.MsgTransfer; }; }; MsgTransfer: { - encode(message: _107.MsgTransfer, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _107.MsgTransfer; - fromJSON(object: any): _107.MsgTransfer; - toJSON(message: _107.MsgTransfer): unknown; - fromPartial(object: Partial<_107.MsgTransfer>): _107.MsgTransfer; - fromAmino(object: _107.MsgTransferAmino): _107.MsgTransfer; - toAmino(message: _107.MsgTransfer): _107.MsgTransferAmino; - fromAminoMsg(object: _107.MsgTransferAminoMsg): _107.MsgTransfer; - toAminoMsg(message: _107.MsgTransfer): _107.MsgTransferAminoMsg; - fromProtoMsg(message: _107.MsgTransferProtoMsg): _107.MsgTransfer; - toProto(message: _107.MsgTransfer): Uint8Array; - toProtoMsg(message: _107.MsgTransfer): _107.MsgTransferProtoMsg; + typeUrl: string; + encode(message: _108.MsgTransfer, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _108.MsgTransfer; + fromJSON(object: any): _108.MsgTransfer; + toJSON(message: _108.MsgTransfer): unknown; + fromPartial(object: Partial<_108.MsgTransfer>): _108.MsgTransfer; + fromAmino(object: _108.MsgTransferAmino): _108.MsgTransfer; + toAmino(message: _108.MsgTransfer): _108.MsgTransferAmino; + fromAminoMsg(object: _108.MsgTransferAminoMsg): _108.MsgTransfer; + toAminoMsg(message: _108.MsgTransfer): _108.MsgTransferAminoMsg; + fromProtoMsg(message: _108.MsgTransferProtoMsg): _108.MsgTransfer; + toProto(message: _108.MsgTransfer): Uint8Array; + toProtoMsg(message: _108.MsgTransfer): _108.MsgTransferProtoMsg; }; MsgTransferResponse: { - encode(_: _107.MsgTransferResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _107.MsgTransferResponse; - fromJSON(_: any): _107.MsgTransferResponse; - toJSON(_: _107.MsgTransferResponse): unknown; - fromPartial(_: Partial<_107.MsgTransferResponse>): _107.MsgTransferResponse; - fromAmino(_: _107.MsgTransferResponseAmino): _107.MsgTransferResponse; - toAmino(_: _107.MsgTransferResponse): _107.MsgTransferResponseAmino; - fromAminoMsg(object: _107.MsgTransferResponseAminoMsg): _107.MsgTransferResponse; - toAminoMsg(message: _107.MsgTransferResponse): _107.MsgTransferResponseAminoMsg; - fromProtoMsg(message: _107.MsgTransferResponseProtoMsg): _107.MsgTransferResponse; - toProto(message: _107.MsgTransferResponse): Uint8Array; - toProtoMsg(message: _107.MsgTransferResponse): _107.MsgTransferResponseProtoMsg; + typeUrl: string; + encode(_: _108.MsgTransferResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _108.MsgTransferResponse; + fromJSON(_: any): _108.MsgTransferResponse; + toJSON(_: _108.MsgTransferResponse): unknown; + fromPartial(_: Partial<_108.MsgTransferResponse>): _108.MsgTransferResponse; + fromAmino(_: _108.MsgTransferResponseAmino): _108.MsgTransferResponse; + toAmino(_: _108.MsgTransferResponse): _108.MsgTransferResponseAmino; + fromAminoMsg(object: _108.MsgTransferResponseAminoMsg): _108.MsgTransferResponse; + toAminoMsg(message: _108.MsgTransferResponse): _108.MsgTransferResponseAminoMsg; + fromProtoMsg(message: _108.MsgTransferResponseProtoMsg): _108.MsgTransferResponse; + toProto(message: _108.MsgTransferResponse): Uint8Array; + toProtoMsg(message: _108.MsgTransferResponse): _108.MsgTransferResponseProtoMsg; }; DenomTrace: { - encode(message: _106.DenomTrace, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _106.DenomTrace; - fromJSON(object: any): _106.DenomTrace; - toJSON(message: _106.DenomTrace): unknown; - fromPartial(object: Partial<_106.DenomTrace>): _106.DenomTrace; - fromAmino(object: _106.DenomTraceAmino): _106.DenomTrace; - toAmino(message: _106.DenomTrace): _106.DenomTraceAmino; - fromAminoMsg(object: _106.DenomTraceAminoMsg): _106.DenomTrace; - toAminoMsg(message: _106.DenomTrace): _106.DenomTraceAminoMsg; - fromProtoMsg(message: _106.DenomTraceProtoMsg): _106.DenomTrace; - toProto(message: _106.DenomTrace): Uint8Array; - toProtoMsg(message: _106.DenomTrace): _106.DenomTraceProtoMsg; + typeUrl: string; + encode(message: _107.DenomTrace, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _107.DenomTrace; + fromJSON(object: any): _107.DenomTrace; + toJSON(message: _107.DenomTrace): unknown; + fromPartial(object: Partial<_107.DenomTrace>): _107.DenomTrace; + fromAmino(object: _107.DenomTraceAmino): _107.DenomTrace; + toAmino(message: _107.DenomTrace): _107.DenomTraceAmino; + fromAminoMsg(object: _107.DenomTraceAminoMsg): _107.DenomTrace; + toAminoMsg(message: _107.DenomTrace): _107.DenomTraceAminoMsg; + fromProtoMsg(message: _107.DenomTraceProtoMsg): _107.DenomTrace; + toProto(message: _107.DenomTrace): Uint8Array; + toProtoMsg(message: _107.DenomTrace): _107.DenomTraceProtoMsg; }; Params: { - encode(message: _106.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _106.Params; - fromJSON(object: any): _106.Params; - toJSON(message: _106.Params): unknown; - fromPartial(object: Partial<_106.Params>): _106.Params; - fromAmino(object: _106.ParamsAmino): _106.Params; - toAmino(message: _106.Params): _106.ParamsAmino; - fromAminoMsg(object: _106.ParamsAminoMsg): _106.Params; - toAminoMsg(message: _106.Params): _106.ParamsAminoMsg; - fromProtoMsg(message: _106.ParamsProtoMsg): _106.Params; - toProto(message: _106.Params): Uint8Array; - toProtoMsg(message: _106.Params): _106.ParamsProtoMsg; + typeUrl: string; + encode(message: _107.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _107.Params; + fromJSON(object: any): _107.Params; + toJSON(message: _107.Params): unknown; + fromPartial(object: Partial<_107.Params>): _107.Params; + fromAmino(object: _107.ParamsAmino): _107.Params; + toAmino(message: _107.Params): _107.ParamsAmino; + fromAminoMsg(object: _107.ParamsAminoMsg): _107.Params; + toAminoMsg(message: _107.Params): _107.ParamsAminoMsg; + fromProtoMsg(message: _107.ParamsProtoMsg): _107.Params; + toProto(message: _107.Params): Uint8Array; + toProtoMsg(message: _107.Params): _107.ParamsProtoMsg; }; QueryDenomTraceRequest: { - encode(message: _105.QueryDenomTraceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryDenomTraceRequest; - fromJSON(object: any): _105.QueryDenomTraceRequest; - toJSON(message: _105.QueryDenomTraceRequest): unknown; - fromPartial(object: Partial<_105.QueryDenomTraceRequest>): _105.QueryDenomTraceRequest; - fromAmino(object: _105.QueryDenomTraceRequestAmino): _105.QueryDenomTraceRequest; - toAmino(message: _105.QueryDenomTraceRequest): _105.QueryDenomTraceRequestAmino; - fromAminoMsg(object: _105.QueryDenomTraceRequestAminoMsg): _105.QueryDenomTraceRequest; - toAminoMsg(message: _105.QueryDenomTraceRequest): _105.QueryDenomTraceRequestAminoMsg; - fromProtoMsg(message: _105.QueryDenomTraceRequestProtoMsg): _105.QueryDenomTraceRequest; - toProto(message: _105.QueryDenomTraceRequest): Uint8Array; - toProtoMsg(message: _105.QueryDenomTraceRequest): _105.QueryDenomTraceRequestProtoMsg; + typeUrl: string; + encode(message: _106.QueryDenomTraceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryDenomTraceRequest; + fromJSON(object: any): _106.QueryDenomTraceRequest; + toJSON(message: _106.QueryDenomTraceRequest): unknown; + fromPartial(object: Partial<_106.QueryDenomTraceRequest>): _106.QueryDenomTraceRequest; + fromAmino(object: _106.QueryDenomTraceRequestAmino): _106.QueryDenomTraceRequest; + toAmino(message: _106.QueryDenomTraceRequest): _106.QueryDenomTraceRequestAmino; + fromAminoMsg(object: _106.QueryDenomTraceRequestAminoMsg): _106.QueryDenomTraceRequest; + toAminoMsg(message: _106.QueryDenomTraceRequest): _106.QueryDenomTraceRequestAminoMsg; + fromProtoMsg(message: _106.QueryDenomTraceRequestProtoMsg): _106.QueryDenomTraceRequest; + toProto(message: _106.QueryDenomTraceRequest): Uint8Array; + toProtoMsg(message: _106.QueryDenomTraceRequest): _106.QueryDenomTraceRequestProtoMsg; }; QueryDenomTraceResponse: { - encode(message: _105.QueryDenomTraceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryDenomTraceResponse; - fromJSON(object: any): _105.QueryDenomTraceResponse; - toJSON(message: _105.QueryDenomTraceResponse): unknown; - fromPartial(object: Partial<_105.QueryDenomTraceResponse>): _105.QueryDenomTraceResponse; - fromAmino(object: _105.QueryDenomTraceResponseAmino): _105.QueryDenomTraceResponse; - toAmino(message: _105.QueryDenomTraceResponse): _105.QueryDenomTraceResponseAmino; - fromAminoMsg(object: _105.QueryDenomTraceResponseAminoMsg): _105.QueryDenomTraceResponse; - toAminoMsg(message: _105.QueryDenomTraceResponse): _105.QueryDenomTraceResponseAminoMsg; - fromProtoMsg(message: _105.QueryDenomTraceResponseProtoMsg): _105.QueryDenomTraceResponse; - toProto(message: _105.QueryDenomTraceResponse): Uint8Array; - toProtoMsg(message: _105.QueryDenomTraceResponse): _105.QueryDenomTraceResponseProtoMsg; + typeUrl: string; + encode(message: _106.QueryDenomTraceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryDenomTraceResponse; + fromJSON(object: any): _106.QueryDenomTraceResponse; + toJSON(message: _106.QueryDenomTraceResponse): unknown; + fromPartial(object: Partial<_106.QueryDenomTraceResponse>): _106.QueryDenomTraceResponse; + fromAmino(object: _106.QueryDenomTraceResponseAmino): _106.QueryDenomTraceResponse; + toAmino(message: _106.QueryDenomTraceResponse): _106.QueryDenomTraceResponseAmino; + fromAminoMsg(object: _106.QueryDenomTraceResponseAminoMsg): _106.QueryDenomTraceResponse; + toAminoMsg(message: _106.QueryDenomTraceResponse): _106.QueryDenomTraceResponseAminoMsg; + fromProtoMsg(message: _106.QueryDenomTraceResponseProtoMsg): _106.QueryDenomTraceResponse; + toProto(message: _106.QueryDenomTraceResponse): Uint8Array; + toProtoMsg(message: _106.QueryDenomTraceResponse): _106.QueryDenomTraceResponseProtoMsg; }; QueryDenomTracesRequest: { - encode(message: _105.QueryDenomTracesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryDenomTracesRequest; - fromJSON(object: any): _105.QueryDenomTracesRequest; - toJSON(message: _105.QueryDenomTracesRequest): unknown; - fromPartial(object: Partial<_105.QueryDenomTracesRequest>): _105.QueryDenomTracesRequest; - fromAmino(object: _105.QueryDenomTracesRequestAmino): _105.QueryDenomTracesRequest; - toAmino(message: _105.QueryDenomTracesRequest): _105.QueryDenomTracesRequestAmino; - fromAminoMsg(object: _105.QueryDenomTracesRequestAminoMsg): _105.QueryDenomTracesRequest; - toAminoMsg(message: _105.QueryDenomTracesRequest): _105.QueryDenomTracesRequestAminoMsg; - fromProtoMsg(message: _105.QueryDenomTracesRequestProtoMsg): _105.QueryDenomTracesRequest; - toProto(message: _105.QueryDenomTracesRequest): Uint8Array; - toProtoMsg(message: _105.QueryDenomTracesRequest): _105.QueryDenomTracesRequestProtoMsg; + typeUrl: string; + encode(message: _106.QueryDenomTracesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryDenomTracesRequest; + fromJSON(object: any): _106.QueryDenomTracesRequest; + toJSON(message: _106.QueryDenomTracesRequest): unknown; + fromPartial(object: Partial<_106.QueryDenomTracesRequest>): _106.QueryDenomTracesRequest; + fromAmino(object: _106.QueryDenomTracesRequestAmino): _106.QueryDenomTracesRequest; + toAmino(message: _106.QueryDenomTracesRequest): _106.QueryDenomTracesRequestAmino; + fromAminoMsg(object: _106.QueryDenomTracesRequestAminoMsg): _106.QueryDenomTracesRequest; + toAminoMsg(message: _106.QueryDenomTracesRequest): _106.QueryDenomTracesRequestAminoMsg; + fromProtoMsg(message: _106.QueryDenomTracesRequestProtoMsg): _106.QueryDenomTracesRequest; + toProto(message: _106.QueryDenomTracesRequest): Uint8Array; + toProtoMsg(message: _106.QueryDenomTracesRequest): _106.QueryDenomTracesRequestProtoMsg; }; QueryDenomTracesResponse: { - encode(message: _105.QueryDenomTracesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryDenomTracesResponse; - fromJSON(object: any): _105.QueryDenomTracesResponse; - toJSON(message: _105.QueryDenomTracesResponse): unknown; - fromPartial(object: Partial<_105.QueryDenomTracesResponse>): _105.QueryDenomTracesResponse; - fromAmino(object: _105.QueryDenomTracesResponseAmino): _105.QueryDenomTracesResponse; - toAmino(message: _105.QueryDenomTracesResponse): _105.QueryDenomTracesResponseAmino; - fromAminoMsg(object: _105.QueryDenomTracesResponseAminoMsg): _105.QueryDenomTracesResponse; - toAminoMsg(message: _105.QueryDenomTracesResponse): _105.QueryDenomTracesResponseAminoMsg; - fromProtoMsg(message: _105.QueryDenomTracesResponseProtoMsg): _105.QueryDenomTracesResponse; - toProto(message: _105.QueryDenomTracesResponse): Uint8Array; - toProtoMsg(message: _105.QueryDenomTracesResponse): _105.QueryDenomTracesResponseProtoMsg; + typeUrl: string; + encode(message: _106.QueryDenomTracesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryDenomTracesResponse; + fromJSON(object: any): _106.QueryDenomTracesResponse; + toJSON(message: _106.QueryDenomTracesResponse): unknown; + fromPartial(object: Partial<_106.QueryDenomTracesResponse>): _106.QueryDenomTracesResponse; + fromAmino(object: _106.QueryDenomTracesResponseAmino): _106.QueryDenomTracesResponse; + toAmino(message: _106.QueryDenomTracesResponse): _106.QueryDenomTracesResponseAmino; + fromAminoMsg(object: _106.QueryDenomTracesResponseAminoMsg): _106.QueryDenomTracesResponse; + toAminoMsg(message: _106.QueryDenomTracesResponse): _106.QueryDenomTracesResponseAminoMsg; + fromProtoMsg(message: _106.QueryDenomTracesResponseProtoMsg): _106.QueryDenomTracesResponse; + toProto(message: _106.QueryDenomTracesResponse): Uint8Array; + toProtoMsg(message: _106.QueryDenomTracesResponse): _106.QueryDenomTracesResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _105.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryParamsRequest; - fromJSON(_: any): _105.QueryParamsRequest; - toJSON(_: _105.QueryParamsRequest): unknown; - fromPartial(_: Partial<_105.QueryParamsRequest>): _105.QueryParamsRequest; - fromAmino(_: _105.QueryParamsRequestAmino): _105.QueryParamsRequest; - toAmino(_: _105.QueryParamsRequest): _105.QueryParamsRequestAmino; - fromAminoMsg(object: _105.QueryParamsRequestAminoMsg): _105.QueryParamsRequest; - toAminoMsg(message: _105.QueryParamsRequest): _105.QueryParamsRequestAminoMsg; - fromProtoMsg(message: _105.QueryParamsRequestProtoMsg): _105.QueryParamsRequest; - toProto(message: _105.QueryParamsRequest): Uint8Array; - toProtoMsg(message: _105.QueryParamsRequest): _105.QueryParamsRequestProtoMsg; + typeUrl: string; + encode(_: _106.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryParamsRequest; + fromJSON(_: any): _106.QueryParamsRequest; + toJSON(_: _106.QueryParamsRequest): unknown; + fromPartial(_: Partial<_106.QueryParamsRequest>): _106.QueryParamsRequest; + fromAmino(_: _106.QueryParamsRequestAmino): _106.QueryParamsRequest; + toAmino(_: _106.QueryParamsRequest): _106.QueryParamsRequestAmino; + fromAminoMsg(object: _106.QueryParamsRequestAminoMsg): _106.QueryParamsRequest; + toAminoMsg(message: _106.QueryParamsRequest): _106.QueryParamsRequestAminoMsg; + fromProtoMsg(message: _106.QueryParamsRequestProtoMsg): _106.QueryParamsRequest; + toProto(message: _106.QueryParamsRequest): Uint8Array; + toProtoMsg(message: _106.QueryParamsRequest): _106.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _105.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryParamsResponse; - fromJSON(object: any): _105.QueryParamsResponse; - toJSON(message: _105.QueryParamsResponse): unknown; - fromPartial(object: Partial<_105.QueryParamsResponse>): _105.QueryParamsResponse; - fromAmino(object: _105.QueryParamsResponseAmino): _105.QueryParamsResponse; - toAmino(message: _105.QueryParamsResponse): _105.QueryParamsResponseAmino; - fromAminoMsg(object: _105.QueryParamsResponseAminoMsg): _105.QueryParamsResponse; - toAminoMsg(message: _105.QueryParamsResponse): _105.QueryParamsResponseAminoMsg; - fromProtoMsg(message: _105.QueryParamsResponseProtoMsg): _105.QueryParamsResponse; - toProto(message: _105.QueryParamsResponse): Uint8Array; - toProtoMsg(message: _105.QueryParamsResponse): _105.QueryParamsResponseProtoMsg; + typeUrl: string; + encode(message: _106.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryParamsResponse; + fromJSON(object: any): _106.QueryParamsResponse; + toJSON(message: _106.QueryParamsResponse): unknown; + fromPartial(object: Partial<_106.QueryParamsResponse>): _106.QueryParamsResponse; + fromAmino(object: _106.QueryParamsResponseAmino): _106.QueryParamsResponse; + toAmino(message: _106.QueryParamsResponse): _106.QueryParamsResponseAmino; + fromAminoMsg(object: _106.QueryParamsResponseAminoMsg): _106.QueryParamsResponse; + toAminoMsg(message: _106.QueryParamsResponse): _106.QueryParamsResponseAminoMsg; + fromProtoMsg(message: _106.QueryParamsResponseProtoMsg): _106.QueryParamsResponse; + toProto(message: _106.QueryParamsResponse): Uint8Array; + toProtoMsg(message: _106.QueryParamsResponse): _106.QueryParamsResponseProtoMsg; }; QueryDenomHashRequest: { - encode(message: _105.QueryDenomHashRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryDenomHashRequest; - fromJSON(object: any): _105.QueryDenomHashRequest; - toJSON(message: _105.QueryDenomHashRequest): unknown; - fromPartial(object: Partial<_105.QueryDenomHashRequest>): _105.QueryDenomHashRequest; - fromAmino(object: _105.QueryDenomHashRequestAmino): _105.QueryDenomHashRequest; - toAmino(message: _105.QueryDenomHashRequest): _105.QueryDenomHashRequestAmino; - fromAminoMsg(object: _105.QueryDenomHashRequestAminoMsg): _105.QueryDenomHashRequest; - toAminoMsg(message: _105.QueryDenomHashRequest): _105.QueryDenomHashRequestAminoMsg; - fromProtoMsg(message: _105.QueryDenomHashRequestProtoMsg): _105.QueryDenomHashRequest; - toProto(message: _105.QueryDenomHashRequest): Uint8Array; - toProtoMsg(message: _105.QueryDenomHashRequest): _105.QueryDenomHashRequestProtoMsg; + typeUrl: string; + encode(message: _106.QueryDenomHashRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryDenomHashRequest; + fromJSON(object: any): _106.QueryDenomHashRequest; + toJSON(message: _106.QueryDenomHashRequest): unknown; + fromPartial(object: Partial<_106.QueryDenomHashRequest>): _106.QueryDenomHashRequest; + fromAmino(object: _106.QueryDenomHashRequestAmino): _106.QueryDenomHashRequest; + toAmino(message: _106.QueryDenomHashRequest): _106.QueryDenomHashRequestAmino; + fromAminoMsg(object: _106.QueryDenomHashRequestAminoMsg): _106.QueryDenomHashRequest; + toAminoMsg(message: _106.QueryDenomHashRequest): _106.QueryDenomHashRequestAminoMsg; + fromProtoMsg(message: _106.QueryDenomHashRequestProtoMsg): _106.QueryDenomHashRequest; + toProto(message: _106.QueryDenomHashRequest): Uint8Array; + toProtoMsg(message: _106.QueryDenomHashRequest): _106.QueryDenomHashRequestProtoMsg; }; QueryDenomHashResponse: { - encode(message: _105.QueryDenomHashResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryDenomHashResponse; - fromJSON(object: any): _105.QueryDenomHashResponse; - toJSON(message: _105.QueryDenomHashResponse): unknown; - fromPartial(object: Partial<_105.QueryDenomHashResponse>): _105.QueryDenomHashResponse; - fromAmino(object: _105.QueryDenomHashResponseAmino): _105.QueryDenomHashResponse; - toAmino(message: _105.QueryDenomHashResponse): _105.QueryDenomHashResponseAmino; - fromAminoMsg(object: _105.QueryDenomHashResponseAminoMsg): _105.QueryDenomHashResponse; - toAminoMsg(message: _105.QueryDenomHashResponse): _105.QueryDenomHashResponseAminoMsg; - fromProtoMsg(message: _105.QueryDenomHashResponseProtoMsg): _105.QueryDenomHashResponse; - toProto(message: _105.QueryDenomHashResponse): Uint8Array; - toProtoMsg(message: _105.QueryDenomHashResponse): _105.QueryDenomHashResponseProtoMsg; + typeUrl: string; + encode(message: _106.QueryDenomHashResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryDenomHashResponse; + fromJSON(object: any): _106.QueryDenomHashResponse; + toJSON(message: _106.QueryDenomHashResponse): unknown; + fromPartial(object: Partial<_106.QueryDenomHashResponse>): _106.QueryDenomHashResponse; + fromAmino(object: _106.QueryDenomHashResponseAmino): _106.QueryDenomHashResponse; + toAmino(message: _106.QueryDenomHashResponse): _106.QueryDenomHashResponseAmino; + fromAminoMsg(object: _106.QueryDenomHashResponseAminoMsg): _106.QueryDenomHashResponse; + toAminoMsg(message: _106.QueryDenomHashResponse): _106.QueryDenomHashResponseAminoMsg; + fromProtoMsg(message: _106.QueryDenomHashResponseProtoMsg): _106.QueryDenomHashResponse; + toProto(message: _106.QueryDenomHashResponse): Uint8Array; + toProtoMsg(message: _106.QueryDenomHashResponse): _106.QueryDenomHashResponseProtoMsg; }; QueryEscrowAddressRequest: { - encode(message: _105.QueryEscrowAddressRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryEscrowAddressRequest; - fromJSON(object: any): _105.QueryEscrowAddressRequest; - toJSON(message: _105.QueryEscrowAddressRequest): unknown; - fromPartial(object: Partial<_105.QueryEscrowAddressRequest>): _105.QueryEscrowAddressRequest; - fromAmino(object: _105.QueryEscrowAddressRequestAmino): _105.QueryEscrowAddressRequest; - toAmino(message: _105.QueryEscrowAddressRequest): _105.QueryEscrowAddressRequestAmino; - fromAminoMsg(object: _105.QueryEscrowAddressRequestAminoMsg): _105.QueryEscrowAddressRequest; - toAminoMsg(message: _105.QueryEscrowAddressRequest): _105.QueryEscrowAddressRequestAminoMsg; - fromProtoMsg(message: _105.QueryEscrowAddressRequestProtoMsg): _105.QueryEscrowAddressRequest; - toProto(message: _105.QueryEscrowAddressRequest): Uint8Array; - toProtoMsg(message: _105.QueryEscrowAddressRequest): _105.QueryEscrowAddressRequestProtoMsg; + typeUrl: string; + encode(message: _106.QueryEscrowAddressRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryEscrowAddressRequest; + fromJSON(object: any): _106.QueryEscrowAddressRequest; + toJSON(message: _106.QueryEscrowAddressRequest): unknown; + fromPartial(object: Partial<_106.QueryEscrowAddressRequest>): _106.QueryEscrowAddressRequest; + fromAmino(object: _106.QueryEscrowAddressRequestAmino): _106.QueryEscrowAddressRequest; + toAmino(message: _106.QueryEscrowAddressRequest): _106.QueryEscrowAddressRequestAmino; + fromAminoMsg(object: _106.QueryEscrowAddressRequestAminoMsg): _106.QueryEscrowAddressRequest; + toAminoMsg(message: _106.QueryEscrowAddressRequest): _106.QueryEscrowAddressRequestAminoMsg; + fromProtoMsg(message: _106.QueryEscrowAddressRequestProtoMsg): _106.QueryEscrowAddressRequest; + toProto(message: _106.QueryEscrowAddressRequest): Uint8Array; + toProtoMsg(message: _106.QueryEscrowAddressRequest): _106.QueryEscrowAddressRequestProtoMsg; }; QueryEscrowAddressResponse: { - encode(message: _105.QueryEscrowAddressResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _105.QueryEscrowAddressResponse; - fromJSON(object: any): _105.QueryEscrowAddressResponse; - toJSON(message: _105.QueryEscrowAddressResponse): unknown; - fromPartial(object: Partial<_105.QueryEscrowAddressResponse>): _105.QueryEscrowAddressResponse; - fromAmino(object: _105.QueryEscrowAddressResponseAmino): _105.QueryEscrowAddressResponse; - toAmino(message: _105.QueryEscrowAddressResponse): _105.QueryEscrowAddressResponseAmino; - fromAminoMsg(object: _105.QueryEscrowAddressResponseAminoMsg): _105.QueryEscrowAddressResponse; - toAminoMsg(message: _105.QueryEscrowAddressResponse): _105.QueryEscrowAddressResponseAminoMsg; - fromProtoMsg(message: _105.QueryEscrowAddressResponseProtoMsg): _105.QueryEscrowAddressResponse; - toProto(message: _105.QueryEscrowAddressResponse): Uint8Array; - toProtoMsg(message: _105.QueryEscrowAddressResponse): _105.QueryEscrowAddressResponseProtoMsg; + typeUrl: string; + encode(message: _106.QueryEscrowAddressResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _106.QueryEscrowAddressResponse; + fromJSON(object: any): _106.QueryEscrowAddressResponse; + toJSON(message: _106.QueryEscrowAddressResponse): unknown; + fromPartial(object: Partial<_106.QueryEscrowAddressResponse>): _106.QueryEscrowAddressResponse; + fromAmino(object: _106.QueryEscrowAddressResponseAmino): _106.QueryEscrowAddressResponse; + toAmino(message: _106.QueryEscrowAddressResponse): _106.QueryEscrowAddressResponseAmino; + fromAminoMsg(object: _106.QueryEscrowAddressResponseAminoMsg): _106.QueryEscrowAddressResponse; + toAminoMsg(message: _106.QueryEscrowAddressResponse): _106.QueryEscrowAddressResponseAminoMsg; + fromProtoMsg(message: _106.QueryEscrowAddressResponseProtoMsg): _106.QueryEscrowAddressResponse; + toProto(message: _106.QueryEscrowAddressResponse): Uint8Array; + toProtoMsg(message: _106.QueryEscrowAddressResponse): _106.QueryEscrowAddressResponseProtoMsg; }; GenesisState: { - encode(message: _104.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _104.GenesisState; - fromJSON(object: any): _104.GenesisState; - toJSON(message: _104.GenesisState): unknown; - fromPartial(object: Partial<_104.GenesisState>): _104.GenesisState; - fromAmino(object: _104.GenesisStateAmino): _104.GenesisState; - toAmino(message: _104.GenesisState): _104.GenesisStateAmino; - fromAminoMsg(object: _104.GenesisStateAminoMsg): _104.GenesisState; - toAminoMsg(message: _104.GenesisState): _104.GenesisStateAminoMsg; - fromProtoMsg(message: _104.GenesisStateProtoMsg): _104.GenesisState; - toProto(message: _104.GenesisState): Uint8Array; - toProtoMsg(message: _104.GenesisState): _104.GenesisStateProtoMsg; + typeUrl: string; + encode(message: _105.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _105.GenesisState; + fromJSON(object: any): _105.GenesisState; + toJSON(message: _105.GenesisState): unknown; + fromPartial(object: Partial<_105.GenesisState>): _105.GenesisState; + fromAmino(object: _105.GenesisStateAmino): _105.GenesisState; + toAmino(message: _105.GenesisState): _105.GenesisStateAmino; + fromAminoMsg(object: _105.GenesisStateAminoMsg): _105.GenesisState; + toAminoMsg(message: _105.GenesisState): _105.GenesisStateAminoMsg; + fromProtoMsg(message: _105.GenesisStateProtoMsg): _105.GenesisState; + toProto(message: _105.GenesisState): Uint8Array; + toProtoMsg(message: _105.GenesisState): _105.GenesisStateProtoMsg; }; }; } @@ -283,73 +298,73 @@ export declare namespace ibc { namespace core { namespace client { const v1: { - MsgClientImpl: typeof _239.MsgClientImpl; - QueryClientImpl: typeof _237.QueryClientImpl; + MsgClientImpl: typeof _240.MsgClientImpl; + QueryClientImpl: typeof _238.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - clientState(request: _110.QueryClientStateRequest): Promise<_110.QueryClientStateResponse>; - clientStates(request?: _110.QueryClientStatesRequest | undefined): Promise<_110.QueryClientStatesResponse>; - consensusState(request: _110.QueryConsensusStateRequest): Promise<_110.QueryConsensusStateResponse>; - consensusStates(request: _110.QueryConsensusStatesRequest): Promise<_110.QueryConsensusStatesResponse>; - consensusStateHeights(request: _110.QueryConsensusStateHeightsRequest): Promise<_110.QueryConsensusStateHeightsResponse>; - clientStatus(request: _110.QueryClientStatusRequest): Promise<_110.QueryClientStatusResponse>; - clientParams(request?: _110.QueryClientParamsRequest | undefined): Promise<_110.QueryClientParamsResponse>; - upgradedClientState(request?: _110.QueryUpgradedClientStateRequest | undefined): Promise<_110.QueryUpgradedClientStateResponse>; - upgradedConsensusState(request?: _110.QueryUpgradedConsensusStateRequest | undefined): Promise<_110.QueryUpgradedConsensusStateResponse>; - }; - LCDQueryClient: typeof _235.LCDQueryClient; + clientState(request: _111.QueryClientStateRequest): Promise<_111.QueryClientStateResponse>; + clientStates(request?: _111.QueryClientStatesRequest | undefined): Promise<_111.QueryClientStatesResponse>; + consensusState(request: _111.QueryConsensusStateRequest): Promise<_111.QueryConsensusStateResponse>; + consensusStates(request: _111.QueryConsensusStatesRequest): Promise<_111.QueryConsensusStatesResponse>; + consensusStateHeights(request: _111.QueryConsensusStateHeightsRequest): Promise<_111.QueryConsensusStateHeightsResponse>; + clientStatus(request: _111.QueryClientStatusRequest): Promise<_111.QueryClientStatusResponse>; + clientParams(request?: _111.QueryClientParamsRequest | undefined): Promise<_111.QueryClientParamsResponse>; + upgradedClientState(request?: _111.QueryUpgradedClientStateRequest | undefined): Promise<_111.QueryUpgradedClientStateResponse>; + upgradedConsensusState(request?: _111.QueryUpgradedConsensusStateRequest | undefined): Promise<_111.QueryUpgradedConsensusStateResponse>; + }; + LCDQueryClient: typeof _236.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - createClient(value: _111.MsgCreateClient): { + createClient(value: _112.MsgCreateClient): { typeUrl: string; value: Uint8Array; }; - updateClient(value: _111.MsgUpdateClient): { + updateClient(value: _112.MsgUpdateClient): { typeUrl: string; value: Uint8Array; }; - upgradeClient(value: _111.MsgUpgradeClient): { + upgradeClient(value: _112.MsgUpgradeClient): { typeUrl: string; value: Uint8Array; }; - submitMisbehaviour(value: _111.MsgSubmitMisbehaviour): { + submitMisbehaviour(value: _112.MsgSubmitMisbehaviour): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - createClient(value: _111.MsgCreateClient): { + createClient(value: _112.MsgCreateClient): { typeUrl: string; - value: _111.MsgCreateClient; + value: _112.MsgCreateClient; }; - updateClient(value: _111.MsgUpdateClient): { + updateClient(value: _112.MsgUpdateClient): { typeUrl: string; - value: _111.MsgUpdateClient; + value: _112.MsgUpdateClient; }; - upgradeClient(value: _111.MsgUpgradeClient): { + upgradeClient(value: _112.MsgUpgradeClient): { typeUrl: string; - value: _111.MsgUpgradeClient; + value: _112.MsgUpgradeClient; }; - submitMisbehaviour(value: _111.MsgSubmitMisbehaviour): { + submitMisbehaviour(value: _112.MsgSubmitMisbehaviour): { typeUrl: string; - value: _111.MsgSubmitMisbehaviour; + value: _112.MsgSubmitMisbehaviour; }; }; toJSON: { - createClient(value: _111.MsgCreateClient): { + createClient(value: _112.MsgCreateClient): { typeUrl: string; value: unknown; }; - updateClient(value: _111.MsgUpdateClient): { + updateClient(value: _112.MsgUpdateClient): { typeUrl: string; value: unknown; }; - upgradeClient(value: _111.MsgUpgradeClient): { + upgradeClient(value: _112.MsgUpgradeClient): { typeUrl: string; value: unknown; }; - submitMisbehaviour(value: _111.MsgSubmitMisbehaviour): { + submitMisbehaviour(value: _112.MsgSubmitMisbehaviour): { typeUrl: string; value: unknown; }; @@ -357,565 +372,601 @@ export declare namespace ibc { fromJSON: { createClient(value: any): { typeUrl: string; - value: _111.MsgCreateClient; + value: _112.MsgCreateClient; }; updateClient(value: any): { typeUrl: string; - value: _111.MsgUpdateClient; + value: _112.MsgUpdateClient; }; upgradeClient(value: any): { typeUrl: string; - value: _111.MsgUpgradeClient; + value: _112.MsgUpgradeClient; }; submitMisbehaviour(value: any): { typeUrl: string; - value: _111.MsgSubmitMisbehaviour; + value: _112.MsgSubmitMisbehaviour; }; }; fromPartial: { - createClient(value: _111.MsgCreateClient): { + createClient(value: _112.MsgCreateClient): { typeUrl: string; - value: _111.MsgCreateClient; + value: _112.MsgCreateClient; }; - updateClient(value: _111.MsgUpdateClient): { + updateClient(value: _112.MsgUpdateClient): { typeUrl: string; - value: _111.MsgUpdateClient; + value: _112.MsgUpdateClient; }; - upgradeClient(value: _111.MsgUpgradeClient): { + upgradeClient(value: _112.MsgUpgradeClient): { typeUrl: string; - value: _111.MsgUpgradeClient; + value: _112.MsgUpgradeClient; }; - submitMisbehaviour(value: _111.MsgSubmitMisbehaviour): { + submitMisbehaviour(value: _112.MsgSubmitMisbehaviour): { typeUrl: string; - value: _111.MsgSubmitMisbehaviour; + value: _112.MsgSubmitMisbehaviour; }; }; }; AminoConverter: { "/ibc.core.client.v1.MsgCreateClient": { aminoType: string; - toAmino: (message: _111.MsgCreateClient) => _111.MsgCreateClientAmino; - fromAmino: (object: _111.MsgCreateClientAmino) => _111.MsgCreateClient; + toAmino: (message: _112.MsgCreateClient) => _112.MsgCreateClientAmino; + fromAmino: (object: _112.MsgCreateClientAmino) => _112.MsgCreateClient; }; "/ibc.core.client.v1.MsgUpdateClient": { aminoType: string; - toAmino: (message: _111.MsgUpdateClient) => _111.MsgUpdateClientAmino; - fromAmino: (object: _111.MsgUpdateClientAmino) => _111.MsgUpdateClient; + toAmino: (message: _112.MsgUpdateClient) => _112.MsgUpdateClientAmino; + fromAmino: (object: _112.MsgUpdateClientAmino) => _112.MsgUpdateClient; }; "/ibc.core.client.v1.MsgUpgradeClient": { aminoType: string; - toAmino: (message: _111.MsgUpgradeClient) => _111.MsgUpgradeClientAmino; - fromAmino: (object: _111.MsgUpgradeClientAmino) => _111.MsgUpgradeClient; + toAmino: (message: _112.MsgUpgradeClient) => _112.MsgUpgradeClientAmino; + fromAmino: (object: _112.MsgUpgradeClientAmino) => _112.MsgUpgradeClient; }; "/ibc.core.client.v1.MsgSubmitMisbehaviour": { aminoType: string; - toAmino: (message: _111.MsgSubmitMisbehaviour) => _111.MsgSubmitMisbehaviourAmino; - fromAmino: (object: _111.MsgSubmitMisbehaviourAmino) => _111.MsgSubmitMisbehaviour; + toAmino: (message: _112.MsgSubmitMisbehaviour) => _112.MsgSubmitMisbehaviourAmino; + fromAmino: (object: _112.MsgSubmitMisbehaviourAmino) => _112.MsgSubmitMisbehaviour; }; }; MsgCreateClient: { - encode(message: _111.MsgCreateClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgCreateClient; - fromJSON(object: any): _111.MsgCreateClient; - toJSON(message: _111.MsgCreateClient): unknown; - fromPartial(object: Partial<_111.MsgCreateClient>): _111.MsgCreateClient; - fromAmino(object: _111.MsgCreateClientAmino): _111.MsgCreateClient; - toAmino(message: _111.MsgCreateClient): _111.MsgCreateClientAmino; - fromAminoMsg(object: _111.MsgCreateClientAminoMsg): _111.MsgCreateClient; - toAminoMsg(message: _111.MsgCreateClient): _111.MsgCreateClientAminoMsg; - fromProtoMsg(message: _111.MsgCreateClientProtoMsg): _111.MsgCreateClient; - toProto(message: _111.MsgCreateClient): Uint8Array; - toProtoMsg(message: _111.MsgCreateClient): _111.MsgCreateClientProtoMsg; + typeUrl: string; + encode(message: _112.MsgCreateClient, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgCreateClient; + fromJSON(object: any): _112.MsgCreateClient; + toJSON(message: _112.MsgCreateClient): unknown; + fromPartial(object: Partial<_112.MsgCreateClient>): _112.MsgCreateClient; + fromAmino(object: _112.MsgCreateClientAmino): _112.MsgCreateClient; + toAmino(message: _112.MsgCreateClient): _112.MsgCreateClientAmino; + fromAminoMsg(object: _112.MsgCreateClientAminoMsg): _112.MsgCreateClient; + toAminoMsg(message: _112.MsgCreateClient): _112.MsgCreateClientAminoMsg; + fromProtoMsg(message: _112.MsgCreateClientProtoMsg): _112.MsgCreateClient; + toProto(message: _112.MsgCreateClient): Uint8Array; + toProtoMsg(message: _112.MsgCreateClient): _112.MsgCreateClientProtoMsg; }; MsgCreateClientResponse: { - encode(_: _111.MsgCreateClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgCreateClientResponse; - fromJSON(_: any): _111.MsgCreateClientResponse; - toJSON(_: _111.MsgCreateClientResponse): unknown; - fromPartial(_: Partial<_111.MsgCreateClientResponse>): _111.MsgCreateClientResponse; - fromAmino(_: _111.MsgCreateClientResponseAmino): _111.MsgCreateClientResponse; - toAmino(_: _111.MsgCreateClientResponse): _111.MsgCreateClientResponseAmino; - fromAminoMsg(object: _111.MsgCreateClientResponseAminoMsg): _111.MsgCreateClientResponse; - toAminoMsg(message: _111.MsgCreateClientResponse): _111.MsgCreateClientResponseAminoMsg; - fromProtoMsg(message: _111.MsgCreateClientResponseProtoMsg): _111.MsgCreateClientResponse; - toProto(message: _111.MsgCreateClientResponse): Uint8Array; - toProtoMsg(message: _111.MsgCreateClientResponse): _111.MsgCreateClientResponseProtoMsg; + typeUrl: string; + encode(_: _112.MsgCreateClientResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgCreateClientResponse; + fromJSON(_: any): _112.MsgCreateClientResponse; + toJSON(_: _112.MsgCreateClientResponse): unknown; + fromPartial(_: Partial<_112.MsgCreateClientResponse>): _112.MsgCreateClientResponse; + fromAmino(_: _112.MsgCreateClientResponseAmino): _112.MsgCreateClientResponse; + toAmino(_: _112.MsgCreateClientResponse): _112.MsgCreateClientResponseAmino; + fromAminoMsg(object: _112.MsgCreateClientResponseAminoMsg): _112.MsgCreateClientResponse; + toAminoMsg(message: _112.MsgCreateClientResponse): _112.MsgCreateClientResponseAminoMsg; + fromProtoMsg(message: _112.MsgCreateClientResponseProtoMsg): _112.MsgCreateClientResponse; + toProto(message: _112.MsgCreateClientResponse): Uint8Array; + toProtoMsg(message: _112.MsgCreateClientResponse): _112.MsgCreateClientResponseProtoMsg; }; MsgUpdateClient: { - encode(message: _111.MsgUpdateClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgUpdateClient; - fromJSON(object: any): _111.MsgUpdateClient; - toJSON(message: _111.MsgUpdateClient): unknown; - fromPartial(object: Partial<_111.MsgUpdateClient>): _111.MsgUpdateClient; - fromAmino(object: _111.MsgUpdateClientAmino): _111.MsgUpdateClient; - toAmino(message: _111.MsgUpdateClient): _111.MsgUpdateClientAmino; - fromAminoMsg(object: _111.MsgUpdateClientAminoMsg): _111.MsgUpdateClient; - toAminoMsg(message: _111.MsgUpdateClient): _111.MsgUpdateClientAminoMsg; - fromProtoMsg(message: _111.MsgUpdateClientProtoMsg): _111.MsgUpdateClient; - toProto(message: _111.MsgUpdateClient): Uint8Array; - toProtoMsg(message: _111.MsgUpdateClient): _111.MsgUpdateClientProtoMsg; + typeUrl: string; + encode(message: _112.MsgUpdateClient, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgUpdateClient; + fromJSON(object: any): _112.MsgUpdateClient; + toJSON(message: _112.MsgUpdateClient): unknown; + fromPartial(object: Partial<_112.MsgUpdateClient>): _112.MsgUpdateClient; + fromAmino(object: _112.MsgUpdateClientAmino): _112.MsgUpdateClient; + toAmino(message: _112.MsgUpdateClient): _112.MsgUpdateClientAmino; + fromAminoMsg(object: _112.MsgUpdateClientAminoMsg): _112.MsgUpdateClient; + toAminoMsg(message: _112.MsgUpdateClient): _112.MsgUpdateClientAminoMsg; + fromProtoMsg(message: _112.MsgUpdateClientProtoMsg): _112.MsgUpdateClient; + toProto(message: _112.MsgUpdateClient): Uint8Array; + toProtoMsg(message: _112.MsgUpdateClient): _112.MsgUpdateClientProtoMsg; }; MsgUpdateClientResponse: { - encode(_: _111.MsgUpdateClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgUpdateClientResponse; - fromJSON(_: any): _111.MsgUpdateClientResponse; - toJSON(_: _111.MsgUpdateClientResponse): unknown; - fromPartial(_: Partial<_111.MsgUpdateClientResponse>): _111.MsgUpdateClientResponse; - fromAmino(_: _111.MsgUpdateClientResponseAmino): _111.MsgUpdateClientResponse; - toAmino(_: _111.MsgUpdateClientResponse): _111.MsgUpdateClientResponseAmino; - fromAminoMsg(object: _111.MsgUpdateClientResponseAminoMsg): _111.MsgUpdateClientResponse; - toAminoMsg(message: _111.MsgUpdateClientResponse): _111.MsgUpdateClientResponseAminoMsg; - fromProtoMsg(message: _111.MsgUpdateClientResponseProtoMsg): _111.MsgUpdateClientResponse; - toProto(message: _111.MsgUpdateClientResponse): Uint8Array; - toProtoMsg(message: _111.MsgUpdateClientResponse): _111.MsgUpdateClientResponseProtoMsg; + typeUrl: string; + encode(_: _112.MsgUpdateClientResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgUpdateClientResponse; + fromJSON(_: any): _112.MsgUpdateClientResponse; + toJSON(_: _112.MsgUpdateClientResponse): unknown; + fromPartial(_: Partial<_112.MsgUpdateClientResponse>): _112.MsgUpdateClientResponse; + fromAmino(_: _112.MsgUpdateClientResponseAmino): _112.MsgUpdateClientResponse; + toAmino(_: _112.MsgUpdateClientResponse): _112.MsgUpdateClientResponseAmino; + fromAminoMsg(object: _112.MsgUpdateClientResponseAminoMsg): _112.MsgUpdateClientResponse; + toAminoMsg(message: _112.MsgUpdateClientResponse): _112.MsgUpdateClientResponseAminoMsg; + fromProtoMsg(message: _112.MsgUpdateClientResponseProtoMsg): _112.MsgUpdateClientResponse; + toProto(message: _112.MsgUpdateClientResponse): Uint8Array; + toProtoMsg(message: _112.MsgUpdateClientResponse): _112.MsgUpdateClientResponseProtoMsg; }; MsgUpgradeClient: { - encode(message: _111.MsgUpgradeClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgUpgradeClient; - fromJSON(object: any): _111.MsgUpgradeClient; - toJSON(message: _111.MsgUpgradeClient): unknown; - fromPartial(object: Partial<_111.MsgUpgradeClient>): _111.MsgUpgradeClient; - fromAmino(object: _111.MsgUpgradeClientAmino): _111.MsgUpgradeClient; - toAmino(message: _111.MsgUpgradeClient): _111.MsgUpgradeClientAmino; - fromAminoMsg(object: _111.MsgUpgradeClientAminoMsg): _111.MsgUpgradeClient; - toAminoMsg(message: _111.MsgUpgradeClient): _111.MsgUpgradeClientAminoMsg; - fromProtoMsg(message: _111.MsgUpgradeClientProtoMsg): _111.MsgUpgradeClient; - toProto(message: _111.MsgUpgradeClient): Uint8Array; - toProtoMsg(message: _111.MsgUpgradeClient): _111.MsgUpgradeClientProtoMsg; + typeUrl: string; + encode(message: _112.MsgUpgradeClient, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgUpgradeClient; + fromJSON(object: any): _112.MsgUpgradeClient; + toJSON(message: _112.MsgUpgradeClient): unknown; + fromPartial(object: Partial<_112.MsgUpgradeClient>): _112.MsgUpgradeClient; + fromAmino(object: _112.MsgUpgradeClientAmino): _112.MsgUpgradeClient; + toAmino(message: _112.MsgUpgradeClient): _112.MsgUpgradeClientAmino; + fromAminoMsg(object: _112.MsgUpgradeClientAminoMsg): _112.MsgUpgradeClient; + toAminoMsg(message: _112.MsgUpgradeClient): _112.MsgUpgradeClientAminoMsg; + fromProtoMsg(message: _112.MsgUpgradeClientProtoMsg): _112.MsgUpgradeClient; + toProto(message: _112.MsgUpgradeClient): Uint8Array; + toProtoMsg(message: _112.MsgUpgradeClient): _112.MsgUpgradeClientProtoMsg; }; MsgUpgradeClientResponse: { - encode(_: _111.MsgUpgradeClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgUpgradeClientResponse; - fromJSON(_: any): _111.MsgUpgradeClientResponse; - toJSON(_: _111.MsgUpgradeClientResponse): unknown; - fromPartial(_: Partial<_111.MsgUpgradeClientResponse>): _111.MsgUpgradeClientResponse; - fromAmino(_: _111.MsgUpgradeClientResponseAmino): _111.MsgUpgradeClientResponse; - toAmino(_: _111.MsgUpgradeClientResponse): _111.MsgUpgradeClientResponseAmino; - fromAminoMsg(object: _111.MsgUpgradeClientResponseAminoMsg): _111.MsgUpgradeClientResponse; - toAminoMsg(message: _111.MsgUpgradeClientResponse): _111.MsgUpgradeClientResponseAminoMsg; - fromProtoMsg(message: _111.MsgUpgradeClientResponseProtoMsg): _111.MsgUpgradeClientResponse; - toProto(message: _111.MsgUpgradeClientResponse): Uint8Array; - toProtoMsg(message: _111.MsgUpgradeClientResponse): _111.MsgUpgradeClientResponseProtoMsg; + typeUrl: string; + encode(_: _112.MsgUpgradeClientResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgUpgradeClientResponse; + fromJSON(_: any): _112.MsgUpgradeClientResponse; + toJSON(_: _112.MsgUpgradeClientResponse): unknown; + fromPartial(_: Partial<_112.MsgUpgradeClientResponse>): _112.MsgUpgradeClientResponse; + fromAmino(_: _112.MsgUpgradeClientResponseAmino): _112.MsgUpgradeClientResponse; + toAmino(_: _112.MsgUpgradeClientResponse): _112.MsgUpgradeClientResponseAmino; + fromAminoMsg(object: _112.MsgUpgradeClientResponseAminoMsg): _112.MsgUpgradeClientResponse; + toAminoMsg(message: _112.MsgUpgradeClientResponse): _112.MsgUpgradeClientResponseAminoMsg; + fromProtoMsg(message: _112.MsgUpgradeClientResponseProtoMsg): _112.MsgUpgradeClientResponse; + toProto(message: _112.MsgUpgradeClientResponse): Uint8Array; + toProtoMsg(message: _112.MsgUpgradeClientResponse): _112.MsgUpgradeClientResponseProtoMsg; }; MsgSubmitMisbehaviour: { - encode(message: _111.MsgSubmitMisbehaviour, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgSubmitMisbehaviour; - fromJSON(object: any): _111.MsgSubmitMisbehaviour; - toJSON(message: _111.MsgSubmitMisbehaviour): unknown; - fromPartial(object: Partial<_111.MsgSubmitMisbehaviour>): _111.MsgSubmitMisbehaviour; - fromAmino(object: _111.MsgSubmitMisbehaviourAmino): _111.MsgSubmitMisbehaviour; - toAmino(message: _111.MsgSubmitMisbehaviour): _111.MsgSubmitMisbehaviourAmino; - fromAminoMsg(object: _111.MsgSubmitMisbehaviourAminoMsg): _111.MsgSubmitMisbehaviour; - toAminoMsg(message: _111.MsgSubmitMisbehaviour): _111.MsgSubmitMisbehaviourAminoMsg; - fromProtoMsg(message: _111.MsgSubmitMisbehaviourProtoMsg): _111.MsgSubmitMisbehaviour; - toProto(message: _111.MsgSubmitMisbehaviour): Uint8Array; - toProtoMsg(message: _111.MsgSubmitMisbehaviour): _111.MsgSubmitMisbehaviourProtoMsg; + typeUrl: string; + encode(message: _112.MsgSubmitMisbehaviour, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgSubmitMisbehaviour; + fromJSON(object: any): _112.MsgSubmitMisbehaviour; + toJSON(message: _112.MsgSubmitMisbehaviour): unknown; + fromPartial(object: Partial<_112.MsgSubmitMisbehaviour>): _112.MsgSubmitMisbehaviour; + fromAmino(object: _112.MsgSubmitMisbehaviourAmino): _112.MsgSubmitMisbehaviour; + toAmino(message: _112.MsgSubmitMisbehaviour): _112.MsgSubmitMisbehaviourAmino; + fromAminoMsg(object: _112.MsgSubmitMisbehaviourAminoMsg): _112.MsgSubmitMisbehaviour; + toAminoMsg(message: _112.MsgSubmitMisbehaviour): _112.MsgSubmitMisbehaviourAminoMsg; + fromProtoMsg(message: _112.MsgSubmitMisbehaviourProtoMsg): _112.MsgSubmitMisbehaviour; + toProto(message: _112.MsgSubmitMisbehaviour): Uint8Array; + toProtoMsg(message: _112.MsgSubmitMisbehaviour): _112.MsgSubmitMisbehaviourProtoMsg; }; MsgSubmitMisbehaviourResponse: { - encode(_: _111.MsgSubmitMisbehaviourResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _111.MsgSubmitMisbehaviourResponse; - fromJSON(_: any): _111.MsgSubmitMisbehaviourResponse; - toJSON(_: _111.MsgSubmitMisbehaviourResponse): unknown; - fromPartial(_: Partial<_111.MsgSubmitMisbehaviourResponse>): _111.MsgSubmitMisbehaviourResponse; - fromAmino(_: _111.MsgSubmitMisbehaviourResponseAmino): _111.MsgSubmitMisbehaviourResponse; - toAmino(_: _111.MsgSubmitMisbehaviourResponse): _111.MsgSubmitMisbehaviourResponseAmino; - fromAminoMsg(object: _111.MsgSubmitMisbehaviourResponseAminoMsg): _111.MsgSubmitMisbehaviourResponse; - toAminoMsg(message: _111.MsgSubmitMisbehaviourResponse): _111.MsgSubmitMisbehaviourResponseAminoMsg; - fromProtoMsg(message: _111.MsgSubmitMisbehaviourResponseProtoMsg): _111.MsgSubmitMisbehaviourResponse; - toProto(message: _111.MsgSubmitMisbehaviourResponse): Uint8Array; - toProtoMsg(message: _111.MsgSubmitMisbehaviourResponse): _111.MsgSubmitMisbehaviourResponseProtoMsg; + typeUrl: string; + encode(_: _112.MsgSubmitMisbehaviourResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _112.MsgSubmitMisbehaviourResponse; + fromJSON(_: any): _112.MsgSubmitMisbehaviourResponse; + toJSON(_: _112.MsgSubmitMisbehaviourResponse): unknown; + fromPartial(_: Partial<_112.MsgSubmitMisbehaviourResponse>): _112.MsgSubmitMisbehaviourResponse; + fromAmino(_: _112.MsgSubmitMisbehaviourResponseAmino): _112.MsgSubmitMisbehaviourResponse; + toAmino(_: _112.MsgSubmitMisbehaviourResponse): _112.MsgSubmitMisbehaviourResponseAmino; + fromAminoMsg(object: _112.MsgSubmitMisbehaviourResponseAminoMsg): _112.MsgSubmitMisbehaviourResponse; + toAminoMsg(message: _112.MsgSubmitMisbehaviourResponse): _112.MsgSubmitMisbehaviourResponseAminoMsg; + fromProtoMsg(message: _112.MsgSubmitMisbehaviourResponseProtoMsg): _112.MsgSubmitMisbehaviourResponse; + toProto(message: _112.MsgSubmitMisbehaviourResponse): Uint8Array; + toProtoMsg(message: _112.MsgSubmitMisbehaviourResponse): _112.MsgSubmitMisbehaviourResponseProtoMsg; }; QueryClientStateRequest: { - encode(message: _110.QueryClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientStateRequest; - fromJSON(object: any): _110.QueryClientStateRequest; - toJSON(message: _110.QueryClientStateRequest): unknown; - fromPartial(object: Partial<_110.QueryClientStateRequest>): _110.QueryClientStateRequest; - fromAmino(object: _110.QueryClientStateRequestAmino): _110.QueryClientStateRequest; - toAmino(message: _110.QueryClientStateRequest): _110.QueryClientStateRequestAmino; - fromAminoMsg(object: _110.QueryClientStateRequestAminoMsg): _110.QueryClientStateRequest; - toAminoMsg(message: _110.QueryClientStateRequest): _110.QueryClientStateRequestAminoMsg; - fromProtoMsg(message: _110.QueryClientStateRequestProtoMsg): _110.QueryClientStateRequest; - toProto(message: _110.QueryClientStateRequest): Uint8Array; - toProtoMsg(message: _110.QueryClientStateRequest): _110.QueryClientStateRequestProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientStateRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientStateRequest; + fromJSON(object: any): _111.QueryClientStateRequest; + toJSON(message: _111.QueryClientStateRequest): unknown; + fromPartial(object: Partial<_111.QueryClientStateRequest>): _111.QueryClientStateRequest; + fromAmino(object: _111.QueryClientStateRequestAmino): _111.QueryClientStateRequest; + toAmino(message: _111.QueryClientStateRequest): _111.QueryClientStateRequestAmino; + fromAminoMsg(object: _111.QueryClientStateRequestAminoMsg): _111.QueryClientStateRequest; + toAminoMsg(message: _111.QueryClientStateRequest): _111.QueryClientStateRequestAminoMsg; + fromProtoMsg(message: _111.QueryClientStateRequestProtoMsg): _111.QueryClientStateRequest; + toProto(message: _111.QueryClientStateRequest): Uint8Array; + toProtoMsg(message: _111.QueryClientStateRequest): _111.QueryClientStateRequestProtoMsg; }; QueryClientStateResponse: { - encode(message: _110.QueryClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientStateResponse; - fromJSON(object: any): _110.QueryClientStateResponse; - toJSON(message: _110.QueryClientStateResponse): unknown; - fromPartial(object: Partial<_110.QueryClientStateResponse>): _110.QueryClientStateResponse; - fromAmino(object: _110.QueryClientStateResponseAmino): _110.QueryClientStateResponse; - toAmino(message: _110.QueryClientStateResponse): _110.QueryClientStateResponseAmino; - fromAminoMsg(object: _110.QueryClientStateResponseAminoMsg): _110.QueryClientStateResponse; - toAminoMsg(message: _110.QueryClientStateResponse): _110.QueryClientStateResponseAminoMsg; - fromProtoMsg(message: _110.QueryClientStateResponseProtoMsg): _110.QueryClientStateResponse; - toProto(message: _110.QueryClientStateResponse): Uint8Array; - toProtoMsg(message: _110.QueryClientStateResponse): _110.QueryClientStateResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientStateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientStateResponse; + fromJSON(object: any): _111.QueryClientStateResponse; + toJSON(message: _111.QueryClientStateResponse): unknown; + fromPartial(object: Partial<_111.QueryClientStateResponse>): _111.QueryClientStateResponse; + fromAmino(object: _111.QueryClientStateResponseAmino): _111.QueryClientStateResponse; + toAmino(message: _111.QueryClientStateResponse): _111.QueryClientStateResponseAmino; + fromAminoMsg(object: _111.QueryClientStateResponseAminoMsg): _111.QueryClientStateResponse; + toAminoMsg(message: _111.QueryClientStateResponse): _111.QueryClientStateResponseAminoMsg; + fromProtoMsg(message: _111.QueryClientStateResponseProtoMsg): _111.QueryClientStateResponse; + toProto(message: _111.QueryClientStateResponse): Uint8Array; + toProtoMsg(message: _111.QueryClientStateResponse): _111.QueryClientStateResponseProtoMsg; }; QueryClientStatesRequest: { - encode(message: _110.QueryClientStatesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientStatesRequest; - fromJSON(object: any): _110.QueryClientStatesRequest; - toJSON(message: _110.QueryClientStatesRequest): unknown; - fromPartial(object: Partial<_110.QueryClientStatesRequest>): _110.QueryClientStatesRequest; - fromAmino(object: _110.QueryClientStatesRequestAmino): _110.QueryClientStatesRequest; - toAmino(message: _110.QueryClientStatesRequest): _110.QueryClientStatesRequestAmino; - fromAminoMsg(object: _110.QueryClientStatesRequestAminoMsg): _110.QueryClientStatesRequest; - toAminoMsg(message: _110.QueryClientStatesRequest): _110.QueryClientStatesRequestAminoMsg; - fromProtoMsg(message: _110.QueryClientStatesRequestProtoMsg): _110.QueryClientStatesRequest; - toProto(message: _110.QueryClientStatesRequest): Uint8Array; - toProtoMsg(message: _110.QueryClientStatesRequest): _110.QueryClientStatesRequestProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientStatesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientStatesRequest; + fromJSON(object: any): _111.QueryClientStatesRequest; + toJSON(message: _111.QueryClientStatesRequest): unknown; + fromPartial(object: Partial<_111.QueryClientStatesRequest>): _111.QueryClientStatesRequest; + fromAmino(object: _111.QueryClientStatesRequestAmino): _111.QueryClientStatesRequest; + toAmino(message: _111.QueryClientStatesRequest): _111.QueryClientStatesRequestAmino; + fromAminoMsg(object: _111.QueryClientStatesRequestAminoMsg): _111.QueryClientStatesRequest; + toAminoMsg(message: _111.QueryClientStatesRequest): _111.QueryClientStatesRequestAminoMsg; + fromProtoMsg(message: _111.QueryClientStatesRequestProtoMsg): _111.QueryClientStatesRequest; + toProto(message: _111.QueryClientStatesRequest): Uint8Array; + toProtoMsg(message: _111.QueryClientStatesRequest): _111.QueryClientStatesRequestProtoMsg; }; QueryClientStatesResponse: { - encode(message: _110.QueryClientStatesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientStatesResponse; - fromJSON(object: any): _110.QueryClientStatesResponse; - toJSON(message: _110.QueryClientStatesResponse): unknown; - fromPartial(object: Partial<_110.QueryClientStatesResponse>): _110.QueryClientStatesResponse; - fromAmino(object: _110.QueryClientStatesResponseAmino): _110.QueryClientStatesResponse; - toAmino(message: _110.QueryClientStatesResponse): _110.QueryClientStatesResponseAmino; - fromAminoMsg(object: _110.QueryClientStatesResponseAminoMsg): _110.QueryClientStatesResponse; - toAminoMsg(message: _110.QueryClientStatesResponse): _110.QueryClientStatesResponseAminoMsg; - fromProtoMsg(message: _110.QueryClientStatesResponseProtoMsg): _110.QueryClientStatesResponse; - toProto(message: _110.QueryClientStatesResponse): Uint8Array; - toProtoMsg(message: _110.QueryClientStatesResponse): _110.QueryClientStatesResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientStatesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientStatesResponse; + fromJSON(object: any): _111.QueryClientStatesResponse; + toJSON(message: _111.QueryClientStatesResponse): unknown; + fromPartial(object: Partial<_111.QueryClientStatesResponse>): _111.QueryClientStatesResponse; + fromAmino(object: _111.QueryClientStatesResponseAmino): _111.QueryClientStatesResponse; + toAmino(message: _111.QueryClientStatesResponse): _111.QueryClientStatesResponseAmino; + fromAminoMsg(object: _111.QueryClientStatesResponseAminoMsg): _111.QueryClientStatesResponse; + toAminoMsg(message: _111.QueryClientStatesResponse): _111.QueryClientStatesResponseAminoMsg; + fromProtoMsg(message: _111.QueryClientStatesResponseProtoMsg): _111.QueryClientStatesResponse; + toProto(message: _111.QueryClientStatesResponse): Uint8Array; + toProtoMsg(message: _111.QueryClientStatesResponse): _111.QueryClientStatesResponseProtoMsg; }; QueryConsensusStateRequest: { - encode(message: _110.QueryConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryConsensusStateRequest; - fromJSON(object: any): _110.QueryConsensusStateRequest; - toJSON(message: _110.QueryConsensusStateRequest): unknown; - fromPartial(object: Partial<_110.QueryConsensusStateRequest>): _110.QueryConsensusStateRequest; - fromAmino(object: _110.QueryConsensusStateRequestAmino): _110.QueryConsensusStateRequest; - toAmino(message: _110.QueryConsensusStateRequest): _110.QueryConsensusStateRequestAmino; - fromAminoMsg(object: _110.QueryConsensusStateRequestAminoMsg): _110.QueryConsensusStateRequest; - toAminoMsg(message: _110.QueryConsensusStateRequest): _110.QueryConsensusStateRequestAminoMsg; - fromProtoMsg(message: _110.QueryConsensusStateRequestProtoMsg): _110.QueryConsensusStateRequest; - toProto(message: _110.QueryConsensusStateRequest): Uint8Array; - toProtoMsg(message: _110.QueryConsensusStateRequest): _110.QueryConsensusStateRequestProtoMsg; + typeUrl: string; + encode(message: _111.QueryConsensusStateRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryConsensusStateRequest; + fromJSON(object: any): _111.QueryConsensusStateRequest; + toJSON(message: _111.QueryConsensusStateRequest): unknown; + fromPartial(object: Partial<_111.QueryConsensusStateRequest>): _111.QueryConsensusStateRequest; + fromAmino(object: _111.QueryConsensusStateRequestAmino): _111.QueryConsensusStateRequest; + toAmino(message: _111.QueryConsensusStateRequest): _111.QueryConsensusStateRequestAmino; + fromAminoMsg(object: _111.QueryConsensusStateRequestAminoMsg): _111.QueryConsensusStateRequest; + toAminoMsg(message: _111.QueryConsensusStateRequest): _111.QueryConsensusStateRequestAminoMsg; + fromProtoMsg(message: _111.QueryConsensusStateRequestProtoMsg): _111.QueryConsensusStateRequest; + toProto(message: _111.QueryConsensusStateRequest): Uint8Array; + toProtoMsg(message: _111.QueryConsensusStateRequest): _111.QueryConsensusStateRequestProtoMsg; }; QueryConsensusStateResponse: { - encode(message: _110.QueryConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryConsensusStateResponse; - fromJSON(object: any): _110.QueryConsensusStateResponse; - toJSON(message: _110.QueryConsensusStateResponse): unknown; - fromPartial(object: Partial<_110.QueryConsensusStateResponse>): _110.QueryConsensusStateResponse; - fromAmino(object: _110.QueryConsensusStateResponseAmino): _110.QueryConsensusStateResponse; - toAmino(message: _110.QueryConsensusStateResponse): _110.QueryConsensusStateResponseAmino; - fromAminoMsg(object: _110.QueryConsensusStateResponseAminoMsg): _110.QueryConsensusStateResponse; - toAminoMsg(message: _110.QueryConsensusStateResponse): _110.QueryConsensusStateResponseAminoMsg; - fromProtoMsg(message: _110.QueryConsensusStateResponseProtoMsg): _110.QueryConsensusStateResponse; - toProto(message: _110.QueryConsensusStateResponse): Uint8Array; - toProtoMsg(message: _110.QueryConsensusStateResponse): _110.QueryConsensusStateResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryConsensusStateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryConsensusStateResponse; + fromJSON(object: any): _111.QueryConsensusStateResponse; + toJSON(message: _111.QueryConsensusStateResponse): unknown; + fromPartial(object: Partial<_111.QueryConsensusStateResponse>): _111.QueryConsensusStateResponse; + fromAmino(object: _111.QueryConsensusStateResponseAmino): _111.QueryConsensusStateResponse; + toAmino(message: _111.QueryConsensusStateResponse): _111.QueryConsensusStateResponseAmino; + fromAminoMsg(object: _111.QueryConsensusStateResponseAminoMsg): _111.QueryConsensusStateResponse; + toAminoMsg(message: _111.QueryConsensusStateResponse): _111.QueryConsensusStateResponseAminoMsg; + fromProtoMsg(message: _111.QueryConsensusStateResponseProtoMsg): _111.QueryConsensusStateResponse; + toProto(message: _111.QueryConsensusStateResponse): Uint8Array; + toProtoMsg(message: _111.QueryConsensusStateResponse): _111.QueryConsensusStateResponseProtoMsg; }; QueryConsensusStatesRequest: { - encode(message: _110.QueryConsensusStatesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryConsensusStatesRequest; - fromJSON(object: any): _110.QueryConsensusStatesRequest; - toJSON(message: _110.QueryConsensusStatesRequest): unknown; - fromPartial(object: Partial<_110.QueryConsensusStatesRequest>): _110.QueryConsensusStatesRequest; - fromAmino(object: _110.QueryConsensusStatesRequestAmino): _110.QueryConsensusStatesRequest; - toAmino(message: _110.QueryConsensusStatesRequest): _110.QueryConsensusStatesRequestAmino; - fromAminoMsg(object: _110.QueryConsensusStatesRequestAminoMsg): _110.QueryConsensusStatesRequest; - toAminoMsg(message: _110.QueryConsensusStatesRequest): _110.QueryConsensusStatesRequestAminoMsg; - fromProtoMsg(message: _110.QueryConsensusStatesRequestProtoMsg): _110.QueryConsensusStatesRequest; - toProto(message: _110.QueryConsensusStatesRequest): Uint8Array; - toProtoMsg(message: _110.QueryConsensusStatesRequest): _110.QueryConsensusStatesRequestProtoMsg; + typeUrl: string; + encode(message: _111.QueryConsensusStatesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryConsensusStatesRequest; + fromJSON(object: any): _111.QueryConsensusStatesRequest; + toJSON(message: _111.QueryConsensusStatesRequest): unknown; + fromPartial(object: Partial<_111.QueryConsensusStatesRequest>): _111.QueryConsensusStatesRequest; + fromAmino(object: _111.QueryConsensusStatesRequestAmino): _111.QueryConsensusStatesRequest; + toAmino(message: _111.QueryConsensusStatesRequest): _111.QueryConsensusStatesRequestAmino; + fromAminoMsg(object: _111.QueryConsensusStatesRequestAminoMsg): _111.QueryConsensusStatesRequest; + toAminoMsg(message: _111.QueryConsensusStatesRequest): _111.QueryConsensusStatesRequestAminoMsg; + fromProtoMsg(message: _111.QueryConsensusStatesRequestProtoMsg): _111.QueryConsensusStatesRequest; + toProto(message: _111.QueryConsensusStatesRequest): Uint8Array; + toProtoMsg(message: _111.QueryConsensusStatesRequest): _111.QueryConsensusStatesRequestProtoMsg; }; QueryConsensusStatesResponse: { - encode(message: _110.QueryConsensusStatesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryConsensusStatesResponse; - fromJSON(object: any): _110.QueryConsensusStatesResponse; - toJSON(message: _110.QueryConsensusStatesResponse): unknown; - fromPartial(object: Partial<_110.QueryConsensusStatesResponse>): _110.QueryConsensusStatesResponse; - fromAmino(object: _110.QueryConsensusStatesResponseAmino): _110.QueryConsensusStatesResponse; - toAmino(message: _110.QueryConsensusStatesResponse): _110.QueryConsensusStatesResponseAmino; - fromAminoMsg(object: _110.QueryConsensusStatesResponseAminoMsg): _110.QueryConsensusStatesResponse; - toAminoMsg(message: _110.QueryConsensusStatesResponse): _110.QueryConsensusStatesResponseAminoMsg; - fromProtoMsg(message: _110.QueryConsensusStatesResponseProtoMsg): _110.QueryConsensusStatesResponse; - toProto(message: _110.QueryConsensusStatesResponse): Uint8Array; - toProtoMsg(message: _110.QueryConsensusStatesResponse): _110.QueryConsensusStatesResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryConsensusStatesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryConsensusStatesResponse; + fromJSON(object: any): _111.QueryConsensusStatesResponse; + toJSON(message: _111.QueryConsensusStatesResponse): unknown; + fromPartial(object: Partial<_111.QueryConsensusStatesResponse>): _111.QueryConsensusStatesResponse; + fromAmino(object: _111.QueryConsensusStatesResponseAmino): _111.QueryConsensusStatesResponse; + toAmino(message: _111.QueryConsensusStatesResponse): _111.QueryConsensusStatesResponseAmino; + fromAminoMsg(object: _111.QueryConsensusStatesResponseAminoMsg): _111.QueryConsensusStatesResponse; + toAminoMsg(message: _111.QueryConsensusStatesResponse): _111.QueryConsensusStatesResponseAminoMsg; + fromProtoMsg(message: _111.QueryConsensusStatesResponseProtoMsg): _111.QueryConsensusStatesResponse; + toProto(message: _111.QueryConsensusStatesResponse): Uint8Array; + toProtoMsg(message: _111.QueryConsensusStatesResponse): _111.QueryConsensusStatesResponseProtoMsg; }; QueryConsensusStateHeightsRequest: { - encode(message: _110.QueryConsensusStateHeightsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryConsensusStateHeightsRequest; - fromJSON(object: any): _110.QueryConsensusStateHeightsRequest; - toJSON(message: _110.QueryConsensusStateHeightsRequest): unknown; - fromPartial(object: Partial<_110.QueryConsensusStateHeightsRequest>): _110.QueryConsensusStateHeightsRequest; - fromAmino(object: _110.QueryConsensusStateHeightsRequestAmino): _110.QueryConsensusStateHeightsRequest; - toAmino(message: _110.QueryConsensusStateHeightsRequest): _110.QueryConsensusStateHeightsRequestAmino; - fromAminoMsg(object: _110.QueryConsensusStateHeightsRequestAminoMsg): _110.QueryConsensusStateHeightsRequest; - toAminoMsg(message: _110.QueryConsensusStateHeightsRequest): _110.QueryConsensusStateHeightsRequestAminoMsg; - fromProtoMsg(message: _110.QueryConsensusStateHeightsRequestProtoMsg): _110.QueryConsensusStateHeightsRequest; - toProto(message: _110.QueryConsensusStateHeightsRequest): Uint8Array; - toProtoMsg(message: _110.QueryConsensusStateHeightsRequest): _110.QueryConsensusStateHeightsRequestProtoMsg; + typeUrl: string; + encode(message: _111.QueryConsensusStateHeightsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryConsensusStateHeightsRequest; + fromJSON(object: any): _111.QueryConsensusStateHeightsRequest; + toJSON(message: _111.QueryConsensusStateHeightsRequest): unknown; + fromPartial(object: Partial<_111.QueryConsensusStateHeightsRequest>): _111.QueryConsensusStateHeightsRequest; + fromAmino(object: _111.QueryConsensusStateHeightsRequestAmino): _111.QueryConsensusStateHeightsRequest; + toAmino(message: _111.QueryConsensusStateHeightsRequest): _111.QueryConsensusStateHeightsRequestAmino; + fromAminoMsg(object: _111.QueryConsensusStateHeightsRequestAminoMsg): _111.QueryConsensusStateHeightsRequest; + toAminoMsg(message: _111.QueryConsensusStateHeightsRequest): _111.QueryConsensusStateHeightsRequestAminoMsg; + fromProtoMsg(message: _111.QueryConsensusStateHeightsRequestProtoMsg): _111.QueryConsensusStateHeightsRequest; + toProto(message: _111.QueryConsensusStateHeightsRequest): Uint8Array; + toProtoMsg(message: _111.QueryConsensusStateHeightsRequest): _111.QueryConsensusStateHeightsRequestProtoMsg; }; QueryConsensusStateHeightsResponse: { - encode(message: _110.QueryConsensusStateHeightsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryConsensusStateHeightsResponse; - fromJSON(object: any): _110.QueryConsensusStateHeightsResponse; - toJSON(message: _110.QueryConsensusStateHeightsResponse): unknown; - fromPartial(object: Partial<_110.QueryConsensusStateHeightsResponse>): _110.QueryConsensusStateHeightsResponse; - fromAmino(object: _110.QueryConsensusStateHeightsResponseAmino): _110.QueryConsensusStateHeightsResponse; - toAmino(message: _110.QueryConsensusStateHeightsResponse): _110.QueryConsensusStateHeightsResponseAmino; - fromAminoMsg(object: _110.QueryConsensusStateHeightsResponseAminoMsg): _110.QueryConsensusStateHeightsResponse; - toAminoMsg(message: _110.QueryConsensusStateHeightsResponse): _110.QueryConsensusStateHeightsResponseAminoMsg; - fromProtoMsg(message: _110.QueryConsensusStateHeightsResponseProtoMsg): _110.QueryConsensusStateHeightsResponse; - toProto(message: _110.QueryConsensusStateHeightsResponse): Uint8Array; - toProtoMsg(message: _110.QueryConsensusStateHeightsResponse): _110.QueryConsensusStateHeightsResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryConsensusStateHeightsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryConsensusStateHeightsResponse; + fromJSON(object: any): _111.QueryConsensusStateHeightsResponse; + toJSON(message: _111.QueryConsensusStateHeightsResponse): unknown; + fromPartial(object: Partial<_111.QueryConsensusStateHeightsResponse>): _111.QueryConsensusStateHeightsResponse; + fromAmino(object: _111.QueryConsensusStateHeightsResponseAmino): _111.QueryConsensusStateHeightsResponse; + toAmino(message: _111.QueryConsensusStateHeightsResponse): _111.QueryConsensusStateHeightsResponseAmino; + fromAminoMsg(object: _111.QueryConsensusStateHeightsResponseAminoMsg): _111.QueryConsensusStateHeightsResponse; + toAminoMsg(message: _111.QueryConsensusStateHeightsResponse): _111.QueryConsensusStateHeightsResponseAminoMsg; + fromProtoMsg(message: _111.QueryConsensusStateHeightsResponseProtoMsg): _111.QueryConsensusStateHeightsResponse; + toProto(message: _111.QueryConsensusStateHeightsResponse): Uint8Array; + toProtoMsg(message: _111.QueryConsensusStateHeightsResponse): _111.QueryConsensusStateHeightsResponseProtoMsg; }; QueryClientStatusRequest: { - encode(message: _110.QueryClientStatusRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientStatusRequest; - fromJSON(object: any): _110.QueryClientStatusRequest; - toJSON(message: _110.QueryClientStatusRequest): unknown; - fromPartial(object: Partial<_110.QueryClientStatusRequest>): _110.QueryClientStatusRequest; - fromAmino(object: _110.QueryClientStatusRequestAmino): _110.QueryClientStatusRequest; - toAmino(message: _110.QueryClientStatusRequest): _110.QueryClientStatusRequestAmino; - fromAminoMsg(object: _110.QueryClientStatusRequestAminoMsg): _110.QueryClientStatusRequest; - toAminoMsg(message: _110.QueryClientStatusRequest): _110.QueryClientStatusRequestAminoMsg; - fromProtoMsg(message: _110.QueryClientStatusRequestProtoMsg): _110.QueryClientStatusRequest; - toProto(message: _110.QueryClientStatusRequest): Uint8Array; - toProtoMsg(message: _110.QueryClientStatusRequest): _110.QueryClientStatusRequestProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientStatusRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientStatusRequest; + fromJSON(object: any): _111.QueryClientStatusRequest; + toJSON(message: _111.QueryClientStatusRequest): unknown; + fromPartial(object: Partial<_111.QueryClientStatusRequest>): _111.QueryClientStatusRequest; + fromAmino(object: _111.QueryClientStatusRequestAmino): _111.QueryClientStatusRequest; + toAmino(message: _111.QueryClientStatusRequest): _111.QueryClientStatusRequestAmino; + fromAminoMsg(object: _111.QueryClientStatusRequestAminoMsg): _111.QueryClientStatusRequest; + toAminoMsg(message: _111.QueryClientStatusRequest): _111.QueryClientStatusRequestAminoMsg; + fromProtoMsg(message: _111.QueryClientStatusRequestProtoMsg): _111.QueryClientStatusRequest; + toProto(message: _111.QueryClientStatusRequest): Uint8Array; + toProtoMsg(message: _111.QueryClientStatusRequest): _111.QueryClientStatusRequestProtoMsg; }; QueryClientStatusResponse: { - encode(message: _110.QueryClientStatusResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientStatusResponse; - fromJSON(object: any): _110.QueryClientStatusResponse; - toJSON(message: _110.QueryClientStatusResponse): unknown; - fromPartial(object: Partial<_110.QueryClientStatusResponse>): _110.QueryClientStatusResponse; - fromAmino(object: _110.QueryClientStatusResponseAmino): _110.QueryClientStatusResponse; - toAmino(message: _110.QueryClientStatusResponse): _110.QueryClientStatusResponseAmino; - fromAminoMsg(object: _110.QueryClientStatusResponseAminoMsg): _110.QueryClientStatusResponse; - toAminoMsg(message: _110.QueryClientStatusResponse): _110.QueryClientStatusResponseAminoMsg; - fromProtoMsg(message: _110.QueryClientStatusResponseProtoMsg): _110.QueryClientStatusResponse; - toProto(message: _110.QueryClientStatusResponse): Uint8Array; - toProtoMsg(message: _110.QueryClientStatusResponse): _110.QueryClientStatusResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientStatusResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientStatusResponse; + fromJSON(object: any): _111.QueryClientStatusResponse; + toJSON(message: _111.QueryClientStatusResponse): unknown; + fromPartial(object: Partial<_111.QueryClientStatusResponse>): _111.QueryClientStatusResponse; + fromAmino(object: _111.QueryClientStatusResponseAmino): _111.QueryClientStatusResponse; + toAmino(message: _111.QueryClientStatusResponse): _111.QueryClientStatusResponseAmino; + fromAminoMsg(object: _111.QueryClientStatusResponseAminoMsg): _111.QueryClientStatusResponse; + toAminoMsg(message: _111.QueryClientStatusResponse): _111.QueryClientStatusResponseAminoMsg; + fromProtoMsg(message: _111.QueryClientStatusResponseProtoMsg): _111.QueryClientStatusResponse; + toProto(message: _111.QueryClientStatusResponse): Uint8Array; + toProtoMsg(message: _111.QueryClientStatusResponse): _111.QueryClientStatusResponseProtoMsg; }; QueryClientParamsRequest: { - encode(_: _110.QueryClientParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientParamsRequest; - fromJSON(_: any): _110.QueryClientParamsRequest; - toJSON(_: _110.QueryClientParamsRequest): unknown; - fromPartial(_: Partial<_110.QueryClientParamsRequest>): _110.QueryClientParamsRequest; - fromAmino(_: _110.QueryClientParamsRequestAmino): _110.QueryClientParamsRequest; - toAmino(_: _110.QueryClientParamsRequest): _110.QueryClientParamsRequestAmino; - fromAminoMsg(object: _110.QueryClientParamsRequestAminoMsg): _110.QueryClientParamsRequest; - toAminoMsg(message: _110.QueryClientParamsRequest): _110.QueryClientParamsRequestAminoMsg; - fromProtoMsg(message: _110.QueryClientParamsRequestProtoMsg): _110.QueryClientParamsRequest; - toProto(message: _110.QueryClientParamsRequest): Uint8Array; - toProtoMsg(message: _110.QueryClientParamsRequest): _110.QueryClientParamsRequestProtoMsg; + typeUrl: string; + encode(_: _111.QueryClientParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientParamsRequest; + fromJSON(_: any): _111.QueryClientParamsRequest; + toJSON(_: _111.QueryClientParamsRequest): unknown; + fromPartial(_: Partial<_111.QueryClientParamsRequest>): _111.QueryClientParamsRequest; + fromAmino(_: _111.QueryClientParamsRequestAmino): _111.QueryClientParamsRequest; + toAmino(_: _111.QueryClientParamsRequest): _111.QueryClientParamsRequestAmino; + fromAminoMsg(object: _111.QueryClientParamsRequestAminoMsg): _111.QueryClientParamsRequest; + toAminoMsg(message: _111.QueryClientParamsRequest): _111.QueryClientParamsRequestAminoMsg; + fromProtoMsg(message: _111.QueryClientParamsRequestProtoMsg): _111.QueryClientParamsRequest; + toProto(message: _111.QueryClientParamsRequest): Uint8Array; + toProtoMsg(message: _111.QueryClientParamsRequest): _111.QueryClientParamsRequestProtoMsg; }; QueryClientParamsResponse: { - encode(message: _110.QueryClientParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryClientParamsResponse; - fromJSON(object: any): _110.QueryClientParamsResponse; - toJSON(message: _110.QueryClientParamsResponse): unknown; - fromPartial(object: Partial<_110.QueryClientParamsResponse>): _110.QueryClientParamsResponse; - fromAmino(object: _110.QueryClientParamsResponseAmino): _110.QueryClientParamsResponse; - toAmino(message: _110.QueryClientParamsResponse): _110.QueryClientParamsResponseAmino; - fromAminoMsg(object: _110.QueryClientParamsResponseAminoMsg): _110.QueryClientParamsResponse; - toAminoMsg(message: _110.QueryClientParamsResponse): _110.QueryClientParamsResponseAminoMsg; - fromProtoMsg(message: _110.QueryClientParamsResponseProtoMsg): _110.QueryClientParamsResponse; - toProto(message: _110.QueryClientParamsResponse): Uint8Array; - toProtoMsg(message: _110.QueryClientParamsResponse): _110.QueryClientParamsResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryClientParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryClientParamsResponse; + fromJSON(object: any): _111.QueryClientParamsResponse; + toJSON(message: _111.QueryClientParamsResponse): unknown; + fromPartial(object: Partial<_111.QueryClientParamsResponse>): _111.QueryClientParamsResponse; + fromAmino(object: _111.QueryClientParamsResponseAmino): _111.QueryClientParamsResponse; + toAmino(message: _111.QueryClientParamsResponse): _111.QueryClientParamsResponseAmino; + fromAminoMsg(object: _111.QueryClientParamsResponseAminoMsg): _111.QueryClientParamsResponse; + toAminoMsg(message: _111.QueryClientParamsResponse): _111.QueryClientParamsResponseAminoMsg; + fromProtoMsg(message: _111.QueryClientParamsResponseProtoMsg): _111.QueryClientParamsResponse; + toProto(message: _111.QueryClientParamsResponse): Uint8Array; + toProtoMsg(message: _111.QueryClientParamsResponse): _111.QueryClientParamsResponseProtoMsg; }; QueryUpgradedClientStateRequest: { - encode(_: _110.QueryUpgradedClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryUpgradedClientStateRequest; - fromJSON(_: any): _110.QueryUpgradedClientStateRequest; - toJSON(_: _110.QueryUpgradedClientStateRequest): unknown; - fromPartial(_: Partial<_110.QueryUpgradedClientStateRequest>): _110.QueryUpgradedClientStateRequest; - fromAmino(_: _110.QueryUpgradedClientStateRequestAmino): _110.QueryUpgradedClientStateRequest; - toAmino(_: _110.QueryUpgradedClientStateRequest): _110.QueryUpgradedClientStateRequestAmino; - fromAminoMsg(object: _110.QueryUpgradedClientStateRequestAminoMsg): _110.QueryUpgradedClientStateRequest; - toAminoMsg(message: _110.QueryUpgradedClientStateRequest): _110.QueryUpgradedClientStateRequestAminoMsg; - fromProtoMsg(message: _110.QueryUpgradedClientStateRequestProtoMsg): _110.QueryUpgradedClientStateRequest; - toProto(message: _110.QueryUpgradedClientStateRequest): Uint8Array; - toProtoMsg(message: _110.QueryUpgradedClientStateRequest): _110.QueryUpgradedClientStateRequestProtoMsg; + typeUrl: string; + encode(_: _111.QueryUpgradedClientStateRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryUpgradedClientStateRequest; + fromJSON(_: any): _111.QueryUpgradedClientStateRequest; + toJSON(_: _111.QueryUpgradedClientStateRequest): unknown; + fromPartial(_: Partial<_111.QueryUpgradedClientStateRequest>): _111.QueryUpgradedClientStateRequest; + fromAmino(_: _111.QueryUpgradedClientStateRequestAmino): _111.QueryUpgradedClientStateRequest; + toAmino(_: _111.QueryUpgradedClientStateRequest): _111.QueryUpgradedClientStateRequestAmino; + fromAminoMsg(object: _111.QueryUpgradedClientStateRequestAminoMsg): _111.QueryUpgradedClientStateRequest; + toAminoMsg(message: _111.QueryUpgradedClientStateRequest): _111.QueryUpgradedClientStateRequestAminoMsg; + fromProtoMsg(message: _111.QueryUpgradedClientStateRequestProtoMsg): _111.QueryUpgradedClientStateRequest; + toProto(message: _111.QueryUpgradedClientStateRequest): Uint8Array; + toProtoMsg(message: _111.QueryUpgradedClientStateRequest): _111.QueryUpgradedClientStateRequestProtoMsg; }; QueryUpgradedClientStateResponse: { - encode(message: _110.QueryUpgradedClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryUpgradedClientStateResponse; - fromJSON(object: any): _110.QueryUpgradedClientStateResponse; - toJSON(message: _110.QueryUpgradedClientStateResponse): unknown; - fromPartial(object: Partial<_110.QueryUpgradedClientStateResponse>): _110.QueryUpgradedClientStateResponse; - fromAmino(object: _110.QueryUpgradedClientStateResponseAmino): _110.QueryUpgradedClientStateResponse; - toAmino(message: _110.QueryUpgradedClientStateResponse): _110.QueryUpgradedClientStateResponseAmino; - fromAminoMsg(object: _110.QueryUpgradedClientStateResponseAminoMsg): _110.QueryUpgradedClientStateResponse; - toAminoMsg(message: _110.QueryUpgradedClientStateResponse): _110.QueryUpgradedClientStateResponseAminoMsg; - fromProtoMsg(message: _110.QueryUpgradedClientStateResponseProtoMsg): _110.QueryUpgradedClientStateResponse; - toProto(message: _110.QueryUpgradedClientStateResponse): Uint8Array; - toProtoMsg(message: _110.QueryUpgradedClientStateResponse): _110.QueryUpgradedClientStateResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryUpgradedClientStateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryUpgradedClientStateResponse; + fromJSON(object: any): _111.QueryUpgradedClientStateResponse; + toJSON(message: _111.QueryUpgradedClientStateResponse): unknown; + fromPartial(object: Partial<_111.QueryUpgradedClientStateResponse>): _111.QueryUpgradedClientStateResponse; + fromAmino(object: _111.QueryUpgradedClientStateResponseAmino): _111.QueryUpgradedClientStateResponse; + toAmino(message: _111.QueryUpgradedClientStateResponse): _111.QueryUpgradedClientStateResponseAmino; + fromAminoMsg(object: _111.QueryUpgradedClientStateResponseAminoMsg): _111.QueryUpgradedClientStateResponse; + toAminoMsg(message: _111.QueryUpgradedClientStateResponse): _111.QueryUpgradedClientStateResponseAminoMsg; + fromProtoMsg(message: _111.QueryUpgradedClientStateResponseProtoMsg): _111.QueryUpgradedClientStateResponse; + toProto(message: _111.QueryUpgradedClientStateResponse): Uint8Array; + toProtoMsg(message: _111.QueryUpgradedClientStateResponse): _111.QueryUpgradedClientStateResponseProtoMsg; }; QueryUpgradedConsensusStateRequest: { - encode(_: _110.QueryUpgradedConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryUpgradedConsensusStateRequest; - fromJSON(_: any): _110.QueryUpgradedConsensusStateRequest; - toJSON(_: _110.QueryUpgradedConsensusStateRequest): unknown; - fromPartial(_: Partial<_110.QueryUpgradedConsensusStateRequest>): _110.QueryUpgradedConsensusStateRequest; - fromAmino(_: _110.QueryUpgradedConsensusStateRequestAmino): _110.QueryUpgradedConsensusStateRequest; - toAmino(_: _110.QueryUpgradedConsensusStateRequest): _110.QueryUpgradedConsensusStateRequestAmino; - fromAminoMsg(object: _110.QueryUpgradedConsensusStateRequestAminoMsg): _110.QueryUpgradedConsensusStateRequest; - toAminoMsg(message: _110.QueryUpgradedConsensusStateRequest): _110.QueryUpgradedConsensusStateRequestAminoMsg; - fromProtoMsg(message: _110.QueryUpgradedConsensusStateRequestProtoMsg): _110.QueryUpgradedConsensusStateRequest; - toProto(message: _110.QueryUpgradedConsensusStateRequest): Uint8Array; - toProtoMsg(message: _110.QueryUpgradedConsensusStateRequest): _110.QueryUpgradedConsensusStateRequestProtoMsg; + typeUrl: string; + encode(_: _111.QueryUpgradedConsensusStateRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryUpgradedConsensusStateRequest; + fromJSON(_: any): _111.QueryUpgradedConsensusStateRequest; + toJSON(_: _111.QueryUpgradedConsensusStateRequest): unknown; + fromPartial(_: Partial<_111.QueryUpgradedConsensusStateRequest>): _111.QueryUpgradedConsensusStateRequest; + fromAmino(_: _111.QueryUpgradedConsensusStateRequestAmino): _111.QueryUpgradedConsensusStateRequest; + toAmino(_: _111.QueryUpgradedConsensusStateRequest): _111.QueryUpgradedConsensusStateRequestAmino; + fromAminoMsg(object: _111.QueryUpgradedConsensusStateRequestAminoMsg): _111.QueryUpgradedConsensusStateRequest; + toAminoMsg(message: _111.QueryUpgradedConsensusStateRequest): _111.QueryUpgradedConsensusStateRequestAminoMsg; + fromProtoMsg(message: _111.QueryUpgradedConsensusStateRequestProtoMsg): _111.QueryUpgradedConsensusStateRequest; + toProto(message: _111.QueryUpgradedConsensusStateRequest): Uint8Array; + toProtoMsg(message: _111.QueryUpgradedConsensusStateRequest): _111.QueryUpgradedConsensusStateRequestProtoMsg; }; QueryUpgradedConsensusStateResponse: { - encode(message: _110.QueryUpgradedConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _110.QueryUpgradedConsensusStateResponse; - fromJSON(object: any): _110.QueryUpgradedConsensusStateResponse; - toJSON(message: _110.QueryUpgradedConsensusStateResponse): unknown; - fromPartial(object: Partial<_110.QueryUpgradedConsensusStateResponse>): _110.QueryUpgradedConsensusStateResponse; - fromAmino(object: _110.QueryUpgradedConsensusStateResponseAmino): _110.QueryUpgradedConsensusStateResponse; - toAmino(message: _110.QueryUpgradedConsensusStateResponse): _110.QueryUpgradedConsensusStateResponseAmino; - fromAminoMsg(object: _110.QueryUpgradedConsensusStateResponseAminoMsg): _110.QueryUpgradedConsensusStateResponse; - toAminoMsg(message: _110.QueryUpgradedConsensusStateResponse): _110.QueryUpgradedConsensusStateResponseAminoMsg; - fromProtoMsg(message: _110.QueryUpgradedConsensusStateResponseProtoMsg): _110.QueryUpgradedConsensusStateResponse; - toProto(message: _110.QueryUpgradedConsensusStateResponse): Uint8Array; - toProtoMsg(message: _110.QueryUpgradedConsensusStateResponse): _110.QueryUpgradedConsensusStateResponseProtoMsg; + typeUrl: string; + encode(message: _111.QueryUpgradedConsensusStateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _111.QueryUpgradedConsensusStateResponse; + fromJSON(object: any): _111.QueryUpgradedConsensusStateResponse; + toJSON(message: _111.QueryUpgradedConsensusStateResponse): unknown; + fromPartial(object: Partial<_111.QueryUpgradedConsensusStateResponse>): _111.QueryUpgradedConsensusStateResponse; + fromAmino(object: _111.QueryUpgradedConsensusStateResponseAmino): _111.QueryUpgradedConsensusStateResponse; + toAmino(message: _111.QueryUpgradedConsensusStateResponse): _111.QueryUpgradedConsensusStateResponseAmino; + fromAminoMsg(object: _111.QueryUpgradedConsensusStateResponseAminoMsg): _111.QueryUpgradedConsensusStateResponse; + toAminoMsg(message: _111.QueryUpgradedConsensusStateResponse): _111.QueryUpgradedConsensusStateResponseAminoMsg; + fromProtoMsg(message: _111.QueryUpgradedConsensusStateResponseProtoMsg): _111.QueryUpgradedConsensusStateResponse; + toProto(message: _111.QueryUpgradedConsensusStateResponse): Uint8Array; + toProtoMsg(message: _111.QueryUpgradedConsensusStateResponse): _111.QueryUpgradedConsensusStateResponseProtoMsg; }; GenesisState: { - encode(message: _109.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _109.GenesisState; - fromJSON(object: any): _109.GenesisState; - toJSON(message: _109.GenesisState): unknown; - fromPartial(object: Partial<_109.GenesisState>): _109.GenesisState; - fromAmino(object: _109.GenesisStateAmino): _109.GenesisState; - toAmino(message: _109.GenesisState): _109.GenesisStateAmino; - fromAminoMsg(object: _109.GenesisStateAminoMsg): _109.GenesisState; - toAminoMsg(message: _109.GenesisState): _109.GenesisStateAminoMsg; - fromProtoMsg(message: _109.GenesisStateProtoMsg): _109.GenesisState; - toProto(message: _109.GenesisState): Uint8Array; - toProtoMsg(message: _109.GenesisState): _109.GenesisStateProtoMsg; + typeUrl: string; + encode(message: _110.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _110.GenesisState; + fromJSON(object: any): _110.GenesisState; + toJSON(message: _110.GenesisState): unknown; + fromPartial(object: Partial<_110.GenesisState>): _110.GenesisState; + fromAmino(object: _110.GenesisStateAmino): _110.GenesisState; + toAmino(message: _110.GenesisState): _110.GenesisStateAmino; + fromAminoMsg(object: _110.GenesisStateAminoMsg): _110.GenesisState; + toAminoMsg(message: _110.GenesisState): _110.GenesisStateAminoMsg; + fromProtoMsg(message: _110.GenesisStateProtoMsg): _110.GenesisState; + toProto(message: _110.GenesisState): Uint8Array; + toProtoMsg(message: _110.GenesisState): _110.GenesisStateProtoMsg; }; GenesisMetadata: { - encode(message: _109.GenesisMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _109.GenesisMetadata; - fromJSON(object: any): _109.GenesisMetadata; - toJSON(message: _109.GenesisMetadata): unknown; - fromPartial(object: Partial<_109.GenesisMetadata>): _109.GenesisMetadata; - fromAmino(object: _109.GenesisMetadataAmino): _109.GenesisMetadata; - toAmino(message: _109.GenesisMetadata): _109.GenesisMetadataAmino; - fromAminoMsg(object: _109.GenesisMetadataAminoMsg): _109.GenesisMetadata; - toAminoMsg(message: _109.GenesisMetadata): _109.GenesisMetadataAminoMsg; - fromProtoMsg(message: _109.GenesisMetadataProtoMsg): _109.GenesisMetadata; - toProto(message: _109.GenesisMetadata): Uint8Array; - toProtoMsg(message: _109.GenesisMetadata): _109.GenesisMetadataProtoMsg; + typeUrl: string; + encode(message: _110.GenesisMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _110.GenesisMetadata; + fromJSON(object: any): _110.GenesisMetadata; + toJSON(message: _110.GenesisMetadata): unknown; + fromPartial(object: Partial<_110.GenesisMetadata>): _110.GenesisMetadata; + fromAmino(object: _110.GenesisMetadataAmino): _110.GenesisMetadata; + toAmino(message: _110.GenesisMetadata): _110.GenesisMetadataAmino; + fromAminoMsg(object: _110.GenesisMetadataAminoMsg): _110.GenesisMetadata; + toAminoMsg(message: _110.GenesisMetadata): _110.GenesisMetadataAminoMsg; + fromProtoMsg(message: _110.GenesisMetadataProtoMsg): _110.GenesisMetadata; + toProto(message: _110.GenesisMetadata): Uint8Array; + toProtoMsg(message: _110.GenesisMetadata): _110.GenesisMetadataProtoMsg; }; IdentifiedGenesisMetadata: { - encode(message: _109.IdentifiedGenesisMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _109.IdentifiedGenesisMetadata; - fromJSON(object: any): _109.IdentifiedGenesisMetadata; - toJSON(message: _109.IdentifiedGenesisMetadata): unknown; - fromPartial(object: Partial<_109.IdentifiedGenesisMetadata>): _109.IdentifiedGenesisMetadata; - fromAmino(object: _109.IdentifiedGenesisMetadataAmino): _109.IdentifiedGenesisMetadata; - toAmino(message: _109.IdentifiedGenesisMetadata): _109.IdentifiedGenesisMetadataAmino; - fromAminoMsg(object: _109.IdentifiedGenesisMetadataAminoMsg): _109.IdentifiedGenesisMetadata; - toAminoMsg(message: _109.IdentifiedGenesisMetadata): _109.IdentifiedGenesisMetadataAminoMsg; - fromProtoMsg(message: _109.IdentifiedGenesisMetadataProtoMsg): _109.IdentifiedGenesisMetadata; - toProto(message: _109.IdentifiedGenesisMetadata): Uint8Array; - toProtoMsg(message: _109.IdentifiedGenesisMetadata): _109.IdentifiedGenesisMetadataProtoMsg; + typeUrl: string; + encode(message: _110.IdentifiedGenesisMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _110.IdentifiedGenesisMetadata; + fromJSON(object: any): _110.IdentifiedGenesisMetadata; + toJSON(message: _110.IdentifiedGenesisMetadata): unknown; + fromPartial(object: Partial<_110.IdentifiedGenesisMetadata>): _110.IdentifiedGenesisMetadata; + fromAmino(object: _110.IdentifiedGenesisMetadataAmino): _110.IdentifiedGenesisMetadata; + toAmino(message: _110.IdentifiedGenesisMetadata): _110.IdentifiedGenesisMetadataAmino; + fromAminoMsg(object: _110.IdentifiedGenesisMetadataAminoMsg): _110.IdentifiedGenesisMetadata; + toAminoMsg(message: _110.IdentifiedGenesisMetadata): _110.IdentifiedGenesisMetadataAminoMsg; + fromProtoMsg(message: _110.IdentifiedGenesisMetadataProtoMsg): _110.IdentifiedGenesisMetadata; + toProto(message: _110.IdentifiedGenesisMetadata): Uint8Array; + toProtoMsg(message: _110.IdentifiedGenesisMetadata): _110.IdentifiedGenesisMetadataProtoMsg; }; IdentifiedClientState: { - encode(message: _108.IdentifiedClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.IdentifiedClientState; - fromJSON(object: any): _108.IdentifiedClientState; - toJSON(message: _108.IdentifiedClientState): unknown; - fromPartial(object: Partial<_108.IdentifiedClientState>): _108.IdentifiedClientState; - fromAmino(object: _108.IdentifiedClientStateAmino): _108.IdentifiedClientState; - toAmino(message: _108.IdentifiedClientState): _108.IdentifiedClientStateAmino; - fromAminoMsg(object: _108.IdentifiedClientStateAminoMsg): _108.IdentifiedClientState; - toAminoMsg(message: _108.IdentifiedClientState): _108.IdentifiedClientStateAminoMsg; - fromProtoMsg(message: _108.IdentifiedClientStateProtoMsg): _108.IdentifiedClientState; - toProto(message: _108.IdentifiedClientState): Uint8Array; - toProtoMsg(message: _108.IdentifiedClientState): _108.IdentifiedClientStateProtoMsg; + typeUrl: string; + encode(message: _109.IdentifiedClientState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.IdentifiedClientState; + fromJSON(object: any): _109.IdentifiedClientState; + toJSON(message: _109.IdentifiedClientState): unknown; + fromPartial(object: Partial<_109.IdentifiedClientState>): _109.IdentifiedClientState; + fromAmino(object: _109.IdentifiedClientStateAmino): _109.IdentifiedClientState; + toAmino(message: _109.IdentifiedClientState): _109.IdentifiedClientStateAmino; + fromAminoMsg(object: _109.IdentifiedClientStateAminoMsg): _109.IdentifiedClientState; + toAminoMsg(message: _109.IdentifiedClientState): _109.IdentifiedClientStateAminoMsg; + fromProtoMsg(message: _109.IdentifiedClientStateProtoMsg): _109.IdentifiedClientState; + toProto(message: _109.IdentifiedClientState): Uint8Array; + toProtoMsg(message: _109.IdentifiedClientState): _109.IdentifiedClientStateProtoMsg; }; ConsensusStateWithHeight: { - encode(message: _108.ConsensusStateWithHeight, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.ConsensusStateWithHeight; - fromJSON(object: any): _108.ConsensusStateWithHeight; - toJSON(message: _108.ConsensusStateWithHeight): unknown; - fromPartial(object: Partial<_108.ConsensusStateWithHeight>): _108.ConsensusStateWithHeight; - fromAmino(object: _108.ConsensusStateWithHeightAmino): _108.ConsensusStateWithHeight; - toAmino(message: _108.ConsensusStateWithHeight): _108.ConsensusStateWithHeightAmino; - fromAminoMsg(object: _108.ConsensusStateWithHeightAminoMsg): _108.ConsensusStateWithHeight; - toAminoMsg(message: _108.ConsensusStateWithHeight): _108.ConsensusStateWithHeightAminoMsg; - fromProtoMsg(message: _108.ConsensusStateWithHeightProtoMsg): _108.ConsensusStateWithHeight; - toProto(message: _108.ConsensusStateWithHeight): Uint8Array; - toProtoMsg(message: _108.ConsensusStateWithHeight): _108.ConsensusStateWithHeightProtoMsg; + typeUrl: string; + encode(message: _109.ConsensusStateWithHeight, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.ConsensusStateWithHeight; + fromJSON(object: any): _109.ConsensusStateWithHeight; + toJSON(message: _109.ConsensusStateWithHeight): unknown; + fromPartial(object: Partial<_109.ConsensusStateWithHeight>): _109.ConsensusStateWithHeight; + fromAmino(object: _109.ConsensusStateWithHeightAmino): _109.ConsensusStateWithHeight; + toAmino(message: _109.ConsensusStateWithHeight): _109.ConsensusStateWithHeightAmino; + fromAminoMsg(object: _109.ConsensusStateWithHeightAminoMsg): _109.ConsensusStateWithHeight; + toAminoMsg(message: _109.ConsensusStateWithHeight): _109.ConsensusStateWithHeightAminoMsg; + fromProtoMsg(message: _109.ConsensusStateWithHeightProtoMsg): _109.ConsensusStateWithHeight; + toProto(message: _109.ConsensusStateWithHeight): Uint8Array; + toProtoMsg(message: _109.ConsensusStateWithHeight): _109.ConsensusStateWithHeightProtoMsg; }; ClientConsensusStates: { - encode(message: _108.ClientConsensusStates, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.ClientConsensusStates; - fromJSON(object: any): _108.ClientConsensusStates; - toJSON(message: _108.ClientConsensusStates): unknown; - fromPartial(object: Partial<_108.ClientConsensusStates>): _108.ClientConsensusStates; - fromAmino(object: _108.ClientConsensusStatesAmino): _108.ClientConsensusStates; - toAmino(message: _108.ClientConsensusStates): _108.ClientConsensusStatesAmino; - fromAminoMsg(object: _108.ClientConsensusStatesAminoMsg): _108.ClientConsensusStates; - toAminoMsg(message: _108.ClientConsensusStates): _108.ClientConsensusStatesAminoMsg; - fromProtoMsg(message: _108.ClientConsensusStatesProtoMsg): _108.ClientConsensusStates; - toProto(message: _108.ClientConsensusStates): Uint8Array; - toProtoMsg(message: _108.ClientConsensusStates): _108.ClientConsensusStatesProtoMsg; + typeUrl: string; + encode(message: _109.ClientConsensusStates, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.ClientConsensusStates; + fromJSON(object: any): _109.ClientConsensusStates; + toJSON(message: _109.ClientConsensusStates): unknown; + fromPartial(object: Partial<_109.ClientConsensusStates>): _109.ClientConsensusStates; + fromAmino(object: _109.ClientConsensusStatesAmino): _109.ClientConsensusStates; + toAmino(message: _109.ClientConsensusStates): _109.ClientConsensusStatesAmino; + fromAminoMsg(object: _109.ClientConsensusStatesAminoMsg): _109.ClientConsensusStates; + toAminoMsg(message: _109.ClientConsensusStates): _109.ClientConsensusStatesAminoMsg; + fromProtoMsg(message: _109.ClientConsensusStatesProtoMsg): _109.ClientConsensusStates; + toProto(message: _109.ClientConsensusStates): Uint8Array; + toProtoMsg(message: _109.ClientConsensusStates): _109.ClientConsensusStatesProtoMsg; }; ClientUpdateProposal: { - encode(message: _108.ClientUpdateProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.ClientUpdateProposal; - fromJSON(object: any): _108.ClientUpdateProposal; - toJSON(message: _108.ClientUpdateProposal): unknown; - fromPartial(object: Partial<_108.ClientUpdateProposal>): _108.ClientUpdateProposal; - fromAmino(object: _108.ClientUpdateProposalAmino): _108.ClientUpdateProposal; - toAmino(message: _108.ClientUpdateProposal): _108.ClientUpdateProposalAmino; - fromAminoMsg(object: _108.ClientUpdateProposalAminoMsg): _108.ClientUpdateProposal; - toAminoMsg(message: _108.ClientUpdateProposal): _108.ClientUpdateProposalAminoMsg; - fromProtoMsg(message: _108.ClientUpdateProposalProtoMsg): _108.ClientUpdateProposal; - toProto(message: _108.ClientUpdateProposal): Uint8Array; - toProtoMsg(message: _108.ClientUpdateProposal): _108.ClientUpdateProposalProtoMsg; + typeUrl: string; + encode(message: _109.ClientUpdateProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.ClientUpdateProposal; + fromJSON(object: any): _109.ClientUpdateProposal; + toJSON(message: _109.ClientUpdateProposal): unknown; + fromPartial(object: Partial<_109.ClientUpdateProposal>): _109.ClientUpdateProposal; + fromAmino(object: _109.ClientUpdateProposalAmino): _109.ClientUpdateProposal; + toAmino(message: _109.ClientUpdateProposal): _109.ClientUpdateProposalAmino; + fromAminoMsg(object: _109.ClientUpdateProposalAminoMsg): _109.ClientUpdateProposal; + toAminoMsg(message: _109.ClientUpdateProposal): _109.ClientUpdateProposalAminoMsg; + fromProtoMsg(message: _109.ClientUpdateProposalProtoMsg): _109.ClientUpdateProposal; + toProto(message: _109.ClientUpdateProposal): Uint8Array; + toProtoMsg(message: _109.ClientUpdateProposal): _109.ClientUpdateProposalProtoMsg; }; UpgradeProposal: { - encode(message: _108.UpgradeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.UpgradeProposal; - fromJSON(object: any): _108.UpgradeProposal; - toJSON(message: _108.UpgradeProposal): unknown; - fromPartial(object: Partial<_108.UpgradeProposal>): _108.UpgradeProposal; - fromAmino(object: _108.UpgradeProposalAmino): _108.UpgradeProposal; - toAmino(message: _108.UpgradeProposal): _108.UpgradeProposalAmino; - fromAminoMsg(object: _108.UpgradeProposalAminoMsg): _108.UpgradeProposal; - toAminoMsg(message: _108.UpgradeProposal): _108.UpgradeProposalAminoMsg; - fromProtoMsg(message: _108.UpgradeProposalProtoMsg): _108.UpgradeProposal; - toProto(message: _108.UpgradeProposal): Uint8Array; - toProtoMsg(message: _108.UpgradeProposal): _108.UpgradeProposalProtoMsg; + typeUrl: string; + encode(message: _109.UpgradeProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.UpgradeProposal; + fromJSON(object: any): _109.UpgradeProposal; + toJSON(message: _109.UpgradeProposal): unknown; + fromPartial(object: Partial<_109.UpgradeProposal>): _109.UpgradeProposal; + fromAmino(object: _109.UpgradeProposalAmino): _109.UpgradeProposal; + toAmino(message: _109.UpgradeProposal): _109.UpgradeProposalAmino; + fromAminoMsg(object: _109.UpgradeProposalAminoMsg): _109.UpgradeProposal; + toAminoMsg(message: _109.UpgradeProposal): _109.UpgradeProposalAminoMsg; + fromProtoMsg(message: _109.UpgradeProposalProtoMsg): _109.UpgradeProposal; + toProto(message: _109.UpgradeProposal): Uint8Array; + toProtoMsg(message: _109.UpgradeProposal): _109.UpgradeProposalProtoMsg; }; Height: { - encode(message: _108.Height, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.Height; - fromJSON(object: any): _108.Height; - toJSON(message: _108.Height): unknown; - fromPartial(object: Partial<_108.Height>): _108.Height; - fromAmino(object: _108.HeightAmino): _108.Height; - toAmino(message: _108.Height): _108.HeightAmino; - fromAminoMsg(object: _108.HeightAminoMsg): _108.Height; - toAminoMsg(message: _108.Height): _108.HeightAminoMsg; - fromProtoMsg(message: _108.HeightProtoMsg): _108.Height; - toProto(message: _108.Height): Uint8Array; - toProtoMsg(message: _108.Height): _108.HeightProtoMsg; + typeUrl: string; + encode(message: _109.Height, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.Height; + fromJSON(object: any): _109.Height; + toJSON(message: _109.Height): unknown; + fromPartial(object: Partial<_109.Height>): _109.Height; + fromAmino(object: _109.HeightAmino): _109.Height; + toAmino(message: _109.Height): _109.HeightAmino; + fromAminoMsg(object: _109.HeightAminoMsg): _109.Height; + toAminoMsg(message: _109.Height): _109.HeightAminoMsg; + fromProtoMsg(message: _109.HeightProtoMsg): _109.Height; + toProto(message: _109.Height): Uint8Array; + toProtoMsg(message: _109.Height): _109.HeightProtoMsg; }; Params: { - encode(message: _108.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _108.Params; - fromJSON(object: any): _108.Params; - toJSON(message: _108.Params): unknown; - fromPartial(object: Partial<_108.Params>): _108.Params; - fromAmino(object: _108.ParamsAmino): _108.Params; - toAmino(message: _108.Params): _108.ParamsAmino; - fromAminoMsg(object: _108.ParamsAminoMsg): _108.Params; - toAminoMsg(message: _108.Params): _108.ParamsAminoMsg; - fromProtoMsg(message: _108.ParamsProtoMsg): _108.Params; - toProto(message: _108.Params): Uint8Array; - toProtoMsg(message: _108.Params): _108.ParamsProtoMsg; + typeUrl: string; + encode(message: _109.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _109.Params; + fromJSON(object: any): _109.Params; + toJSON(message: _109.Params): unknown; + fromPartial(object: Partial<_109.Params>): _109.Params; + fromAmino(object: _109.ParamsAmino): _109.Params; + toAmino(message: _109.Params): _109.ParamsAmino; + fromAminoMsg(object: _109.ParamsAminoMsg): _109.Params; + toAminoMsg(message: _109.Params): _109.ParamsAminoMsg; + fromProtoMsg(message: _109.ParamsProtoMsg): _109.Params; + toProto(message: _109.Params): Uint8Array; + toProtoMsg(message: _109.Params): _109.ParamsProtoMsg; }; }; } @@ -969,12 +1020,12 @@ export declare namespace ibc { ibc: { applications: { transfer: { - v1: _238.MsgClientImpl; + v1: _239.MsgClientImpl; }; }; core: { client: { - v1: _239.MsgClientImpl; + v1: _240.MsgClientImpl; }; }; }; @@ -1176,26 +1227,26 @@ export declare namespace ibc { applications: { transfer: { v1: { - denomTrace(request: _105.QueryDenomTraceRequest): Promise<_105.QueryDenomTraceResponse>; - denomTraces(request?: _105.QueryDenomTracesRequest | undefined): Promise<_105.QueryDenomTracesResponse>; - params(request?: _105.QueryParamsRequest | undefined): Promise<_105.QueryParamsResponse>; - denomHash(request: _105.QueryDenomHashRequest): Promise<_105.QueryDenomHashResponse>; - escrowAddress(request: _105.QueryEscrowAddressRequest): Promise<_105.QueryEscrowAddressResponse>; + denomTrace(request: _106.QueryDenomTraceRequest): Promise<_106.QueryDenomTraceResponse>; + denomTraces(request?: _106.QueryDenomTracesRequest | undefined): Promise<_106.QueryDenomTracesResponse>; + params(request?: _106.QueryParamsRequest | undefined): Promise<_106.QueryParamsResponse>; + denomHash(request: _106.QueryDenomHashRequest): Promise<_106.QueryDenomHashResponse>; + escrowAddress(request: _106.QueryEscrowAddressRequest): Promise<_106.QueryEscrowAddressResponse>; }; }; }; core: { client: { v1: { - clientState(request: _110.QueryClientStateRequest): Promise<_110.QueryClientStateResponse>; - clientStates(request?: _110.QueryClientStatesRequest | undefined): Promise<_110.QueryClientStatesResponse>; - consensusState(request: _110.QueryConsensusStateRequest): Promise<_110.QueryConsensusStateResponse>; - consensusStates(request: _110.QueryConsensusStatesRequest): Promise<_110.QueryConsensusStatesResponse>; - consensusStateHeights(request: _110.QueryConsensusStateHeightsRequest): Promise<_110.QueryConsensusStateHeightsResponse>; - clientStatus(request: _110.QueryClientStatusRequest): Promise<_110.QueryClientStatusResponse>; - clientParams(request?: _110.QueryClientParamsRequest | undefined): Promise<_110.QueryClientParamsResponse>; - upgradedClientState(request?: _110.QueryUpgradedClientStateRequest | undefined): Promise<_110.QueryUpgradedClientStateResponse>; - upgradedConsensusState(request?: _110.QueryUpgradedConsensusStateRequest | undefined): Promise<_110.QueryUpgradedConsensusStateResponse>; + clientState(request: _111.QueryClientStateRequest): Promise<_111.QueryClientStateResponse>; + clientStates(request?: _111.QueryClientStatesRequest | undefined): Promise<_111.QueryClientStatesResponse>; + consensusState(request: _111.QueryConsensusStateRequest): Promise<_111.QueryConsensusStateResponse>; + consensusStates(request: _111.QueryConsensusStatesRequest): Promise<_111.QueryConsensusStatesResponse>; + consensusStateHeights(request: _111.QueryConsensusStateHeightsRequest): Promise<_111.QueryConsensusStateHeightsResponse>; + clientStatus(request: _111.QueryClientStatusRequest): Promise<_111.QueryClientStatusResponse>; + clientParams(request?: _111.QueryClientParamsRequest | undefined): Promise<_111.QueryClientParamsResponse>; + upgradedClientState(request?: _111.QueryUpgradedClientStateRequest | undefined): Promise<_111.QueryUpgradedClientStateResponse>; + upgradedConsensusState(request?: _111.QueryUpgradedConsensusStateRequest | undefined): Promise<_111.QueryUpgradedConsensusStateResponse>; }; }; }; @@ -1263,12 +1314,12 @@ export declare namespace ibc { ibc: { applications: { transfer: { - v1: _234.LCDQueryClient; + v1: _235.LCDQueryClient; }; }; core: { client: { - v1: _235.LCDQueryClient; + v1: _236.LCDQueryClient; }; }; }; diff --git a/packages/api/types/codegen/ibc/core/client/v1/client.d.ts b/packages/api/types/codegen/ibc/core/client/v1/client.d.ts index c2c50b4..900d2cb 100644 --- a/packages/api/types/codegen/ibc/core/client/v1/client.d.ts +++ b/packages/api/types/codegen/ibc/core/client/v1/client.d.ts @@ -1,7 +1,6 @@ import { Any, AnyAmino, AnySDKType } from "../../../../google/protobuf/any"; import { Plan, PlanAmino, PlanSDKType } from "../../../../cosmos/upgrade/v1beta1/upgrade"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * IdentifiedClientState defines a client state with an additional client * identifier field. @@ -10,7 +9,7 @@ export interface IdentifiedClientState { /** client identifier */ clientId: string; /** client state */ - clientState: Any; + clientState?: Any; } export interface IdentifiedClientStateProtoMsg { typeUrl: "/ibc.core.client.v1.IdentifiedClientState"; @@ -22,7 +21,7 @@ export interface IdentifiedClientStateProtoMsg { */ export interface IdentifiedClientStateAmino { /** client identifier */ - client_id: string; + client_id?: string; /** client state */ client_state?: AnyAmino; } @@ -36,7 +35,7 @@ export interface IdentifiedClientStateAminoMsg { */ export interface IdentifiedClientStateSDKType { client_id: string; - client_state: AnySDKType; + client_state?: AnySDKType; } /** * ConsensusStateWithHeight defines a consensus state with an additional height @@ -46,7 +45,7 @@ export interface ConsensusStateWithHeight { /** consensus state height */ height: Height; /** consensus state */ - consensusState: Any; + consensusState?: Any; } export interface ConsensusStateWithHeightProtoMsg { typeUrl: "/ibc.core.client.v1.ConsensusStateWithHeight"; @@ -72,7 +71,7 @@ export interface ConsensusStateWithHeightAminoMsg { */ export interface ConsensusStateWithHeightSDKType { height: HeightSDKType; - consensus_state: AnySDKType; + consensus_state?: AnySDKType; } /** * ClientConsensusStates defines all the stored consensus states for a given @@ -94,9 +93,9 @@ export interface ClientConsensusStatesProtoMsg { */ export interface ClientConsensusStatesAmino { /** client identifier */ - client_id: string; + client_id?: string; /** consensus states and their heights associated with the client */ - consensus_states: ConsensusStateWithHeightAmino[]; + consensus_states?: ConsensusStateWithHeightAmino[]; } export interface ClientConsensusStatesAminoMsg { type: "cosmos-sdk/ClientConsensusStates"; @@ -117,7 +116,7 @@ export interface ClientConsensusStatesSDKType { * chain parameters (with exception to latest height, frozen height, and chain-id). */ export interface ClientUpdateProposal { - $typeUrl?: string; + $typeUrl?: "/ibc.core.client.v1.ClientUpdateProposal"; /** the title of the update proposal */ title: string; /** the description of the proposal */ @@ -142,16 +141,16 @@ export interface ClientUpdateProposalProtoMsg { */ export interface ClientUpdateProposalAmino { /** the title of the update proposal */ - title: string; + title?: string; /** the description of the proposal */ - description: string; + description?: string; /** the client identifier for the client to be updated if the proposal passes */ - subject_client_id: string; + subject_client_id?: string; /** * the substitute client identifier for the client standing in for the subject * client */ - substitute_client_id: string; + substitute_client_id?: string; } export interface ClientUpdateProposalAminoMsg { type: "cosmos-sdk/ClientUpdateProposal"; @@ -164,7 +163,7 @@ export interface ClientUpdateProposalAminoMsg { * chain parameters (with exception to latest height, frozen height, and chain-id). */ export interface ClientUpdateProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/ibc.core.client.v1.ClientUpdateProposal"; title: string; description: string; subject_client_id: string; @@ -175,7 +174,7 @@ export interface ClientUpdateProposalSDKType { * upgrade. */ export interface UpgradeProposal { - $typeUrl?: string; + $typeUrl?: "/ibc.core.client.v1.UpgradeProposal"; title: string; description: string; plan: Plan; @@ -187,7 +186,7 @@ export interface UpgradeProposal { * of the chain. This will allow IBC connections to persist smoothly across * planned chain upgrades */ - upgradedClientState: Any; + upgradedClientState?: Any; } export interface UpgradeProposalProtoMsg { typeUrl: "/ibc.core.client.v1.UpgradeProposal"; @@ -198,8 +197,8 @@ export interface UpgradeProposalProtoMsg { * upgrade. */ export interface UpgradeProposalAmino { - title: string; - description: string; + title?: string; + description?: string; plan?: PlanAmino; /** * An UpgradedClientState must be provided to perform an IBC breaking upgrade. @@ -220,11 +219,11 @@ export interface UpgradeProposalAminoMsg { * upgrade. */ export interface UpgradeProposalSDKType { - $typeUrl?: string; + $typeUrl?: "/ibc.core.client.v1.UpgradeProposal"; title: string; description: string; plan: PlanSDKType; - upgraded_client_state: AnySDKType; + upgraded_client_state?: AnySDKType; } /** * Height is a monotonically increasing data type @@ -240,9 +239,9 @@ export interface UpgradeProposalSDKType { */ export interface Height { /** the revision that the client is currently on */ - revisionNumber: Long; + revisionNumber: bigint; /** the height within the given revision */ - revisionHeight: Long; + revisionHeight: bigint; } export interface HeightProtoMsg { typeUrl: "/ibc.core.client.v1.Height"; @@ -262,9 +261,9 @@ export interface HeightProtoMsg { */ export interface HeightAmino { /** the revision that the client is currently on */ - revision_number: string; + revision_number?: string; /** the height within the given revision */ - revision_height: string; + revision_height?: string; } export interface HeightAminoMsg { type: "cosmos-sdk/Height"; @@ -283,8 +282,8 @@ export interface HeightAminoMsg { * gets reset */ export interface HeightSDKType { - revision_number: Long; - revision_height: Long; + revision_number: bigint; + revision_height: bigint; } /** Params defines the set of IBC light client parameters. */ export interface Params { @@ -298,7 +297,7 @@ export interface ParamsProtoMsg { /** Params defines the set of IBC light client parameters. */ export interface ParamsAmino { /** allowed_clients defines the list of allowed client state types. */ - allowed_clients: string[]; + allowed_clients?: string[]; } export interface ParamsAminoMsg { type: "cosmos-sdk/Params"; @@ -309,8 +308,9 @@ export interface ParamsSDKType { allowed_clients: string[]; } export declare const IdentifiedClientState: { - encode(message: IdentifiedClientState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): IdentifiedClientState; + typeUrl: string; + encode(message: IdentifiedClientState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): IdentifiedClientState; fromJSON(object: any): IdentifiedClientState; toJSON(message: IdentifiedClientState): unknown; fromPartial(object: Partial): IdentifiedClientState; @@ -323,8 +323,9 @@ export declare const IdentifiedClientState: { toProtoMsg(message: IdentifiedClientState): IdentifiedClientStateProtoMsg; }; export declare const ConsensusStateWithHeight: { - encode(message: ConsensusStateWithHeight, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConsensusStateWithHeight; + typeUrl: string; + encode(message: ConsensusStateWithHeight, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConsensusStateWithHeight; fromJSON(object: any): ConsensusStateWithHeight; toJSON(message: ConsensusStateWithHeight): unknown; fromPartial(object: Partial): ConsensusStateWithHeight; @@ -337,8 +338,9 @@ export declare const ConsensusStateWithHeight: { toProtoMsg(message: ConsensusStateWithHeight): ConsensusStateWithHeightProtoMsg; }; export declare const ClientConsensusStates: { - encode(message: ClientConsensusStates, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClientConsensusStates; + typeUrl: string; + encode(message: ClientConsensusStates, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClientConsensusStates; fromJSON(object: any): ClientConsensusStates; toJSON(message: ClientConsensusStates): unknown; fromPartial(object: Partial): ClientConsensusStates; @@ -351,8 +353,9 @@ export declare const ClientConsensusStates: { toProtoMsg(message: ClientConsensusStates): ClientConsensusStatesProtoMsg; }; export declare const ClientUpdateProposal: { - encode(message: ClientUpdateProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClientUpdateProposal; + typeUrl: string; + encode(message: ClientUpdateProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClientUpdateProposal; fromJSON(object: any): ClientUpdateProposal; toJSON(message: ClientUpdateProposal): unknown; fromPartial(object: Partial): ClientUpdateProposal; @@ -365,8 +368,9 @@ export declare const ClientUpdateProposal: { toProtoMsg(message: ClientUpdateProposal): ClientUpdateProposalProtoMsg; }; export declare const UpgradeProposal: { - encode(message: UpgradeProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): UpgradeProposal; + typeUrl: string; + encode(message: UpgradeProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): UpgradeProposal; fromJSON(object: any): UpgradeProposal; toJSON(message: UpgradeProposal): unknown; fromPartial(object: Partial): UpgradeProposal; @@ -379,8 +383,9 @@ export declare const UpgradeProposal: { toProtoMsg(message: UpgradeProposal): UpgradeProposalProtoMsg; }; export declare const Height: { - encode(message: Height, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Height; + typeUrl: string; + encode(message: Height, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Height; fromJSON(object: any): Height; toJSON(message: Height): unknown; fromPartial(object: Partial): Height; @@ -393,8 +398,9 @@ export declare const Height: { toProtoMsg(message: Height): HeightProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; diff --git a/packages/api/types/codegen/ibc/core/client/v1/genesis.d.ts b/packages/api/types/codegen/ibc/core/client/v1/genesis.d.ts index c9847f2..b491cdf 100644 --- a/packages/api/types/codegen/ibc/core/client/v1/genesis.d.ts +++ b/packages/api/types/codegen/ibc/core/client/v1/genesis.d.ts @@ -1,6 +1,5 @@ import { IdentifiedClientState, IdentifiedClientStateAmino, IdentifiedClientStateSDKType, ClientConsensusStates, ClientConsensusStatesAmino, ClientConsensusStatesSDKType, Params, ParamsAmino, ParamsSDKType } from "./client"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** GenesisState defines the ibc client submodule's genesis state. */ export interface GenesisState { /** client states with their corresponding identifiers */ @@ -13,7 +12,7 @@ export interface GenesisState { /** create localhost on initialization */ createLocalhost: boolean; /** the sequence for the next generated client identifier */ - nextClientSequence: Long; + nextClientSequence: bigint; } export interface GenesisStateProtoMsg { typeUrl: "/ibc.core.client.v1.GenesisState"; @@ -22,16 +21,16 @@ export interface GenesisStateProtoMsg { /** GenesisState defines the ibc client submodule's genesis state. */ export interface GenesisStateAmino { /** client states with their corresponding identifiers */ - clients: IdentifiedClientStateAmino[]; + clients?: IdentifiedClientStateAmino[]; /** consensus states from each client */ - clients_consensus: ClientConsensusStatesAmino[]; + clients_consensus?: ClientConsensusStatesAmino[]; /** metadata from each client */ - clients_metadata: IdentifiedGenesisMetadataAmino[]; + clients_metadata?: IdentifiedGenesisMetadataAmino[]; params?: ParamsAmino; /** create localhost on initialization */ - create_localhost: boolean; + create_localhost?: boolean; /** the sequence for the next generated client identifier */ - next_client_sequence: string; + next_client_sequence?: string; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; @@ -44,7 +43,7 @@ export interface GenesisStateSDKType { clients_metadata: IdentifiedGenesisMetadataSDKType[]; params: ParamsSDKType; create_localhost: boolean; - next_client_sequence: Long; + next_client_sequence: bigint; } /** * GenesisMetadata defines the genesis type for metadata that clients may return @@ -66,9 +65,9 @@ export interface GenesisMetadataProtoMsg { */ export interface GenesisMetadataAmino { /** store key of metadata without clientID-prefix */ - key: Uint8Array; + key?: string; /** metadata value */ - value: Uint8Array; + value?: string; } export interface GenesisMetadataAminoMsg { type: "cosmos-sdk/GenesisMetadata"; @@ -99,8 +98,8 @@ export interface IdentifiedGenesisMetadataProtoMsg { * client id. */ export interface IdentifiedGenesisMetadataAmino { - client_id: string; - client_metadata: GenesisMetadataAmino[]; + client_id?: string; + client_metadata?: GenesisMetadataAmino[]; } export interface IdentifiedGenesisMetadataAminoMsg { type: "cosmos-sdk/IdentifiedGenesisMetadata"; @@ -115,8 +114,9 @@ export interface IdentifiedGenesisMetadataSDKType { client_metadata: GenesisMetadataSDKType[]; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; @@ -129,8 +129,9 @@ export declare const GenesisState: { toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const GenesisMetadata: { - encode(message: GenesisMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisMetadata; + typeUrl: string; + encode(message: GenesisMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisMetadata; fromJSON(object: any): GenesisMetadata; toJSON(message: GenesisMetadata): unknown; fromPartial(object: Partial): GenesisMetadata; @@ -143,8 +144,9 @@ export declare const GenesisMetadata: { toProtoMsg(message: GenesisMetadata): GenesisMetadataProtoMsg; }; export declare const IdentifiedGenesisMetadata: { - encode(message: IdentifiedGenesisMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): IdentifiedGenesisMetadata; + typeUrl: string; + encode(message: IdentifiedGenesisMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): IdentifiedGenesisMetadata; fromJSON(object: any): IdentifiedGenesisMetadata; toJSON(message: IdentifiedGenesisMetadata): unknown; fromPartial(object: Partial): IdentifiedGenesisMetadata; diff --git a/packages/api/types/codegen/ibc/core/client/v1/query.d.ts b/packages/api/types/codegen/ibc/core/client/v1/query.d.ts index 2fbe8e6..e64f314 100644 --- a/packages/api/types/codegen/ibc/core/client/v1/query.d.ts +++ b/packages/api/types/codegen/ibc/core/client/v1/query.d.ts @@ -1,8 +1,7 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../../cosmos/base/query/v1beta1/pagination"; import { Any, AnyAmino, AnySDKType } from "../../../../google/protobuf/any"; import { Height, HeightAmino, HeightSDKType, IdentifiedClientState, IdentifiedClientStateAmino, IdentifiedClientStateSDKType, ConsensusStateWithHeight, ConsensusStateWithHeightAmino, ConsensusStateWithHeightSDKType, Params, ParamsAmino, ParamsSDKType } from "./client"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * QueryClientStateRequest is the request type for the Query/ClientState RPC * method @@ -21,7 +20,7 @@ export interface QueryClientStateRequestProtoMsg { */ export interface QueryClientStateRequestAmino { /** client state unique identifier */ - client_id: string; + client_id?: string; } export interface QueryClientStateRequestAminoMsg { type: "cosmos-sdk/QueryClientStateRequest"; @@ -41,7 +40,7 @@ export interface QueryClientStateRequestSDKType { */ export interface QueryClientStateResponse { /** client state associated with the request identifier */ - clientState: Any; + clientState?: Any; /** merkle proof of existence */ proof: Uint8Array; /** height at which the proof was retrieved */ @@ -60,7 +59,7 @@ export interface QueryClientStateResponseAmino { /** client state associated with the request identifier */ client_state?: AnyAmino; /** merkle proof of existence */ - proof: Uint8Array; + proof?: string; /** height at which the proof was retrieved */ proof_height?: HeightAmino; } @@ -74,7 +73,7 @@ export interface QueryClientStateResponseAminoMsg { * which the proof was retrieved. */ export interface QueryClientStateResponseSDKType { - client_state: AnySDKType; + client_state?: AnySDKType; proof: Uint8Array; proof_height: HeightSDKType; } @@ -84,7 +83,7 @@ export interface QueryClientStateResponseSDKType { */ export interface QueryClientStatesRequest { /** pagination request */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryClientStatesRequestProtoMsg { typeUrl: "/ibc.core.client.v1.QueryClientStatesRequest"; @@ -107,7 +106,7 @@ export interface QueryClientStatesRequestAminoMsg { * method */ export interface QueryClientStatesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryClientStatesResponse is the response type for the Query/ClientStates RPC @@ -117,7 +116,7 @@ export interface QueryClientStatesResponse { /** list of stored ClientStates of the chain. */ clientStates: IdentifiedClientState[]; /** pagination response */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryClientStatesResponseProtoMsg { typeUrl: "/ibc.core.client.v1.QueryClientStatesResponse"; @@ -129,7 +128,7 @@ export interface QueryClientStatesResponseProtoMsg { */ export interface QueryClientStatesResponseAmino { /** list of stored ClientStates of the chain. */ - client_states: IdentifiedClientStateAmino[]; + client_states?: IdentifiedClientStateAmino[]; /** pagination response */ pagination?: PageResponseAmino; } @@ -143,7 +142,7 @@ export interface QueryClientStatesResponseAminoMsg { */ export interface QueryClientStatesResponseSDKType { client_states: IdentifiedClientStateSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryConsensusStateRequest is the request type for the Query/ConsensusState @@ -154,9 +153,9 @@ export interface QueryConsensusStateRequest { /** client identifier */ clientId: string; /** consensus state revision number */ - revisionNumber: Long; + revisionNumber: bigint; /** consensus state revision height */ - revisionHeight: Long; + revisionHeight: bigint; /** * latest_height overrrides the height field and queries the latest stored * ConsensusState @@ -174,16 +173,16 @@ export interface QueryConsensusStateRequestProtoMsg { */ export interface QueryConsensusStateRequestAmino { /** client identifier */ - client_id: string; + client_id?: string; /** consensus state revision number */ - revision_number: string; + revision_number?: string; /** consensus state revision height */ - revision_height: string; + revision_height?: string; /** * latest_height overrrides the height field and queries the latest stored * ConsensusState */ - latest_height: boolean; + latest_height?: boolean; } export interface QueryConsensusStateRequestAminoMsg { type: "cosmos-sdk/QueryConsensusStateRequest"; @@ -196,8 +195,8 @@ export interface QueryConsensusStateRequestAminoMsg { */ export interface QueryConsensusStateRequestSDKType { client_id: string; - revision_number: Long; - revision_height: Long; + revision_number: bigint; + revision_height: bigint; latest_height: boolean; } /** @@ -206,7 +205,7 @@ export interface QueryConsensusStateRequestSDKType { */ export interface QueryConsensusStateResponse { /** consensus state associated with the client identifier at the given height */ - consensusState: Any; + consensusState?: Any; /** merkle proof of existence */ proof: Uint8Array; /** height at which the proof was retrieved */ @@ -224,7 +223,7 @@ export interface QueryConsensusStateResponseAmino { /** consensus state associated with the client identifier at the given height */ consensus_state?: AnyAmino; /** merkle proof of existence */ - proof: Uint8Array; + proof?: string; /** height at which the proof was retrieved */ proof_height?: HeightAmino; } @@ -237,7 +236,7 @@ export interface QueryConsensusStateResponseAminoMsg { * RPC method */ export interface QueryConsensusStateResponseSDKType { - consensus_state: AnySDKType; + consensus_state?: AnySDKType; proof: Uint8Array; proof_height: HeightSDKType; } @@ -249,7 +248,7 @@ export interface QueryConsensusStatesRequest { /** client identifier */ clientId: string; /** pagination request */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryConsensusStatesRequestProtoMsg { typeUrl: "/ibc.core.client.v1.QueryConsensusStatesRequest"; @@ -261,7 +260,7 @@ export interface QueryConsensusStatesRequestProtoMsg { */ export interface QueryConsensusStatesRequestAmino { /** client identifier */ - client_id: string; + client_id?: string; /** pagination request */ pagination?: PageRequestAmino; } @@ -275,7 +274,7 @@ export interface QueryConsensusStatesRequestAminoMsg { */ export interface QueryConsensusStatesRequestSDKType { client_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryConsensusStatesResponse is the response type for the @@ -285,7 +284,7 @@ export interface QueryConsensusStatesResponse { /** consensus states associated with the identifier */ consensusStates: ConsensusStateWithHeight[]; /** pagination response */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryConsensusStatesResponseProtoMsg { typeUrl: "/ibc.core.client.v1.QueryConsensusStatesResponse"; @@ -297,7 +296,7 @@ export interface QueryConsensusStatesResponseProtoMsg { */ export interface QueryConsensusStatesResponseAmino { /** consensus states associated with the identifier */ - consensus_states: ConsensusStateWithHeightAmino[]; + consensus_states?: ConsensusStateWithHeightAmino[]; /** pagination response */ pagination?: PageResponseAmino; } @@ -311,7 +310,7 @@ export interface QueryConsensusStatesResponseAminoMsg { */ export interface QueryConsensusStatesResponseSDKType { consensus_states: ConsensusStateWithHeightSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights @@ -321,7 +320,7 @@ export interface QueryConsensusStateHeightsRequest { /** client identifier */ clientId: string; /** pagination request */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryConsensusStateHeightsRequestProtoMsg { typeUrl: "/ibc.core.client.v1.QueryConsensusStateHeightsRequest"; @@ -333,7 +332,7 @@ export interface QueryConsensusStateHeightsRequestProtoMsg { */ export interface QueryConsensusStateHeightsRequestAmino { /** client identifier */ - client_id: string; + client_id?: string; /** pagination request */ pagination?: PageRequestAmino; } @@ -347,7 +346,7 @@ export interface QueryConsensusStateHeightsRequestAminoMsg { */ export interface QueryConsensusStateHeightsRequestSDKType { client_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryConsensusStateHeightsResponse is the response type for the @@ -357,7 +356,7 @@ export interface QueryConsensusStateHeightsResponse { /** consensus state heights */ consensusStateHeights: Height[]; /** pagination response */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryConsensusStateHeightsResponseProtoMsg { typeUrl: "/ibc.core.client.v1.QueryConsensusStateHeightsResponse"; @@ -369,7 +368,7 @@ export interface QueryConsensusStateHeightsResponseProtoMsg { */ export interface QueryConsensusStateHeightsResponseAmino { /** consensus state heights */ - consensus_state_heights: HeightAmino[]; + consensus_state_heights?: HeightAmino[]; /** pagination response */ pagination?: PageResponseAmino; } @@ -383,7 +382,7 @@ export interface QueryConsensusStateHeightsResponseAminoMsg { */ export interface QueryConsensusStateHeightsResponseSDKType { consensus_state_heights: HeightSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryClientStatusRequest is the request type for the Query/ClientStatus RPC @@ -403,7 +402,7 @@ export interface QueryClientStatusRequestProtoMsg { */ export interface QueryClientStatusRequestAmino { /** client unique identifier */ - client_id: string; + client_id?: string; } export interface QueryClientStatusRequestAminoMsg { type: "cosmos-sdk/QueryClientStatusRequest"; @@ -432,7 +431,7 @@ export interface QueryClientStatusResponseProtoMsg { * method. It returns the current status of the IBC client. */ export interface QueryClientStatusResponseAmino { - status: string; + status?: string; } export interface QueryClientStatusResponseAminoMsg { type: "cosmos-sdk/QueryClientStatusResponse"; @@ -477,7 +476,7 @@ export interface QueryClientParamsRequestSDKType { */ export interface QueryClientParamsResponse { /** params defines the parameters of the module. */ - params: Params; + params?: Params; } export interface QueryClientParamsResponseProtoMsg { typeUrl: "/ibc.core.client.v1.QueryClientParamsResponse"; @@ -500,7 +499,7 @@ export interface QueryClientParamsResponseAminoMsg { * method. */ export interface QueryClientParamsResponseSDKType { - params: ParamsSDKType; + params?: ParamsSDKType; } /** * QueryUpgradedClientStateRequest is the request type for the @@ -534,7 +533,7 @@ export interface QueryUpgradedClientStateRequestSDKType { */ export interface QueryUpgradedClientStateResponse { /** client state associated with the request identifier */ - upgradedClientState: Any; + upgradedClientState?: Any; } export interface QueryUpgradedClientStateResponseProtoMsg { typeUrl: "/ibc.core.client.v1.QueryUpgradedClientStateResponse"; @@ -557,7 +556,7 @@ export interface QueryUpgradedClientStateResponseAminoMsg { * Query/UpgradedClientState RPC method. */ export interface QueryUpgradedClientStateResponseSDKType { - upgraded_client_state: AnySDKType; + upgraded_client_state?: AnySDKType; } /** * QueryUpgradedConsensusStateRequest is the request type for the @@ -591,7 +590,7 @@ export interface QueryUpgradedConsensusStateRequestSDKType { */ export interface QueryUpgradedConsensusStateResponse { /** Consensus state associated with the request identifier */ - upgradedConsensusState: Any; + upgradedConsensusState?: Any; } export interface QueryUpgradedConsensusStateResponseProtoMsg { typeUrl: "/ibc.core.client.v1.QueryUpgradedConsensusStateResponse"; @@ -614,11 +613,12 @@ export interface QueryUpgradedConsensusStateResponseAminoMsg { * Query/UpgradedConsensusState RPC method. */ export interface QueryUpgradedConsensusStateResponseSDKType { - upgraded_consensus_state: AnySDKType; + upgraded_consensus_state?: AnySDKType; } export declare const QueryClientStateRequest: { - encode(message: QueryClientStateRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientStateRequest; + typeUrl: string; + encode(message: QueryClientStateRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientStateRequest; fromJSON(object: any): QueryClientStateRequest; toJSON(message: QueryClientStateRequest): unknown; fromPartial(object: Partial): QueryClientStateRequest; @@ -631,8 +631,9 @@ export declare const QueryClientStateRequest: { toProtoMsg(message: QueryClientStateRequest): QueryClientStateRequestProtoMsg; }; export declare const QueryClientStateResponse: { - encode(message: QueryClientStateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientStateResponse; + typeUrl: string; + encode(message: QueryClientStateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientStateResponse; fromJSON(object: any): QueryClientStateResponse; toJSON(message: QueryClientStateResponse): unknown; fromPartial(object: Partial): QueryClientStateResponse; @@ -645,8 +646,9 @@ export declare const QueryClientStateResponse: { toProtoMsg(message: QueryClientStateResponse): QueryClientStateResponseProtoMsg; }; export declare const QueryClientStatesRequest: { - encode(message: QueryClientStatesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientStatesRequest; + typeUrl: string; + encode(message: QueryClientStatesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientStatesRequest; fromJSON(object: any): QueryClientStatesRequest; toJSON(message: QueryClientStatesRequest): unknown; fromPartial(object: Partial): QueryClientStatesRequest; @@ -659,8 +661,9 @@ export declare const QueryClientStatesRequest: { toProtoMsg(message: QueryClientStatesRequest): QueryClientStatesRequestProtoMsg; }; export declare const QueryClientStatesResponse: { - encode(message: QueryClientStatesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientStatesResponse; + typeUrl: string; + encode(message: QueryClientStatesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientStatesResponse; fromJSON(object: any): QueryClientStatesResponse; toJSON(message: QueryClientStatesResponse): unknown; fromPartial(object: Partial): QueryClientStatesResponse; @@ -673,8 +676,9 @@ export declare const QueryClientStatesResponse: { toProtoMsg(message: QueryClientStatesResponse): QueryClientStatesResponseProtoMsg; }; export declare const QueryConsensusStateRequest: { - encode(message: QueryConsensusStateRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConsensusStateRequest; + typeUrl: string; + encode(message: QueryConsensusStateRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConsensusStateRequest; fromJSON(object: any): QueryConsensusStateRequest; toJSON(message: QueryConsensusStateRequest): unknown; fromPartial(object: Partial): QueryConsensusStateRequest; @@ -687,8 +691,9 @@ export declare const QueryConsensusStateRequest: { toProtoMsg(message: QueryConsensusStateRequest): QueryConsensusStateRequestProtoMsg; }; export declare const QueryConsensusStateResponse: { - encode(message: QueryConsensusStateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConsensusStateResponse; + typeUrl: string; + encode(message: QueryConsensusStateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConsensusStateResponse; fromJSON(object: any): QueryConsensusStateResponse; toJSON(message: QueryConsensusStateResponse): unknown; fromPartial(object: Partial): QueryConsensusStateResponse; @@ -701,8 +706,9 @@ export declare const QueryConsensusStateResponse: { toProtoMsg(message: QueryConsensusStateResponse): QueryConsensusStateResponseProtoMsg; }; export declare const QueryConsensusStatesRequest: { - encode(message: QueryConsensusStatesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConsensusStatesRequest; + typeUrl: string; + encode(message: QueryConsensusStatesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConsensusStatesRequest; fromJSON(object: any): QueryConsensusStatesRequest; toJSON(message: QueryConsensusStatesRequest): unknown; fromPartial(object: Partial): QueryConsensusStatesRequest; @@ -715,8 +721,9 @@ export declare const QueryConsensusStatesRequest: { toProtoMsg(message: QueryConsensusStatesRequest): QueryConsensusStatesRequestProtoMsg; }; export declare const QueryConsensusStatesResponse: { - encode(message: QueryConsensusStatesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConsensusStatesResponse; + typeUrl: string; + encode(message: QueryConsensusStatesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConsensusStatesResponse; fromJSON(object: any): QueryConsensusStatesResponse; toJSON(message: QueryConsensusStatesResponse): unknown; fromPartial(object: Partial): QueryConsensusStatesResponse; @@ -729,8 +736,9 @@ export declare const QueryConsensusStatesResponse: { toProtoMsg(message: QueryConsensusStatesResponse): QueryConsensusStatesResponseProtoMsg; }; export declare const QueryConsensusStateHeightsRequest: { - encode(message: QueryConsensusStateHeightsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConsensusStateHeightsRequest; + typeUrl: string; + encode(message: QueryConsensusStateHeightsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConsensusStateHeightsRequest; fromJSON(object: any): QueryConsensusStateHeightsRequest; toJSON(message: QueryConsensusStateHeightsRequest): unknown; fromPartial(object: Partial): QueryConsensusStateHeightsRequest; @@ -743,8 +751,9 @@ export declare const QueryConsensusStateHeightsRequest: { toProtoMsg(message: QueryConsensusStateHeightsRequest): QueryConsensusStateHeightsRequestProtoMsg; }; export declare const QueryConsensusStateHeightsResponse: { - encode(message: QueryConsensusStateHeightsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryConsensusStateHeightsResponse; + typeUrl: string; + encode(message: QueryConsensusStateHeightsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryConsensusStateHeightsResponse; fromJSON(object: any): QueryConsensusStateHeightsResponse; toJSON(message: QueryConsensusStateHeightsResponse): unknown; fromPartial(object: Partial): QueryConsensusStateHeightsResponse; @@ -757,8 +766,9 @@ export declare const QueryConsensusStateHeightsResponse: { toProtoMsg(message: QueryConsensusStateHeightsResponse): QueryConsensusStateHeightsResponseProtoMsg; }; export declare const QueryClientStatusRequest: { - encode(message: QueryClientStatusRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientStatusRequest; + typeUrl: string; + encode(message: QueryClientStatusRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientStatusRequest; fromJSON(object: any): QueryClientStatusRequest; toJSON(message: QueryClientStatusRequest): unknown; fromPartial(object: Partial): QueryClientStatusRequest; @@ -771,8 +781,9 @@ export declare const QueryClientStatusRequest: { toProtoMsg(message: QueryClientStatusRequest): QueryClientStatusRequestProtoMsg; }; export declare const QueryClientStatusResponse: { - encode(message: QueryClientStatusResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientStatusResponse; + typeUrl: string; + encode(message: QueryClientStatusResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientStatusResponse; fromJSON(object: any): QueryClientStatusResponse; toJSON(message: QueryClientStatusResponse): unknown; fromPartial(object: Partial): QueryClientStatusResponse; @@ -785,8 +796,9 @@ export declare const QueryClientStatusResponse: { toProtoMsg(message: QueryClientStatusResponse): QueryClientStatusResponseProtoMsg; }; export declare const QueryClientParamsRequest: { - encode(_: QueryClientParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientParamsRequest; + typeUrl: string; + encode(_: QueryClientParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientParamsRequest; fromJSON(_: any): QueryClientParamsRequest; toJSON(_: QueryClientParamsRequest): unknown; fromPartial(_: Partial): QueryClientParamsRequest; @@ -799,8 +811,9 @@ export declare const QueryClientParamsRequest: { toProtoMsg(message: QueryClientParamsRequest): QueryClientParamsRequestProtoMsg; }; export declare const QueryClientParamsResponse: { - encode(message: QueryClientParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClientParamsResponse; + typeUrl: string; + encode(message: QueryClientParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClientParamsResponse; fromJSON(object: any): QueryClientParamsResponse; toJSON(message: QueryClientParamsResponse): unknown; fromPartial(object: Partial): QueryClientParamsResponse; @@ -813,8 +826,9 @@ export declare const QueryClientParamsResponse: { toProtoMsg(message: QueryClientParamsResponse): QueryClientParamsResponseProtoMsg; }; export declare const QueryUpgradedClientStateRequest: { - encode(_: QueryUpgradedClientStateRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedClientStateRequest; + typeUrl: string; + encode(_: QueryUpgradedClientStateRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedClientStateRequest; fromJSON(_: any): QueryUpgradedClientStateRequest; toJSON(_: QueryUpgradedClientStateRequest): unknown; fromPartial(_: Partial): QueryUpgradedClientStateRequest; @@ -827,8 +841,9 @@ export declare const QueryUpgradedClientStateRequest: { toProtoMsg(message: QueryUpgradedClientStateRequest): QueryUpgradedClientStateRequestProtoMsg; }; export declare const QueryUpgradedClientStateResponse: { - encode(message: QueryUpgradedClientStateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedClientStateResponse; + typeUrl: string; + encode(message: QueryUpgradedClientStateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedClientStateResponse; fromJSON(object: any): QueryUpgradedClientStateResponse; toJSON(message: QueryUpgradedClientStateResponse): unknown; fromPartial(object: Partial): QueryUpgradedClientStateResponse; @@ -841,8 +856,9 @@ export declare const QueryUpgradedClientStateResponse: { toProtoMsg(message: QueryUpgradedClientStateResponse): QueryUpgradedClientStateResponseProtoMsg; }; export declare const QueryUpgradedConsensusStateRequest: { - encode(_: QueryUpgradedConsensusStateRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedConsensusStateRequest; + typeUrl: string; + encode(_: QueryUpgradedConsensusStateRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedConsensusStateRequest; fromJSON(_: any): QueryUpgradedConsensusStateRequest; toJSON(_: QueryUpgradedConsensusStateRequest): unknown; fromPartial(_: Partial): QueryUpgradedConsensusStateRequest; @@ -855,8 +871,9 @@ export declare const QueryUpgradedConsensusStateRequest: { toProtoMsg(message: QueryUpgradedConsensusStateRequest): QueryUpgradedConsensusStateRequestProtoMsg; }; export declare const QueryUpgradedConsensusStateResponse: { - encode(message: QueryUpgradedConsensusStateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryUpgradedConsensusStateResponse; + typeUrl: string; + encode(message: QueryUpgradedConsensusStateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradedConsensusStateResponse; fromJSON(object: any): QueryUpgradedConsensusStateResponse; toJSON(message: QueryUpgradedConsensusStateResponse): unknown; fromPartial(object: Partial): QueryUpgradedConsensusStateResponse; diff --git a/packages/api/types/codegen/ibc/core/client/v1/query.lcd.d.ts b/packages/api/types/codegen/ibc/core/client/v1/query.lcd.d.ts index 4cf8136..995c8c3 100644 --- a/packages/api/types/codegen/ibc/core/client/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/ibc/core/client/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryClientStateRequest, QueryClientStateResponseSDKType, QueryClientStatesRequest, QueryClientStatesResponseSDKType, QueryConsensusStateRequest, QueryConsensusStateResponseSDKType, QueryConsensusStatesRequest, QueryConsensusStatesResponseSDKType, QueryConsensusStateHeightsRequest, QueryConsensusStateHeightsResponseSDKType, QueryClientStatusRequest, QueryClientStatusResponseSDKType, QueryClientParamsRequest, QueryClientParamsResponseSDKType, QueryUpgradedClientStateRequest, QueryUpgradedClientStateResponseSDKType, QueryUpgradedConsensusStateRequest, QueryUpgradedConsensusStateResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/ibc/core/client/v1/tx.d.ts b/packages/api/types/codegen/ibc/core/client/v1/tx.d.ts index eb34941..3e1a1ff 100644 --- a/packages/api/types/codegen/ibc/core/client/v1/tx.d.ts +++ b/packages/api/types/codegen/ibc/core/client/v1/tx.d.ts @@ -1,14 +1,14 @@ import { Any, AnyAmino, AnySDKType } from "../../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** MsgCreateClient defines a message to create an IBC client */ export interface MsgCreateClient { /** light client state */ - clientState: Any; + clientState?: Any; /** * consensus state associated with the client that corresponds to a given * height. */ - consensusState: Any; + consensusState?: Any; /** signer address */ signer: string; } @@ -26,7 +26,7 @@ export interface MsgCreateClientAmino { */ consensus_state?: AnyAmino; /** signer address */ - signer: string; + signer?: string; } export interface MsgCreateClientAminoMsg { type: "cosmos-sdk/MsgCreateClient"; @@ -34,8 +34,8 @@ export interface MsgCreateClientAminoMsg { } /** MsgCreateClient defines a message to create an IBC client */ export interface MsgCreateClientSDKType { - client_state: AnySDKType; - consensus_state: AnySDKType; + client_state?: AnySDKType; + consensus_state?: AnySDKType; signer: string; } /** MsgCreateClientResponse defines the Msg/CreateClient response type. */ @@ -63,7 +63,7 @@ export interface MsgUpdateClient { /** client unique identifier */ clientId: string; /** client message to update the light client */ - clientMessage: Any; + clientMessage?: Any; /** signer address */ signer: string; } @@ -77,11 +77,11 @@ export interface MsgUpdateClientProtoMsg { */ export interface MsgUpdateClientAmino { /** client unique identifier */ - client_id: string; + client_id?: string; /** client message to update the light client */ client_message?: AnyAmino; /** signer address */ - signer: string; + signer?: string; } export interface MsgUpdateClientAminoMsg { type: "cosmos-sdk/MsgUpdateClient"; @@ -93,7 +93,7 @@ export interface MsgUpdateClientAminoMsg { */ export interface MsgUpdateClientSDKType { client_id: string; - client_message: AnySDKType; + client_message?: AnySDKType; signer: string; } /** MsgUpdateClientResponse defines the Msg/UpdateClient response type. */ @@ -121,12 +121,12 @@ export interface MsgUpgradeClient { /** client unique identifier */ clientId: string; /** upgraded client state */ - clientState: Any; + clientState?: Any; /** * upgraded consensus state, only contains enough information to serve as a * basis of trust in update logic */ - consensusState: Any; + consensusState?: Any; /** proof that old chain committed to new client */ proofUpgradeClient: Uint8Array; /** proof that old chain committed to new consensus state */ @@ -144,7 +144,7 @@ export interface MsgUpgradeClientProtoMsg { */ export interface MsgUpgradeClientAmino { /** client unique identifier */ - client_id: string; + client_id?: string; /** upgraded client state */ client_state?: AnyAmino; /** @@ -153,11 +153,11 @@ export interface MsgUpgradeClientAmino { */ consensus_state?: AnyAmino; /** proof that old chain committed to new client */ - proof_upgrade_client: Uint8Array; + proof_upgrade_client?: string; /** proof that old chain committed to new consensus state */ - proof_upgrade_consensus_state: Uint8Array; + proof_upgrade_consensus_state?: string; /** signer address */ - signer: string; + signer?: string; } export interface MsgUpgradeClientAminoMsg { type: "cosmos-sdk/MsgUpgradeClient"; @@ -169,8 +169,8 @@ export interface MsgUpgradeClientAminoMsg { */ export interface MsgUpgradeClientSDKType { client_id: string; - client_state: AnySDKType; - consensus_state: AnySDKType; + client_state?: AnySDKType; + consensus_state?: AnySDKType; proof_upgrade_client: Uint8Array; proof_upgrade_consensus_state: Uint8Array; signer: string; @@ -203,7 +203,7 @@ export interface MsgSubmitMisbehaviour { clientId: string; /** misbehaviour used for freezing the light client */ /** @deprecated */ - misbehaviour: Any; + misbehaviour?: Any; /** signer address */ /** @deprecated */ signer: string; @@ -220,13 +220,13 @@ export interface MsgSubmitMisbehaviourProtoMsg { export interface MsgSubmitMisbehaviourAmino { /** client unique identifier */ /** @deprecated */ - client_id: string; + client_id?: string; /** misbehaviour used for freezing the light client */ /** @deprecated */ misbehaviour?: AnyAmino; /** signer address */ /** @deprecated */ - signer: string; + signer?: string; } export interface MsgSubmitMisbehaviourAminoMsg { type: "cosmos-sdk/MsgSubmitMisbehaviour"; @@ -241,7 +241,7 @@ export interface MsgSubmitMisbehaviourSDKType { /** @deprecated */ client_id: string; /** @deprecated */ - misbehaviour: AnySDKType; + misbehaviour?: AnySDKType; /** @deprecated */ signer: string; } @@ -272,8 +272,9 @@ export interface MsgSubmitMisbehaviourResponseAminoMsg { export interface MsgSubmitMisbehaviourResponseSDKType { } export declare const MsgCreateClient: { - encode(message: MsgCreateClient, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateClient; + typeUrl: string; + encode(message: MsgCreateClient, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateClient; fromJSON(object: any): MsgCreateClient; toJSON(message: MsgCreateClient): unknown; fromPartial(object: Partial): MsgCreateClient; @@ -286,8 +287,9 @@ export declare const MsgCreateClient: { toProtoMsg(message: MsgCreateClient): MsgCreateClientProtoMsg; }; export declare const MsgCreateClientResponse: { - encode(_: MsgCreateClientResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateClientResponse; + typeUrl: string; + encode(_: MsgCreateClientResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateClientResponse; fromJSON(_: any): MsgCreateClientResponse; toJSON(_: MsgCreateClientResponse): unknown; fromPartial(_: Partial): MsgCreateClientResponse; @@ -300,8 +302,9 @@ export declare const MsgCreateClientResponse: { toProtoMsg(message: MsgCreateClientResponse): MsgCreateClientResponseProtoMsg; }; export declare const MsgUpdateClient: { - encode(message: MsgUpdateClient, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClient; + typeUrl: string; + encode(message: MsgUpdateClient, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClient; fromJSON(object: any): MsgUpdateClient; toJSON(message: MsgUpdateClient): unknown; fromPartial(object: Partial): MsgUpdateClient; @@ -314,8 +317,9 @@ export declare const MsgUpdateClient: { toProtoMsg(message: MsgUpdateClient): MsgUpdateClientProtoMsg; }; export declare const MsgUpdateClientResponse: { - encode(_: MsgUpdateClientResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClientResponse; + typeUrl: string; + encode(_: MsgUpdateClientResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClientResponse; fromJSON(_: any): MsgUpdateClientResponse; toJSON(_: MsgUpdateClientResponse): unknown; fromPartial(_: Partial): MsgUpdateClientResponse; @@ -328,8 +332,9 @@ export declare const MsgUpdateClientResponse: { toProtoMsg(message: MsgUpdateClientResponse): MsgUpdateClientResponseProtoMsg; }; export declare const MsgUpgradeClient: { - encode(message: MsgUpgradeClient, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpgradeClient; + typeUrl: string; + encode(message: MsgUpgradeClient, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpgradeClient; fromJSON(object: any): MsgUpgradeClient; toJSON(message: MsgUpgradeClient): unknown; fromPartial(object: Partial): MsgUpgradeClient; @@ -342,8 +347,9 @@ export declare const MsgUpgradeClient: { toProtoMsg(message: MsgUpgradeClient): MsgUpgradeClientProtoMsg; }; export declare const MsgUpgradeClientResponse: { - encode(_: MsgUpgradeClientResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpgradeClientResponse; + typeUrl: string; + encode(_: MsgUpgradeClientResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpgradeClientResponse; fromJSON(_: any): MsgUpgradeClientResponse; toJSON(_: MsgUpgradeClientResponse): unknown; fromPartial(_: Partial): MsgUpgradeClientResponse; @@ -356,8 +362,9 @@ export declare const MsgUpgradeClientResponse: { toProtoMsg(message: MsgUpgradeClientResponse): MsgUpgradeClientResponseProtoMsg; }; export declare const MsgSubmitMisbehaviour: { - encode(message: MsgSubmitMisbehaviour, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitMisbehaviour; + typeUrl: string; + encode(message: MsgSubmitMisbehaviour, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitMisbehaviour; fromJSON(object: any): MsgSubmitMisbehaviour; toJSON(message: MsgSubmitMisbehaviour): unknown; fromPartial(object: Partial): MsgSubmitMisbehaviour; @@ -370,8 +377,9 @@ export declare const MsgSubmitMisbehaviour: { toProtoMsg(message: MsgSubmitMisbehaviour): MsgSubmitMisbehaviourProtoMsg; }; export declare const MsgSubmitMisbehaviourResponse: { - encode(_: MsgSubmitMisbehaviourResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitMisbehaviourResponse; + typeUrl: string; + encode(_: MsgSubmitMisbehaviourResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitMisbehaviourResponse; fromJSON(_: any): MsgSubmitMisbehaviourResponse; toJSON(_: MsgSubmitMisbehaviourResponse): unknown; fromPartial(_: Partial): MsgSubmitMisbehaviourResponse; diff --git a/packages/api/types/codegen/index.d.ts b/packages/api/types/codegen/index.d.ts index 8f160af..0e68b49 100644 --- a/packages/api/types/codegen/index.d.ts +++ b/packages/api/types/codegen/index.d.ts @@ -1,5 +1,5 @@ /** - * This file and any referenced files were automatically generated by @osmonauts/telescope@0.99.0 + * This file and any referenced files were automatically generated by @cosmology/telescope@1.5.2 * DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain * and run the transpile command or yarn proto command to regenerate this bundle. */ @@ -14,3 +14,6 @@ export * from "./ibc/client"; export * from "./regen/bundle"; export * from "./regen/client"; export * from "./tendermint/bundle"; +export * from "./varint"; +export * from "./utf8"; +export * from "./binary"; diff --git a/packages/api/types/codegen/regen/bundle.d.ts b/packages/api/types/codegen/regen/bundle.d.ts index 4ad1067..ec0be82 100644 --- a/packages/api/types/codegen/regen/bundle.d.ts +++ b/packages/api/types/codegen/regen/bundle.d.ts @@ -1,121 +1,121 @@ -import * as _112 from "./data/v1/events"; -import * as _113 from "./data/v1/query"; -import * as _114 from "./data/v1/state"; -import * as _115 from "./data/v1/tx"; -import * as _116 from "./data/v1/types"; -import * as _117 from "./ecocredit/basket/v1/events"; -import * as _118 from "./ecocredit/basket/v1/query"; -import * as _119 from "./ecocredit/basket/v1/state"; -import * as _120 from "./ecocredit/basket/v1/tx"; -import * as _121 from "./ecocredit/basket/v1/types"; -import * as _122 from "./ecocredit/marketplace/v1/events"; -import * as _123 from "./ecocredit/marketplace/v1/query"; -import * as _124 from "./ecocredit/marketplace/v1/state"; -import * as _125 from "./ecocredit/marketplace/v1/tx"; -import * as _126 from "./ecocredit/marketplace/v1/types"; -import * as _127 from "./ecocredit/orderbook/v1alpha1/memory"; -import * as _128 from "./ecocredit/v1/events"; -import * as _129 from "./ecocredit/v1/query"; -import * as _130 from "./ecocredit/v1/state"; -import * as _131 from "./ecocredit/v1/tx"; -import * as _132 from "./ecocredit/v1/types"; -import * as _133 from "./ecocredit/v1alpha1/events"; -import * as _134 from "./ecocredit/v1alpha1/genesis"; -import * as _135 from "./ecocredit/v1alpha1/query"; -import * as _136 from "./ecocredit/v1alpha1/tx"; -import * as _137 from "./ecocredit/v1alpha1/types"; -import * as _138 from "./intertx/v1/query"; -import * as _139 from "./intertx/v1/tx"; -import * as _252 from "./data/v1/query.lcd"; -import * as _253 from "./ecocredit/basket/v1/query.lcd"; -import * as _254 from "./ecocredit/marketplace/v1/query.lcd"; -import * as _255 from "./ecocredit/v1/query.lcd"; -import * as _256 from "./ecocredit/v1alpha1/query.lcd"; -import * as _257 from "./intertx/v1/query.lcd"; -import * as _258 from "./data/v1/query.rpc.Query"; -import * as _259 from "./ecocredit/basket/v1/query.rpc.Query"; -import * as _260 from "./ecocredit/marketplace/v1/query.rpc.Query"; -import * as _261 from "./ecocredit/v1/query.rpc.Query"; -import * as _262 from "./ecocredit/v1alpha1/query.rpc.Query"; -import * as _263 from "./intertx/v1/query.rpc.Query"; -import * as _264 from "./data/v1/tx.rpc.msg"; -import * as _265 from "./ecocredit/basket/v1/tx.rpc.msg"; -import * as _266 from "./ecocredit/marketplace/v1/tx.rpc.msg"; -import * as _267 from "./ecocredit/v1/tx.rpc.msg"; -import * as _268 from "./ecocredit/v1alpha1/tx.rpc.msg"; -import * as _269 from "./intertx/v1/tx.rpc.msg"; +import * as _113 from "./data/v1/events"; +import * as _114 from "./data/v1/query"; +import * as _115 from "./data/v1/state"; +import * as _116 from "./data/v1/tx"; +import * as _117 from "./data/v1/types"; +import * as _118 from "./ecocredit/basket/v1/events"; +import * as _119 from "./ecocredit/basket/v1/query"; +import * as _120 from "./ecocredit/basket/v1/state"; +import * as _121 from "./ecocredit/basket/v1/tx"; +import * as _122 from "./ecocredit/basket/v1/types"; +import * as _123 from "./ecocredit/marketplace/v1/events"; +import * as _124 from "./ecocredit/marketplace/v1/query"; +import * as _125 from "./ecocredit/marketplace/v1/state"; +import * as _126 from "./ecocredit/marketplace/v1/tx"; +import * as _127 from "./ecocredit/marketplace/v1/types"; +import * as _128 from "./ecocredit/orderbook/v1alpha1/memory"; +import * as _129 from "./ecocredit/v1/events"; +import * as _130 from "./ecocredit/v1/query"; +import * as _131 from "./ecocredit/v1/state"; +import * as _132 from "./ecocredit/v1/tx"; +import * as _133 from "./ecocredit/v1/types"; +import * as _134 from "./ecocredit/v1alpha1/events"; +import * as _135 from "./ecocredit/v1alpha1/genesis"; +import * as _136 from "./ecocredit/v1alpha1/query"; +import * as _137 from "./ecocredit/v1alpha1/tx"; +import * as _138 from "./ecocredit/v1alpha1/types"; +import * as _139 from "./intertx/v1/query"; +import * as _140 from "./intertx/v1/tx"; +import * as _253 from "./data/v1/query.lcd"; +import * as _254 from "./ecocredit/basket/v1/query.lcd"; +import * as _255 from "./ecocredit/marketplace/v1/query.lcd"; +import * as _256 from "./ecocredit/v1/query.lcd"; +import * as _257 from "./ecocredit/v1alpha1/query.lcd"; +import * as _258 from "./intertx/v1/query.lcd"; +import * as _259 from "./data/v1/query.rpc.Query"; +import * as _260 from "./ecocredit/basket/v1/query.rpc.Query"; +import * as _261 from "./ecocredit/marketplace/v1/query.rpc.Query"; +import * as _262 from "./ecocredit/v1/query.rpc.Query"; +import * as _263 from "./ecocredit/v1alpha1/query.rpc.Query"; +import * as _264 from "./intertx/v1/query.rpc.Query"; +import * as _265 from "./data/v1/tx.rpc.msg"; +import * as _266 from "./ecocredit/basket/v1/tx.rpc.msg"; +import * as _267 from "./ecocredit/marketplace/v1/tx.rpc.msg"; +import * as _268 from "./ecocredit/v1/tx.rpc.msg"; +import * as _269 from "./ecocredit/v1alpha1/tx.rpc.msg"; +import * as _270 from "./intertx/v1/tx.rpc.msg"; export declare namespace regen { namespace data { const v1: { - MsgClientImpl: typeof _264.MsgClientImpl; - QueryClientImpl: typeof _258.QueryClientImpl; + MsgClientImpl: typeof _265.MsgClientImpl; + QueryClientImpl: typeof _259.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - anchorByIRI(request: _113.QueryAnchorByIRIRequest): Promise<_113.QueryAnchorByIRIResponse>; - anchorByHash(request: _113.QueryAnchorByHashRequest): Promise<_113.QueryAnchorByHashResponse>; - attestationsByAttestor(request: _113.QueryAttestationsByAttestorRequest): Promise<_113.QueryAttestationsByAttestorResponse>; - attestationsByIRI(request: _113.QueryAttestationsByIRIRequest): Promise<_113.QueryAttestationsByIRIResponse>; - attestationsByHash(request: _113.QueryAttestationsByHashRequest): Promise<_113.QueryAttestationsByHashResponse>; - resolver(request: _113.QueryResolverRequest): Promise<_113.QueryResolverResponse>; - resolversByIRI(request: _113.QueryResolversByIRIRequest): Promise<_113.QueryResolversByIRIResponse>; - resolversByHash(request: _113.QueryResolversByHashRequest): Promise<_113.QueryResolversByHashResponse>; - resolversByURL(request: _113.QueryResolversByURLRequest): Promise<_113.QueryResolversByURLResponse>; - convertIRIToHash(request: _113.ConvertIRIToHashRequest): Promise<_113.ConvertIRIToHashResponse>; - convertHashToIRI(request: _113.ConvertHashToIRIRequest): Promise<_113.ConvertHashToIRIResponse>; - }; - LCDQueryClient: typeof _252.LCDQueryClient; + anchorByIRI(request: _114.QueryAnchorByIRIRequest): Promise<_114.QueryAnchorByIRIResponse>; + anchorByHash(request: _114.QueryAnchorByHashRequest): Promise<_114.QueryAnchorByHashResponse>; + attestationsByAttestor(request: _114.QueryAttestationsByAttestorRequest): Promise<_114.QueryAttestationsByAttestorResponse>; + attestationsByIRI(request: _114.QueryAttestationsByIRIRequest): Promise<_114.QueryAttestationsByIRIResponse>; + attestationsByHash(request: _114.QueryAttestationsByHashRequest): Promise<_114.QueryAttestationsByHashResponse>; + resolver(request: _114.QueryResolverRequest): Promise<_114.QueryResolverResponse>; + resolversByIRI(request: _114.QueryResolversByIRIRequest): Promise<_114.QueryResolversByIRIResponse>; + resolversByHash(request: _114.QueryResolversByHashRequest): Promise<_114.QueryResolversByHashResponse>; + resolversByURL(request: _114.QueryResolversByURLRequest): Promise<_114.QueryResolversByURLResponse>; + convertIRIToHash(request: _114.ConvertIRIToHashRequest): Promise<_114.ConvertIRIToHashResponse>; + convertHashToIRI(request: _114.ConvertHashToIRIRequest): Promise<_114.ConvertHashToIRIResponse>; + }; + LCDQueryClient: typeof _253.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - anchor(value: _115.MsgAnchor): { + anchor(value: _116.MsgAnchor): { typeUrl: string; value: Uint8Array; }; - attest(value: _115.MsgAttest): { + attest(value: _116.MsgAttest): { typeUrl: string; value: Uint8Array; }; - defineResolver(value: _115.MsgDefineResolver): { + defineResolver(value: _116.MsgDefineResolver): { typeUrl: string; value: Uint8Array; }; - registerResolver(value: _115.MsgRegisterResolver): { + registerResolver(value: _116.MsgRegisterResolver): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - anchor(value: _115.MsgAnchor): { + anchor(value: _116.MsgAnchor): { typeUrl: string; - value: _115.MsgAnchor; + value: _116.MsgAnchor; }; - attest(value: _115.MsgAttest): { + attest(value: _116.MsgAttest): { typeUrl: string; - value: _115.MsgAttest; + value: _116.MsgAttest; }; - defineResolver(value: _115.MsgDefineResolver): { + defineResolver(value: _116.MsgDefineResolver): { typeUrl: string; - value: _115.MsgDefineResolver; + value: _116.MsgDefineResolver; }; - registerResolver(value: _115.MsgRegisterResolver): { + registerResolver(value: _116.MsgRegisterResolver): { typeUrl: string; - value: _115.MsgRegisterResolver; + value: _116.MsgRegisterResolver; }; }; toJSON: { - anchor(value: _115.MsgAnchor): { + anchor(value: _116.MsgAnchor): { typeUrl: string; value: unknown; }; - attest(value: _115.MsgAttest): { + attest(value: _116.MsgAttest): { typeUrl: string; value: unknown; }; - defineResolver(value: _115.MsgDefineResolver): { + defineResolver(value: _116.MsgDefineResolver): { typeUrl: string; value: unknown; }; - registerResolver(value: _115.MsgRegisterResolver): { + registerResolver(value: _116.MsgRegisterResolver): { typeUrl: string; value: unknown; }; @@ -123,776 +123,822 @@ export declare namespace regen { fromJSON: { anchor(value: any): { typeUrl: string; - value: _115.MsgAnchor; + value: _116.MsgAnchor; }; attest(value: any): { typeUrl: string; - value: _115.MsgAttest; + value: _116.MsgAttest; }; defineResolver(value: any): { typeUrl: string; - value: _115.MsgDefineResolver; + value: _116.MsgDefineResolver; }; registerResolver(value: any): { typeUrl: string; - value: _115.MsgRegisterResolver; + value: _116.MsgRegisterResolver; }; }; fromPartial: { - anchor(value: _115.MsgAnchor): { + anchor(value: _116.MsgAnchor): { typeUrl: string; - value: _115.MsgAnchor; + value: _116.MsgAnchor; }; - attest(value: _115.MsgAttest): { + attest(value: _116.MsgAttest): { typeUrl: string; - value: _115.MsgAttest; + value: _116.MsgAttest; }; - defineResolver(value: _115.MsgDefineResolver): { + defineResolver(value: _116.MsgDefineResolver): { typeUrl: string; - value: _115.MsgDefineResolver; + value: _116.MsgDefineResolver; }; - registerResolver(value: _115.MsgRegisterResolver): { + registerResolver(value: _116.MsgRegisterResolver): { typeUrl: string; - value: _115.MsgRegisterResolver; + value: _116.MsgRegisterResolver; }; }; }; AminoConverter: { "/regen.data.v1.MsgAnchor": { aminoType: string; - toAmino: (message: _115.MsgAnchor) => _115.MsgAnchorAmino; - fromAmino: (object: _115.MsgAnchorAmino) => _115.MsgAnchor; + toAmino: (message: _116.MsgAnchor) => _116.MsgAnchorAmino; + fromAmino: (object: _116.MsgAnchorAmino) => _116.MsgAnchor; }; "/regen.data.v1.MsgAttest": { aminoType: string; - toAmino: (message: _115.MsgAttest) => _115.MsgAttestAmino; - fromAmino: (object: _115.MsgAttestAmino) => _115.MsgAttest; + toAmino: (message: _116.MsgAttest) => _116.MsgAttestAmino; + fromAmino: (object: _116.MsgAttestAmino) => _116.MsgAttest; }; "/regen.data.v1.MsgDefineResolver": { aminoType: string; - toAmino: (message: _115.MsgDefineResolver) => _115.MsgDefineResolverAmino; - fromAmino: (object: _115.MsgDefineResolverAmino) => _115.MsgDefineResolver; + toAmino: (message: _116.MsgDefineResolver) => _116.MsgDefineResolverAmino; + fromAmino: (object: _116.MsgDefineResolverAmino) => _116.MsgDefineResolver; }; "/regen.data.v1.MsgRegisterResolver": { aminoType: string; - toAmino: (message: _115.MsgRegisterResolver) => _115.MsgRegisterResolverAmino; - fromAmino: (object: _115.MsgRegisterResolverAmino) => _115.MsgRegisterResolver; - }; - }; - digestAlgorithmFromJSON(object: any): _116.DigestAlgorithm; - digestAlgorithmToJSON(object: _116.DigestAlgorithm): string; - rawMediaTypeFromJSON(object: any): _116.RawMediaType; - rawMediaTypeToJSON(object: _116.RawMediaType): string; - graphCanonicalizationAlgorithmFromJSON(object: any): _116.GraphCanonicalizationAlgorithm; - graphCanonicalizationAlgorithmToJSON(object: _116.GraphCanonicalizationAlgorithm): string; - graphMerkleTreeFromJSON(object: any): _116.GraphMerkleTree; - graphMerkleTreeToJSON(object: _116.GraphMerkleTree): string; - DigestAlgorithm: typeof _116.DigestAlgorithm; - DigestAlgorithmSDKType: typeof _116.DigestAlgorithm; - DigestAlgorithmAmino: typeof _116.DigestAlgorithm; - RawMediaType: typeof _116.RawMediaType; - RawMediaTypeSDKType: typeof _116.RawMediaType; - RawMediaTypeAmino: typeof _116.RawMediaType; - GraphCanonicalizationAlgorithm: typeof _116.GraphCanonicalizationAlgorithm; - GraphCanonicalizationAlgorithmSDKType: typeof _116.GraphCanonicalizationAlgorithm; - GraphCanonicalizationAlgorithmAmino: typeof _116.GraphCanonicalizationAlgorithm; - GraphMerkleTree: typeof _116.GraphMerkleTree; - GraphMerkleTreeSDKType: typeof _116.GraphMerkleTree; - GraphMerkleTreeAmino: typeof _116.GraphMerkleTree; + toAmino: (message: _116.MsgRegisterResolver) => _116.MsgRegisterResolverAmino; + fromAmino: (object: _116.MsgRegisterResolverAmino) => _116.MsgRegisterResolver; + }; + }; + digestAlgorithmFromJSON(object: any): _117.DigestAlgorithm; + digestAlgorithmToJSON(object: _117.DigestAlgorithm): string; + rawMediaTypeFromJSON(object: any): _117.RawMediaType; + rawMediaTypeToJSON(object: _117.RawMediaType): string; + graphCanonicalizationAlgorithmFromJSON(object: any): _117.GraphCanonicalizationAlgorithm; + graphCanonicalizationAlgorithmToJSON(object: _117.GraphCanonicalizationAlgorithm): string; + graphMerkleTreeFromJSON(object: any): _117.GraphMerkleTree; + graphMerkleTreeToJSON(object: _117.GraphMerkleTree): string; + DigestAlgorithm: typeof _117.DigestAlgorithm; + DigestAlgorithmSDKType: typeof _117.DigestAlgorithm; + DigestAlgorithmAmino: typeof _117.DigestAlgorithm; + RawMediaType: typeof _117.RawMediaType; + RawMediaTypeSDKType: typeof _117.RawMediaType; + RawMediaTypeAmino: typeof _117.RawMediaType; + GraphCanonicalizationAlgorithm: typeof _117.GraphCanonicalizationAlgorithm; + GraphCanonicalizationAlgorithmSDKType: typeof _117.GraphCanonicalizationAlgorithm; + GraphCanonicalizationAlgorithmAmino: typeof _117.GraphCanonicalizationAlgorithm; + GraphMerkleTree: typeof _117.GraphMerkleTree; + GraphMerkleTreeSDKType: typeof _117.GraphMerkleTree; + GraphMerkleTreeAmino: typeof _117.GraphMerkleTree; ContentHash: { - encode(message: _116.ContentHash, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _116.ContentHash; - fromJSON(object: any): _116.ContentHash; - toJSON(message: _116.ContentHash): unknown; - fromPartial(object: Partial<_116.ContentHash>): _116.ContentHash; - fromAmino(object: _116.ContentHashAmino): _116.ContentHash; - toAmino(message: _116.ContentHash): _116.ContentHashAmino; - fromAminoMsg(object: _116.ContentHashAminoMsg): _116.ContentHash; - fromProtoMsg(message: _116.ContentHashProtoMsg): _116.ContentHash; - toProto(message: _116.ContentHash): Uint8Array; - toProtoMsg(message: _116.ContentHash): _116.ContentHashProtoMsg; + typeUrl: string; + encode(message: _117.ContentHash, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _117.ContentHash; + fromJSON(object: any): _117.ContentHash; + toJSON(message: _117.ContentHash): unknown; + fromPartial(object: Partial<_117.ContentHash>): _117.ContentHash; + fromAmino(object: _117.ContentHashAmino): _117.ContentHash; + toAmino(message: _117.ContentHash): _117.ContentHashAmino; + fromAminoMsg(object: _117.ContentHashAminoMsg): _117.ContentHash; + fromProtoMsg(message: _117.ContentHashProtoMsg): _117.ContentHash; + toProto(message: _117.ContentHash): Uint8Array; + toProtoMsg(message: _117.ContentHash): _117.ContentHashProtoMsg; }; ContentHash_Raw: { - encode(message: _116.ContentHash_Raw, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _116.ContentHash_Raw; - fromJSON(object: any): _116.ContentHash_Raw; - toJSON(message: _116.ContentHash_Raw): unknown; - fromPartial(object: Partial<_116.ContentHash_Raw>): _116.ContentHash_Raw; - fromAmino(object: _116.ContentHash_RawAmino): _116.ContentHash_Raw; - toAmino(message: _116.ContentHash_Raw): _116.ContentHash_RawAmino; - fromAminoMsg(object: _116.ContentHash_RawAminoMsg): _116.ContentHash_Raw; - fromProtoMsg(message: _116.ContentHash_RawProtoMsg): _116.ContentHash_Raw; - toProto(message: _116.ContentHash_Raw): Uint8Array; - toProtoMsg(message: _116.ContentHash_Raw): _116.ContentHash_RawProtoMsg; + typeUrl: string; + encode(message: _117.ContentHash_Raw, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _117.ContentHash_Raw; + fromJSON(object: any): _117.ContentHash_Raw; + toJSON(message: _117.ContentHash_Raw): unknown; + fromPartial(object: Partial<_117.ContentHash_Raw>): _117.ContentHash_Raw; + fromAmino(object: _117.ContentHash_RawAmino): _117.ContentHash_Raw; + toAmino(message: _117.ContentHash_Raw): _117.ContentHash_RawAmino; + fromAminoMsg(object: _117.ContentHash_RawAminoMsg): _117.ContentHash_Raw; + fromProtoMsg(message: _117.ContentHash_RawProtoMsg): _117.ContentHash_Raw; + toProto(message: _117.ContentHash_Raw): Uint8Array; + toProtoMsg(message: _117.ContentHash_Raw): _117.ContentHash_RawProtoMsg; }; ContentHash_Graph: { - encode(message: _116.ContentHash_Graph, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _116.ContentHash_Graph; - fromJSON(object: any): _116.ContentHash_Graph; - toJSON(message: _116.ContentHash_Graph): unknown; - fromPartial(object: Partial<_116.ContentHash_Graph>): _116.ContentHash_Graph; - fromAmino(object: _116.ContentHash_GraphAmino): _116.ContentHash_Graph; - toAmino(message: _116.ContentHash_Graph): _116.ContentHash_GraphAmino; - fromAminoMsg(object: _116.ContentHash_GraphAminoMsg): _116.ContentHash_Graph; - fromProtoMsg(message: _116.ContentHash_GraphProtoMsg): _116.ContentHash_Graph; - toProto(message: _116.ContentHash_Graph): Uint8Array; - toProtoMsg(message: _116.ContentHash_Graph): _116.ContentHash_GraphProtoMsg; + typeUrl: string; + encode(message: _117.ContentHash_Graph, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _117.ContentHash_Graph; + fromJSON(object: any): _117.ContentHash_Graph; + toJSON(message: _117.ContentHash_Graph): unknown; + fromPartial(object: Partial<_117.ContentHash_Graph>): _117.ContentHash_Graph; + fromAmino(object: _117.ContentHash_GraphAmino): _117.ContentHash_Graph; + toAmino(message: _117.ContentHash_Graph): _117.ContentHash_GraphAmino; + fromAminoMsg(object: _117.ContentHash_GraphAminoMsg): _117.ContentHash_Graph; + fromProtoMsg(message: _117.ContentHash_GraphProtoMsg): _117.ContentHash_Graph; + toProto(message: _117.ContentHash_Graph): Uint8Array; + toProtoMsg(message: _117.ContentHash_Graph): _117.ContentHash_GraphProtoMsg; }; ContentHashes: { - encode(message: _116.ContentHashes, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _116.ContentHashes; - fromJSON(object: any): _116.ContentHashes; - toJSON(message: _116.ContentHashes): unknown; - fromPartial(object: Partial<_116.ContentHashes>): _116.ContentHashes; - fromAmino(object: _116.ContentHashesAmino): _116.ContentHashes; - toAmino(message: _116.ContentHashes): _116.ContentHashesAmino; - fromAminoMsg(object: _116.ContentHashesAminoMsg): _116.ContentHashes; - fromProtoMsg(message: _116.ContentHashesProtoMsg): _116.ContentHashes; - toProto(message: _116.ContentHashes): Uint8Array; - toProtoMsg(message: _116.ContentHashes): _116.ContentHashesProtoMsg; + typeUrl: string; + encode(message: _117.ContentHashes, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _117.ContentHashes; + fromJSON(object: any): _117.ContentHashes; + toJSON(message: _117.ContentHashes): unknown; + fromPartial(object: Partial<_117.ContentHashes>): _117.ContentHashes; + fromAmino(object: _117.ContentHashesAmino): _117.ContentHashes; + toAmino(message: _117.ContentHashes): _117.ContentHashesAmino; + fromAminoMsg(object: _117.ContentHashesAminoMsg): _117.ContentHashes; + fromProtoMsg(message: _117.ContentHashesProtoMsg): _117.ContentHashes; + toProto(message: _117.ContentHashes): Uint8Array; + toProtoMsg(message: _117.ContentHashes): _117.ContentHashesProtoMsg; }; MsgAnchor: { - encode(message: _115.MsgAnchor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgAnchor; - fromJSON(object: any): _115.MsgAnchor; - toJSON(message: _115.MsgAnchor): unknown; - fromPartial(object: Partial<_115.MsgAnchor>): _115.MsgAnchor; - fromAmino(object: _115.MsgAnchorAmino): _115.MsgAnchor; - toAmino(message: _115.MsgAnchor): _115.MsgAnchorAmino; - fromAminoMsg(object: _115.MsgAnchorAminoMsg): _115.MsgAnchor; - toAminoMsg(message: _115.MsgAnchor): _115.MsgAnchorAminoMsg; - fromProtoMsg(message: _115.MsgAnchorProtoMsg): _115.MsgAnchor; - toProto(message: _115.MsgAnchor): Uint8Array; - toProtoMsg(message: _115.MsgAnchor): _115.MsgAnchorProtoMsg; + typeUrl: string; + encode(message: _116.MsgAnchor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgAnchor; + fromJSON(object: any): _116.MsgAnchor; + toJSON(message: _116.MsgAnchor): unknown; + fromPartial(object: Partial<_116.MsgAnchor>): _116.MsgAnchor; + fromAmino(object: _116.MsgAnchorAmino): _116.MsgAnchor; + toAmino(message: _116.MsgAnchor): _116.MsgAnchorAmino; + fromAminoMsg(object: _116.MsgAnchorAminoMsg): _116.MsgAnchor; + toAminoMsg(message: _116.MsgAnchor): _116.MsgAnchorAminoMsg; + fromProtoMsg(message: _116.MsgAnchorProtoMsg): _116.MsgAnchor; + toProto(message: _116.MsgAnchor): Uint8Array; + toProtoMsg(message: _116.MsgAnchor): _116.MsgAnchorProtoMsg; }; MsgAnchorResponse: { - encode(message: _115.MsgAnchorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgAnchorResponse; - fromJSON(object: any): _115.MsgAnchorResponse; - toJSON(message: _115.MsgAnchorResponse): unknown; - fromPartial(object: Partial<_115.MsgAnchorResponse>): _115.MsgAnchorResponse; - fromAmino(object: _115.MsgAnchorResponseAmino): _115.MsgAnchorResponse; - toAmino(message: _115.MsgAnchorResponse): _115.MsgAnchorResponseAmino; - fromAminoMsg(object: _115.MsgAnchorResponseAminoMsg): _115.MsgAnchorResponse; - fromProtoMsg(message: _115.MsgAnchorResponseProtoMsg): _115.MsgAnchorResponse; - toProto(message: _115.MsgAnchorResponse): Uint8Array; - toProtoMsg(message: _115.MsgAnchorResponse): _115.MsgAnchorResponseProtoMsg; + typeUrl: string; + encode(message: _116.MsgAnchorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgAnchorResponse; + fromJSON(object: any): _116.MsgAnchorResponse; + toJSON(message: _116.MsgAnchorResponse): unknown; + fromPartial(object: Partial<_116.MsgAnchorResponse>): _116.MsgAnchorResponse; + fromAmino(object: _116.MsgAnchorResponseAmino): _116.MsgAnchorResponse; + toAmino(message: _116.MsgAnchorResponse): _116.MsgAnchorResponseAmino; + fromAminoMsg(object: _116.MsgAnchorResponseAminoMsg): _116.MsgAnchorResponse; + fromProtoMsg(message: _116.MsgAnchorResponseProtoMsg): _116.MsgAnchorResponse; + toProto(message: _116.MsgAnchorResponse): Uint8Array; + toProtoMsg(message: _116.MsgAnchorResponse): _116.MsgAnchorResponseProtoMsg; }; MsgAttest: { - encode(message: _115.MsgAttest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgAttest; - fromJSON(object: any): _115.MsgAttest; - toJSON(message: _115.MsgAttest): unknown; - fromPartial(object: Partial<_115.MsgAttest>): _115.MsgAttest; - fromAmino(object: _115.MsgAttestAmino): _115.MsgAttest; - toAmino(message: _115.MsgAttest): _115.MsgAttestAmino; - fromAminoMsg(object: _115.MsgAttestAminoMsg): _115.MsgAttest; - toAminoMsg(message: _115.MsgAttest): _115.MsgAttestAminoMsg; - fromProtoMsg(message: _115.MsgAttestProtoMsg): _115.MsgAttest; - toProto(message: _115.MsgAttest): Uint8Array; - toProtoMsg(message: _115.MsgAttest): _115.MsgAttestProtoMsg; + typeUrl: string; + encode(message: _116.MsgAttest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgAttest; + fromJSON(object: any): _116.MsgAttest; + toJSON(message: _116.MsgAttest): unknown; + fromPartial(object: Partial<_116.MsgAttest>): _116.MsgAttest; + fromAmino(object: _116.MsgAttestAmino): _116.MsgAttest; + toAmino(message: _116.MsgAttest): _116.MsgAttestAmino; + fromAminoMsg(object: _116.MsgAttestAminoMsg): _116.MsgAttest; + toAminoMsg(message: _116.MsgAttest): _116.MsgAttestAminoMsg; + fromProtoMsg(message: _116.MsgAttestProtoMsg): _116.MsgAttest; + toProto(message: _116.MsgAttest): Uint8Array; + toProtoMsg(message: _116.MsgAttest): _116.MsgAttestProtoMsg; }; MsgAttestResponse: { - encode(message: _115.MsgAttestResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgAttestResponse; - fromJSON(object: any): _115.MsgAttestResponse; - toJSON(message: _115.MsgAttestResponse): unknown; - fromPartial(object: Partial<_115.MsgAttestResponse>): _115.MsgAttestResponse; - fromAmino(object: _115.MsgAttestResponseAmino): _115.MsgAttestResponse; - toAmino(message: _115.MsgAttestResponse): _115.MsgAttestResponseAmino; - fromAminoMsg(object: _115.MsgAttestResponseAminoMsg): _115.MsgAttestResponse; - fromProtoMsg(message: _115.MsgAttestResponseProtoMsg): _115.MsgAttestResponse; - toProto(message: _115.MsgAttestResponse): Uint8Array; - toProtoMsg(message: _115.MsgAttestResponse): _115.MsgAttestResponseProtoMsg; + typeUrl: string; + encode(message: _116.MsgAttestResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgAttestResponse; + fromJSON(object: any): _116.MsgAttestResponse; + toJSON(message: _116.MsgAttestResponse): unknown; + fromPartial(object: Partial<_116.MsgAttestResponse>): _116.MsgAttestResponse; + fromAmino(object: _116.MsgAttestResponseAmino): _116.MsgAttestResponse; + toAmino(message: _116.MsgAttestResponse): _116.MsgAttestResponseAmino; + fromAminoMsg(object: _116.MsgAttestResponseAminoMsg): _116.MsgAttestResponse; + fromProtoMsg(message: _116.MsgAttestResponseProtoMsg): _116.MsgAttestResponse; + toProto(message: _116.MsgAttestResponse): Uint8Array; + toProtoMsg(message: _116.MsgAttestResponse): _116.MsgAttestResponseProtoMsg; }; MsgDefineResolver: { - encode(message: _115.MsgDefineResolver, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgDefineResolver; - fromJSON(object: any): _115.MsgDefineResolver; - toJSON(message: _115.MsgDefineResolver): unknown; - fromPartial(object: Partial<_115.MsgDefineResolver>): _115.MsgDefineResolver; - fromAmino(object: _115.MsgDefineResolverAmino): _115.MsgDefineResolver; - toAmino(message: _115.MsgDefineResolver): _115.MsgDefineResolverAmino; - fromAminoMsg(object: _115.MsgDefineResolverAminoMsg): _115.MsgDefineResolver; - toAminoMsg(message: _115.MsgDefineResolver): _115.MsgDefineResolverAminoMsg; - fromProtoMsg(message: _115.MsgDefineResolverProtoMsg): _115.MsgDefineResolver; - toProto(message: _115.MsgDefineResolver): Uint8Array; - toProtoMsg(message: _115.MsgDefineResolver): _115.MsgDefineResolverProtoMsg; + typeUrl: string; + encode(message: _116.MsgDefineResolver, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgDefineResolver; + fromJSON(object: any): _116.MsgDefineResolver; + toJSON(message: _116.MsgDefineResolver): unknown; + fromPartial(object: Partial<_116.MsgDefineResolver>): _116.MsgDefineResolver; + fromAmino(object: _116.MsgDefineResolverAmino): _116.MsgDefineResolver; + toAmino(message: _116.MsgDefineResolver): _116.MsgDefineResolverAmino; + fromAminoMsg(object: _116.MsgDefineResolverAminoMsg): _116.MsgDefineResolver; + toAminoMsg(message: _116.MsgDefineResolver): _116.MsgDefineResolverAminoMsg; + fromProtoMsg(message: _116.MsgDefineResolverProtoMsg): _116.MsgDefineResolver; + toProto(message: _116.MsgDefineResolver): Uint8Array; + toProtoMsg(message: _116.MsgDefineResolver): _116.MsgDefineResolverProtoMsg; }; MsgDefineResolverResponse: { - encode(message: _115.MsgDefineResolverResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgDefineResolverResponse; - fromJSON(object: any): _115.MsgDefineResolverResponse; - toJSON(message: _115.MsgDefineResolverResponse): unknown; - fromPartial(object: Partial<_115.MsgDefineResolverResponse>): _115.MsgDefineResolverResponse; - fromAmino(object: _115.MsgDefineResolverResponseAmino): _115.MsgDefineResolverResponse; - toAmino(message: _115.MsgDefineResolverResponse): _115.MsgDefineResolverResponseAmino; - fromAminoMsg(object: _115.MsgDefineResolverResponseAminoMsg): _115.MsgDefineResolverResponse; - fromProtoMsg(message: _115.MsgDefineResolverResponseProtoMsg): _115.MsgDefineResolverResponse; - toProto(message: _115.MsgDefineResolverResponse): Uint8Array; - toProtoMsg(message: _115.MsgDefineResolverResponse): _115.MsgDefineResolverResponseProtoMsg; + typeUrl: string; + encode(message: _116.MsgDefineResolverResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgDefineResolverResponse; + fromJSON(object: any): _116.MsgDefineResolverResponse; + toJSON(message: _116.MsgDefineResolverResponse): unknown; + fromPartial(object: Partial<_116.MsgDefineResolverResponse>): _116.MsgDefineResolverResponse; + fromAmino(object: _116.MsgDefineResolverResponseAmino): _116.MsgDefineResolverResponse; + toAmino(message: _116.MsgDefineResolverResponse): _116.MsgDefineResolverResponseAmino; + fromAminoMsg(object: _116.MsgDefineResolverResponseAminoMsg): _116.MsgDefineResolverResponse; + fromProtoMsg(message: _116.MsgDefineResolverResponseProtoMsg): _116.MsgDefineResolverResponse; + toProto(message: _116.MsgDefineResolverResponse): Uint8Array; + toProtoMsg(message: _116.MsgDefineResolverResponse): _116.MsgDefineResolverResponseProtoMsg; }; MsgRegisterResolver: { - encode(message: _115.MsgRegisterResolver, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgRegisterResolver; - fromJSON(object: any): _115.MsgRegisterResolver; - toJSON(message: _115.MsgRegisterResolver): unknown; - fromPartial(object: Partial<_115.MsgRegisterResolver>): _115.MsgRegisterResolver; - fromAmino(object: _115.MsgRegisterResolverAmino): _115.MsgRegisterResolver; - toAmino(message: _115.MsgRegisterResolver): _115.MsgRegisterResolverAmino; - fromAminoMsg(object: _115.MsgRegisterResolverAminoMsg): _115.MsgRegisterResolver; - toAminoMsg(message: _115.MsgRegisterResolver): _115.MsgRegisterResolverAminoMsg; - fromProtoMsg(message: _115.MsgRegisterResolverProtoMsg): _115.MsgRegisterResolver; - toProto(message: _115.MsgRegisterResolver): Uint8Array; - toProtoMsg(message: _115.MsgRegisterResolver): _115.MsgRegisterResolverProtoMsg; + typeUrl: string; + encode(message: _116.MsgRegisterResolver, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgRegisterResolver; + fromJSON(object: any): _116.MsgRegisterResolver; + toJSON(message: _116.MsgRegisterResolver): unknown; + fromPartial(object: Partial<_116.MsgRegisterResolver>): _116.MsgRegisterResolver; + fromAmino(object: _116.MsgRegisterResolverAmino): _116.MsgRegisterResolver; + toAmino(message: _116.MsgRegisterResolver): _116.MsgRegisterResolverAmino; + fromAminoMsg(object: _116.MsgRegisterResolverAminoMsg): _116.MsgRegisterResolver; + toAminoMsg(message: _116.MsgRegisterResolver): _116.MsgRegisterResolverAminoMsg; + fromProtoMsg(message: _116.MsgRegisterResolverProtoMsg): _116.MsgRegisterResolver; + toProto(message: _116.MsgRegisterResolver): Uint8Array; + toProtoMsg(message: _116.MsgRegisterResolver): _116.MsgRegisterResolverProtoMsg; }; MsgRegisterResolverResponse: { - encode(_: _115.MsgRegisterResolverResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _115.MsgRegisterResolverResponse; - fromJSON(_: any): _115.MsgRegisterResolverResponse; - toJSON(_: _115.MsgRegisterResolverResponse): unknown; - fromPartial(_: Partial<_115.MsgRegisterResolverResponse>): _115.MsgRegisterResolverResponse; - fromAmino(_: _115.MsgRegisterResolverResponseAmino): _115.MsgRegisterResolverResponse; - toAmino(_: _115.MsgRegisterResolverResponse): _115.MsgRegisterResolverResponseAmino; - fromAminoMsg(object: _115.MsgRegisterResolverResponseAminoMsg): _115.MsgRegisterResolverResponse; - fromProtoMsg(message: _115.MsgRegisterResolverResponseProtoMsg): _115.MsgRegisterResolverResponse; - toProto(message: _115.MsgRegisterResolverResponse): Uint8Array; - toProtoMsg(message: _115.MsgRegisterResolverResponse): _115.MsgRegisterResolverResponseProtoMsg; + typeUrl: string; + encode(_: _116.MsgRegisterResolverResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _116.MsgRegisterResolverResponse; + fromJSON(_: any): _116.MsgRegisterResolverResponse; + toJSON(_: _116.MsgRegisterResolverResponse): unknown; + fromPartial(_: Partial<_116.MsgRegisterResolverResponse>): _116.MsgRegisterResolverResponse; + fromAmino(_: _116.MsgRegisterResolverResponseAmino): _116.MsgRegisterResolverResponse; + toAmino(_: _116.MsgRegisterResolverResponse): _116.MsgRegisterResolverResponseAmino; + fromAminoMsg(object: _116.MsgRegisterResolverResponseAminoMsg): _116.MsgRegisterResolverResponse; + fromProtoMsg(message: _116.MsgRegisterResolverResponseProtoMsg): _116.MsgRegisterResolverResponse; + toProto(message: _116.MsgRegisterResolverResponse): Uint8Array; + toProtoMsg(message: _116.MsgRegisterResolverResponse): _116.MsgRegisterResolverResponseProtoMsg; }; DataID: { - encode(message: _114.DataID, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _114.DataID; - fromJSON(object: any): _114.DataID; - toJSON(message: _114.DataID): unknown; - fromPartial(object: Partial<_114.DataID>): _114.DataID; - fromAmino(object: _114.DataIDAmino): _114.DataID; - toAmino(message: _114.DataID): _114.DataIDAmino; - fromAminoMsg(object: _114.DataIDAminoMsg): _114.DataID; - fromProtoMsg(message: _114.DataIDProtoMsg): _114.DataID; - toProto(message: _114.DataID): Uint8Array; - toProtoMsg(message: _114.DataID): _114.DataIDProtoMsg; + typeUrl: string; + encode(message: _115.DataID, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _115.DataID; + fromJSON(object: any): _115.DataID; + toJSON(message: _115.DataID): unknown; + fromPartial(object: Partial<_115.DataID>): _115.DataID; + fromAmino(object: _115.DataIDAmino): _115.DataID; + toAmino(message: _115.DataID): _115.DataIDAmino; + fromAminoMsg(object: _115.DataIDAminoMsg): _115.DataID; + fromProtoMsg(message: _115.DataIDProtoMsg): _115.DataID; + toProto(message: _115.DataID): Uint8Array; + toProtoMsg(message: _115.DataID): _115.DataIDProtoMsg; }; DataAnchor: { - encode(message: _114.DataAnchor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _114.DataAnchor; - fromJSON(object: any): _114.DataAnchor; - toJSON(message: _114.DataAnchor): unknown; - fromPartial(object: Partial<_114.DataAnchor>): _114.DataAnchor; - fromAmino(object: _114.DataAnchorAmino): _114.DataAnchor; - toAmino(message: _114.DataAnchor): _114.DataAnchorAmino; - fromAminoMsg(object: _114.DataAnchorAminoMsg): _114.DataAnchor; - fromProtoMsg(message: _114.DataAnchorProtoMsg): _114.DataAnchor; - toProto(message: _114.DataAnchor): Uint8Array; - toProtoMsg(message: _114.DataAnchor): _114.DataAnchorProtoMsg; + typeUrl: string; + encode(message: _115.DataAnchor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _115.DataAnchor; + fromJSON(object: any): _115.DataAnchor; + toJSON(message: _115.DataAnchor): unknown; + fromPartial(object: Partial<_115.DataAnchor>): _115.DataAnchor; + fromAmino(object: _115.DataAnchorAmino): _115.DataAnchor; + toAmino(message: _115.DataAnchor): _115.DataAnchorAmino; + fromAminoMsg(object: _115.DataAnchorAminoMsg): _115.DataAnchor; + fromProtoMsg(message: _115.DataAnchorProtoMsg): _115.DataAnchor; + toProto(message: _115.DataAnchor): Uint8Array; + toProtoMsg(message: _115.DataAnchor): _115.DataAnchorProtoMsg; }; DataAttestor: { - encode(message: _114.DataAttestor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _114.DataAttestor; - fromJSON(object: any): _114.DataAttestor; - toJSON(message: _114.DataAttestor): unknown; - fromPartial(object: Partial<_114.DataAttestor>): _114.DataAttestor; - fromAmino(object: _114.DataAttestorAmino): _114.DataAttestor; - toAmino(message: _114.DataAttestor): _114.DataAttestorAmino; - fromAminoMsg(object: _114.DataAttestorAminoMsg): _114.DataAttestor; - fromProtoMsg(message: _114.DataAttestorProtoMsg): _114.DataAttestor; - toProto(message: _114.DataAttestor): Uint8Array; - toProtoMsg(message: _114.DataAttestor): _114.DataAttestorProtoMsg; + typeUrl: string; + encode(message: _115.DataAttestor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _115.DataAttestor; + fromJSON(object: any): _115.DataAttestor; + toJSON(message: _115.DataAttestor): unknown; + fromPartial(object: Partial<_115.DataAttestor>): _115.DataAttestor; + fromAmino(object: _115.DataAttestorAmino): _115.DataAttestor; + toAmino(message: _115.DataAttestor): _115.DataAttestorAmino; + fromAminoMsg(object: _115.DataAttestorAminoMsg): _115.DataAttestor; + fromProtoMsg(message: _115.DataAttestorProtoMsg): _115.DataAttestor; + toProto(message: _115.DataAttestor): Uint8Array; + toProtoMsg(message: _115.DataAttestor): _115.DataAttestorProtoMsg; }; Resolver: { - encode(message: _114.Resolver, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _114.Resolver; - fromJSON(object: any): _114.Resolver; - toJSON(message: _114.Resolver): unknown; - fromPartial(object: Partial<_114.Resolver>): _114.Resolver; - fromAmino(object: _114.ResolverAmino): _114.Resolver; - toAmino(message: _114.Resolver): _114.ResolverAmino; - fromAminoMsg(object: _114.ResolverAminoMsg): _114.Resolver; - fromProtoMsg(message: _114.ResolverProtoMsg): _114.Resolver; - toProto(message: _114.Resolver): Uint8Array; - toProtoMsg(message: _114.Resolver): _114.ResolverProtoMsg; + typeUrl: string; + encode(message: _115.Resolver, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _115.Resolver; + fromJSON(object: any): _115.Resolver; + toJSON(message: _115.Resolver): unknown; + fromPartial(object: Partial<_115.Resolver>): _115.Resolver; + fromAmino(object: _115.ResolverAmino): _115.Resolver; + toAmino(message: _115.Resolver): _115.ResolverAmino; + fromAminoMsg(object: _115.ResolverAminoMsg): _115.Resolver; + fromProtoMsg(message: _115.ResolverProtoMsg): _115.Resolver; + toProto(message: _115.Resolver): Uint8Array; + toProtoMsg(message: _115.Resolver): _115.ResolverProtoMsg; }; DataResolver: { - encode(message: _114.DataResolver, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _114.DataResolver; - fromJSON(object: any): _114.DataResolver; - toJSON(message: _114.DataResolver): unknown; - fromPartial(object: Partial<_114.DataResolver>): _114.DataResolver; - fromAmino(object: _114.DataResolverAmino): _114.DataResolver; - toAmino(message: _114.DataResolver): _114.DataResolverAmino; - fromAminoMsg(object: _114.DataResolverAminoMsg): _114.DataResolver; - fromProtoMsg(message: _114.DataResolverProtoMsg): _114.DataResolver; - toProto(message: _114.DataResolver): Uint8Array; - toProtoMsg(message: _114.DataResolver): _114.DataResolverProtoMsg; + typeUrl: string; + encode(message: _115.DataResolver, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _115.DataResolver; + fromJSON(object: any): _115.DataResolver; + toJSON(message: _115.DataResolver): unknown; + fromPartial(object: Partial<_115.DataResolver>): _115.DataResolver; + fromAmino(object: _115.DataResolverAmino): _115.DataResolver; + toAmino(message: _115.DataResolver): _115.DataResolverAmino; + fromAminoMsg(object: _115.DataResolverAminoMsg): _115.DataResolver; + fromProtoMsg(message: _115.DataResolverProtoMsg): _115.DataResolver; + toProto(message: _115.DataResolver): Uint8Array; + toProtoMsg(message: _115.DataResolver): _115.DataResolverProtoMsg; }; QueryAnchorByIRIRequest: { - encode(message: _113.QueryAnchorByIRIRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAnchorByIRIRequest; - fromJSON(object: any): _113.QueryAnchorByIRIRequest; - toJSON(message: _113.QueryAnchorByIRIRequest): unknown; - fromPartial(object: Partial<_113.QueryAnchorByIRIRequest>): _113.QueryAnchorByIRIRequest; - fromAmino(object: _113.QueryAnchorByIRIRequestAmino): _113.QueryAnchorByIRIRequest; - toAmino(message: _113.QueryAnchorByIRIRequest): _113.QueryAnchorByIRIRequestAmino; - fromAminoMsg(object: _113.QueryAnchorByIRIRequestAminoMsg): _113.QueryAnchorByIRIRequest; - fromProtoMsg(message: _113.QueryAnchorByIRIRequestProtoMsg): _113.QueryAnchorByIRIRequest; - toProto(message: _113.QueryAnchorByIRIRequest): Uint8Array; - toProtoMsg(message: _113.QueryAnchorByIRIRequest): _113.QueryAnchorByIRIRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryAnchorByIRIRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAnchorByIRIRequest; + fromJSON(object: any): _114.QueryAnchorByIRIRequest; + toJSON(message: _114.QueryAnchorByIRIRequest): unknown; + fromPartial(object: Partial<_114.QueryAnchorByIRIRequest>): _114.QueryAnchorByIRIRequest; + fromAmino(object: _114.QueryAnchorByIRIRequestAmino): _114.QueryAnchorByIRIRequest; + toAmino(message: _114.QueryAnchorByIRIRequest): _114.QueryAnchorByIRIRequestAmino; + fromAminoMsg(object: _114.QueryAnchorByIRIRequestAminoMsg): _114.QueryAnchorByIRIRequest; + fromProtoMsg(message: _114.QueryAnchorByIRIRequestProtoMsg): _114.QueryAnchorByIRIRequest; + toProto(message: _114.QueryAnchorByIRIRequest): Uint8Array; + toProtoMsg(message: _114.QueryAnchorByIRIRequest): _114.QueryAnchorByIRIRequestProtoMsg; }; QueryAnchorByIRIResponse: { - encode(message: _113.QueryAnchorByIRIResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAnchorByIRIResponse; - fromJSON(object: any): _113.QueryAnchorByIRIResponse; - toJSON(message: _113.QueryAnchorByIRIResponse): unknown; - fromPartial(object: Partial<_113.QueryAnchorByIRIResponse>): _113.QueryAnchorByIRIResponse; - fromAmino(object: _113.QueryAnchorByIRIResponseAmino): _113.QueryAnchorByIRIResponse; - toAmino(message: _113.QueryAnchorByIRIResponse): _113.QueryAnchorByIRIResponseAmino; - fromAminoMsg(object: _113.QueryAnchorByIRIResponseAminoMsg): _113.QueryAnchorByIRIResponse; - fromProtoMsg(message: _113.QueryAnchorByIRIResponseProtoMsg): _113.QueryAnchorByIRIResponse; - toProto(message: _113.QueryAnchorByIRIResponse): Uint8Array; - toProtoMsg(message: _113.QueryAnchorByIRIResponse): _113.QueryAnchorByIRIResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryAnchorByIRIResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAnchorByIRIResponse; + fromJSON(object: any): _114.QueryAnchorByIRIResponse; + toJSON(message: _114.QueryAnchorByIRIResponse): unknown; + fromPartial(object: Partial<_114.QueryAnchorByIRIResponse>): _114.QueryAnchorByIRIResponse; + fromAmino(object: _114.QueryAnchorByIRIResponseAmino): _114.QueryAnchorByIRIResponse; + toAmino(message: _114.QueryAnchorByIRIResponse): _114.QueryAnchorByIRIResponseAmino; + fromAminoMsg(object: _114.QueryAnchorByIRIResponseAminoMsg): _114.QueryAnchorByIRIResponse; + fromProtoMsg(message: _114.QueryAnchorByIRIResponseProtoMsg): _114.QueryAnchorByIRIResponse; + toProto(message: _114.QueryAnchorByIRIResponse): Uint8Array; + toProtoMsg(message: _114.QueryAnchorByIRIResponse): _114.QueryAnchorByIRIResponseProtoMsg; }; QueryAnchorByHashRequest: { - encode(message: _113.QueryAnchorByHashRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAnchorByHashRequest; - fromJSON(object: any): _113.QueryAnchorByHashRequest; - toJSON(message: _113.QueryAnchorByHashRequest): unknown; - fromPartial(object: Partial<_113.QueryAnchorByHashRequest>): _113.QueryAnchorByHashRequest; - fromAmino(object: _113.QueryAnchorByHashRequestAmino): _113.QueryAnchorByHashRequest; - toAmino(message: _113.QueryAnchorByHashRequest): _113.QueryAnchorByHashRequestAmino; - fromAminoMsg(object: _113.QueryAnchorByHashRequestAminoMsg): _113.QueryAnchorByHashRequest; - fromProtoMsg(message: _113.QueryAnchorByHashRequestProtoMsg): _113.QueryAnchorByHashRequest; - toProto(message: _113.QueryAnchorByHashRequest): Uint8Array; - toProtoMsg(message: _113.QueryAnchorByHashRequest): _113.QueryAnchorByHashRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryAnchorByHashRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAnchorByHashRequest; + fromJSON(object: any): _114.QueryAnchorByHashRequest; + toJSON(message: _114.QueryAnchorByHashRequest): unknown; + fromPartial(object: Partial<_114.QueryAnchorByHashRequest>): _114.QueryAnchorByHashRequest; + fromAmino(object: _114.QueryAnchorByHashRequestAmino): _114.QueryAnchorByHashRequest; + toAmino(message: _114.QueryAnchorByHashRequest): _114.QueryAnchorByHashRequestAmino; + fromAminoMsg(object: _114.QueryAnchorByHashRequestAminoMsg): _114.QueryAnchorByHashRequest; + fromProtoMsg(message: _114.QueryAnchorByHashRequestProtoMsg): _114.QueryAnchorByHashRequest; + toProto(message: _114.QueryAnchorByHashRequest): Uint8Array; + toProtoMsg(message: _114.QueryAnchorByHashRequest): _114.QueryAnchorByHashRequestProtoMsg; }; QueryAnchorByHashResponse: { - encode(message: _113.QueryAnchorByHashResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAnchorByHashResponse; - fromJSON(object: any): _113.QueryAnchorByHashResponse; - toJSON(message: _113.QueryAnchorByHashResponse): unknown; - fromPartial(object: Partial<_113.QueryAnchorByHashResponse>): _113.QueryAnchorByHashResponse; - fromAmino(object: _113.QueryAnchorByHashResponseAmino): _113.QueryAnchorByHashResponse; - toAmino(message: _113.QueryAnchorByHashResponse): _113.QueryAnchorByHashResponseAmino; - fromAminoMsg(object: _113.QueryAnchorByHashResponseAminoMsg): _113.QueryAnchorByHashResponse; - fromProtoMsg(message: _113.QueryAnchorByHashResponseProtoMsg): _113.QueryAnchorByHashResponse; - toProto(message: _113.QueryAnchorByHashResponse): Uint8Array; - toProtoMsg(message: _113.QueryAnchorByHashResponse): _113.QueryAnchorByHashResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryAnchorByHashResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAnchorByHashResponse; + fromJSON(object: any): _114.QueryAnchorByHashResponse; + toJSON(message: _114.QueryAnchorByHashResponse): unknown; + fromPartial(object: Partial<_114.QueryAnchorByHashResponse>): _114.QueryAnchorByHashResponse; + fromAmino(object: _114.QueryAnchorByHashResponseAmino): _114.QueryAnchorByHashResponse; + toAmino(message: _114.QueryAnchorByHashResponse): _114.QueryAnchorByHashResponseAmino; + fromAminoMsg(object: _114.QueryAnchorByHashResponseAminoMsg): _114.QueryAnchorByHashResponse; + fromProtoMsg(message: _114.QueryAnchorByHashResponseProtoMsg): _114.QueryAnchorByHashResponse; + toProto(message: _114.QueryAnchorByHashResponse): Uint8Array; + toProtoMsg(message: _114.QueryAnchorByHashResponse): _114.QueryAnchorByHashResponseProtoMsg; }; QueryAttestationsByAttestorRequest: { - encode(message: _113.QueryAttestationsByAttestorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAttestationsByAttestorRequest; - fromJSON(object: any): _113.QueryAttestationsByAttestorRequest; - toJSON(message: _113.QueryAttestationsByAttestorRequest): unknown; - fromPartial(object: Partial<_113.QueryAttestationsByAttestorRequest>): _113.QueryAttestationsByAttestorRequest; - fromAmino(object: _113.QueryAttestationsByAttestorRequestAmino): _113.QueryAttestationsByAttestorRequest; - toAmino(message: _113.QueryAttestationsByAttestorRequest): _113.QueryAttestationsByAttestorRequestAmino; - fromAminoMsg(object: _113.QueryAttestationsByAttestorRequestAminoMsg): _113.QueryAttestationsByAttestorRequest; - fromProtoMsg(message: _113.QueryAttestationsByAttestorRequestProtoMsg): _113.QueryAttestationsByAttestorRequest; - toProto(message: _113.QueryAttestationsByAttestorRequest): Uint8Array; - toProtoMsg(message: _113.QueryAttestationsByAttestorRequest): _113.QueryAttestationsByAttestorRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryAttestationsByAttestorRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAttestationsByAttestorRequest; + fromJSON(object: any): _114.QueryAttestationsByAttestorRequest; + toJSON(message: _114.QueryAttestationsByAttestorRequest): unknown; + fromPartial(object: Partial<_114.QueryAttestationsByAttestorRequest>): _114.QueryAttestationsByAttestorRequest; + fromAmino(object: _114.QueryAttestationsByAttestorRequestAmino): _114.QueryAttestationsByAttestorRequest; + toAmino(message: _114.QueryAttestationsByAttestorRequest): _114.QueryAttestationsByAttestorRequestAmino; + fromAminoMsg(object: _114.QueryAttestationsByAttestorRequestAminoMsg): _114.QueryAttestationsByAttestorRequest; + fromProtoMsg(message: _114.QueryAttestationsByAttestorRequestProtoMsg): _114.QueryAttestationsByAttestorRequest; + toProto(message: _114.QueryAttestationsByAttestorRequest): Uint8Array; + toProtoMsg(message: _114.QueryAttestationsByAttestorRequest): _114.QueryAttestationsByAttestorRequestProtoMsg; }; QueryAttestationsByAttestorResponse: { - encode(message: _113.QueryAttestationsByAttestorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAttestationsByAttestorResponse; - fromJSON(object: any): _113.QueryAttestationsByAttestorResponse; - toJSON(message: _113.QueryAttestationsByAttestorResponse): unknown; - fromPartial(object: Partial<_113.QueryAttestationsByAttestorResponse>): _113.QueryAttestationsByAttestorResponse; - fromAmino(object: _113.QueryAttestationsByAttestorResponseAmino): _113.QueryAttestationsByAttestorResponse; - toAmino(message: _113.QueryAttestationsByAttestorResponse): _113.QueryAttestationsByAttestorResponseAmino; - fromAminoMsg(object: _113.QueryAttestationsByAttestorResponseAminoMsg): _113.QueryAttestationsByAttestorResponse; - fromProtoMsg(message: _113.QueryAttestationsByAttestorResponseProtoMsg): _113.QueryAttestationsByAttestorResponse; - toProto(message: _113.QueryAttestationsByAttestorResponse): Uint8Array; - toProtoMsg(message: _113.QueryAttestationsByAttestorResponse): _113.QueryAttestationsByAttestorResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryAttestationsByAttestorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAttestationsByAttestorResponse; + fromJSON(object: any): _114.QueryAttestationsByAttestorResponse; + toJSON(message: _114.QueryAttestationsByAttestorResponse): unknown; + fromPartial(object: Partial<_114.QueryAttestationsByAttestorResponse>): _114.QueryAttestationsByAttestorResponse; + fromAmino(object: _114.QueryAttestationsByAttestorResponseAmino): _114.QueryAttestationsByAttestorResponse; + toAmino(message: _114.QueryAttestationsByAttestorResponse): _114.QueryAttestationsByAttestorResponseAmino; + fromAminoMsg(object: _114.QueryAttestationsByAttestorResponseAminoMsg): _114.QueryAttestationsByAttestorResponse; + fromProtoMsg(message: _114.QueryAttestationsByAttestorResponseProtoMsg): _114.QueryAttestationsByAttestorResponse; + toProto(message: _114.QueryAttestationsByAttestorResponse): Uint8Array; + toProtoMsg(message: _114.QueryAttestationsByAttestorResponse): _114.QueryAttestationsByAttestorResponseProtoMsg; }; QueryAttestationsByIRIRequest: { - encode(message: _113.QueryAttestationsByIRIRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAttestationsByIRIRequest; - fromJSON(object: any): _113.QueryAttestationsByIRIRequest; - toJSON(message: _113.QueryAttestationsByIRIRequest): unknown; - fromPartial(object: Partial<_113.QueryAttestationsByIRIRequest>): _113.QueryAttestationsByIRIRequest; - fromAmino(object: _113.QueryAttestationsByIRIRequestAmino): _113.QueryAttestationsByIRIRequest; - toAmino(message: _113.QueryAttestationsByIRIRequest): _113.QueryAttestationsByIRIRequestAmino; - fromAminoMsg(object: _113.QueryAttestationsByIRIRequestAminoMsg): _113.QueryAttestationsByIRIRequest; - fromProtoMsg(message: _113.QueryAttestationsByIRIRequestProtoMsg): _113.QueryAttestationsByIRIRequest; - toProto(message: _113.QueryAttestationsByIRIRequest): Uint8Array; - toProtoMsg(message: _113.QueryAttestationsByIRIRequest): _113.QueryAttestationsByIRIRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryAttestationsByIRIRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAttestationsByIRIRequest; + fromJSON(object: any): _114.QueryAttestationsByIRIRequest; + toJSON(message: _114.QueryAttestationsByIRIRequest): unknown; + fromPartial(object: Partial<_114.QueryAttestationsByIRIRequest>): _114.QueryAttestationsByIRIRequest; + fromAmino(object: _114.QueryAttestationsByIRIRequestAmino): _114.QueryAttestationsByIRIRequest; + toAmino(message: _114.QueryAttestationsByIRIRequest): _114.QueryAttestationsByIRIRequestAmino; + fromAminoMsg(object: _114.QueryAttestationsByIRIRequestAminoMsg): _114.QueryAttestationsByIRIRequest; + fromProtoMsg(message: _114.QueryAttestationsByIRIRequestProtoMsg): _114.QueryAttestationsByIRIRequest; + toProto(message: _114.QueryAttestationsByIRIRequest): Uint8Array; + toProtoMsg(message: _114.QueryAttestationsByIRIRequest): _114.QueryAttestationsByIRIRequestProtoMsg; }; QueryAttestationsByIRIResponse: { - encode(message: _113.QueryAttestationsByIRIResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAttestationsByIRIResponse; - fromJSON(object: any): _113.QueryAttestationsByIRIResponse; - toJSON(message: _113.QueryAttestationsByIRIResponse): unknown; - fromPartial(object: Partial<_113.QueryAttestationsByIRIResponse>): _113.QueryAttestationsByIRIResponse; - fromAmino(object: _113.QueryAttestationsByIRIResponseAmino): _113.QueryAttestationsByIRIResponse; - toAmino(message: _113.QueryAttestationsByIRIResponse): _113.QueryAttestationsByIRIResponseAmino; - fromAminoMsg(object: _113.QueryAttestationsByIRIResponseAminoMsg): _113.QueryAttestationsByIRIResponse; - fromProtoMsg(message: _113.QueryAttestationsByIRIResponseProtoMsg): _113.QueryAttestationsByIRIResponse; - toProto(message: _113.QueryAttestationsByIRIResponse): Uint8Array; - toProtoMsg(message: _113.QueryAttestationsByIRIResponse): _113.QueryAttestationsByIRIResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryAttestationsByIRIResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAttestationsByIRIResponse; + fromJSON(object: any): _114.QueryAttestationsByIRIResponse; + toJSON(message: _114.QueryAttestationsByIRIResponse): unknown; + fromPartial(object: Partial<_114.QueryAttestationsByIRIResponse>): _114.QueryAttestationsByIRIResponse; + fromAmino(object: _114.QueryAttestationsByIRIResponseAmino): _114.QueryAttestationsByIRIResponse; + toAmino(message: _114.QueryAttestationsByIRIResponse): _114.QueryAttestationsByIRIResponseAmino; + fromAminoMsg(object: _114.QueryAttestationsByIRIResponseAminoMsg): _114.QueryAttestationsByIRIResponse; + fromProtoMsg(message: _114.QueryAttestationsByIRIResponseProtoMsg): _114.QueryAttestationsByIRIResponse; + toProto(message: _114.QueryAttestationsByIRIResponse): Uint8Array; + toProtoMsg(message: _114.QueryAttestationsByIRIResponse): _114.QueryAttestationsByIRIResponseProtoMsg; }; QueryAttestationsByHashRequest: { - encode(message: _113.QueryAttestationsByHashRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAttestationsByHashRequest; - fromJSON(object: any): _113.QueryAttestationsByHashRequest; - toJSON(message: _113.QueryAttestationsByHashRequest): unknown; - fromPartial(object: Partial<_113.QueryAttestationsByHashRequest>): _113.QueryAttestationsByHashRequest; - fromAmino(object: _113.QueryAttestationsByHashRequestAmino): _113.QueryAttestationsByHashRequest; - toAmino(message: _113.QueryAttestationsByHashRequest): _113.QueryAttestationsByHashRequestAmino; - fromAminoMsg(object: _113.QueryAttestationsByHashRequestAminoMsg): _113.QueryAttestationsByHashRequest; - fromProtoMsg(message: _113.QueryAttestationsByHashRequestProtoMsg): _113.QueryAttestationsByHashRequest; - toProto(message: _113.QueryAttestationsByHashRequest): Uint8Array; - toProtoMsg(message: _113.QueryAttestationsByHashRequest): _113.QueryAttestationsByHashRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryAttestationsByHashRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAttestationsByHashRequest; + fromJSON(object: any): _114.QueryAttestationsByHashRequest; + toJSON(message: _114.QueryAttestationsByHashRequest): unknown; + fromPartial(object: Partial<_114.QueryAttestationsByHashRequest>): _114.QueryAttestationsByHashRequest; + fromAmino(object: _114.QueryAttestationsByHashRequestAmino): _114.QueryAttestationsByHashRequest; + toAmino(message: _114.QueryAttestationsByHashRequest): _114.QueryAttestationsByHashRequestAmino; + fromAminoMsg(object: _114.QueryAttestationsByHashRequestAminoMsg): _114.QueryAttestationsByHashRequest; + fromProtoMsg(message: _114.QueryAttestationsByHashRequestProtoMsg): _114.QueryAttestationsByHashRequest; + toProto(message: _114.QueryAttestationsByHashRequest): Uint8Array; + toProtoMsg(message: _114.QueryAttestationsByHashRequest): _114.QueryAttestationsByHashRequestProtoMsg; }; QueryAttestationsByHashResponse: { - encode(message: _113.QueryAttestationsByHashResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryAttestationsByHashResponse; - fromJSON(object: any): _113.QueryAttestationsByHashResponse; - toJSON(message: _113.QueryAttestationsByHashResponse): unknown; - fromPartial(object: Partial<_113.QueryAttestationsByHashResponse>): _113.QueryAttestationsByHashResponse; - fromAmino(object: _113.QueryAttestationsByHashResponseAmino): _113.QueryAttestationsByHashResponse; - toAmino(message: _113.QueryAttestationsByHashResponse): _113.QueryAttestationsByHashResponseAmino; - fromAminoMsg(object: _113.QueryAttestationsByHashResponseAminoMsg): _113.QueryAttestationsByHashResponse; - fromProtoMsg(message: _113.QueryAttestationsByHashResponseProtoMsg): _113.QueryAttestationsByHashResponse; - toProto(message: _113.QueryAttestationsByHashResponse): Uint8Array; - toProtoMsg(message: _113.QueryAttestationsByHashResponse): _113.QueryAttestationsByHashResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryAttestationsByHashResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryAttestationsByHashResponse; + fromJSON(object: any): _114.QueryAttestationsByHashResponse; + toJSON(message: _114.QueryAttestationsByHashResponse): unknown; + fromPartial(object: Partial<_114.QueryAttestationsByHashResponse>): _114.QueryAttestationsByHashResponse; + fromAmino(object: _114.QueryAttestationsByHashResponseAmino): _114.QueryAttestationsByHashResponse; + toAmino(message: _114.QueryAttestationsByHashResponse): _114.QueryAttestationsByHashResponseAmino; + fromAminoMsg(object: _114.QueryAttestationsByHashResponseAminoMsg): _114.QueryAttestationsByHashResponse; + fromProtoMsg(message: _114.QueryAttestationsByHashResponseProtoMsg): _114.QueryAttestationsByHashResponse; + toProto(message: _114.QueryAttestationsByHashResponse): Uint8Array; + toProtoMsg(message: _114.QueryAttestationsByHashResponse): _114.QueryAttestationsByHashResponseProtoMsg; }; QueryResolverRequest: { - encode(message: _113.QueryResolverRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolverRequest; - fromJSON(object: any): _113.QueryResolverRequest; - toJSON(message: _113.QueryResolverRequest): unknown; - fromPartial(object: Partial<_113.QueryResolverRequest>): _113.QueryResolverRequest; - fromAmino(object: _113.QueryResolverRequestAmino): _113.QueryResolverRequest; - toAmino(message: _113.QueryResolverRequest): _113.QueryResolverRequestAmino; - fromAminoMsg(object: _113.QueryResolverRequestAminoMsg): _113.QueryResolverRequest; - fromProtoMsg(message: _113.QueryResolverRequestProtoMsg): _113.QueryResolverRequest; - toProto(message: _113.QueryResolverRequest): Uint8Array; - toProtoMsg(message: _113.QueryResolverRequest): _113.QueryResolverRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolverRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolverRequest; + fromJSON(object: any): _114.QueryResolverRequest; + toJSON(message: _114.QueryResolverRequest): unknown; + fromPartial(object: Partial<_114.QueryResolverRequest>): _114.QueryResolverRequest; + fromAmino(object: _114.QueryResolverRequestAmino): _114.QueryResolverRequest; + toAmino(message: _114.QueryResolverRequest): _114.QueryResolverRequestAmino; + fromAminoMsg(object: _114.QueryResolverRequestAminoMsg): _114.QueryResolverRequest; + fromProtoMsg(message: _114.QueryResolverRequestProtoMsg): _114.QueryResolverRequest; + toProto(message: _114.QueryResolverRequest): Uint8Array; + toProtoMsg(message: _114.QueryResolverRequest): _114.QueryResolverRequestProtoMsg; }; QueryResolverResponse: { - encode(message: _113.QueryResolverResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolverResponse; - fromJSON(object: any): _113.QueryResolverResponse; - toJSON(message: _113.QueryResolverResponse): unknown; - fromPartial(object: Partial<_113.QueryResolverResponse>): _113.QueryResolverResponse; - fromAmino(object: _113.QueryResolverResponseAmino): _113.QueryResolverResponse; - toAmino(message: _113.QueryResolverResponse): _113.QueryResolverResponseAmino; - fromAminoMsg(object: _113.QueryResolverResponseAminoMsg): _113.QueryResolverResponse; - fromProtoMsg(message: _113.QueryResolverResponseProtoMsg): _113.QueryResolverResponse; - toProto(message: _113.QueryResolverResponse): Uint8Array; - toProtoMsg(message: _113.QueryResolverResponse): _113.QueryResolverResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolverResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolverResponse; + fromJSON(object: any): _114.QueryResolverResponse; + toJSON(message: _114.QueryResolverResponse): unknown; + fromPartial(object: Partial<_114.QueryResolverResponse>): _114.QueryResolverResponse; + fromAmino(object: _114.QueryResolverResponseAmino): _114.QueryResolverResponse; + toAmino(message: _114.QueryResolverResponse): _114.QueryResolverResponseAmino; + fromAminoMsg(object: _114.QueryResolverResponseAminoMsg): _114.QueryResolverResponse; + fromProtoMsg(message: _114.QueryResolverResponseProtoMsg): _114.QueryResolverResponse; + toProto(message: _114.QueryResolverResponse): Uint8Array; + toProtoMsg(message: _114.QueryResolverResponse): _114.QueryResolverResponseProtoMsg; }; QueryResolversByIRIRequest: { - encode(message: _113.QueryResolversByIRIRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolversByIRIRequest; - fromJSON(object: any): _113.QueryResolversByIRIRequest; - toJSON(message: _113.QueryResolversByIRIRequest): unknown; - fromPartial(object: Partial<_113.QueryResolversByIRIRequest>): _113.QueryResolversByIRIRequest; - fromAmino(object: _113.QueryResolversByIRIRequestAmino): _113.QueryResolversByIRIRequest; - toAmino(message: _113.QueryResolversByIRIRequest): _113.QueryResolversByIRIRequestAmino; - fromAminoMsg(object: _113.QueryResolversByIRIRequestAminoMsg): _113.QueryResolversByIRIRequest; - fromProtoMsg(message: _113.QueryResolversByIRIRequestProtoMsg): _113.QueryResolversByIRIRequest; - toProto(message: _113.QueryResolversByIRIRequest): Uint8Array; - toProtoMsg(message: _113.QueryResolversByIRIRequest): _113.QueryResolversByIRIRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolversByIRIRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolversByIRIRequest; + fromJSON(object: any): _114.QueryResolversByIRIRequest; + toJSON(message: _114.QueryResolversByIRIRequest): unknown; + fromPartial(object: Partial<_114.QueryResolversByIRIRequest>): _114.QueryResolversByIRIRequest; + fromAmino(object: _114.QueryResolversByIRIRequestAmino): _114.QueryResolversByIRIRequest; + toAmino(message: _114.QueryResolversByIRIRequest): _114.QueryResolversByIRIRequestAmino; + fromAminoMsg(object: _114.QueryResolversByIRIRequestAminoMsg): _114.QueryResolversByIRIRequest; + fromProtoMsg(message: _114.QueryResolversByIRIRequestProtoMsg): _114.QueryResolversByIRIRequest; + toProto(message: _114.QueryResolversByIRIRequest): Uint8Array; + toProtoMsg(message: _114.QueryResolversByIRIRequest): _114.QueryResolversByIRIRequestProtoMsg; }; QueryResolversByIRIResponse: { - encode(message: _113.QueryResolversByIRIResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolversByIRIResponse; - fromJSON(object: any): _113.QueryResolversByIRIResponse; - toJSON(message: _113.QueryResolversByIRIResponse): unknown; - fromPartial(object: Partial<_113.QueryResolversByIRIResponse>): _113.QueryResolversByIRIResponse; - fromAmino(object: _113.QueryResolversByIRIResponseAmino): _113.QueryResolversByIRIResponse; - toAmino(message: _113.QueryResolversByIRIResponse): _113.QueryResolversByIRIResponseAmino; - fromAminoMsg(object: _113.QueryResolversByIRIResponseAminoMsg): _113.QueryResolversByIRIResponse; - fromProtoMsg(message: _113.QueryResolversByIRIResponseProtoMsg): _113.QueryResolversByIRIResponse; - toProto(message: _113.QueryResolversByIRIResponse): Uint8Array; - toProtoMsg(message: _113.QueryResolversByIRIResponse): _113.QueryResolversByIRIResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolversByIRIResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolversByIRIResponse; + fromJSON(object: any): _114.QueryResolversByIRIResponse; + toJSON(message: _114.QueryResolversByIRIResponse): unknown; + fromPartial(object: Partial<_114.QueryResolversByIRIResponse>): _114.QueryResolversByIRIResponse; + fromAmino(object: _114.QueryResolversByIRIResponseAmino): _114.QueryResolversByIRIResponse; + toAmino(message: _114.QueryResolversByIRIResponse): _114.QueryResolversByIRIResponseAmino; + fromAminoMsg(object: _114.QueryResolversByIRIResponseAminoMsg): _114.QueryResolversByIRIResponse; + fromProtoMsg(message: _114.QueryResolversByIRIResponseProtoMsg): _114.QueryResolversByIRIResponse; + toProto(message: _114.QueryResolversByIRIResponse): Uint8Array; + toProtoMsg(message: _114.QueryResolversByIRIResponse): _114.QueryResolversByIRIResponseProtoMsg; }; QueryResolversByHashRequest: { - encode(message: _113.QueryResolversByHashRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolversByHashRequest; - fromJSON(object: any): _113.QueryResolversByHashRequest; - toJSON(message: _113.QueryResolversByHashRequest): unknown; - fromPartial(object: Partial<_113.QueryResolversByHashRequest>): _113.QueryResolversByHashRequest; - fromAmino(object: _113.QueryResolversByHashRequestAmino): _113.QueryResolversByHashRequest; - toAmino(message: _113.QueryResolversByHashRequest): _113.QueryResolversByHashRequestAmino; - fromAminoMsg(object: _113.QueryResolversByHashRequestAminoMsg): _113.QueryResolversByHashRequest; - fromProtoMsg(message: _113.QueryResolversByHashRequestProtoMsg): _113.QueryResolversByHashRequest; - toProto(message: _113.QueryResolversByHashRequest): Uint8Array; - toProtoMsg(message: _113.QueryResolversByHashRequest): _113.QueryResolversByHashRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolversByHashRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolversByHashRequest; + fromJSON(object: any): _114.QueryResolversByHashRequest; + toJSON(message: _114.QueryResolversByHashRequest): unknown; + fromPartial(object: Partial<_114.QueryResolversByHashRequest>): _114.QueryResolversByHashRequest; + fromAmino(object: _114.QueryResolversByHashRequestAmino): _114.QueryResolversByHashRequest; + toAmino(message: _114.QueryResolversByHashRequest): _114.QueryResolversByHashRequestAmino; + fromAminoMsg(object: _114.QueryResolversByHashRequestAminoMsg): _114.QueryResolversByHashRequest; + fromProtoMsg(message: _114.QueryResolversByHashRequestProtoMsg): _114.QueryResolversByHashRequest; + toProto(message: _114.QueryResolversByHashRequest): Uint8Array; + toProtoMsg(message: _114.QueryResolversByHashRequest): _114.QueryResolversByHashRequestProtoMsg; }; QueryResolversByHashResponse: { - encode(message: _113.QueryResolversByHashResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolversByHashResponse; - fromJSON(object: any): _113.QueryResolversByHashResponse; - toJSON(message: _113.QueryResolversByHashResponse): unknown; - fromPartial(object: Partial<_113.QueryResolversByHashResponse>): _113.QueryResolversByHashResponse; - fromAmino(object: _113.QueryResolversByHashResponseAmino): _113.QueryResolversByHashResponse; - toAmino(message: _113.QueryResolversByHashResponse): _113.QueryResolversByHashResponseAmino; - fromAminoMsg(object: _113.QueryResolversByHashResponseAminoMsg): _113.QueryResolversByHashResponse; - fromProtoMsg(message: _113.QueryResolversByHashResponseProtoMsg): _113.QueryResolversByHashResponse; - toProto(message: _113.QueryResolversByHashResponse): Uint8Array; - toProtoMsg(message: _113.QueryResolversByHashResponse): _113.QueryResolversByHashResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolversByHashResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolversByHashResponse; + fromJSON(object: any): _114.QueryResolversByHashResponse; + toJSON(message: _114.QueryResolversByHashResponse): unknown; + fromPartial(object: Partial<_114.QueryResolversByHashResponse>): _114.QueryResolversByHashResponse; + fromAmino(object: _114.QueryResolversByHashResponseAmino): _114.QueryResolversByHashResponse; + toAmino(message: _114.QueryResolversByHashResponse): _114.QueryResolversByHashResponseAmino; + fromAminoMsg(object: _114.QueryResolversByHashResponseAminoMsg): _114.QueryResolversByHashResponse; + fromProtoMsg(message: _114.QueryResolversByHashResponseProtoMsg): _114.QueryResolversByHashResponse; + toProto(message: _114.QueryResolversByHashResponse): Uint8Array; + toProtoMsg(message: _114.QueryResolversByHashResponse): _114.QueryResolversByHashResponseProtoMsg; }; QueryResolversByURLRequest: { - encode(message: _113.QueryResolversByURLRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolversByURLRequest; - fromJSON(object: any): _113.QueryResolversByURLRequest; - toJSON(message: _113.QueryResolversByURLRequest): unknown; - fromPartial(object: Partial<_113.QueryResolversByURLRequest>): _113.QueryResolversByURLRequest; - fromAmino(object: _113.QueryResolversByURLRequestAmino): _113.QueryResolversByURLRequest; - toAmino(message: _113.QueryResolversByURLRequest): _113.QueryResolversByURLRequestAmino; - fromAminoMsg(object: _113.QueryResolversByURLRequestAminoMsg): _113.QueryResolversByURLRequest; - fromProtoMsg(message: _113.QueryResolversByURLRequestProtoMsg): _113.QueryResolversByURLRequest; - toProto(message: _113.QueryResolversByURLRequest): Uint8Array; - toProtoMsg(message: _113.QueryResolversByURLRequest): _113.QueryResolversByURLRequestProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolversByURLRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolversByURLRequest; + fromJSON(object: any): _114.QueryResolversByURLRequest; + toJSON(message: _114.QueryResolversByURLRequest): unknown; + fromPartial(object: Partial<_114.QueryResolversByURLRequest>): _114.QueryResolversByURLRequest; + fromAmino(object: _114.QueryResolversByURLRequestAmino): _114.QueryResolversByURLRequest; + toAmino(message: _114.QueryResolversByURLRequest): _114.QueryResolversByURLRequestAmino; + fromAminoMsg(object: _114.QueryResolversByURLRequestAminoMsg): _114.QueryResolversByURLRequest; + fromProtoMsg(message: _114.QueryResolversByURLRequestProtoMsg): _114.QueryResolversByURLRequest; + toProto(message: _114.QueryResolversByURLRequest): Uint8Array; + toProtoMsg(message: _114.QueryResolversByURLRequest): _114.QueryResolversByURLRequestProtoMsg; }; QueryResolversByURLResponse: { - encode(message: _113.QueryResolversByURLResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.QueryResolversByURLResponse; - fromJSON(object: any): _113.QueryResolversByURLResponse; - toJSON(message: _113.QueryResolversByURLResponse): unknown; - fromPartial(object: Partial<_113.QueryResolversByURLResponse>): _113.QueryResolversByURLResponse; - fromAmino(object: _113.QueryResolversByURLResponseAmino): _113.QueryResolversByURLResponse; - toAmino(message: _113.QueryResolversByURLResponse): _113.QueryResolversByURLResponseAmino; - fromAminoMsg(object: _113.QueryResolversByURLResponseAminoMsg): _113.QueryResolversByURLResponse; - fromProtoMsg(message: _113.QueryResolversByURLResponseProtoMsg): _113.QueryResolversByURLResponse; - toProto(message: _113.QueryResolversByURLResponse): Uint8Array; - toProtoMsg(message: _113.QueryResolversByURLResponse): _113.QueryResolversByURLResponseProtoMsg; + typeUrl: string; + encode(message: _114.QueryResolversByURLResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.QueryResolversByURLResponse; + fromJSON(object: any): _114.QueryResolversByURLResponse; + toJSON(message: _114.QueryResolversByURLResponse): unknown; + fromPartial(object: Partial<_114.QueryResolversByURLResponse>): _114.QueryResolversByURLResponse; + fromAmino(object: _114.QueryResolversByURLResponseAmino): _114.QueryResolversByURLResponse; + toAmino(message: _114.QueryResolversByURLResponse): _114.QueryResolversByURLResponseAmino; + fromAminoMsg(object: _114.QueryResolversByURLResponseAminoMsg): _114.QueryResolversByURLResponse; + fromProtoMsg(message: _114.QueryResolversByURLResponseProtoMsg): _114.QueryResolversByURLResponse; + toProto(message: _114.QueryResolversByURLResponse): Uint8Array; + toProtoMsg(message: _114.QueryResolversByURLResponse): _114.QueryResolversByURLResponseProtoMsg; }; ConvertIRIToHashRequest: { - encode(message: _113.ConvertIRIToHashRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.ConvertIRIToHashRequest; - fromJSON(object: any): _113.ConvertIRIToHashRequest; - toJSON(message: _113.ConvertIRIToHashRequest): unknown; - fromPartial(object: Partial<_113.ConvertIRIToHashRequest>): _113.ConvertIRIToHashRequest; - fromAmino(object: _113.ConvertIRIToHashRequestAmino): _113.ConvertIRIToHashRequest; - toAmino(message: _113.ConvertIRIToHashRequest): _113.ConvertIRIToHashRequestAmino; - fromAminoMsg(object: _113.ConvertIRIToHashRequestAminoMsg): _113.ConvertIRIToHashRequest; - fromProtoMsg(message: _113.ConvertIRIToHashRequestProtoMsg): _113.ConvertIRIToHashRequest; - toProto(message: _113.ConvertIRIToHashRequest): Uint8Array; - toProtoMsg(message: _113.ConvertIRIToHashRequest): _113.ConvertIRIToHashRequestProtoMsg; + typeUrl: string; + encode(message: _114.ConvertIRIToHashRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.ConvertIRIToHashRequest; + fromJSON(object: any): _114.ConvertIRIToHashRequest; + toJSON(message: _114.ConvertIRIToHashRequest): unknown; + fromPartial(object: Partial<_114.ConvertIRIToHashRequest>): _114.ConvertIRIToHashRequest; + fromAmino(object: _114.ConvertIRIToHashRequestAmino): _114.ConvertIRIToHashRequest; + toAmino(message: _114.ConvertIRIToHashRequest): _114.ConvertIRIToHashRequestAmino; + fromAminoMsg(object: _114.ConvertIRIToHashRequestAminoMsg): _114.ConvertIRIToHashRequest; + fromProtoMsg(message: _114.ConvertIRIToHashRequestProtoMsg): _114.ConvertIRIToHashRequest; + toProto(message: _114.ConvertIRIToHashRequest): Uint8Array; + toProtoMsg(message: _114.ConvertIRIToHashRequest): _114.ConvertIRIToHashRequestProtoMsg; }; ConvertIRIToHashResponse: { - encode(message: _113.ConvertIRIToHashResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.ConvertIRIToHashResponse; - fromJSON(object: any): _113.ConvertIRIToHashResponse; - toJSON(message: _113.ConvertIRIToHashResponse): unknown; - fromPartial(object: Partial<_113.ConvertIRIToHashResponse>): _113.ConvertIRIToHashResponse; - fromAmino(object: _113.ConvertIRIToHashResponseAmino): _113.ConvertIRIToHashResponse; - toAmino(message: _113.ConvertIRIToHashResponse): _113.ConvertIRIToHashResponseAmino; - fromAminoMsg(object: _113.ConvertIRIToHashResponseAminoMsg): _113.ConvertIRIToHashResponse; - fromProtoMsg(message: _113.ConvertIRIToHashResponseProtoMsg): _113.ConvertIRIToHashResponse; - toProto(message: _113.ConvertIRIToHashResponse): Uint8Array; - toProtoMsg(message: _113.ConvertIRIToHashResponse): _113.ConvertIRIToHashResponseProtoMsg; + typeUrl: string; + encode(message: _114.ConvertIRIToHashResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.ConvertIRIToHashResponse; + fromJSON(object: any): _114.ConvertIRIToHashResponse; + toJSON(message: _114.ConvertIRIToHashResponse): unknown; + fromPartial(object: Partial<_114.ConvertIRIToHashResponse>): _114.ConvertIRIToHashResponse; + fromAmino(object: _114.ConvertIRIToHashResponseAmino): _114.ConvertIRIToHashResponse; + toAmino(message: _114.ConvertIRIToHashResponse): _114.ConvertIRIToHashResponseAmino; + fromAminoMsg(object: _114.ConvertIRIToHashResponseAminoMsg): _114.ConvertIRIToHashResponse; + fromProtoMsg(message: _114.ConvertIRIToHashResponseProtoMsg): _114.ConvertIRIToHashResponse; + toProto(message: _114.ConvertIRIToHashResponse): Uint8Array; + toProtoMsg(message: _114.ConvertIRIToHashResponse): _114.ConvertIRIToHashResponseProtoMsg; }; ConvertHashToIRIRequest: { - encode(message: _113.ConvertHashToIRIRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.ConvertHashToIRIRequest; - fromJSON(object: any): _113.ConvertHashToIRIRequest; - toJSON(message: _113.ConvertHashToIRIRequest): unknown; - fromPartial(object: Partial<_113.ConvertHashToIRIRequest>): _113.ConvertHashToIRIRequest; - fromAmino(object: _113.ConvertHashToIRIRequestAmino): _113.ConvertHashToIRIRequest; - toAmino(message: _113.ConvertHashToIRIRequest): _113.ConvertHashToIRIRequestAmino; - fromAminoMsg(object: _113.ConvertHashToIRIRequestAminoMsg): _113.ConvertHashToIRIRequest; - fromProtoMsg(message: _113.ConvertHashToIRIRequestProtoMsg): _113.ConvertHashToIRIRequest; - toProto(message: _113.ConvertHashToIRIRequest): Uint8Array; - toProtoMsg(message: _113.ConvertHashToIRIRequest): _113.ConvertHashToIRIRequestProtoMsg; + typeUrl: string; + encode(message: _114.ConvertHashToIRIRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.ConvertHashToIRIRequest; + fromJSON(object: any): _114.ConvertHashToIRIRequest; + toJSON(message: _114.ConvertHashToIRIRequest): unknown; + fromPartial(object: Partial<_114.ConvertHashToIRIRequest>): _114.ConvertHashToIRIRequest; + fromAmino(object: _114.ConvertHashToIRIRequestAmino): _114.ConvertHashToIRIRequest; + toAmino(message: _114.ConvertHashToIRIRequest): _114.ConvertHashToIRIRequestAmino; + fromAminoMsg(object: _114.ConvertHashToIRIRequestAminoMsg): _114.ConvertHashToIRIRequest; + fromProtoMsg(message: _114.ConvertHashToIRIRequestProtoMsg): _114.ConvertHashToIRIRequest; + toProto(message: _114.ConvertHashToIRIRequest): Uint8Array; + toProtoMsg(message: _114.ConvertHashToIRIRequest): _114.ConvertHashToIRIRequestProtoMsg; }; ConvertHashToIRIResponse: { - encode(message: _113.ConvertHashToIRIResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.ConvertHashToIRIResponse; - fromJSON(object: any): _113.ConvertHashToIRIResponse; - toJSON(message: _113.ConvertHashToIRIResponse): unknown; - fromPartial(object: Partial<_113.ConvertHashToIRIResponse>): _113.ConvertHashToIRIResponse; - fromAmino(object: _113.ConvertHashToIRIResponseAmino): _113.ConvertHashToIRIResponse; - toAmino(message: _113.ConvertHashToIRIResponse): _113.ConvertHashToIRIResponseAmino; - fromAminoMsg(object: _113.ConvertHashToIRIResponseAminoMsg): _113.ConvertHashToIRIResponse; - fromProtoMsg(message: _113.ConvertHashToIRIResponseProtoMsg): _113.ConvertHashToIRIResponse; - toProto(message: _113.ConvertHashToIRIResponse): Uint8Array; - toProtoMsg(message: _113.ConvertHashToIRIResponse): _113.ConvertHashToIRIResponseProtoMsg; + typeUrl: string; + encode(message: _114.ConvertHashToIRIResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.ConvertHashToIRIResponse; + fromJSON(object: any): _114.ConvertHashToIRIResponse; + toJSON(message: _114.ConvertHashToIRIResponse): unknown; + fromPartial(object: Partial<_114.ConvertHashToIRIResponse>): _114.ConvertHashToIRIResponse; + fromAmino(object: _114.ConvertHashToIRIResponseAmino): _114.ConvertHashToIRIResponse; + toAmino(message: _114.ConvertHashToIRIResponse): _114.ConvertHashToIRIResponseAmino; + fromAminoMsg(object: _114.ConvertHashToIRIResponseAminoMsg): _114.ConvertHashToIRIResponse; + fromProtoMsg(message: _114.ConvertHashToIRIResponseProtoMsg): _114.ConvertHashToIRIResponse; + toProto(message: _114.ConvertHashToIRIResponse): Uint8Array; + toProtoMsg(message: _114.ConvertHashToIRIResponse): _114.ConvertHashToIRIResponseProtoMsg; }; AnchorInfo: { - encode(message: _113.AnchorInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.AnchorInfo; - fromJSON(object: any): _113.AnchorInfo; - toJSON(message: _113.AnchorInfo): unknown; - fromPartial(object: Partial<_113.AnchorInfo>): _113.AnchorInfo; - fromAmino(object: _113.AnchorInfoAmino): _113.AnchorInfo; - toAmino(message: _113.AnchorInfo): _113.AnchorInfoAmino; - fromAminoMsg(object: _113.AnchorInfoAminoMsg): _113.AnchorInfo; - fromProtoMsg(message: _113.AnchorInfoProtoMsg): _113.AnchorInfo; - toProto(message: _113.AnchorInfo): Uint8Array; - toProtoMsg(message: _113.AnchorInfo): _113.AnchorInfoProtoMsg; + typeUrl: string; + encode(message: _114.AnchorInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.AnchorInfo; + fromJSON(object: any): _114.AnchorInfo; + toJSON(message: _114.AnchorInfo): unknown; + fromPartial(object: Partial<_114.AnchorInfo>): _114.AnchorInfo; + fromAmino(object: _114.AnchorInfoAmino): _114.AnchorInfo; + toAmino(message: _114.AnchorInfo): _114.AnchorInfoAmino; + fromAminoMsg(object: _114.AnchorInfoAminoMsg): _114.AnchorInfo; + fromProtoMsg(message: _114.AnchorInfoProtoMsg): _114.AnchorInfo; + toProto(message: _114.AnchorInfo): Uint8Array; + toProtoMsg(message: _114.AnchorInfo): _114.AnchorInfoProtoMsg; }; AttestationInfo: { - encode(message: _113.AttestationInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.AttestationInfo; - fromJSON(object: any): _113.AttestationInfo; - toJSON(message: _113.AttestationInfo): unknown; - fromPartial(object: Partial<_113.AttestationInfo>): _113.AttestationInfo; - fromAmino(object: _113.AttestationInfoAmino): _113.AttestationInfo; - toAmino(message: _113.AttestationInfo): _113.AttestationInfoAmino; - fromAminoMsg(object: _113.AttestationInfoAminoMsg): _113.AttestationInfo; - fromProtoMsg(message: _113.AttestationInfoProtoMsg): _113.AttestationInfo; - toProto(message: _113.AttestationInfo): Uint8Array; - toProtoMsg(message: _113.AttestationInfo): _113.AttestationInfoProtoMsg; + typeUrl: string; + encode(message: _114.AttestationInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.AttestationInfo; + fromJSON(object: any): _114.AttestationInfo; + toJSON(message: _114.AttestationInfo): unknown; + fromPartial(object: Partial<_114.AttestationInfo>): _114.AttestationInfo; + fromAmino(object: _114.AttestationInfoAmino): _114.AttestationInfo; + toAmino(message: _114.AttestationInfo): _114.AttestationInfoAmino; + fromAminoMsg(object: _114.AttestationInfoAminoMsg): _114.AttestationInfo; + fromProtoMsg(message: _114.AttestationInfoProtoMsg): _114.AttestationInfo; + toProto(message: _114.AttestationInfo): Uint8Array; + toProtoMsg(message: _114.AttestationInfo): _114.AttestationInfoProtoMsg; }; ResolverInfo: { - encode(message: _113.ResolverInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _113.ResolverInfo; - fromJSON(object: any): _113.ResolverInfo; - toJSON(message: _113.ResolverInfo): unknown; - fromPartial(object: Partial<_113.ResolverInfo>): _113.ResolverInfo; - fromAmino(object: _113.ResolverInfoAmino): _113.ResolverInfo; - toAmino(message: _113.ResolverInfo): _113.ResolverInfoAmino; - fromAminoMsg(object: _113.ResolverInfoAminoMsg): _113.ResolverInfo; - fromProtoMsg(message: _113.ResolverInfoProtoMsg): _113.ResolverInfo; - toProto(message: _113.ResolverInfo): Uint8Array; - toProtoMsg(message: _113.ResolverInfo): _113.ResolverInfoProtoMsg; + typeUrl: string; + encode(message: _114.ResolverInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _114.ResolverInfo; + fromJSON(object: any): _114.ResolverInfo; + toJSON(message: _114.ResolverInfo): unknown; + fromPartial(object: Partial<_114.ResolverInfo>): _114.ResolverInfo; + fromAmino(object: _114.ResolverInfoAmino): _114.ResolverInfo; + toAmino(message: _114.ResolverInfo): _114.ResolverInfoAmino; + fromAminoMsg(object: _114.ResolverInfoAminoMsg): _114.ResolverInfo; + fromProtoMsg(message: _114.ResolverInfoProtoMsg): _114.ResolverInfo; + toProto(message: _114.ResolverInfo): Uint8Array; + toProtoMsg(message: _114.ResolverInfo): _114.ResolverInfoProtoMsg; }; EventAnchor: { - encode(message: _112.EventAnchor, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _112.EventAnchor; - fromJSON(object: any): _112.EventAnchor; - toJSON(message: _112.EventAnchor): unknown; - fromPartial(object: Partial<_112.EventAnchor>): _112.EventAnchor; - fromAmino(object: _112.EventAnchorAmino): _112.EventAnchor; - toAmino(message: _112.EventAnchor): _112.EventAnchorAmino; - fromAminoMsg(object: _112.EventAnchorAminoMsg): _112.EventAnchor; - fromProtoMsg(message: _112.EventAnchorProtoMsg): _112.EventAnchor; - toProto(message: _112.EventAnchor): Uint8Array; - toProtoMsg(message: _112.EventAnchor): _112.EventAnchorProtoMsg; + typeUrl: string; + encode(message: _113.EventAnchor, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _113.EventAnchor; + fromJSON(object: any): _113.EventAnchor; + toJSON(message: _113.EventAnchor): unknown; + fromPartial(object: Partial<_113.EventAnchor>): _113.EventAnchor; + fromAmino(object: _113.EventAnchorAmino): _113.EventAnchor; + toAmino(message: _113.EventAnchor): _113.EventAnchorAmino; + fromAminoMsg(object: _113.EventAnchorAminoMsg): _113.EventAnchor; + fromProtoMsg(message: _113.EventAnchorProtoMsg): _113.EventAnchor; + toProto(message: _113.EventAnchor): Uint8Array; + toProtoMsg(message: _113.EventAnchor): _113.EventAnchorProtoMsg; }; EventAttest: { - encode(message: _112.EventAttest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _112.EventAttest; - fromJSON(object: any): _112.EventAttest; - toJSON(message: _112.EventAttest): unknown; - fromPartial(object: Partial<_112.EventAttest>): _112.EventAttest; - fromAmino(object: _112.EventAttestAmino): _112.EventAttest; - toAmino(message: _112.EventAttest): _112.EventAttestAmino; - fromAminoMsg(object: _112.EventAttestAminoMsg): _112.EventAttest; - fromProtoMsg(message: _112.EventAttestProtoMsg): _112.EventAttest; - toProto(message: _112.EventAttest): Uint8Array; - toProtoMsg(message: _112.EventAttest): _112.EventAttestProtoMsg; + typeUrl: string; + encode(message: _113.EventAttest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _113.EventAttest; + fromJSON(object: any): _113.EventAttest; + toJSON(message: _113.EventAttest): unknown; + fromPartial(object: Partial<_113.EventAttest>): _113.EventAttest; + fromAmino(object: _113.EventAttestAmino): _113.EventAttest; + toAmino(message: _113.EventAttest): _113.EventAttestAmino; + fromAminoMsg(object: _113.EventAttestAminoMsg): _113.EventAttest; + fromProtoMsg(message: _113.EventAttestProtoMsg): _113.EventAttest; + toProto(message: _113.EventAttest): Uint8Array; + toProtoMsg(message: _113.EventAttest): _113.EventAttestProtoMsg; }; EventDefineResolver: { - encode(message: _112.EventDefineResolver, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _112.EventDefineResolver; - fromJSON(object: any): _112.EventDefineResolver; - toJSON(message: _112.EventDefineResolver): unknown; - fromPartial(object: Partial<_112.EventDefineResolver>): _112.EventDefineResolver; - fromAmino(object: _112.EventDefineResolverAmino): _112.EventDefineResolver; - toAmino(message: _112.EventDefineResolver): _112.EventDefineResolverAmino; - fromAminoMsg(object: _112.EventDefineResolverAminoMsg): _112.EventDefineResolver; - fromProtoMsg(message: _112.EventDefineResolverProtoMsg): _112.EventDefineResolver; - toProto(message: _112.EventDefineResolver): Uint8Array; - toProtoMsg(message: _112.EventDefineResolver): _112.EventDefineResolverProtoMsg; + typeUrl: string; + encode(message: _113.EventDefineResolver, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _113.EventDefineResolver; + fromJSON(object: any): _113.EventDefineResolver; + toJSON(message: _113.EventDefineResolver): unknown; + fromPartial(object: Partial<_113.EventDefineResolver>): _113.EventDefineResolver; + fromAmino(object: _113.EventDefineResolverAmino): _113.EventDefineResolver; + toAmino(message: _113.EventDefineResolver): _113.EventDefineResolverAmino; + fromAminoMsg(object: _113.EventDefineResolverAminoMsg): _113.EventDefineResolver; + fromProtoMsg(message: _113.EventDefineResolverProtoMsg): _113.EventDefineResolver; + toProto(message: _113.EventDefineResolver): Uint8Array; + toProtoMsg(message: _113.EventDefineResolver): _113.EventDefineResolverProtoMsg; }; EventRegisterResolver: { - encode(message: _112.EventRegisterResolver, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _112.EventRegisterResolver; - fromJSON(object: any): _112.EventRegisterResolver; - toJSON(message: _112.EventRegisterResolver): unknown; - fromPartial(object: Partial<_112.EventRegisterResolver>): _112.EventRegisterResolver; - fromAmino(object: _112.EventRegisterResolverAmino): _112.EventRegisterResolver; - toAmino(message: _112.EventRegisterResolver): _112.EventRegisterResolverAmino; - fromAminoMsg(object: _112.EventRegisterResolverAminoMsg): _112.EventRegisterResolver; - fromProtoMsg(message: _112.EventRegisterResolverProtoMsg): _112.EventRegisterResolver; - toProto(message: _112.EventRegisterResolver): Uint8Array; - toProtoMsg(message: _112.EventRegisterResolver): _112.EventRegisterResolverProtoMsg; + typeUrl: string; + encode(message: _113.EventRegisterResolver, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _113.EventRegisterResolver; + fromJSON(object: any): _113.EventRegisterResolver; + toJSON(message: _113.EventRegisterResolver): unknown; + fromPartial(object: Partial<_113.EventRegisterResolver>): _113.EventRegisterResolver; + fromAmino(object: _113.EventRegisterResolverAmino): _113.EventRegisterResolver; + toAmino(message: _113.EventRegisterResolver): _113.EventRegisterResolverAmino; + fromAminoMsg(object: _113.EventRegisterResolverAminoMsg): _113.EventRegisterResolver; + fromProtoMsg(message: _113.EventRegisterResolverProtoMsg): _113.EventRegisterResolver; + toProto(message: _113.EventRegisterResolver): Uint8Array; + toProtoMsg(message: _113.EventRegisterResolver): _113.EventRegisterResolverProtoMsg; }; }; } namespace ecocredit { namespace basket { const v1: { - MsgClientImpl: typeof _265.MsgClientImpl; - QueryClientImpl: typeof _259.QueryClientImpl; + MsgClientImpl: typeof _266.MsgClientImpl; + QueryClientImpl: typeof _260.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - basket(request: _118.QueryBasketRequest): Promise<_118.QueryBasketResponse>; - baskets(request?: _118.QueryBasketsRequest | undefined): Promise<_118.QueryBasketsResponse>; - basketBalances(request: _118.QueryBasketBalancesRequest): Promise<_118.QueryBasketBalancesResponse>; - basketBalance(request: _118.QueryBasketBalanceRequest): Promise<_118.QueryBasketBalanceResponse>; - basketFee(request?: _118.QueryBasketFeeRequest | undefined): Promise<_118.QueryBasketFeeResponse>; + basket(request: _119.QueryBasketRequest): Promise<_119.QueryBasketResponse>; + baskets(request?: _119.QueryBasketsRequest | undefined): Promise<_119.QueryBasketsResponse>; + basketBalances(request: _119.QueryBasketBalancesRequest): Promise<_119.QueryBasketBalancesResponse>; + basketBalance(request: _119.QueryBasketBalanceRequest): Promise<_119.QueryBasketBalanceResponse>; + basketFee(request?: _119.QueryBasketFeeRequest | undefined): Promise<_119.QueryBasketFeeResponse>; }; - LCDQueryClient: typeof _253.LCDQueryClient; + LCDQueryClient: typeof _254.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - create(value: _120.MsgCreate): { + create(value: _121.MsgCreate): { typeUrl: string; value: Uint8Array; }; - put(value: _120.MsgPut): { + put(value: _121.MsgPut): { typeUrl: string; value: Uint8Array; }; - take(value: _120.MsgTake): { + take(value: _121.MsgTake): { typeUrl: string; value: Uint8Array; }; - updateBasketFee(value: _120.MsgUpdateBasketFee): { + updateBasketFee(value: _121.MsgUpdateBasketFee): { typeUrl: string; value: Uint8Array; }; - updateCurator(value: _120.MsgUpdateCurator): { + updateCurator(value: _121.MsgUpdateCurator): { typeUrl: string; value: Uint8Array; }; - updateDateCriteria(value: _120.MsgUpdateDateCriteria): { + updateDateCriteria(value: _121.MsgUpdateDateCriteria): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - create(value: _120.MsgCreate): { + create(value: _121.MsgCreate): { typeUrl: string; - value: _120.MsgCreate; + value: _121.MsgCreate; }; - put(value: _120.MsgPut): { + put(value: _121.MsgPut): { typeUrl: string; - value: _120.MsgPut; + value: _121.MsgPut; }; - take(value: _120.MsgTake): { + take(value: _121.MsgTake): { typeUrl: string; - value: _120.MsgTake; + value: _121.MsgTake; }; - updateBasketFee(value: _120.MsgUpdateBasketFee): { + updateBasketFee(value: _121.MsgUpdateBasketFee): { typeUrl: string; - value: _120.MsgUpdateBasketFee; + value: _121.MsgUpdateBasketFee; }; - updateCurator(value: _120.MsgUpdateCurator): { + updateCurator(value: _121.MsgUpdateCurator): { typeUrl: string; - value: _120.MsgUpdateCurator; + value: _121.MsgUpdateCurator; }; - updateDateCriteria(value: _120.MsgUpdateDateCriteria): { + updateDateCriteria(value: _121.MsgUpdateDateCriteria): { typeUrl: string; - value: _120.MsgUpdateDateCriteria; + value: _121.MsgUpdateDateCriteria; }; }; toJSON: { - create(value: _120.MsgCreate): { + create(value: _121.MsgCreate): { typeUrl: string; value: unknown; }; - put(value: _120.MsgPut): { + put(value: _121.MsgPut): { typeUrl: string; value: unknown; }; - take(value: _120.MsgTake): { + take(value: _121.MsgTake): { typeUrl: string; value: unknown; }; - updateBasketFee(value: _120.MsgUpdateBasketFee): { + updateBasketFee(value: _121.MsgUpdateBasketFee): { typeUrl: string; value: unknown; }; - updateCurator(value: _120.MsgUpdateCurator): { + updateCurator(value: _121.MsgUpdateCurator): { typeUrl: string; value: unknown; }; - updateDateCriteria(value: _120.MsgUpdateDateCriteria): { + updateDateCriteria(value: _121.MsgUpdateDateCriteria): { typeUrl: string; value: unknown; }; @@ -900,640 +946,675 @@ export declare namespace regen { fromJSON: { create(value: any): { typeUrl: string; - value: _120.MsgCreate; + value: _121.MsgCreate; }; put(value: any): { typeUrl: string; - value: _120.MsgPut; + value: _121.MsgPut; }; take(value: any): { typeUrl: string; - value: _120.MsgTake; + value: _121.MsgTake; }; updateBasketFee(value: any): { typeUrl: string; - value: _120.MsgUpdateBasketFee; + value: _121.MsgUpdateBasketFee; }; updateCurator(value: any): { typeUrl: string; - value: _120.MsgUpdateCurator; + value: _121.MsgUpdateCurator; }; updateDateCriteria(value: any): { typeUrl: string; - value: _120.MsgUpdateDateCriteria; + value: _121.MsgUpdateDateCriteria; }; }; fromPartial: { - create(value: _120.MsgCreate): { + create(value: _121.MsgCreate): { typeUrl: string; - value: _120.MsgCreate; + value: _121.MsgCreate; }; - put(value: _120.MsgPut): { + put(value: _121.MsgPut): { typeUrl: string; - value: _120.MsgPut; + value: _121.MsgPut; }; - take(value: _120.MsgTake): { + take(value: _121.MsgTake): { typeUrl: string; - value: _120.MsgTake; + value: _121.MsgTake; }; - updateBasketFee(value: _120.MsgUpdateBasketFee): { + updateBasketFee(value: _121.MsgUpdateBasketFee): { typeUrl: string; - value: _120.MsgUpdateBasketFee; + value: _121.MsgUpdateBasketFee; }; - updateCurator(value: _120.MsgUpdateCurator): { + updateCurator(value: _121.MsgUpdateCurator): { typeUrl: string; - value: _120.MsgUpdateCurator; + value: _121.MsgUpdateCurator; }; - updateDateCriteria(value: _120.MsgUpdateDateCriteria): { + updateDateCriteria(value: _121.MsgUpdateDateCriteria): { typeUrl: string; - value: _120.MsgUpdateDateCriteria; + value: _121.MsgUpdateDateCriteria; }; }; }; AminoConverter: { "/regen.ecocredit.basket.v1.MsgCreate": { aminoType: string; - toAmino: (message: _120.MsgCreate) => _120.MsgCreateAmino; - fromAmino: (object: _120.MsgCreateAmino) => _120.MsgCreate; + toAmino: (message: _121.MsgCreate) => _121.MsgCreateAmino; + fromAmino: (object: _121.MsgCreateAmino) => _121.MsgCreate; }; "/regen.ecocredit.basket.v1.MsgPut": { aminoType: string; - toAmino: (message: _120.MsgPut) => _120.MsgPutAmino; - fromAmino: (object: _120.MsgPutAmino) => _120.MsgPut; + toAmino: (message: _121.MsgPut) => _121.MsgPutAmino; + fromAmino: (object: _121.MsgPutAmino) => _121.MsgPut; }; "/regen.ecocredit.basket.v1.MsgTake": { aminoType: string; - toAmino: (message: _120.MsgTake) => _120.MsgTakeAmino; - fromAmino: (object: _120.MsgTakeAmino) => _120.MsgTake; + toAmino: (message: _121.MsgTake) => _121.MsgTakeAmino; + fromAmino: (object: _121.MsgTakeAmino) => _121.MsgTake; }; "/regen.ecocredit.basket.v1.MsgUpdateBasketFee": { aminoType: string; - toAmino: (message: _120.MsgUpdateBasketFee) => _120.MsgUpdateBasketFeeAmino; - fromAmino: (object: _120.MsgUpdateBasketFeeAmino) => _120.MsgUpdateBasketFee; + toAmino: (message: _121.MsgUpdateBasketFee) => _121.MsgUpdateBasketFeeAmino; + fromAmino: (object: _121.MsgUpdateBasketFeeAmino) => _121.MsgUpdateBasketFee; }; "/regen.ecocredit.basket.v1.MsgUpdateCurator": { aminoType: string; - toAmino: (message: _120.MsgUpdateCurator) => _120.MsgUpdateCuratorAmino; - fromAmino: (object: _120.MsgUpdateCuratorAmino) => _120.MsgUpdateCurator; + toAmino: (message: _121.MsgUpdateCurator) => _121.MsgUpdateCuratorAmino; + fromAmino: (object: _121.MsgUpdateCuratorAmino) => _121.MsgUpdateCurator; }; "/regen.ecocredit.basket.v1.MsgUpdateDateCriteria": { aminoType: string; - toAmino: (message: _120.MsgUpdateDateCriteria) => _120.MsgUpdateDateCriteriaAmino; - fromAmino: (object: _120.MsgUpdateDateCriteriaAmino) => _120.MsgUpdateDateCriteria; + toAmino: (message: _121.MsgUpdateDateCriteria) => _121.MsgUpdateDateCriteriaAmino; + fromAmino: (object: _121.MsgUpdateDateCriteriaAmino) => _121.MsgUpdateDateCriteria; }; }; BasketCredit: { - encode(message: _121.BasketCredit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _121.BasketCredit; - fromJSON(object: any): _121.BasketCredit; - toJSON(message: _121.BasketCredit): unknown; - fromPartial(object: Partial<_121.BasketCredit>): _121.BasketCredit; - fromAmino(object: _121.BasketCreditAmino): _121.BasketCredit; - toAmino(message: _121.BasketCredit): _121.BasketCreditAmino; - fromAminoMsg(object: _121.BasketCreditAminoMsg): _121.BasketCredit; - fromProtoMsg(message: _121.BasketCreditProtoMsg): _121.BasketCredit; - toProto(message: _121.BasketCredit): Uint8Array; - toProtoMsg(message: _121.BasketCredit): _121.BasketCreditProtoMsg; + typeUrl: string; + encode(message: _122.BasketCredit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _122.BasketCredit; + fromJSON(object: any): _122.BasketCredit; + toJSON(message: _122.BasketCredit): unknown; + fromPartial(object: Partial<_122.BasketCredit>): _122.BasketCredit; + fromAmino(object: _122.BasketCreditAmino): _122.BasketCredit; + toAmino(message: _122.BasketCredit): _122.BasketCreditAmino; + fromAminoMsg(object: _122.BasketCreditAminoMsg): _122.BasketCredit; + fromProtoMsg(message: _122.BasketCreditProtoMsg): _122.BasketCredit; + toProto(message: _122.BasketCredit): Uint8Array; + toProtoMsg(message: _122.BasketCredit): _122.BasketCreditProtoMsg; }; DateCriteria: { - encode(message: _121.DateCriteria, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _121.DateCriteria; - fromJSON(object: any): _121.DateCriteria; - toJSON(message: _121.DateCriteria): unknown; - fromPartial(object: Partial<_121.DateCriteria>): _121.DateCriteria; - fromAmino(object: _121.DateCriteriaAmino): _121.DateCriteria; - toAmino(message: _121.DateCriteria): _121.DateCriteriaAmino; - fromAminoMsg(object: _121.DateCriteriaAminoMsg): _121.DateCriteria; - fromProtoMsg(message: _121.DateCriteriaProtoMsg): _121.DateCriteria; - toProto(message: _121.DateCriteria): Uint8Array; - toProtoMsg(message: _121.DateCriteria): _121.DateCriteriaProtoMsg; + typeUrl: string; + encode(message: _122.DateCriteria, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _122.DateCriteria; + fromJSON(object: any): _122.DateCriteria; + toJSON(message: _122.DateCriteria): unknown; + fromPartial(object: Partial<_122.DateCriteria>): _122.DateCriteria; + fromAmino(object: _122.DateCriteriaAmino): _122.DateCriteria; + toAmino(message: _122.DateCriteria): _122.DateCriteriaAmino; + fromAminoMsg(object: _122.DateCriteriaAminoMsg): _122.DateCriteria; + fromProtoMsg(message: _122.DateCriteriaProtoMsg): _122.DateCriteria; + toProto(message: _122.DateCriteria): Uint8Array; + toProtoMsg(message: _122.DateCriteria): _122.DateCriteriaProtoMsg; }; MsgCreate: { - encode(message: _120.MsgCreate, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgCreate; - fromJSON(object: any): _120.MsgCreate; - toJSON(message: _120.MsgCreate): unknown; - fromPartial(object: Partial<_120.MsgCreate>): _120.MsgCreate; - fromAmino(object: _120.MsgCreateAmino): _120.MsgCreate; - toAmino(message: _120.MsgCreate): _120.MsgCreateAmino; - fromAminoMsg(object: _120.MsgCreateAminoMsg): _120.MsgCreate; - toAminoMsg(message: _120.MsgCreate): _120.MsgCreateAminoMsg; - fromProtoMsg(message: _120.MsgCreateProtoMsg): _120.MsgCreate; - toProto(message: _120.MsgCreate): Uint8Array; - toProtoMsg(message: _120.MsgCreate): _120.MsgCreateProtoMsg; + typeUrl: string; + encode(message: _121.MsgCreate, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgCreate; + fromJSON(object: any): _121.MsgCreate; + toJSON(message: _121.MsgCreate): unknown; + fromPartial(object: Partial<_121.MsgCreate>): _121.MsgCreate; + fromAmino(object: _121.MsgCreateAmino): _121.MsgCreate; + toAmino(message: _121.MsgCreate): _121.MsgCreateAmino; + fromAminoMsg(object: _121.MsgCreateAminoMsg): _121.MsgCreate; + toAminoMsg(message: _121.MsgCreate): _121.MsgCreateAminoMsg; + fromProtoMsg(message: _121.MsgCreateProtoMsg): _121.MsgCreate; + toProto(message: _121.MsgCreate): Uint8Array; + toProtoMsg(message: _121.MsgCreate): _121.MsgCreateProtoMsg; }; MsgCreateResponse: { - encode(message: _120.MsgCreateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgCreateResponse; - fromJSON(object: any): _120.MsgCreateResponse; - toJSON(message: _120.MsgCreateResponse): unknown; - fromPartial(object: Partial<_120.MsgCreateResponse>): _120.MsgCreateResponse; - fromAmino(object: _120.MsgCreateResponseAmino): _120.MsgCreateResponse; - toAmino(message: _120.MsgCreateResponse): _120.MsgCreateResponseAmino; - fromAminoMsg(object: _120.MsgCreateResponseAminoMsg): _120.MsgCreateResponse; - fromProtoMsg(message: _120.MsgCreateResponseProtoMsg): _120.MsgCreateResponse; - toProto(message: _120.MsgCreateResponse): Uint8Array; - toProtoMsg(message: _120.MsgCreateResponse): _120.MsgCreateResponseProtoMsg; + typeUrl: string; + encode(message: _121.MsgCreateResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgCreateResponse; + fromJSON(object: any): _121.MsgCreateResponse; + toJSON(message: _121.MsgCreateResponse): unknown; + fromPartial(object: Partial<_121.MsgCreateResponse>): _121.MsgCreateResponse; + fromAmino(object: _121.MsgCreateResponseAmino): _121.MsgCreateResponse; + toAmino(message: _121.MsgCreateResponse): _121.MsgCreateResponseAmino; + fromAminoMsg(object: _121.MsgCreateResponseAminoMsg): _121.MsgCreateResponse; + fromProtoMsg(message: _121.MsgCreateResponseProtoMsg): _121.MsgCreateResponse; + toProto(message: _121.MsgCreateResponse): Uint8Array; + toProtoMsg(message: _121.MsgCreateResponse): _121.MsgCreateResponseProtoMsg; }; MsgPut: { - encode(message: _120.MsgPut, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgPut; - fromJSON(object: any): _120.MsgPut; - toJSON(message: _120.MsgPut): unknown; - fromPartial(object: Partial<_120.MsgPut>): _120.MsgPut; - fromAmino(object: _120.MsgPutAmino): _120.MsgPut; - toAmino(message: _120.MsgPut): _120.MsgPutAmino; - fromAminoMsg(object: _120.MsgPutAminoMsg): _120.MsgPut; - toAminoMsg(message: _120.MsgPut): _120.MsgPutAminoMsg; - fromProtoMsg(message: _120.MsgPutProtoMsg): _120.MsgPut; - toProto(message: _120.MsgPut): Uint8Array; - toProtoMsg(message: _120.MsgPut): _120.MsgPutProtoMsg; + typeUrl: string; + encode(message: _121.MsgPut, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgPut; + fromJSON(object: any): _121.MsgPut; + toJSON(message: _121.MsgPut): unknown; + fromPartial(object: Partial<_121.MsgPut>): _121.MsgPut; + fromAmino(object: _121.MsgPutAmino): _121.MsgPut; + toAmino(message: _121.MsgPut): _121.MsgPutAmino; + fromAminoMsg(object: _121.MsgPutAminoMsg): _121.MsgPut; + toAminoMsg(message: _121.MsgPut): _121.MsgPutAminoMsg; + fromProtoMsg(message: _121.MsgPutProtoMsg): _121.MsgPut; + toProto(message: _121.MsgPut): Uint8Array; + toProtoMsg(message: _121.MsgPut): _121.MsgPutProtoMsg; }; MsgPutResponse: { - encode(message: _120.MsgPutResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgPutResponse; - fromJSON(object: any): _120.MsgPutResponse; - toJSON(message: _120.MsgPutResponse): unknown; - fromPartial(object: Partial<_120.MsgPutResponse>): _120.MsgPutResponse; - fromAmino(object: _120.MsgPutResponseAmino): _120.MsgPutResponse; - toAmino(message: _120.MsgPutResponse): _120.MsgPutResponseAmino; - fromAminoMsg(object: _120.MsgPutResponseAminoMsg): _120.MsgPutResponse; - fromProtoMsg(message: _120.MsgPutResponseProtoMsg): _120.MsgPutResponse; - toProto(message: _120.MsgPutResponse): Uint8Array; - toProtoMsg(message: _120.MsgPutResponse): _120.MsgPutResponseProtoMsg; + typeUrl: string; + encode(message: _121.MsgPutResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgPutResponse; + fromJSON(object: any): _121.MsgPutResponse; + toJSON(message: _121.MsgPutResponse): unknown; + fromPartial(object: Partial<_121.MsgPutResponse>): _121.MsgPutResponse; + fromAmino(object: _121.MsgPutResponseAmino): _121.MsgPutResponse; + toAmino(message: _121.MsgPutResponse): _121.MsgPutResponseAmino; + fromAminoMsg(object: _121.MsgPutResponseAminoMsg): _121.MsgPutResponse; + fromProtoMsg(message: _121.MsgPutResponseProtoMsg): _121.MsgPutResponse; + toProto(message: _121.MsgPutResponse): Uint8Array; + toProtoMsg(message: _121.MsgPutResponse): _121.MsgPutResponseProtoMsg; }; MsgTake: { - encode(message: _120.MsgTake, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgTake; - fromJSON(object: any): _120.MsgTake; - toJSON(message: _120.MsgTake): unknown; - fromPartial(object: Partial<_120.MsgTake>): _120.MsgTake; - fromAmino(object: _120.MsgTakeAmino): _120.MsgTake; - toAmino(message: _120.MsgTake): _120.MsgTakeAmino; - fromAminoMsg(object: _120.MsgTakeAminoMsg): _120.MsgTake; - toAminoMsg(message: _120.MsgTake): _120.MsgTakeAminoMsg; - fromProtoMsg(message: _120.MsgTakeProtoMsg): _120.MsgTake; - toProto(message: _120.MsgTake): Uint8Array; - toProtoMsg(message: _120.MsgTake): _120.MsgTakeProtoMsg; + typeUrl: string; + encode(message: _121.MsgTake, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgTake; + fromJSON(object: any): _121.MsgTake; + toJSON(message: _121.MsgTake): unknown; + fromPartial(object: Partial<_121.MsgTake>): _121.MsgTake; + fromAmino(object: _121.MsgTakeAmino): _121.MsgTake; + toAmino(message: _121.MsgTake): _121.MsgTakeAmino; + fromAminoMsg(object: _121.MsgTakeAminoMsg): _121.MsgTake; + toAminoMsg(message: _121.MsgTake): _121.MsgTakeAminoMsg; + fromProtoMsg(message: _121.MsgTakeProtoMsg): _121.MsgTake; + toProto(message: _121.MsgTake): Uint8Array; + toProtoMsg(message: _121.MsgTake): _121.MsgTakeProtoMsg; }; MsgTakeResponse: { - encode(message: _120.MsgTakeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgTakeResponse; - fromJSON(object: any): _120.MsgTakeResponse; - toJSON(message: _120.MsgTakeResponse): unknown; - fromPartial(object: Partial<_120.MsgTakeResponse>): _120.MsgTakeResponse; - fromAmino(object: _120.MsgTakeResponseAmino): _120.MsgTakeResponse; - toAmino(message: _120.MsgTakeResponse): _120.MsgTakeResponseAmino; - fromAminoMsg(object: _120.MsgTakeResponseAminoMsg): _120.MsgTakeResponse; - fromProtoMsg(message: _120.MsgTakeResponseProtoMsg): _120.MsgTakeResponse; - toProto(message: _120.MsgTakeResponse): Uint8Array; - toProtoMsg(message: _120.MsgTakeResponse): _120.MsgTakeResponseProtoMsg; + typeUrl: string; + encode(message: _121.MsgTakeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgTakeResponse; + fromJSON(object: any): _121.MsgTakeResponse; + toJSON(message: _121.MsgTakeResponse): unknown; + fromPartial(object: Partial<_121.MsgTakeResponse>): _121.MsgTakeResponse; + fromAmino(object: _121.MsgTakeResponseAmino): _121.MsgTakeResponse; + toAmino(message: _121.MsgTakeResponse): _121.MsgTakeResponseAmino; + fromAminoMsg(object: _121.MsgTakeResponseAminoMsg): _121.MsgTakeResponse; + fromProtoMsg(message: _121.MsgTakeResponseProtoMsg): _121.MsgTakeResponse; + toProto(message: _121.MsgTakeResponse): Uint8Array; + toProtoMsg(message: _121.MsgTakeResponse): _121.MsgTakeResponseProtoMsg; }; MsgUpdateBasketFee: { - encode(message: _120.MsgUpdateBasketFee, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgUpdateBasketFee; - fromJSON(object: any): _120.MsgUpdateBasketFee; - toJSON(message: _120.MsgUpdateBasketFee): unknown; - fromPartial(object: Partial<_120.MsgUpdateBasketFee>): _120.MsgUpdateBasketFee; - fromAmino(object: _120.MsgUpdateBasketFeeAmino): _120.MsgUpdateBasketFee; - toAmino(message: _120.MsgUpdateBasketFee): _120.MsgUpdateBasketFeeAmino; - fromAminoMsg(object: _120.MsgUpdateBasketFeeAminoMsg): _120.MsgUpdateBasketFee; - toAminoMsg(message: _120.MsgUpdateBasketFee): _120.MsgUpdateBasketFeeAminoMsg; - fromProtoMsg(message: _120.MsgUpdateBasketFeeProtoMsg): _120.MsgUpdateBasketFee; - toProto(message: _120.MsgUpdateBasketFee): Uint8Array; - toProtoMsg(message: _120.MsgUpdateBasketFee): _120.MsgUpdateBasketFeeProtoMsg; + typeUrl: string; + encode(message: _121.MsgUpdateBasketFee, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgUpdateBasketFee; + fromJSON(object: any): _121.MsgUpdateBasketFee; + toJSON(message: _121.MsgUpdateBasketFee): unknown; + fromPartial(object: Partial<_121.MsgUpdateBasketFee>): _121.MsgUpdateBasketFee; + fromAmino(object: _121.MsgUpdateBasketFeeAmino): _121.MsgUpdateBasketFee; + toAmino(message: _121.MsgUpdateBasketFee): _121.MsgUpdateBasketFeeAmino; + fromAminoMsg(object: _121.MsgUpdateBasketFeeAminoMsg): _121.MsgUpdateBasketFee; + toAminoMsg(message: _121.MsgUpdateBasketFee): _121.MsgUpdateBasketFeeAminoMsg; + fromProtoMsg(message: _121.MsgUpdateBasketFeeProtoMsg): _121.MsgUpdateBasketFee; + toProto(message: _121.MsgUpdateBasketFee): Uint8Array; + toProtoMsg(message: _121.MsgUpdateBasketFee): _121.MsgUpdateBasketFeeProtoMsg; }; MsgUpdateBasketFeeResponse: { - encode(_: _120.MsgUpdateBasketFeeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgUpdateBasketFeeResponse; - fromJSON(_: any): _120.MsgUpdateBasketFeeResponse; - toJSON(_: _120.MsgUpdateBasketFeeResponse): unknown; - fromPartial(_: Partial<_120.MsgUpdateBasketFeeResponse>): _120.MsgUpdateBasketFeeResponse; - fromAmino(_: _120.MsgUpdateBasketFeeResponseAmino): _120.MsgUpdateBasketFeeResponse; - toAmino(_: _120.MsgUpdateBasketFeeResponse): _120.MsgUpdateBasketFeeResponseAmino; - fromAminoMsg(object: _120.MsgUpdateBasketFeeResponseAminoMsg): _120.MsgUpdateBasketFeeResponse; - fromProtoMsg(message: _120.MsgUpdateBasketFeeResponseProtoMsg): _120.MsgUpdateBasketFeeResponse; - toProto(message: _120.MsgUpdateBasketFeeResponse): Uint8Array; - toProtoMsg(message: _120.MsgUpdateBasketFeeResponse): _120.MsgUpdateBasketFeeResponseProtoMsg; + typeUrl: string; + encode(_: _121.MsgUpdateBasketFeeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgUpdateBasketFeeResponse; + fromJSON(_: any): _121.MsgUpdateBasketFeeResponse; + toJSON(_: _121.MsgUpdateBasketFeeResponse): unknown; + fromPartial(_: Partial<_121.MsgUpdateBasketFeeResponse>): _121.MsgUpdateBasketFeeResponse; + fromAmino(_: _121.MsgUpdateBasketFeeResponseAmino): _121.MsgUpdateBasketFeeResponse; + toAmino(_: _121.MsgUpdateBasketFeeResponse): _121.MsgUpdateBasketFeeResponseAmino; + fromAminoMsg(object: _121.MsgUpdateBasketFeeResponseAminoMsg): _121.MsgUpdateBasketFeeResponse; + fromProtoMsg(message: _121.MsgUpdateBasketFeeResponseProtoMsg): _121.MsgUpdateBasketFeeResponse; + toProto(message: _121.MsgUpdateBasketFeeResponse): Uint8Array; + toProtoMsg(message: _121.MsgUpdateBasketFeeResponse): _121.MsgUpdateBasketFeeResponseProtoMsg; }; MsgUpdateCurator: { - encode(message: _120.MsgUpdateCurator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgUpdateCurator; - fromJSON(object: any): _120.MsgUpdateCurator; - toJSON(message: _120.MsgUpdateCurator): unknown; - fromPartial(object: Partial<_120.MsgUpdateCurator>): _120.MsgUpdateCurator; - fromAmino(object: _120.MsgUpdateCuratorAmino): _120.MsgUpdateCurator; - toAmino(message: _120.MsgUpdateCurator): _120.MsgUpdateCuratorAmino; - fromAminoMsg(object: _120.MsgUpdateCuratorAminoMsg): _120.MsgUpdateCurator; - toAminoMsg(message: _120.MsgUpdateCurator): _120.MsgUpdateCuratorAminoMsg; - fromProtoMsg(message: _120.MsgUpdateCuratorProtoMsg): _120.MsgUpdateCurator; - toProto(message: _120.MsgUpdateCurator): Uint8Array; - toProtoMsg(message: _120.MsgUpdateCurator): _120.MsgUpdateCuratorProtoMsg; + typeUrl: string; + encode(message: _121.MsgUpdateCurator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgUpdateCurator; + fromJSON(object: any): _121.MsgUpdateCurator; + toJSON(message: _121.MsgUpdateCurator): unknown; + fromPartial(object: Partial<_121.MsgUpdateCurator>): _121.MsgUpdateCurator; + fromAmino(object: _121.MsgUpdateCuratorAmino): _121.MsgUpdateCurator; + toAmino(message: _121.MsgUpdateCurator): _121.MsgUpdateCuratorAmino; + fromAminoMsg(object: _121.MsgUpdateCuratorAminoMsg): _121.MsgUpdateCurator; + toAminoMsg(message: _121.MsgUpdateCurator): _121.MsgUpdateCuratorAminoMsg; + fromProtoMsg(message: _121.MsgUpdateCuratorProtoMsg): _121.MsgUpdateCurator; + toProto(message: _121.MsgUpdateCurator): Uint8Array; + toProtoMsg(message: _121.MsgUpdateCurator): _121.MsgUpdateCuratorProtoMsg; }; MsgUpdateCuratorResponse: { - encode(_: _120.MsgUpdateCuratorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgUpdateCuratorResponse; - fromJSON(_: any): _120.MsgUpdateCuratorResponse; - toJSON(_: _120.MsgUpdateCuratorResponse): unknown; - fromPartial(_: Partial<_120.MsgUpdateCuratorResponse>): _120.MsgUpdateCuratorResponse; - fromAmino(_: _120.MsgUpdateCuratorResponseAmino): _120.MsgUpdateCuratorResponse; - toAmino(_: _120.MsgUpdateCuratorResponse): _120.MsgUpdateCuratorResponseAmino; - fromAminoMsg(object: _120.MsgUpdateCuratorResponseAminoMsg): _120.MsgUpdateCuratorResponse; - fromProtoMsg(message: _120.MsgUpdateCuratorResponseProtoMsg): _120.MsgUpdateCuratorResponse; - toProto(message: _120.MsgUpdateCuratorResponse): Uint8Array; - toProtoMsg(message: _120.MsgUpdateCuratorResponse): _120.MsgUpdateCuratorResponseProtoMsg; + typeUrl: string; + encode(_: _121.MsgUpdateCuratorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgUpdateCuratorResponse; + fromJSON(_: any): _121.MsgUpdateCuratorResponse; + toJSON(_: _121.MsgUpdateCuratorResponse): unknown; + fromPartial(_: Partial<_121.MsgUpdateCuratorResponse>): _121.MsgUpdateCuratorResponse; + fromAmino(_: _121.MsgUpdateCuratorResponseAmino): _121.MsgUpdateCuratorResponse; + toAmino(_: _121.MsgUpdateCuratorResponse): _121.MsgUpdateCuratorResponseAmino; + fromAminoMsg(object: _121.MsgUpdateCuratorResponseAminoMsg): _121.MsgUpdateCuratorResponse; + fromProtoMsg(message: _121.MsgUpdateCuratorResponseProtoMsg): _121.MsgUpdateCuratorResponse; + toProto(message: _121.MsgUpdateCuratorResponse): Uint8Array; + toProtoMsg(message: _121.MsgUpdateCuratorResponse): _121.MsgUpdateCuratorResponseProtoMsg; }; MsgUpdateDateCriteria: { - encode(message: _120.MsgUpdateDateCriteria, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgUpdateDateCriteria; - fromJSON(object: any): _120.MsgUpdateDateCriteria; - toJSON(message: _120.MsgUpdateDateCriteria): unknown; - fromPartial(object: Partial<_120.MsgUpdateDateCriteria>): _120.MsgUpdateDateCriteria; - fromAmino(object: _120.MsgUpdateDateCriteriaAmino): _120.MsgUpdateDateCriteria; - toAmino(message: _120.MsgUpdateDateCriteria): _120.MsgUpdateDateCriteriaAmino; - fromAminoMsg(object: _120.MsgUpdateDateCriteriaAminoMsg): _120.MsgUpdateDateCriteria; - toAminoMsg(message: _120.MsgUpdateDateCriteria): _120.MsgUpdateDateCriteriaAminoMsg; - fromProtoMsg(message: _120.MsgUpdateDateCriteriaProtoMsg): _120.MsgUpdateDateCriteria; - toProto(message: _120.MsgUpdateDateCriteria): Uint8Array; - toProtoMsg(message: _120.MsgUpdateDateCriteria): _120.MsgUpdateDateCriteriaProtoMsg; + typeUrl: string; + encode(message: _121.MsgUpdateDateCriteria, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgUpdateDateCriteria; + fromJSON(object: any): _121.MsgUpdateDateCriteria; + toJSON(message: _121.MsgUpdateDateCriteria): unknown; + fromPartial(object: Partial<_121.MsgUpdateDateCriteria>): _121.MsgUpdateDateCriteria; + fromAmino(object: _121.MsgUpdateDateCriteriaAmino): _121.MsgUpdateDateCriteria; + toAmino(message: _121.MsgUpdateDateCriteria): _121.MsgUpdateDateCriteriaAmino; + fromAminoMsg(object: _121.MsgUpdateDateCriteriaAminoMsg): _121.MsgUpdateDateCriteria; + toAminoMsg(message: _121.MsgUpdateDateCriteria): _121.MsgUpdateDateCriteriaAminoMsg; + fromProtoMsg(message: _121.MsgUpdateDateCriteriaProtoMsg): _121.MsgUpdateDateCriteria; + toProto(message: _121.MsgUpdateDateCriteria): Uint8Array; + toProtoMsg(message: _121.MsgUpdateDateCriteria): _121.MsgUpdateDateCriteriaProtoMsg; }; MsgUpdateDateCriteriaResponse: { - encode(_: _120.MsgUpdateDateCriteriaResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _120.MsgUpdateDateCriteriaResponse; - fromJSON(_: any): _120.MsgUpdateDateCriteriaResponse; - toJSON(_: _120.MsgUpdateDateCriteriaResponse): unknown; - fromPartial(_: Partial<_120.MsgUpdateDateCriteriaResponse>): _120.MsgUpdateDateCriteriaResponse; - fromAmino(_: _120.MsgUpdateDateCriteriaResponseAmino): _120.MsgUpdateDateCriteriaResponse; - toAmino(_: _120.MsgUpdateDateCriteriaResponse): _120.MsgUpdateDateCriteriaResponseAmino; - fromAminoMsg(object: _120.MsgUpdateDateCriteriaResponseAminoMsg): _120.MsgUpdateDateCriteriaResponse; - fromProtoMsg(message: _120.MsgUpdateDateCriteriaResponseProtoMsg): _120.MsgUpdateDateCriteriaResponse; - toProto(message: _120.MsgUpdateDateCriteriaResponse): Uint8Array; - toProtoMsg(message: _120.MsgUpdateDateCriteriaResponse): _120.MsgUpdateDateCriteriaResponseProtoMsg; + typeUrl: string; + encode(_: _121.MsgUpdateDateCriteriaResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _121.MsgUpdateDateCriteriaResponse; + fromJSON(_: any): _121.MsgUpdateDateCriteriaResponse; + toJSON(_: _121.MsgUpdateDateCriteriaResponse): unknown; + fromPartial(_: Partial<_121.MsgUpdateDateCriteriaResponse>): _121.MsgUpdateDateCriteriaResponse; + fromAmino(_: _121.MsgUpdateDateCriteriaResponseAmino): _121.MsgUpdateDateCriteriaResponse; + toAmino(_: _121.MsgUpdateDateCriteriaResponse): _121.MsgUpdateDateCriteriaResponseAmino; + fromAminoMsg(object: _121.MsgUpdateDateCriteriaResponseAminoMsg): _121.MsgUpdateDateCriteriaResponse; + fromProtoMsg(message: _121.MsgUpdateDateCriteriaResponseProtoMsg): _121.MsgUpdateDateCriteriaResponse; + toProto(message: _121.MsgUpdateDateCriteriaResponse): Uint8Array; + toProtoMsg(message: _121.MsgUpdateDateCriteriaResponse): _121.MsgUpdateDateCriteriaResponseProtoMsg; }; Basket: { - encode(message: _119.Basket, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _119.Basket; - fromJSON(object: any): _119.Basket; - toJSON(message: _119.Basket): unknown; - fromPartial(object: Partial<_119.Basket>): _119.Basket; - fromAmino(object: _119.BasketAmino): _119.Basket; - toAmino(message: _119.Basket): _119.BasketAmino; - fromAminoMsg(object: _119.BasketAminoMsg): _119.Basket; - fromProtoMsg(message: _119.BasketProtoMsg): _119.Basket; - toProto(message: _119.Basket): Uint8Array; - toProtoMsg(message: _119.Basket): _119.BasketProtoMsg; + typeUrl: string; + encode(message: _120.Basket, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _120.Basket; + fromJSON(object: any): _120.Basket; + toJSON(message: _120.Basket): unknown; + fromPartial(object: Partial<_120.Basket>): _120.Basket; + fromAmino(object: _120.BasketAmino): _120.Basket; + toAmino(message: _120.Basket): _120.BasketAmino; + fromAminoMsg(object: _120.BasketAminoMsg): _120.Basket; + fromProtoMsg(message: _120.BasketProtoMsg): _120.Basket; + toProto(message: _120.Basket): Uint8Array; + toProtoMsg(message: _120.Basket): _120.BasketProtoMsg; }; BasketClass: { - encode(message: _119.BasketClass, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _119.BasketClass; - fromJSON(object: any): _119.BasketClass; - toJSON(message: _119.BasketClass): unknown; - fromPartial(object: Partial<_119.BasketClass>): _119.BasketClass; - fromAmino(object: _119.BasketClassAmino): _119.BasketClass; - toAmino(message: _119.BasketClass): _119.BasketClassAmino; - fromAminoMsg(object: _119.BasketClassAminoMsg): _119.BasketClass; - fromProtoMsg(message: _119.BasketClassProtoMsg): _119.BasketClass; - toProto(message: _119.BasketClass): Uint8Array; - toProtoMsg(message: _119.BasketClass): _119.BasketClassProtoMsg; + typeUrl: string; + encode(message: _120.BasketClass, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _120.BasketClass; + fromJSON(object: any): _120.BasketClass; + toJSON(message: _120.BasketClass): unknown; + fromPartial(object: Partial<_120.BasketClass>): _120.BasketClass; + fromAmino(object: _120.BasketClassAmino): _120.BasketClass; + toAmino(message: _120.BasketClass): _120.BasketClassAmino; + fromAminoMsg(object: _120.BasketClassAminoMsg): _120.BasketClass; + fromProtoMsg(message: _120.BasketClassProtoMsg): _120.BasketClass; + toProto(message: _120.BasketClass): Uint8Array; + toProtoMsg(message: _120.BasketClass): _120.BasketClassProtoMsg; }; BasketBalance: { - encode(message: _119.BasketBalance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _119.BasketBalance; - fromJSON(object: any): _119.BasketBalance; - toJSON(message: _119.BasketBalance): unknown; - fromPartial(object: Partial<_119.BasketBalance>): _119.BasketBalance; - fromAmino(object: _119.BasketBalanceAmino): _119.BasketBalance; - toAmino(message: _119.BasketBalance): _119.BasketBalanceAmino; - fromAminoMsg(object: _119.BasketBalanceAminoMsg): _119.BasketBalance; - fromProtoMsg(message: _119.BasketBalanceProtoMsg): _119.BasketBalance; - toProto(message: _119.BasketBalance): Uint8Array; - toProtoMsg(message: _119.BasketBalance): _119.BasketBalanceProtoMsg; + typeUrl: string; + encode(message: _120.BasketBalance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _120.BasketBalance; + fromJSON(object: any): _120.BasketBalance; + toJSON(message: _120.BasketBalance): unknown; + fromPartial(object: Partial<_120.BasketBalance>): _120.BasketBalance; + fromAmino(object: _120.BasketBalanceAmino): _120.BasketBalance; + toAmino(message: _120.BasketBalance): _120.BasketBalanceAmino; + fromAminoMsg(object: _120.BasketBalanceAminoMsg): _120.BasketBalance; + fromProtoMsg(message: _120.BasketBalanceProtoMsg): _120.BasketBalance; + toProto(message: _120.BasketBalance): Uint8Array; + toProtoMsg(message: _120.BasketBalance): _120.BasketBalanceProtoMsg; }; BasketFee: { - encode(message: _119.BasketFee, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _119.BasketFee; - fromJSON(object: any): _119.BasketFee; - toJSON(message: _119.BasketFee): unknown; - fromPartial(object: Partial<_119.BasketFee>): _119.BasketFee; - fromAmino(object: _119.BasketFeeAmino): _119.BasketFee; - toAmino(message: _119.BasketFee): _119.BasketFeeAmino; - fromAminoMsg(object: _119.BasketFeeAminoMsg): _119.BasketFee; - fromProtoMsg(message: _119.BasketFeeProtoMsg): _119.BasketFee; - toProto(message: _119.BasketFee): Uint8Array; - toProtoMsg(message: _119.BasketFee): _119.BasketFeeProtoMsg; + typeUrl: string; + encode(message: _120.BasketFee, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _120.BasketFee; + fromJSON(object: any): _120.BasketFee; + toJSON(message: _120.BasketFee): unknown; + fromPartial(object: Partial<_120.BasketFee>): _120.BasketFee; + fromAmino(object: _120.BasketFeeAmino): _120.BasketFee; + toAmino(message: _120.BasketFee): _120.BasketFeeAmino; + fromAminoMsg(object: _120.BasketFeeAminoMsg): _120.BasketFee; + fromProtoMsg(message: _120.BasketFeeProtoMsg): _120.BasketFee; + toProto(message: _120.BasketFee): Uint8Array; + toProtoMsg(message: _120.BasketFee): _120.BasketFeeProtoMsg; }; QueryBasketRequest: { - encode(message: _118.QueryBasketRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketRequest; - fromJSON(object: any): _118.QueryBasketRequest; - toJSON(message: _118.QueryBasketRequest): unknown; - fromPartial(object: Partial<_118.QueryBasketRequest>): _118.QueryBasketRequest; - fromAmino(object: _118.QueryBasketRequestAmino): _118.QueryBasketRequest; - toAmino(message: _118.QueryBasketRequest): _118.QueryBasketRequestAmino; - fromAminoMsg(object: _118.QueryBasketRequestAminoMsg): _118.QueryBasketRequest; - fromProtoMsg(message: _118.QueryBasketRequestProtoMsg): _118.QueryBasketRequest; - toProto(message: _118.QueryBasketRequest): Uint8Array; - toProtoMsg(message: _118.QueryBasketRequest): _118.QueryBasketRequestProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketRequest; + fromJSON(object: any): _119.QueryBasketRequest; + toJSON(message: _119.QueryBasketRequest): unknown; + fromPartial(object: Partial<_119.QueryBasketRequest>): _119.QueryBasketRequest; + fromAmino(object: _119.QueryBasketRequestAmino): _119.QueryBasketRequest; + toAmino(message: _119.QueryBasketRequest): _119.QueryBasketRequestAmino; + fromAminoMsg(object: _119.QueryBasketRequestAminoMsg): _119.QueryBasketRequest; + fromProtoMsg(message: _119.QueryBasketRequestProtoMsg): _119.QueryBasketRequest; + toProto(message: _119.QueryBasketRequest): Uint8Array; + toProtoMsg(message: _119.QueryBasketRequest): _119.QueryBasketRequestProtoMsg; }; QueryBasketResponse: { - encode(message: _118.QueryBasketResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketResponse; - fromJSON(object: any): _118.QueryBasketResponse; - toJSON(message: _118.QueryBasketResponse): unknown; - fromPartial(object: Partial<_118.QueryBasketResponse>): _118.QueryBasketResponse; - fromAmino(object: _118.QueryBasketResponseAmino): _118.QueryBasketResponse; - toAmino(message: _118.QueryBasketResponse): _118.QueryBasketResponseAmino; - fromAminoMsg(object: _118.QueryBasketResponseAminoMsg): _118.QueryBasketResponse; - fromProtoMsg(message: _118.QueryBasketResponseProtoMsg): _118.QueryBasketResponse; - toProto(message: _118.QueryBasketResponse): Uint8Array; - toProtoMsg(message: _118.QueryBasketResponse): _118.QueryBasketResponseProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketResponse; + fromJSON(object: any): _119.QueryBasketResponse; + toJSON(message: _119.QueryBasketResponse): unknown; + fromPartial(object: Partial<_119.QueryBasketResponse>): _119.QueryBasketResponse; + fromAmino(object: _119.QueryBasketResponseAmino): _119.QueryBasketResponse; + toAmino(message: _119.QueryBasketResponse): _119.QueryBasketResponseAmino; + fromAminoMsg(object: _119.QueryBasketResponseAminoMsg): _119.QueryBasketResponse; + fromProtoMsg(message: _119.QueryBasketResponseProtoMsg): _119.QueryBasketResponse; + toProto(message: _119.QueryBasketResponse): Uint8Array; + toProtoMsg(message: _119.QueryBasketResponse): _119.QueryBasketResponseProtoMsg; }; QueryBasketsRequest: { - encode(message: _118.QueryBasketsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketsRequest; - fromJSON(object: any): _118.QueryBasketsRequest; - toJSON(message: _118.QueryBasketsRequest): unknown; - fromPartial(object: Partial<_118.QueryBasketsRequest>): _118.QueryBasketsRequest; - fromAmino(object: _118.QueryBasketsRequestAmino): _118.QueryBasketsRequest; - toAmino(message: _118.QueryBasketsRequest): _118.QueryBasketsRequestAmino; - fromAminoMsg(object: _118.QueryBasketsRequestAminoMsg): _118.QueryBasketsRequest; - fromProtoMsg(message: _118.QueryBasketsRequestProtoMsg): _118.QueryBasketsRequest; - toProto(message: _118.QueryBasketsRequest): Uint8Array; - toProtoMsg(message: _118.QueryBasketsRequest): _118.QueryBasketsRequestProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketsRequest; + fromJSON(object: any): _119.QueryBasketsRequest; + toJSON(message: _119.QueryBasketsRequest): unknown; + fromPartial(object: Partial<_119.QueryBasketsRequest>): _119.QueryBasketsRequest; + fromAmino(object: _119.QueryBasketsRequestAmino): _119.QueryBasketsRequest; + toAmino(message: _119.QueryBasketsRequest): _119.QueryBasketsRequestAmino; + fromAminoMsg(object: _119.QueryBasketsRequestAminoMsg): _119.QueryBasketsRequest; + fromProtoMsg(message: _119.QueryBasketsRequestProtoMsg): _119.QueryBasketsRequest; + toProto(message: _119.QueryBasketsRequest): Uint8Array; + toProtoMsg(message: _119.QueryBasketsRequest): _119.QueryBasketsRequestProtoMsg; }; QueryBasketsResponse: { - encode(message: _118.QueryBasketsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketsResponse; - fromJSON(object: any): _118.QueryBasketsResponse; - toJSON(message: _118.QueryBasketsResponse): unknown; - fromPartial(object: Partial<_118.QueryBasketsResponse>): _118.QueryBasketsResponse; - fromAmino(object: _118.QueryBasketsResponseAmino): _118.QueryBasketsResponse; - toAmino(message: _118.QueryBasketsResponse): _118.QueryBasketsResponseAmino; - fromAminoMsg(object: _118.QueryBasketsResponseAminoMsg): _118.QueryBasketsResponse; - fromProtoMsg(message: _118.QueryBasketsResponseProtoMsg): _118.QueryBasketsResponse; - toProto(message: _118.QueryBasketsResponse): Uint8Array; - toProtoMsg(message: _118.QueryBasketsResponse): _118.QueryBasketsResponseProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketsResponse; + fromJSON(object: any): _119.QueryBasketsResponse; + toJSON(message: _119.QueryBasketsResponse): unknown; + fromPartial(object: Partial<_119.QueryBasketsResponse>): _119.QueryBasketsResponse; + fromAmino(object: _119.QueryBasketsResponseAmino): _119.QueryBasketsResponse; + toAmino(message: _119.QueryBasketsResponse): _119.QueryBasketsResponseAmino; + fromAminoMsg(object: _119.QueryBasketsResponseAminoMsg): _119.QueryBasketsResponse; + fromProtoMsg(message: _119.QueryBasketsResponseProtoMsg): _119.QueryBasketsResponse; + toProto(message: _119.QueryBasketsResponse): Uint8Array; + toProtoMsg(message: _119.QueryBasketsResponse): _119.QueryBasketsResponseProtoMsg; }; QueryBasketBalancesRequest: { - encode(message: _118.QueryBasketBalancesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketBalancesRequest; - fromJSON(object: any): _118.QueryBasketBalancesRequest; - toJSON(message: _118.QueryBasketBalancesRequest): unknown; - fromPartial(object: Partial<_118.QueryBasketBalancesRequest>): _118.QueryBasketBalancesRequest; - fromAmino(object: _118.QueryBasketBalancesRequestAmino): _118.QueryBasketBalancesRequest; - toAmino(message: _118.QueryBasketBalancesRequest): _118.QueryBasketBalancesRequestAmino; - fromAminoMsg(object: _118.QueryBasketBalancesRequestAminoMsg): _118.QueryBasketBalancesRequest; - fromProtoMsg(message: _118.QueryBasketBalancesRequestProtoMsg): _118.QueryBasketBalancesRequest; - toProto(message: _118.QueryBasketBalancesRequest): Uint8Array; - toProtoMsg(message: _118.QueryBasketBalancesRequest): _118.QueryBasketBalancesRequestProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketBalancesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketBalancesRequest; + fromJSON(object: any): _119.QueryBasketBalancesRequest; + toJSON(message: _119.QueryBasketBalancesRequest): unknown; + fromPartial(object: Partial<_119.QueryBasketBalancesRequest>): _119.QueryBasketBalancesRequest; + fromAmino(object: _119.QueryBasketBalancesRequestAmino): _119.QueryBasketBalancesRequest; + toAmino(message: _119.QueryBasketBalancesRequest): _119.QueryBasketBalancesRequestAmino; + fromAminoMsg(object: _119.QueryBasketBalancesRequestAminoMsg): _119.QueryBasketBalancesRequest; + fromProtoMsg(message: _119.QueryBasketBalancesRequestProtoMsg): _119.QueryBasketBalancesRequest; + toProto(message: _119.QueryBasketBalancesRequest): Uint8Array; + toProtoMsg(message: _119.QueryBasketBalancesRequest): _119.QueryBasketBalancesRequestProtoMsg; }; QueryBasketBalancesResponse: { - encode(message: _118.QueryBasketBalancesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketBalancesResponse; - fromJSON(object: any): _118.QueryBasketBalancesResponse; - toJSON(message: _118.QueryBasketBalancesResponse): unknown; - fromPartial(object: Partial<_118.QueryBasketBalancesResponse>): _118.QueryBasketBalancesResponse; - fromAmino(object: _118.QueryBasketBalancesResponseAmino): _118.QueryBasketBalancesResponse; - toAmino(message: _118.QueryBasketBalancesResponse): _118.QueryBasketBalancesResponseAmino; - fromAminoMsg(object: _118.QueryBasketBalancesResponseAminoMsg): _118.QueryBasketBalancesResponse; - fromProtoMsg(message: _118.QueryBasketBalancesResponseProtoMsg): _118.QueryBasketBalancesResponse; - toProto(message: _118.QueryBasketBalancesResponse): Uint8Array; - toProtoMsg(message: _118.QueryBasketBalancesResponse): _118.QueryBasketBalancesResponseProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketBalancesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketBalancesResponse; + fromJSON(object: any): _119.QueryBasketBalancesResponse; + toJSON(message: _119.QueryBasketBalancesResponse): unknown; + fromPartial(object: Partial<_119.QueryBasketBalancesResponse>): _119.QueryBasketBalancesResponse; + fromAmino(object: _119.QueryBasketBalancesResponseAmino): _119.QueryBasketBalancesResponse; + toAmino(message: _119.QueryBasketBalancesResponse): _119.QueryBasketBalancesResponseAmino; + fromAminoMsg(object: _119.QueryBasketBalancesResponseAminoMsg): _119.QueryBasketBalancesResponse; + fromProtoMsg(message: _119.QueryBasketBalancesResponseProtoMsg): _119.QueryBasketBalancesResponse; + toProto(message: _119.QueryBasketBalancesResponse): Uint8Array; + toProtoMsg(message: _119.QueryBasketBalancesResponse): _119.QueryBasketBalancesResponseProtoMsg; }; QueryBasketBalanceRequest: { - encode(message: _118.QueryBasketBalanceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketBalanceRequest; - fromJSON(object: any): _118.QueryBasketBalanceRequest; - toJSON(message: _118.QueryBasketBalanceRequest): unknown; - fromPartial(object: Partial<_118.QueryBasketBalanceRequest>): _118.QueryBasketBalanceRequest; - fromAmino(object: _118.QueryBasketBalanceRequestAmino): _118.QueryBasketBalanceRequest; - toAmino(message: _118.QueryBasketBalanceRequest): _118.QueryBasketBalanceRequestAmino; - fromAminoMsg(object: _118.QueryBasketBalanceRequestAminoMsg): _118.QueryBasketBalanceRequest; - fromProtoMsg(message: _118.QueryBasketBalanceRequestProtoMsg): _118.QueryBasketBalanceRequest; - toProto(message: _118.QueryBasketBalanceRequest): Uint8Array; - toProtoMsg(message: _118.QueryBasketBalanceRequest): _118.QueryBasketBalanceRequestProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketBalanceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketBalanceRequest; + fromJSON(object: any): _119.QueryBasketBalanceRequest; + toJSON(message: _119.QueryBasketBalanceRequest): unknown; + fromPartial(object: Partial<_119.QueryBasketBalanceRequest>): _119.QueryBasketBalanceRequest; + fromAmino(object: _119.QueryBasketBalanceRequestAmino): _119.QueryBasketBalanceRequest; + toAmino(message: _119.QueryBasketBalanceRequest): _119.QueryBasketBalanceRequestAmino; + fromAminoMsg(object: _119.QueryBasketBalanceRequestAminoMsg): _119.QueryBasketBalanceRequest; + fromProtoMsg(message: _119.QueryBasketBalanceRequestProtoMsg): _119.QueryBasketBalanceRequest; + toProto(message: _119.QueryBasketBalanceRequest): Uint8Array; + toProtoMsg(message: _119.QueryBasketBalanceRequest): _119.QueryBasketBalanceRequestProtoMsg; }; QueryBasketBalanceResponse: { - encode(message: _118.QueryBasketBalanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketBalanceResponse; - fromJSON(object: any): _118.QueryBasketBalanceResponse; - toJSON(message: _118.QueryBasketBalanceResponse): unknown; - fromPartial(object: Partial<_118.QueryBasketBalanceResponse>): _118.QueryBasketBalanceResponse; - fromAmino(object: _118.QueryBasketBalanceResponseAmino): _118.QueryBasketBalanceResponse; - toAmino(message: _118.QueryBasketBalanceResponse): _118.QueryBasketBalanceResponseAmino; - fromAminoMsg(object: _118.QueryBasketBalanceResponseAminoMsg): _118.QueryBasketBalanceResponse; - fromProtoMsg(message: _118.QueryBasketBalanceResponseProtoMsg): _118.QueryBasketBalanceResponse; - toProto(message: _118.QueryBasketBalanceResponse): Uint8Array; - toProtoMsg(message: _118.QueryBasketBalanceResponse): _118.QueryBasketBalanceResponseProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketBalanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketBalanceResponse; + fromJSON(object: any): _119.QueryBasketBalanceResponse; + toJSON(message: _119.QueryBasketBalanceResponse): unknown; + fromPartial(object: Partial<_119.QueryBasketBalanceResponse>): _119.QueryBasketBalanceResponse; + fromAmino(object: _119.QueryBasketBalanceResponseAmino): _119.QueryBasketBalanceResponse; + toAmino(message: _119.QueryBasketBalanceResponse): _119.QueryBasketBalanceResponseAmino; + fromAminoMsg(object: _119.QueryBasketBalanceResponseAminoMsg): _119.QueryBasketBalanceResponse; + fromProtoMsg(message: _119.QueryBasketBalanceResponseProtoMsg): _119.QueryBasketBalanceResponse; + toProto(message: _119.QueryBasketBalanceResponse): Uint8Array; + toProtoMsg(message: _119.QueryBasketBalanceResponse): _119.QueryBasketBalanceResponseProtoMsg; }; BasketInfo: { - encode(message: _118.BasketInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.BasketInfo; - fromJSON(object: any): _118.BasketInfo; - toJSON(message: _118.BasketInfo): unknown; - fromPartial(object: Partial<_118.BasketInfo>): _118.BasketInfo; - fromAmino(object: _118.BasketInfoAmino): _118.BasketInfo; - toAmino(message: _118.BasketInfo): _118.BasketInfoAmino; - fromAminoMsg(object: _118.BasketInfoAminoMsg): _118.BasketInfo; - fromProtoMsg(message: _118.BasketInfoProtoMsg): _118.BasketInfo; - toProto(message: _118.BasketInfo): Uint8Array; - toProtoMsg(message: _118.BasketInfo): _118.BasketInfoProtoMsg; + typeUrl: string; + encode(message: _119.BasketInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.BasketInfo; + fromJSON(object: any): _119.BasketInfo; + toJSON(message: _119.BasketInfo): unknown; + fromPartial(object: Partial<_119.BasketInfo>): _119.BasketInfo; + fromAmino(object: _119.BasketInfoAmino): _119.BasketInfo; + toAmino(message: _119.BasketInfo): _119.BasketInfoAmino; + fromAminoMsg(object: _119.BasketInfoAminoMsg): _119.BasketInfo; + fromProtoMsg(message: _119.BasketInfoProtoMsg): _119.BasketInfo; + toProto(message: _119.BasketInfo): Uint8Array; + toProtoMsg(message: _119.BasketInfo): _119.BasketInfoProtoMsg; }; BasketBalanceInfo: { - encode(message: _118.BasketBalanceInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.BasketBalanceInfo; - fromJSON(object: any): _118.BasketBalanceInfo; - toJSON(message: _118.BasketBalanceInfo): unknown; - fromPartial(object: Partial<_118.BasketBalanceInfo>): _118.BasketBalanceInfo; - fromAmino(object: _118.BasketBalanceInfoAmino): _118.BasketBalanceInfo; - toAmino(message: _118.BasketBalanceInfo): _118.BasketBalanceInfoAmino; - fromAminoMsg(object: _118.BasketBalanceInfoAminoMsg): _118.BasketBalanceInfo; - fromProtoMsg(message: _118.BasketBalanceInfoProtoMsg): _118.BasketBalanceInfo; - toProto(message: _118.BasketBalanceInfo): Uint8Array; - toProtoMsg(message: _118.BasketBalanceInfo): _118.BasketBalanceInfoProtoMsg; + typeUrl: string; + encode(message: _119.BasketBalanceInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.BasketBalanceInfo; + fromJSON(object: any): _119.BasketBalanceInfo; + toJSON(message: _119.BasketBalanceInfo): unknown; + fromPartial(object: Partial<_119.BasketBalanceInfo>): _119.BasketBalanceInfo; + fromAmino(object: _119.BasketBalanceInfoAmino): _119.BasketBalanceInfo; + toAmino(message: _119.BasketBalanceInfo): _119.BasketBalanceInfoAmino; + fromAminoMsg(object: _119.BasketBalanceInfoAminoMsg): _119.BasketBalanceInfo; + fromProtoMsg(message: _119.BasketBalanceInfoProtoMsg): _119.BasketBalanceInfo; + toProto(message: _119.BasketBalanceInfo): Uint8Array; + toProtoMsg(message: _119.BasketBalanceInfo): _119.BasketBalanceInfoProtoMsg; }; QueryBasketFeeRequest: { - encode(_: _118.QueryBasketFeeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketFeeRequest; - fromJSON(_: any): _118.QueryBasketFeeRequest; - toJSON(_: _118.QueryBasketFeeRequest): unknown; - fromPartial(_: Partial<_118.QueryBasketFeeRequest>): _118.QueryBasketFeeRequest; - fromAmino(_: _118.QueryBasketFeeRequestAmino): _118.QueryBasketFeeRequest; - toAmino(_: _118.QueryBasketFeeRequest): _118.QueryBasketFeeRequestAmino; - fromAminoMsg(object: _118.QueryBasketFeeRequestAminoMsg): _118.QueryBasketFeeRequest; - fromProtoMsg(message: _118.QueryBasketFeeRequestProtoMsg): _118.QueryBasketFeeRequest; - toProto(message: _118.QueryBasketFeeRequest): Uint8Array; - toProtoMsg(message: _118.QueryBasketFeeRequest): _118.QueryBasketFeeRequestProtoMsg; + typeUrl: string; + encode(_: _119.QueryBasketFeeRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketFeeRequest; + fromJSON(_: any): _119.QueryBasketFeeRequest; + toJSON(_: _119.QueryBasketFeeRequest): unknown; + fromPartial(_: Partial<_119.QueryBasketFeeRequest>): _119.QueryBasketFeeRequest; + fromAmino(_: _119.QueryBasketFeeRequestAmino): _119.QueryBasketFeeRequest; + toAmino(_: _119.QueryBasketFeeRequest): _119.QueryBasketFeeRequestAmino; + fromAminoMsg(object: _119.QueryBasketFeeRequestAminoMsg): _119.QueryBasketFeeRequest; + fromProtoMsg(message: _119.QueryBasketFeeRequestProtoMsg): _119.QueryBasketFeeRequest; + toProto(message: _119.QueryBasketFeeRequest): Uint8Array; + toProtoMsg(message: _119.QueryBasketFeeRequest): _119.QueryBasketFeeRequestProtoMsg; }; QueryBasketFeeResponse: { - encode(message: _118.QueryBasketFeeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _118.QueryBasketFeeResponse; - fromJSON(object: any): _118.QueryBasketFeeResponse; - toJSON(message: _118.QueryBasketFeeResponse): unknown; - fromPartial(object: Partial<_118.QueryBasketFeeResponse>): _118.QueryBasketFeeResponse; - fromAmino(object: _118.QueryBasketFeeResponseAmino): _118.QueryBasketFeeResponse; - toAmino(message: _118.QueryBasketFeeResponse): _118.QueryBasketFeeResponseAmino; - fromAminoMsg(object: _118.QueryBasketFeeResponseAminoMsg): _118.QueryBasketFeeResponse; - fromProtoMsg(message: _118.QueryBasketFeeResponseProtoMsg): _118.QueryBasketFeeResponse; - toProto(message: _118.QueryBasketFeeResponse): Uint8Array; - toProtoMsg(message: _118.QueryBasketFeeResponse): _118.QueryBasketFeeResponseProtoMsg; + typeUrl: string; + encode(message: _119.QueryBasketFeeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _119.QueryBasketFeeResponse; + fromJSON(object: any): _119.QueryBasketFeeResponse; + toJSON(message: _119.QueryBasketFeeResponse): unknown; + fromPartial(object: Partial<_119.QueryBasketFeeResponse>): _119.QueryBasketFeeResponse; + fromAmino(object: _119.QueryBasketFeeResponseAmino): _119.QueryBasketFeeResponse; + toAmino(message: _119.QueryBasketFeeResponse): _119.QueryBasketFeeResponseAmino; + fromAminoMsg(object: _119.QueryBasketFeeResponseAminoMsg): _119.QueryBasketFeeResponse; + fromProtoMsg(message: _119.QueryBasketFeeResponseProtoMsg): _119.QueryBasketFeeResponse; + toProto(message: _119.QueryBasketFeeResponse): Uint8Array; + toProtoMsg(message: _119.QueryBasketFeeResponse): _119.QueryBasketFeeResponseProtoMsg; }; EventCreate: { - encode(message: _117.EventCreate, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _117.EventCreate; - fromJSON(object: any): _117.EventCreate; - toJSON(message: _117.EventCreate): unknown; - fromPartial(object: Partial<_117.EventCreate>): _117.EventCreate; - fromAmino(object: _117.EventCreateAmino): _117.EventCreate; - toAmino(message: _117.EventCreate): _117.EventCreateAmino; - fromAminoMsg(object: _117.EventCreateAminoMsg): _117.EventCreate; - fromProtoMsg(message: _117.EventCreateProtoMsg): _117.EventCreate; - toProto(message: _117.EventCreate): Uint8Array; - toProtoMsg(message: _117.EventCreate): _117.EventCreateProtoMsg; + typeUrl: string; + encode(message: _118.EventCreate, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _118.EventCreate; + fromJSON(object: any): _118.EventCreate; + toJSON(message: _118.EventCreate): unknown; + fromPartial(object: Partial<_118.EventCreate>): _118.EventCreate; + fromAmino(object: _118.EventCreateAmino): _118.EventCreate; + toAmino(message: _118.EventCreate): _118.EventCreateAmino; + fromAminoMsg(object: _118.EventCreateAminoMsg): _118.EventCreate; + fromProtoMsg(message: _118.EventCreateProtoMsg): _118.EventCreate; + toProto(message: _118.EventCreate): Uint8Array; + toProtoMsg(message: _118.EventCreate): _118.EventCreateProtoMsg; }; EventPut: { - encode(message: _117.EventPut, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _117.EventPut; - fromJSON(object: any): _117.EventPut; - toJSON(message: _117.EventPut): unknown; - fromPartial(object: Partial<_117.EventPut>): _117.EventPut; - fromAmino(object: _117.EventPutAmino): _117.EventPut; - toAmino(message: _117.EventPut): _117.EventPutAmino; - fromAminoMsg(object: _117.EventPutAminoMsg): _117.EventPut; - fromProtoMsg(message: _117.EventPutProtoMsg): _117.EventPut; - toProto(message: _117.EventPut): Uint8Array; - toProtoMsg(message: _117.EventPut): _117.EventPutProtoMsg; + typeUrl: string; + encode(message: _118.EventPut, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _118.EventPut; + fromJSON(object: any): _118.EventPut; + toJSON(message: _118.EventPut): unknown; + fromPartial(object: Partial<_118.EventPut>): _118.EventPut; + fromAmino(object: _118.EventPutAmino): _118.EventPut; + toAmino(message: _118.EventPut): _118.EventPutAmino; + fromAminoMsg(object: _118.EventPutAminoMsg): _118.EventPut; + fromProtoMsg(message: _118.EventPutProtoMsg): _118.EventPut; + toProto(message: _118.EventPut): Uint8Array; + toProtoMsg(message: _118.EventPut): _118.EventPutProtoMsg; }; EventTake: { - encode(message: _117.EventTake, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _117.EventTake; - fromJSON(object: any): _117.EventTake; - toJSON(message: _117.EventTake): unknown; - fromPartial(object: Partial<_117.EventTake>): _117.EventTake; - fromAmino(object: _117.EventTakeAmino): _117.EventTake; - toAmino(message: _117.EventTake): _117.EventTakeAmino; - fromAminoMsg(object: _117.EventTakeAminoMsg): _117.EventTake; - fromProtoMsg(message: _117.EventTakeProtoMsg): _117.EventTake; - toProto(message: _117.EventTake): Uint8Array; - toProtoMsg(message: _117.EventTake): _117.EventTakeProtoMsg; + typeUrl: string; + encode(message: _118.EventTake, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _118.EventTake; + fromJSON(object: any): _118.EventTake; + toJSON(message: _118.EventTake): unknown; + fromPartial(object: Partial<_118.EventTake>): _118.EventTake; + fromAmino(object: _118.EventTakeAmino): _118.EventTake; + toAmino(message: _118.EventTake): _118.EventTakeAmino; + fromAminoMsg(object: _118.EventTakeAminoMsg): _118.EventTake; + fromProtoMsg(message: _118.EventTakeProtoMsg): _118.EventTake; + toProto(message: _118.EventTake): Uint8Array; + toProtoMsg(message: _118.EventTake): _118.EventTakeProtoMsg; }; EventUpdateCurator: { - encode(message: _117.EventUpdateCurator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _117.EventUpdateCurator; - fromJSON(object: any): _117.EventUpdateCurator; - toJSON(message: _117.EventUpdateCurator): unknown; - fromPartial(object: Partial<_117.EventUpdateCurator>): _117.EventUpdateCurator; - fromAmino(object: _117.EventUpdateCuratorAmino): _117.EventUpdateCurator; - toAmino(message: _117.EventUpdateCurator): _117.EventUpdateCuratorAmino; - fromAminoMsg(object: _117.EventUpdateCuratorAminoMsg): _117.EventUpdateCurator; - fromProtoMsg(message: _117.EventUpdateCuratorProtoMsg): _117.EventUpdateCurator; - toProto(message: _117.EventUpdateCurator): Uint8Array; - toProtoMsg(message: _117.EventUpdateCurator): _117.EventUpdateCuratorProtoMsg; + typeUrl: string; + encode(message: _118.EventUpdateCurator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _118.EventUpdateCurator; + fromJSON(object: any): _118.EventUpdateCurator; + toJSON(message: _118.EventUpdateCurator): unknown; + fromPartial(object: Partial<_118.EventUpdateCurator>): _118.EventUpdateCurator; + fromAmino(object: _118.EventUpdateCuratorAmino): _118.EventUpdateCurator; + toAmino(message: _118.EventUpdateCurator): _118.EventUpdateCuratorAmino; + fromAminoMsg(object: _118.EventUpdateCuratorAminoMsg): _118.EventUpdateCurator; + fromProtoMsg(message: _118.EventUpdateCuratorProtoMsg): _118.EventUpdateCurator; + toProto(message: _118.EventUpdateCurator): Uint8Array; + toProtoMsg(message: _118.EventUpdateCurator): _118.EventUpdateCuratorProtoMsg; }; EventUpdateDateCriteria: { - encode(message: _117.EventUpdateDateCriteria, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _117.EventUpdateDateCriteria; - fromJSON(object: any): _117.EventUpdateDateCriteria; - toJSON(message: _117.EventUpdateDateCriteria): unknown; - fromPartial(object: Partial<_117.EventUpdateDateCriteria>): _117.EventUpdateDateCriteria; - fromAmino(object: _117.EventUpdateDateCriteriaAmino): _117.EventUpdateDateCriteria; - toAmino(message: _117.EventUpdateDateCriteria): _117.EventUpdateDateCriteriaAmino; - fromAminoMsg(object: _117.EventUpdateDateCriteriaAminoMsg): _117.EventUpdateDateCriteria; - fromProtoMsg(message: _117.EventUpdateDateCriteriaProtoMsg): _117.EventUpdateDateCriteria; - toProto(message: _117.EventUpdateDateCriteria): Uint8Array; - toProtoMsg(message: _117.EventUpdateDateCriteria): _117.EventUpdateDateCriteriaProtoMsg; + typeUrl: string; + encode(message: _118.EventUpdateDateCriteria, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _118.EventUpdateDateCriteria; + fromJSON(object: any): _118.EventUpdateDateCriteria; + toJSON(message: _118.EventUpdateDateCriteria): unknown; + fromPartial(object: Partial<_118.EventUpdateDateCriteria>): _118.EventUpdateDateCriteria; + fromAmino(object: _118.EventUpdateDateCriteriaAmino): _118.EventUpdateDateCriteria; + toAmino(message: _118.EventUpdateDateCriteria): _118.EventUpdateDateCriteriaAmino; + fromAminoMsg(object: _118.EventUpdateDateCriteriaAminoMsg): _118.EventUpdateDateCriteria; + fromProtoMsg(message: _118.EventUpdateDateCriteriaProtoMsg): _118.EventUpdateDateCriteria; + toProto(message: _118.EventUpdateDateCriteria): Uint8Array; + toProtoMsg(message: _118.EventUpdateDateCriteria): _118.EventUpdateDateCriteriaProtoMsg; }; }; } namespace marketplace { const v1: { - MsgClientImpl: typeof _266.MsgClientImpl; - QueryClientImpl: typeof _260.QueryClientImpl; + MsgClientImpl: typeof _267.MsgClientImpl; + QueryClientImpl: typeof _261.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - sellOrder(request: _123.QuerySellOrderRequest): Promise<_123.QuerySellOrderResponse>; - sellOrders(request?: _123.QuerySellOrdersRequest | undefined): Promise<_123.QuerySellOrdersResponse>; - sellOrdersByBatch(request: _123.QuerySellOrdersByBatchRequest): Promise<_123.QuerySellOrdersByBatchResponse>; - sellOrdersBySeller(request: _123.QuerySellOrdersBySellerRequest): Promise<_123.QuerySellOrdersBySellerResponse>; - allowedDenoms(request?: _123.QueryAllowedDenomsRequest | undefined): Promise<_123.QueryAllowedDenomsResponse>; + sellOrder(request: _124.QuerySellOrderRequest): Promise<_124.QuerySellOrderResponse>; + sellOrders(request?: _124.QuerySellOrdersRequest | undefined): Promise<_124.QuerySellOrdersResponse>; + sellOrdersByBatch(request: _124.QuerySellOrdersByBatchRequest): Promise<_124.QuerySellOrdersByBatchResponse>; + sellOrdersBySeller(request: _124.QuerySellOrdersBySellerRequest): Promise<_124.QuerySellOrdersBySellerResponse>; + allowedDenoms(request?: _124.QueryAllowedDenomsRequest | undefined): Promise<_124.QueryAllowedDenomsResponse>; }; - LCDQueryClient: typeof _254.LCDQueryClient; + LCDQueryClient: typeof _255.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - sell(value: _125.MsgSell): { + sell(value: _126.MsgSell): { typeUrl: string; value: Uint8Array; }; - updateSellOrders(value: _125.MsgUpdateSellOrders): { + updateSellOrders(value: _126.MsgUpdateSellOrders): { typeUrl: string; value: Uint8Array; }; - cancelSellOrder(value: _125.MsgCancelSellOrder): { + cancelSellOrder(value: _126.MsgCancelSellOrder): { typeUrl: string; value: Uint8Array; }; - buyDirect(value: _125.MsgBuyDirect): { + buyDirect(value: _126.MsgBuyDirect): { typeUrl: string; value: Uint8Array; }; - addAllowedDenom(value: _125.MsgAddAllowedDenom): { + addAllowedDenom(value: _126.MsgAddAllowedDenom): { typeUrl: string; value: Uint8Array; }; - removeAllowedDenom(value: _125.MsgRemoveAllowedDenom): { + removeAllowedDenom(value: _126.MsgRemoveAllowedDenom): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - sell(value: _125.MsgSell): { + sell(value: _126.MsgSell): { typeUrl: string; - value: _125.MsgSell; + value: _126.MsgSell; }; - updateSellOrders(value: _125.MsgUpdateSellOrders): { + updateSellOrders(value: _126.MsgUpdateSellOrders): { typeUrl: string; - value: _125.MsgUpdateSellOrders; + value: _126.MsgUpdateSellOrders; }; - cancelSellOrder(value: _125.MsgCancelSellOrder): { + cancelSellOrder(value: _126.MsgCancelSellOrder): { typeUrl: string; - value: _125.MsgCancelSellOrder; + value: _126.MsgCancelSellOrder; }; - buyDirect(value: _125.MsgBuyDirect): { + buyDirect(value: _126.MsgBuyDirect): { typeUrl: string; - value: _125.MsgBuyDirect; + value: _126.MsgBuyDirect; }; - addAllowedDenom(value: _125.MsgAddAllowedDenom): { + addAllowedDenom(value: _126.MsgAddAllowedDenom): { typeUrl: string; - value: _125.MsgAddAllowedDenom; + value: _126.MsgAddAllowedDenom; }; - removeAllowedDenom(value: _125.MsgRemoveAllowedDenom): { + removeAllowedDenom(value: _126.MsgRemoveAllowedDenom): { typeUrl: string; - value: _125.MsgRemoveAllowedDenom; + value: _126.MsgRemoveAllowedDenom; }; }; toJSON: { - sell(value: _125.MsgSell): { + sell(value: _126.MsgSell): { typeUrl: string; value: unknown; }; - updateSellOrders(value: _125.MsgUpdateSellOrders): { + updateSellOrders(value: _126.MsgUpdateSellOrders): { typeUrl: string; value: unknown; }; - cancelSellOrder(value: _125.MsgCancelSellOrder): { + cancelSellOrder(value: _126.MsgCancelSellOrder): { typeUrl: string; value: unknown; }; - buyDirect(value: _125.MsgBuyDirect): { + buyDirect(value: _126.MsgBuyDirect): { typeUrl: string; value: unknown; }; - addAllowedDenom(value: _125.MsgAddAllowedDenom): { + addAllowedDenom(value: _126.MsgAddAllowedDenom): { typeUrl: string; value: unknown; }; - removeAllowedDenom(value: _125.MsgRemoveAllowedDenom): { + removeAllowedDenom(value: _126.MsgRemoveAllowedDenom): { typeUrl: string; value: unknown; }; @@ -1541,933 +1622,973 @@ export declare namespace regen { fromJSON: { sell(value: any): { typeUrl: string; - value: _125.MsgSell; + value: _126.MsgSell; }; updateSellOrders(value: any): { typeUrl: string; - value: _125.MsgUpdateSellOrders; + value: _126.MsgUpdateSellOrders; }; cancelSellOrder(value: any): { typeUrl: string; - value: _125.MsgCancelSellOrder; + value: _126.MsgCancelSellOrder; }; buyDirect(value: any): { typeUrl: string; - value: _125.MsgBuyDirect; + value: _126.MsgBuyDirect; }; addAllowedDenom(value: any): { typeUrl: string; - value: _125.MsgAddAllowedDenom; + value: _126.MsgAddAllowedDenom; }; removeAllowedDenom(value: any): { typeUrl: string; - value: _125.MsgRemoveAllowedDenom; + value: _126.MsgRemoveAllowedDenom; }; }; fromPartial: { - sell(value: _125.MsgSell): { + sell(value: _126.MsgSell): { typeUrl: string; - value: _125.MsgSell; + value: _126.MsgSell; }; - updateSellOrders(value: _125.MsgUpdateSellOrders): { + updateSellOrders(value: _126.MsgUpdateSellOrders): { typeUrl: string; - value: _125.MsgUpdateSellOrders; + value: _126.MsgUpdateSellOrders; }; - cancelSellOrder(value: _125.MsgCancelSellOrder): { + cancelSellOrder(value: _126.MsgCancelSellOrder): { typeUrl: string; - value: _125.MsgCancelSellOrder; + value: _126.MsgCancelSellOrder; }; - buyDirect(value: _125.MsgBuyDirect): { + buyDirect(value: _126.MsgBuyDirect): { typeUrl: string; - value: _125.MsgBuyDirect; + value: _126.MsgBuyDirect; }; - addAllowedDenom(value: _125.MsgAddAllowedDenom): { + addAllowedDenom(value: _126.MsgAddAllowedDenom): { typeUrl: string; - value: _125.MsgAddAllowedDenom; + value: _126.MsgAddAllowedDenom; }; - removeAllowedDenom(value: _125.MsgRemoveAllowedDenom): { + removeAllowedDenom(value: _126.MsgRemoveAllowedDenom): { typeUrl: string; - value: _125.MsgRemoveAllowedDenom; + value: _126.MsgRemoveAllowedDenom; }; }; }; AminoConverter: { "/regen.ecocredit.marketplace.v1.MsgSell": { aminoType: string; - toAmino: (message: _125.MsgSell) => _125.MsgSellAmino; - fromAmino: (object: _125.MsgSellAmino) => _125.MsgSell; + toAmino: (message: _126.MsgSell) => _126.MsgSellAmino; + fromAmino: (object: _126.MsgSellAmino) => _126.MsgSell; }; "/regen.ecocredit.marketplace.v1.MsgUpdateSellOrders": { aminoType: string; - toAmino: (message: _125.MsgUpdateSellOrders) => _125.MsgUpdateSellOrdersAmino; - fromAmino: (object: _125.MsgUpdateSellOrdersAmino) => _125.MsgUpdateSellOrders; + toAmino: (message: _126.MsgUpdateSellOrders) => _126.MsgUpdateSellOrdersAmino; + fromAmino: (object: _126.MsgUpdateSellOrdersAmino) => _126.MsgUpdateSellOrders; }; "/regen.ecocredit.marketplace.v1.MsgCancelSellOrder": { aminoType: string; - toAmino: (message: _125.MsgCancelSellOrder) => _125.MsgCancelSellOrderAmino; - fromAmino: (object: _125.MsgCancelSellOrderAmino) => _125.MsgCancelSellOrder; + toAmino: (message: _126.MsgCancelSellOrder) => _126.MsgCancelSellOrderAmino; + fromAmino: (object: _126.MsgCancelSellOrderAmino) => _126.MsgCancelSellOrder; }; "/regen.ecocredit.marketplace.v1.MsgBuyDirect": { aminoType: string; - toAmino: (message: _125.MsgBuyDirect) => _125.MsgBuyDirectAmino; - fromAmino: (object: _125.MsgBuyDirectAmino) => _125.MsgBuyDirect; + toAmino: (message: _126.MsgBuyDirect) => _126.MsgBuyDirectAmino; + fromAmino: (object: _126.MsgBuyDirectAmino) => _126.MsgBuyDirect; }; "/regen.ecocredit.marketplace.v1.MsgAddAllowedDenom": { aminoType: string; - toAmino: (message: _125.MsgAddAllowedDenom) => _125.MsgAddAllowedDenomAmino; - fromAmino: (object: _125.MsgAddAllowedDenomAmino) => _125.MsgAddAllowedDenom; + toAmino: (message: _126.MsgAddAllowedDenom) => _126.MsgAddAllowedDenomAmino; + fromAmino: (object: _126.MsgAddAllowedDenomAmino) => _126.MsgAddAllowedDenom; }; "/regen.ecocredit.marketplace.v1.MsgRemoveAllowedDenom": { aminoType: string; - toAmino: (message: _125.MsgRemoveAllowedDenom) => _125.MsgRemoveAllowedDenomAmino; - fromAmino: (object: _125.MsgRemoveAllowedDenomAmino) => _125.MsgRemoveAllowedDenom; + toAmino: (message: _126.MsgRemoveAllowedDenom) => _126.MsgRemoveAllowedDenomAmino; + fromAmino: (object: _126.MsgRemoveAllowedDenomAmino) => _126.MsgRemoveAllowedDenom; }; }; AllowDenomProposal: { - encode(message: _126.AllowDenomProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _126.AllowDenomProposal; - fromJSON(object: any): _126.AllowDenomProposal; - toJSON(message: _126.AllowDenomProposal): unknown; - fromPartial(object: Partial<_126.AllowDenomProposal>): _126.AllowDenomProposal; - fromAmino(object: _126.AllowDenomProposalAmino): _126.AllowDenomProposal; - toAmino(message: _126.AllowDenomProposal): _126.AllowDenomProposalAmino; - fromAminoMsg(object: _126.AllowDenomProposalAminoMsg): _126.AllowDenomProposal; - fromProtoMsg(message: _126.AllowDenomProposalProtoMsg): _126.AllowDenomProposal; - toProto(message: _126.AllowDenomProposal): Uint8Array; - toProtoMsg(message: _126.AllowDenomProposal): _126.AllowDenomProposalProtoMsg; + typeUrl: string; + encode(message: _127.AllowDenomProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _127.AllowDenomProposal; + fromJSON(object: any): _127.AllowDenomProposal; + toJSON(message: _127.AllowDenomProposal): unknown; + fromPartial(object: Partial<_127.AllowDenomProposal>): _127.AllowDenomProposal; + fromAmino(object: _127.AllowDenomProposalAmino): _127.AllowDenomProposal; + toAmino(message: _127.AllowDenomProposal): _127.AllowDenomProposalAmino; + fromAminoMsg(object: _127.AllowDenomProposalAminoMsg): _127.AllowDenomProposal; + fromProtoMsg(message: _127.AllowDenomProposalProtoMsg): _127.AllowDenomProposal; + toProto(message: _127.AllowDenomProposal): Uint8Array; + toProtoMsg(message: _127.AllowDenomProposal): _127.AllowDenomProposalProtoMsg; }; MsgSell: { - encode(message: _125.MsgSell, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgSell; - fromJSON(object: any): _125.MsgSell; - toJSON(message: _125.MsgSell): unknown; - fromPartial(object: Partial<_125.MsgSell>): _125.MsgSell; - fromAmino(object: _125.MsgSellAmino): _125.MsgSell; - toAmino(message: _125.MsgSell): _125.MsgSellAmino; - fromAminoMsg(object: _125.MsgSellAminoMsg): _125.MsgSell; - toAminoMsg(message: _125.MsgSell): _125.MsgSellAminoMsg; - fromProtoMsg(message: _125.MsgSellProtoMsg): _125.MsgSell; - toProto(message: _125.MsgSell): Uint8Array; - toProtoMsg(message: _125.MsgSell): _125.MsgSellProtoMsg; + typeUrl: string; + encode(message: _126.MsgSell, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgSell; + fromJSON(object: any): _126.MsgSell; + toJSON(message: _126.MsgSell): unknown; + fromPartial(object: Partial<_126.MsgSell>): _126.MsgSell; + fromAmino(object: _126.MsgSellAmino): _126.MsgSell; + toAmino(message: _126.MsgSell): _126.MsgSellAmino; + fromAminoMsg(object: _126.MsgSellAminoMsg): _126.MsgSell; + toAminoMsg(message: _126.MsgSell): _126.MsgSellAminoMsg; + fromProtoMsg(message: _126.MsgSellProtoMsg): _126.MsgSell; + toProto(message: _126.MsgSell): Uint8Array; + toProtoMsg(message: _126.MsgSell): _126.MsgSellProtoMsg; }; MsgSell_Order: { - encode(message: _125.MsgSell_Order, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgSell_Order; - fromJSON(object: any): _125.MsgSell_Order; - toJSON(message: _125.MsgSell_Order): unknown; - fromPartial(object: Partial<_125.MsgSell_Order>): _125.MsgSell_Order; - fromAmino(object: _125.MsgSell_OrderAmino): _125.MsgSell_Order; - toAmino(message: _125.MsgSell_Order): _125.MsgSell_OrderAmino; - fromAminoMsg(object: _125.MsgSell_OrderAminoMsg): _125.MsgSell_Order; - fromProtoMsg(message: _125.MsgSell_OrderProtoMsg): _125.MsgSell_Order; - toProto(message: _125.MsgSell_Order): Uint8Array; - toProtoMsg(message: _125.MsgSell_Order): _125.MsgSell_OrderProtoMsg; + typeUrl: string; + encode(message: _126.MsgSell_Order, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgSell_Order; + fromJSON(object: any): _126.MsgSell_Order; + toJSON(message: _126.MsgSell_Order): unknown; + fromPartial(object: Partial<_126.MsgSell_Order>): _126.MsgSell_Order; + fromAmino(object: _126.MsgSell_OrderAmino): _126.MsgSell_Order; + toAmino(message: _126.MsgSell_Order): _126.MsgSell_OrderAmino; + fromAminoMsg(object: _126.MsgSell_OrderAminoMsg): _126.MsgSell_Order; + fromProtoMsg(message: _126.MsgSell_OrderProtoMsg): _126.MsgSell_Order; + toProto(message: _126.MsgSell_Order): Uint8Array; + toProtoMsg(message: _126.MsgSell_Order): _126.MsgSell_OrderProtoMsg; }; MsgSellResponse: { - encode(message: _125.MsgSellResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgSellResponse; - fromJSON(object: any): _125.MsgSellResponse; - toJSON(message: _125.MsgSellResponse): unknown; - fromPartial(object: Partial<_125.MsgSellResponse>): _125.MsgSellResponse; - fromAmino(object: _125.MsgSellResponseAmino): _125.MsgSellResponse; - toAmino(message: _125.MsgSellResponse): _125.MsgSellResponseAmino; - fromAminoMsg(object: _125.MsgSellResponseAminoMsg): _125.MsgSellResponse; - fromProtoMsg(message: _125.MsgSellResponseProtoMsg): _125.MsgSellResponse; - toProto(message: _125.MsgSellResponse): Uint8Array; - toProtoMsg(message: _125.MsgSellResponse): _125.MsgSellResponseProtoMsg; + typeUrl: string; + encode(message: _126.MsgSellResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgSellResponse; + fromJSON(object: any): _126.MsgSellResponse; + toJSON(message: _126.MsgSellResponse): unknown; + fromPartial(object: Partial<_126.MsgSellResponse>): _126.MsgSellResponse; + fromAmino(object: _126.MsgSellResponseAmino): _126.MsgSellResponse; + toAmino(message: _126.MsgSellResponse): _126.MsgSellResponseAmino; + fromAminoMsg(object: _126.MsgSellResponseAminoMsg): _126.MsgSellResponse; + fromProtoMsg(message: _126.MsgSellResponseProtoMsg): _126.MsgSellResponse; + toProto(message: _126.MsgSellResponse): Uint8Array; + toProtoMsg(message: _126.MsgSellResponse): _126.MsgSellResponseProtoMsg; }; MsgUpdateSellOrders: { - encode(message: _125.MsgUpdateSellOrders, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgUpdateSellOrders; - fromJSON(object: any): _125.MsgUpdateSellOrders; - toJSON(message: _125.MsgUpdateSellOrders): unknown; - fromPartial(object: Partial<_125.MsgUpdateSellOrders>): _125.MsgUpdateSellOrders; - fromAmino(object: _125.MsgUpdateSellOrdersAmino): _125.MsgUpdateSellOrders; - toAmino(message: _125.MsgUpdateSellOrders): _125.MsgUpdateSellOrdersAmino; - fromAminoMsg(object: _125.MsgUpdateSellOrdersAminoMsg): _125.MsgUpdateSellOrders; - toAminoMsg(message: _125.MsgUpdateSellOrders): _125.MsgUpdateSellOrdersAminoMsg; - fromProtoMsg(message: _125.MsgUpdateSellOrdersProtoMsg): _125.MsgUpdateSellOrders; - toProto(message: _125.MsgUpdateSellOrders): Uint8Array; - toProtoMsg(message: _125.MsgUpdateSellOrders): _125.MsgUpdateSellOrdersProtoMsg; + typeUrl: string; + encode(message: _126.MsgUpdateSellOrders, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgUpdateSellOrders; + fromJSON(object: any): _126.MsgUpdateSellOrders; + toJSON(message: _126.MsgUpdateSellOrders): unknown; + fromPartial(object: Partial<_126.MsgUpdateSellOrders>): _126.MsgUpdateSellOrders; + fromAmino(object: _126.MsgUpdateSellOrdersAmino): _126.MsgUpdateSellOrders; + toAmino(message: _126.MsgUpdateSellOrders): _126.MsgUpdateSellOrdersAmino; + fromAminoMsg(object: _126.MsgUpdateSellOrdersAminoMsg): _126.MsgUpdateSellOrders; + toAminoMsg(message: _126.MsgUpdateSellOrders): _126.MsgUpdateSellOrdersAminoMsg; + fromProtoMsg(message: _126.MsgUpdateSellOrdersProtoMsg): _126.MsgUpdateSellOrders; + toProto(message: _126.MsgUpdateSellOrders): Uint8Array; + toProtoMsg(message: _126.MsgUpdateSellOrders): _126.MsgUpdateSellOrdersProtoMsg; }; MsgUpdateSellOrders_Update: { - encode(message: _125.MsgUpdateSellOrders_Update, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgUpdateSellOrders_Update; - fromJSON(object: any): _125.MsgUpdateSellOrders_Update; - toJSON(message: _125.MsgUpdateSellOrders_Update): unknown; - fromPartial(object: Partial<_125.MsgUpdateSellOrders_Update>): _125.MsgUpdateSellOrders_Update; - fromAmino(object: _125.MsgUpdateSellOrders_UpdateAmino): _125.MsgUpdateSellOrders_Update; - toAmino(message: _125.MsgUpdateSellOrders_Update): _125.MsgUpdateSellOrders_UpdateAmino; - fromAminoMsg(object: _125.MsgUpdateSellOrders_UpdateAminoMsg): _125.MsgUpdateSellOrders_Update; - fromProtoMsg(message: _125.MsgUpdateSellOrders_UpdateProtoMsg): _125.MsgUpdateSellOrders_Update; - toProto(message: _125.MsgUpdateSellOrders_Update): Uint8Array; - toProtoMsg(message: _125.MsgUpdateSellOrders_Update): _125.MsgUpdateSellOrders_UpdateProtoMsg; + typeUrl: string; + encode(message: _126.MsgUpdateSellOrders_Update, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgUpdateSellOrders_Update; + fromJSON(object: any): _126.MsgUpdateSellOrders_Update; + toJSON(message: _126.MsgUpdateSellOrders_Update): unknown; + fromPartial(object: Partial<_126.MsgUpdateSellOrders_Update>): _126.MsgUpdateSellOrders_Update; + fromAmino(object: _126.MsgUpdateSellOrders_UpdateAmino): _126.MsgUpdateSellOrders_Update; + toAmino(message: _126.MsgUpdateSellOrders_Update): _126.MsgUpdateSellOrders_UpdateAmino; + fromAminoMsg(object: _126.MsgUpdateSellOrders_UpdateAminoMsg): _126.MsgUpdateSellOrders_Update; + fromProtoMsg(message: _126.MsgUpdateSellOrders_UpdateProtoMsg): _126.MsgUpdateSellOrders_Update; + toProto(message: _126.MsgUpdateSellOrders_Update): Uint8Array; + toProtoMsg(message: _126.MsgUpdateSellOrders_Update): _126.MsgUpdateSellOrders_UpdateProtoMsg; }; MsgUpdateSellOrdersResponse: { - encode(_: _125.MsgUpdateSellOrdersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgUpdateSellOrdersResponse; - fromJSON(_: any): _125.MsgUpdateSellOrdersResponse; - toJSON(_: _125.MsgUpdateSellOrdersResponse): unknown; - fromPartial(_: Partial<_125.MsgUpdateSellOrdersResponse>): _125.MsgUpdateSellOrdersResponse; - fromAmino(_: _125.MsgUpdateSellOrdersResponseAmino): _125.MsgUpdateSellOrdersResponse; - toAmino(_: _125.MsgUpdateSellOrdersResponse): _125.MsgUpdateSellOrdersResponseAmino; - fromAminoMsg(object: _125.MsgUpdateSellOrdersResponseAminoMsg): _125.MsgUpdateSellOrdersResponse; - fromProtoMsg(message: _125.MsgUpdateSellOrdersResponseProtoMsg): _125.MsgUpdateSellOrdersResponse; - toProto(message: _125.MsgUpdateSellOrdersResponse): Uint8Array; - toProtoMsg(message: _125.MsgUpdateSellOrdersResponse): _125.MsgUpdateSellOrdersResponseProtoMsg; + typeUrl: string; + encode(_: _126.MsgUpdateSellOrdersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgUpdateSellOrdersResponse; + fromJSON(_: any): _126.MsgUpdateSellOrdersResponse; + toJSON(_: _126.MsgUpdateSellOrdersResponse): unknown; + fromPartial(_: Partial<_126.MsgUpdateSellOrdersResponse>): _126.MsgUpdateSellOrdersResponse; + fromAmino(_: _126.MsgUpdateSellOrdersResponseAmino): _126.MsgUpdateSellOrdersResponse; + toAmino(_: _126.MsgUpdateSellOrdersResponse): _126.MsgUpdateSellOrdersResponseAmino; + fromAminoMsg(object: _126.MsgUpdateSellOrdersResponseAminoMsg): _126.MsgUpdateSellOrdersResponse; + fromProtoMsg(message: _126.MsgUpdateSellOrdersResponseProtoMsg): _126.MsgUpdateSellOrdersResponse; + toProto(message: _126.MsgUpdateSellOrdersResponse): Uint8Array; + toProtoMsg(message: _126.MsgUpdateSellOrdersResponse): _126.MsgUpdateSellOrdersResponseProtoMsg; }; MsgCancelSellOrder: { - encode(message: _125.MsgCancelSellOrder, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgCancelSellOrder; - fromJSON(object: any): _125.MsgCancelSellOrder; - toJSON(message: _125.MsgCancelSellOrder): unknown; - fromPartial(object: Partial<_125.MsgCancelSellOrder>): _125.MsgCancelSellOrder; - fromAmino(object: _125.MsgCancelSellOrderAmino): _125.MsgCancelSellOrder; - toAmino(message: _125.MsgCancelSellOrder): _125.MsgCancelSellOrderAmino; - fromAminoMsg(object: _125.MsgCancelSellOrderAminoMsg): _125.MsgCancelSellOrder; - toAminoMsg(message: _125.MsgCancelSellOrder): _125.MsgCancelSellOrderAminoMsg; - fromProtoMsg(message: _125.MsgCancelSellOrderProtoMsg): _125.MsgCancelSellOrder; - toProto(message: _125.MsgCancelSellOrder): Uint8Array; - toProtoMsg(message: _125.MsgCancelSellOrder): _125.MsgCancelSellOrderProtoMsg; + typeUrl: string; + encode(message: _126.MsgCancelSellOrder, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgCancelSellOrder; + fromJSON(object: any): _126.MsgCancelSellOrder; + toJSON(message: _126.MsgCancelSellOrder): unknown; + fromPartial(object: Partial<_126.MsgCancelSellOrder>): _126.MsgCancelSellOrder; + fromAmino(object: _126.MsgCancelSellOrderAmino): _126.MsgCancelSellOrder; + toAmino(message: _126.MsgCancelSellOrder): _126.MsgCancelSellOrderAmino; + fromAminoMsg(object: _126.MsgCancelSellOrderAminoMsg): _126.MsgCancelSellOrder; + toAminoMsg(message: _126.MsgCancelSellOrder): _126.MsgCancelSellOrderAminoMsg; + fromProtoMsg(message: _126.MsgCancelSellOrderProtoMsg): _126.MsgCancelSellOrder; + toProto(message: _126.MsgCancelSellOrder): Uint8Array; + toProtoMsg(message: _126.MsgCancelSellOrder): _126.MsgCancelSellOrderProtoMsg; }; MsgCancelSellOrderResponse: { - encode(_: _125.MsgCancelSellOrderResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgCancelSellOrderResponse; - fromJSON(_: any): _125.MsgCancelSellOrderResponse; - toJSON(_: _125.MsgCancelSellOrderResponse): unknown; - fromPartial(_: Partial<_125.MsgCancelSellOrderResponse>): _125.MsgCancelSellOrderResponse; - fromAmino(_: _125.MsgCancelSellOrderResponseAmino): _125.MsgCancelSellOrderResponse; - toAmino(_: _125.MsgCancelSellOrderResponse): _125.MsgCancelSellOrderResponseAmino; - fromAminoMsg(object: _125.MsgCancelSellOrderResponseAminoMsg): _125.MsgCancelSellOrderResponse; - fromProtoMsg(message: _125.MsgCancelSellOrderResponseProtoMsg): _125.MsgCancelSellOrderResponse; - toProto(message: _125.MsgCancelSellOrderResponse): Uint8Array; - toProtoMsg(message: _125.MsgCancelSellOrderResponse): _125.MsgCancelSellOrderResponseProtoMsg; + typeUrl: string; + encode(_: _126.MsgCancelSellOrderResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgCancelSellOrderResponse; + fromJSON(_: any): _126.MsgCancelSellOrderResponse; + toJSON(_: _126.MsgCancelSellOrderResponse): unknown; + fromPartial(_: Partial<_126.MsgCancelSellOrderResponse>): _126.MsgCancelSellOrderResponse; + fromAmino(_: _126.MsgCancelSellOrderResponseAmino): _126.MsgCancelSellOrderResponse; + toAmino(_: _126.MsgCancelSellOrderResponse): _126.MsgCancelSellOrderResponseAmino; + fromAminoMsg(object: _126.MsgCancelSellOrderResponseAminoMsg): _126.MsgCancelSellOrderResponse; + fromProtoMsg(message: _126.MsgCancelSellOrderResponseProtoMsg): _126.MsgCancelSellOrderResponse; + toProto(message: _126.MsgCancelSellOrderResponse): Uint8Array; + toProtoMsg(message: _126.MsgCancelSellOrderResponse): _126.MsgCancelSellOrderResponseProtoMsg; }; MsgBuyDirect: { - encode(message: _125.MsgBuyDirect, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgBuyDirect; - fromJSON(object: any): _125.MsgBuyDirect; - toJSON(message: _125.MsgBuyDirect): unknown; - fromPartial(object: Partial<_125.MsgBuyDirect>): _125.MsgBuyDirect; - fromAmino(object: _125.MsgBuyDirectAmino): _125.MsgBuyDirect; - toAmino(message: _125.MsgBuyDirect): _125.MsgBuyDirectAmino; - fromAminoMsg(object: _125.MsgBuyDirectAminoMsg): _125.MsgBuyDirect; - toAminoMsg(message: _125.MsgBuyDirect): _125.MsgBuyDirectAminoMsg; - fromProtoMsg(message: _125.MsgBuyDirectProtoMsg): _125.MsgBuyDirect; - toProto(message: _125.MsgBuyDirect): Uint8Array; - toProtoMsg(message: _125.MsgBuyDirect): _125.MsgBuyDirectProtoMsg; + typeUrl: string; + encode(message: _126.MsgBuyDirect, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgBuyDirect; + fromJSON(object: any): _126.MsgBuyDirect; + toJSON(message: _126.MsgBuyDirect): unknown; + fromPartial(object: Partial<_126.MsgBuyDirect>): _126.MsgBuyDirect; + fromAmino(object: _126.MsgBuyDirectAmino): _126.MsgBuyDirect; + toAmino(message: _126.MsgBuyDirect): _126.MsgBuyDirectAmino; + fromAminoMsg(object: _126.MsgBuyDirectAminoMsg): _126.MsgBuyDirect; + toAminoMsg(message: _126.MsgBuyDirect): _126.MsgBuyDirectAminoMsg; + fromProtoMsg(message: _126.MsgBuyDirectProtoMsg): _126.MsgBuyDirect; + toProto(message: _126.MsgBuyDirect): Uint8Array; + toProtoMsg(message: _126.MsgBuyDirect): _126.MsgBuyDirectProtoMsg; }; MsgBuyDirect_Order: { - encode(message: _125.MsgBuyDirect_Order, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgBuyDirect_Order; - fromJSON(object: any): _125.MsgBuyDirect_Order; - toJSON(message: _125.MsgBuyDirect_Order): unknown; - fromPartial(object: Partial<_125.MsgBuyDirect_Order>): _125.MsgBuyDirect_Order; - fromAmino(object: _125.MsgBuyDirect_OrderAmino): _125.MsgBuyDirect_Order; - toAmino(message: _125.MsgBuyDirect_Order): _125.MsgBuyDirect_OrderAmino; - fromAminoMsg(object: _125.MsgBuyDirect_OrderAminoMsg): _125.MsgBuyDirect_Order; - fromProtoMsg(message: _125.MsgBuyDirect_OrderProtoMsg): _125.MsgBuyDirect_Order; - toProto(message: _125.MsgBuyDirect_Order): Uint8Array; - toProtoMsg(message: _125.MsgBuyDirect_Order): _125.MsgBuyDirect_OrderProtoMsg; + typeUrl: string; + encode(message: _126.MsgBuyDirect_Order, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgBuyDirect_Order; + fromJSON(object: any): _126.MsgBuyDirect_Order; + toJSON(message: _126.MsgBuyDirect_Order): unknown; + fromPartial(object: Partial<_126.MsgBuyDirect_Order>): _126.MsgBuyDirect_Order; + fromAmino(object: _126.MsgBuyDirect_OrderAmino): _126.MsgBuyDirect_Order; + toAmino(message: _126.MsgBuyDirect_Order): _126.MsgBuyDirect_OrderAmino; + fromAminoMsg(object: _126.MsgBuyDirect_OrderAminoMsg): _126.MsgBuyDirect_Order; + fromProtoMsg(message: _126.MsgBuyDirect_OrderProtoMsg): _126.MsgBuyDirect_Order; + toProto(message: _126.MsgBuyDirect_Order): Uint8Array; + toProtoMsg(message: _126.MsgBuyDirect_Order): _126.MsgBuyDirect_OrderProtoMsg; }; MsgBuyDirectResponse: { - encode(_: _125.MsgBuyDirectResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgBuyDirectResponse; - fromJSON(_: any): _125.MsgBuyDirectResponse; - toJSON(_: _125.MsgBuyDirectResponse): unknown; - fromPartial(_: Partial<_125.MsgBuyDirectResponse>): _125.MsgBuyDirectResponse; - fromAmino(_: _125.MsgBuyDirectResponseAmino): _125.MsgBuyDirectResponse; - toAmino(_: _125.MsgBuyDirectResponse): _125.MsgBuyDirectResponseAmino; - fromAminoMsg(object: _125.MsgBuyDirectResponseAminoMsg): _125.MsgBuyDirectResponse; - fromProtoMsg(message: _125.MsgBuyDirectResponseProtoMsg): _125.MsgBuyDirectResponse; - toProto(message: _125.MsgBuyDirectResponse): Uint8Array; - toProtoMsg(message: _125.MsgBuyDirectResponse): _125.MsgBuyDirectResponseProtoMsg; + typeUrl: string; + encode(_: _126.MsgBuyDirectResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgBuyDirectResponse; + fromJSON(_: any): _126.MsgBuyDirectResponse; + toJSON(_: _126.MsgBuyDirectResponse): unknown; + fromPartial(_: Partial<_126.MsgBuyDirectResponse>): _126.MsgBuyDirectResponse; + fromAmino(_: _126.MsgBuyDirectResponseAmino): _126.MsgBuyDirectResponse; + toAmino(_: _126.MsgBuyDirectResponse): _126.MsgBuyDirectResponseAmino; + fromAminoMsg(object: _126.MsgBuyDirectResponseAminoMsg): _126.MsgBuyDirectResponse; + fromProtoMsg(message: _126.MsgBuyDirectResponseProtoMsg): _126.MsgBuyDirectResponse; + toProto(message: _126.MsgBuyDirectResponse): Uint8Array; + toProtoMsg(message: _126.MsgBuyDirectResponse): _126.MsgBuyDirectResponseProtoMsg; }; MsgAddAllowedDenom: { - encode(message: _125.MsgAddAllowedDenom, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgAddAllowedDenom; - fromJSON(object: any): _125.MsgAddAllowedDenom; - toJSON(message: _125.MsgAddAllowedDenom): unknown; - fromPartial(object: Partial<_125.MsgAddAllowedDenom>): _125.MsgAddAllowedDenom; - fromAmino(object: _125.MsgAddAllowedDenomAmino): _125.MsgAddAllowedDenom; - toAmino(message: _125.MsgAddAllowedDenom): _125.MsgAddAllowedDenomAmino; - fromAminoMsg(object: _125.MsgAddAllowedDenomAminoMsg): _125.MsgAddAllowedDenom; - toAminoMsg(message: _125.MsgAddAllowedDenom): _125.MsgAddAllowedDenomAminoMsg; - fromProtoMsg(message: _125.MsgAddAllowedDenomProtoMsg): _125.MsgAddAllowedDenom; - toProto(message: _125.MsgAddAllowedDenom): Uint8Array; - toProtoMsg(message: _125.MsgAddAllowedDenom): _125.MsgAddAllowedDenomProtoMsg; + typeUrl: string; + encode(message: _126.MsgAddAllowedDenom, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgAddAllowedDenom; + fromJSON(object: any): _126.MsgAddAllowedDenom; + toJSON(message: _126.MsgAddAllowedDenom): unknown; + fromPartial(object: Partial<_126.MsgAddAllowedDenom>): _126.MsgAddAllowedDenom; + fromAmino(object: _126.MsgAddAllowedDenomAmino): _126.MsgAddAllowedDenom; + toAmino(message: _126.MsgAddAllowedDenom): _126.MsgAddAllowedDenomAmino; + fromAminoMsg(object: _126.MsgAddAllowedDenomAminoMsg): _126.MsgAddAllowedDenom; + toAminoMsg(message: _126.MsgAddAllowedDenom): _126.MsgAddAllowedDenomAminoMsg; + fromProtoMsg(message: _126.MsgAddAllowedDenomProtoMsg): _126.MsgAddAllowedDenom; + toProto(message: _126.MsgAddAllowedDenom): Uint8Array; + toProtoMsg(message: _126.MsgAddAllowedDenom): _126.MsgAddAllowedDenomProtoMsg; }; MsgAddAllowedDenomResponse: { - encode(_: _125.MsgAddAllowedDenomResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgAddAllowedDenomResponse; - fromJSON(_: any): _125.MsgAddAllowedDenomResponse; - toJSON(_: _125.MsgAddAllowedDenomResponse): unknown; - fromPartial(_: Partial<_125.MsgAddAllowedDenomResponse>): _125.MsgAddAllowedDenomResponse; - fromAmino(_: _125.MsgAddAllowedDenomResponseAmino): _125.MsgAddAllowedDenomResponse; - toAmino(_: _125.MsgAddAllowedDenomResponse): _125.MsgAddAllowedDenomResponseAmino; - fromAminoMsg(object: _125.MsgAddAllowedDenomResponseAminoMsg): _125.MsgAddAllowedDenomResponse; - fromProtoMsg(message: _125.MsgAddAllowedDenomResponseProtoMsg): _125.MsgAddAllowedDenomResponse; - toProto(message: _125.MsgAddAllowedDenomResponse): Uint8Array; - toProtoMsg(message: _125.MsgAddAllowedDenomResponse): _125.MsgAddAllowedDenomResponseProtoMsg; + typeUrl: string; + encode(_: _126.MsgAddAllowedDenomResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgAddAllowedDenomResponse; + fromJSON(_: any): _126.MsgAddAllowedDenomResponse; + toJSON(_: _126.MsgAddAllowedDenomResponse): unknown; + fromPartial(_: Partial<_126.MsgAddAllowedDenomResponse>): _126.MsgAddAllowedDenomResponse; + fromAmino(_: _126.MsgAddAllowedDenomResponseAmino): _126.MsgAddAllowedDenomResponse; + toAmino(_: _126.MsgAddAllowedDenomResponse): _126.MsgAddAllowedDenomResponseAmino; + fromAminoMsg(object: _126.MsgAddAllowedDenomResponseAminoMsg): _126.MsgAddAllowedDenomResponse; + fromProtoMsg(message: _126.MsgAddAllowedDenomResponseProtoMsg): _126.MsgAddAllowedDenomResponse; + toProto(message: _126.MsgAddAllowedDenomResponse): Uint8Array; + toProtoMsg(message: _126.MsgAddAllowedDenomResponse): _126.MsgAddAllowedDenomResponseProtoMsg; }; MsgRemoveAllowedDenom: { - encode(message: _125.MsgRemoveAllowedDenom, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgRemoveAllowedDenom; - fromJSON(object: any): _125.MsgRemoveAllowedDenom; - toJSON(message: _125.MsgRemoveAllowedDenom): unknown; - fromPartial(object: Partial<_125.MsgRemoveAllowedDenom>): _125.MsgRemoveAllowedDenom; - fromAmino(object: _125.MsgRemoveAllowedDenomAmino): _125.MsgRemoveAllowedDenom; - toAmino(message: _125.MsgRemoveAllowedDenom): _125.MsgRemoveAllowedDenomAmino; - fromAminoMsg(object: _125.MsgRemoveAllowedDenomAminoMsg): _125.MsgRemoveAllowedDenom; - toAminoMsg(message: _125.MsgRemoveAllowedDenom): _125.MsgRemoveAllowedDenomAminoMsg; - fromProtoMsg(message: _125.MsgRemoveAllowedDenomProtoMsg): _125.MsgRemoveAllowedDenom; - toProto(message: _125.MsgRemoveAllowedDenom): Uint8Array; - toProtoMsg(message: _125.MsgRemoveAllowedDenom): _125.MsgRemoveAllowedDenomProtoMsg; + typeUrl: string; + encode(message: _126.MsgRemoveAllowedDenom, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgRemoveAllowedDenom; + fromJSON(object: any): _126.MsgRemoveAllowedDenom; + toJSON(message: _126.MsgRemoveAllowedDenom): unknown; + fromPartial(object: Partial<_126.MsgRemoveAllowedDenom>): _126.MsgRemoveAllowedDenom; + fromAmino(object: _126.MsgRemoveAllowedDenomAmino): _126.MsgRemoveAllowedDenom; + toAmino(message: _126.MsgRemoveAllowedDenom): _126.MsgRemoveAllowedDenomAmino; + fromAminoMsg(object: _126.MsgRemoveAllowedDenomAminoMsg): _126.MsgRemoveAllowedDenom; + toAminoMsg(message: _126.MsgRemoveAllowedDenom): _126.MsgRemoveAllowedDenomAminoMsg; + fromProtoMsg(message: _126.MsgRemoveAllowedDenomProtoMsg): _126.MsgRemoveAllowedDenom; + toProto(message: _126.MsgRemoveAllowedDenom): Uint8Array; + toProtoMsg(message: _126.MsgRemoveAllowedDenom): _126.MsgRemoveAllowedDenomProtoMsg; }; MsgRemoveAllowedDenomResponse: { - encode(_: _125.MsgRemoveAllowedDenomResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _125.MsgRemoveAllowedDenomResponse; - fromJSON(_: any): _125.MsgRemoveAllowedDenomResponse; - toJSON(_: _125.MsgRemoveAllowedDenomResponse): unknown; - fromPartial(_: Partial<_125.MsgRemoveAllowedDenomResponse>): _125.MsgRemoveAllowedDenomResponse; - fromAmino(_: _125.MsgRemoveAllowedDenomResponseAmino): _125.MsgRemoveAllowedDenomResponse; - toAmino(_: _125.MsgRemoveAllowedDenomResponse): _125.MsgRemoveAllowedDenomResponseAmino; - fromAminoMsg(object: _125.MsgRemoveAllowedDenomResponseAminoMsg): _125.MsgRemoveAllowedDenomResponse; - fromProtoMsg(message: _125.MsgRemoveAllowedDenomResponseProtoMsg): _125.MsgRemoveAllowedDenomResponse; - toProto(message: _125.MsgRemoveAllowedDenomResponse): Uint8Array; - toProtoMsg(message: _125.MsgRemoveAllowedDenomResponse): _125.MsgRemoveAllowedDenomResponseProtoMsg; + typeUrl: string; + encode(_: _126.MsgRemoveAllowedDenomResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _126.MsgRemoveAllowedDenomResponse; + fromJSON(_: any): _126.MsgRemoveAllowedDenomResponse; + toJSON(_: _126.MsgRemoveAllowedDenomResponse): unknown; + fromPartial(_: Partial<_126.MsgRemoveAllowedDenomResponse>): _126.MsgRemoveAllowedDenomResponse; + fromAmino(_: _126.MsgRemoveAllowedDenomResponseAmino): _126.MsgRemoveAllowedDenomResponse; + toAmino(_: _126.MsgRemoveAllowedDenomResponse): _126.MsgRemoveAllowedDenomResponseAmino; + fromAminoMsg(object: _126.MsgRemoveAllowedDenomResponseAminoMsg): _126.MsgRemoveAllowedDenomResponse; + fromProtoMsg(message: _126.MsgRemoveAllowedDenomResponseProtoMsg): _126.MsgRemoveAllowedDenomResponse; + toProto(message: _126.MsgRemoveAllowedDenomResponse): Uint8Array; + toProtoMsg(message: _126.MsgRemoveAllowedDenomResponse): _126.MsgRemoveAllowedDenomResponseProtoMsg; }; SellOrder: { - encode(message: _124.SellOrder, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _124.SellOrder; - fromJSON(object: any): _124.SellOrder; - toJSON(message: _124.SellOrder): unknown; - fromPartial(object: Partial<_124.SellOrder>): _124.SellOrder; - fromAmino(object: _124.SellOrderAmino): _124.SellOrder; - toAmino(message: _124.SellOrder): _124.SellOrderAmino; - fromAminoMsg(object: _124.SellOrderAminoMsg): _124.SellOrder; - fromProtoMsg(message: _124.SellOrderProtoMsg): _124.SellOrder; - toProto(message: _124.SellOrder): Uint8Array; - toProtoMsg(message: _124.SellOrder): _124.SellOrderProtoMsg; + typeUrl: string; + encode(message: _125.SellOrder, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _125.SellOrder; + fromJSON(object: any): _125.SellOrder; + toJSON(message: _125.SellOrder): unknown; + fromPartial(object: Partial<_125.SellOrder>): _125.SellOrder; + fromAmino(object: _125.SellOrderAmino): _125.SellOrder; + toAmino(message: _125.SellOrder): _125.SellOrderAmino; + fromAminoMsg(object: _125.SellOrderAminoMsg): _125.SellOrder; + fromProtoMsg(message: _125.SellOrderProtoMsg): _125.SellOrder; + toProto(message: _125.SellOrder): Uint8Array; + toProtoMsg(message: _125.SellOrder): _125.SellOrderProtoMsg; }; AllowedDenom: { - encode(message: _124.AllowedDenom, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _124.AllowedDenom; - fromJSON(object: any): _124.AllowedDenom; - toJSON(message: _124.AllowedDenom): unknown; - fromPartial(object: Partial<_124.AllowedDenom>): _124.AllowedDenom; - fromAmino(object: _124.AllowedDenomAmino): _124.AllowedDenom; - toAmino(message: _124.AllowedDenom): _124.AllowedDenomAmino; - fromAminoMsg(object: _124.AllowedDenomAminoMsg): _124.AllowedDenom; - fromProtoMsg(message: _124.AllowedDenomProtoMsg): _124.AllowedDenom; - toProto(message: _124.AllowedDenom): Uint8Array; - toProtoMsg(message: _124.AllowedDenom): _124.AllowedDenomProtoMsg; + typeUrl: string; + encode(message: _125.AllowedDenom, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _125.AllowedDenom; + fromJSON(object: any): _125.AllowedDenom; + toJSON(message: _125.AllowedDenom): unknown; + fromPartial(object: Partial<_125.AllowedDenom>): _125.AllowedDenom; + fromAmino(object: _125.AllowedDenomAmino): _125.AllowedDenom; + toAmino(message: _125.AllowedDenom): _125.AllowedDenomAmino; + fromAminoMsg(object: _125.AllowedDenomAminoMsg): _125.AllowedDenom; + fromProtoMsg(message: _125.AllowedDenomProtoMsg): _125.AllowedDenom; + toProto(message: _125.AllowedDenom): Uint8Array; + toProtoMsg(message: _125.AllowedDenom): _125.AllowedDenomProtoMsg; }; Market: { - encode(message: _124.Market, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _124.Market; - fromJSON(object: any): _124.Market; - toJSON(message: _124.Market): unknown; - fromPartial(object: Partial<_124.Market>): _124.Market; - fromAmino(object: _124.MarketAmino): _124.Market; - toAmino(message: _124.Market): _124.MarketAmino; - fromAminoMsg(object: _124.MarketAminoMsg): _124.Market; - fromProtoMsg(message: _124.MarketProtoMsg): _124.Market; - toProto(message: _124.Market): Uint8Array; - toProtoMsg(message: _124.Market): _124.MarketProtoMsg; + typeUrl: string; + encode(message: _125.Market, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _125.Market; + fromJSON(object: any): _125.Market; + toJSON(message: _125.Market): unknown; + fromPartial(object: Partial<_125.Market>): _125.Market; + fromAmino(object: _125.MarketAmino): _125.Market; + toAmino(message: _125.Market): _125.MarketAmino; + fromAminoMsg(object: _125.MarketAminoMsg): _125.Market; + fromProtoMsg(message: _125.MarketProtoMsg): _125.Market; + toProto(message: _125.Market): Uint8Array; + toProtoMsg(message: _125.Market): _125.MarketProtoMsg; }; QuerySellOrderRequest: { - encode(message: _123.QuerySellOrderRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrderRequest; - fromJSON(object: any): _123.QuerySellOrderRequest; - toJSON(message: _123.QuerySellOrderRequest): unknown; - fromPartial(object: Partial<_123.QuerySellOrderRequest>): _123.QuerySellOrderRequest; - fromAmino(object: _123.QuerySellOrderRequestAmino): _123.QuerySellOrderRequest; - toAmino(message: _123.QuerySellOrderRequest): _123.QuerySellOrderRequestAmino; - fromAminoMsg(object: _123.QuerySellOrderRequestAminoMsg): _123.QuerySellOrderRequest; - fromProtoMsg(message: _123.QuerySellOrderRequestProtoMsg): _123.QuerySellOrderRequest; - toProto(message: _123.QuerySellOrderRequest): Uint8Array; - toProtoMsg(message: _123.QuerySellOrderRequest): _123.QuerySellOrderRequestProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrderRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrderRequest; + fromJSON(object: any): _124.QuerySellOrderRequest; + toJSON(message: _124.QuerySellOrderRequest): unknown; + fromPartial(object: Partial<_124.QuerySellOrderRequest>): _124.QuerySellOrderRequest; + fromAmino(object: _124.QuerySellOrderRequestAmino): _124.QuerySellOrderRequest; + toAmino(message: _124.QuerySellOrderRequest): _124.QuerySellOrderRequestAmino; + fromAminoMsg(object: _124.QuerySellOrderRequestAminoMsg): _124.QuerySellOrderRequest; + fromProtoMsg(message: _124.QuerySellOrderRequestProtoMsg): _124.QuerySellOrderRequest; + toProto(message: _124.QuerySellOrderRequest): Uint8Array; + toProtoMsg(message: _124.QuerySellOrderRequest): _124.QuerySellOrderRequestProtoMsg; }; QuerySellOrderResponse: { - encode(message: _123.QuerySellOrderResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrderResponse; - fromJSON(object: any): _123.QuerySellOrderResponse; - toJSON(message: _123.QuerySellOrderResponse): unknown; - fromPartial(object: Partial<_123.QuerySellOrderResponse>): _123.QuerySellOrderResponse; - fromAmino(object: _123.QuerySellOrderResponseAmino): _123.QuerySellOrderResponse; - toAmino(message: _123.QuerySellOrderResponse): _123.QuerySellOrderResponseAmino; - fromAminoMsg(object: _123.QuerySellOrderResponseAminoMsg): _123.QuerySellOrderResponse; - fromProtoMsg(message: _123.QuerySellOrderResponseProtoMsg): _123.QuerySellOrderResponse; - toProto(message: _123.QuerySellOrderResponse): Uint8Array; - toProtoMsg(message: _123.QuerySellOrderResponse): _123.QuerySellOrderResponseProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrderResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrderResponse; + fromJSON(object: any): _124.QuerySellOrderResponse; + toJSON(message: _124.QuerySellOrderResponse): unknown; + fromPartial(object: Partial<_124.QuerySellOrderResponse>): _124.QuerySellOrderResponse; + fromAmino(object: _124.QuerySellOrderResponseAmino): _124.QuerySellOrderResponse; + toAmino(message: _124.QuerySellOrderResponse): _124.QuerySellOrderResponseAmino; + fromAminoMsg(object: _124.QuerySellOrderResponseAminoMsg): _124.QuerySellOrderResponse; + fromProtoMsg(message: _124.QuerySellOrderResponseProtoMsg): _124.QuerySellOrderResponse; + toProto(message: _124.QuerySellOrderResponse): Uint8Array; + toProtoMsg(message: _124.QuerySellOrderResponse): _124.QuerySellOrderResponseProtoMsg; }; QuerySellOrdersRequest: { - encode(message: _123.QuerySellOrdersRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrdersRequest; - fromJSON(object: any): _123.QuerySellOrdersRequest; - toJSON(message: _123.QuerySellOrdersRequest): unknown; - fromPartial(object: Partial<_123.QuerySellOrdersRequest>): _123.QuerySellOrdersRequest; - fromAmino(object: _123.QuerySellOrdersRequestAmino): _123.QuerySellOrdersRequest; - toAmino(message: _123.QuerySellOrdersRequest): _123.QuerySellOrdersRequestAmino; - fromAminoMsg(object: _123.QuerySellOrdersRequestAminoMsg): _123.QuerySellOrdersRequest; - fromProtoMsg(message: _123.QuerySellOrdersRequestProtoMsg): _123.QuerySellOrdersRequest; - toProto(message: _123.QuerySellOrdersRequest): Uint8Array; - toProtoMsg(message: _123.QuerySellOrdersRequest): _123.QuerySellOrdersRequestProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrdersRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrdersRequest; + fromJSON(object: any): _124.QuerySellOrdersRequest; + toJSON(message: _124.QuerySellOrdersRequest): unknown; + fromPartial(object: Partial<_124.QuerySellOrdersRequest>): _124.QuerySellOrdersRequest; + fromAmino(object: _124.QuerySellOrdersRequestAmino): _124.QuerySellOrdersRequest; + toAmino(message: _124.QuerySellOrdersRequest): _124.QuerySellOrdersRequestAmino; + fromAminoMsg(object: _124.QuerySellOrdersRequestAminoMsg): _124.QuerySellOrdersRequest; + fromProtoMsg(message: _124.QuerySellOrdersRequestProtoMsg): _124.QuerySellOrdersRequest; + toProto(message: _124.QuerySellOrdersRequest): Uint8Array; + toProtoMsg(message: _124.QuerySellOrdersRequest): _124.QuerySellOrdersRequestProtoMsg; }; QuerySellOrdersResponse: { - encode(message: _123.QuerySellOrdersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrdersResponse; - fromJSON(object: any): _123.QuerySellOrdersResponse; - toJSON(message: _123.QuerySellOrdersResponse): unknown; - fromPartial(object: Partial<_123.QuerySellOrdersResponse>): _123.QuerySellOrdersResponse; - fromAmino(object: _123.QuerySellOrdersResponseAmino): _123.QuerySellOrdersResponse; - toAmino(message: _123.QuerySellOrdersResponse): _123.QuerySellOrdersResponseAmino; - fromAminoMsg(object: _123.QuerySellOrdersResponseAminoMsg): _123.QuerySellOrdersResponse; - fromProtoMsg(message: _123.QuerySellOrdersResponseProtoMsg): _123.QuerySellOrdersResponse; - toProto(message: _123.QuerySellOrdersResponse): Uint8Array; - toProtoMsg(message: _123.QuerySellOrdersResponse): _123.QuerySellOrdersResponseProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrdersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrdersResponse; + fromJSON(object: any): _124.QuerySellOrdersResponse; + toJSON(message: _124.QuerySellOrdersResponse): unknown; + fromPartial(object: Partial<_124.QuerySellOrdersResponse>): _124.QuerySellOrdersResponse; + fromAmino(object: _124.QuerySellOrdersResponseAmino): _124.QuerySellOrdersResponse; + toAmino(message: _124.QuerySellOrdersResponse): _124.QuerySellOrdersResponseAmino; + fromAminoMsg(object: _124.QuerySellOrdersResponseAminoMsg): _124.QuerySellOrdersResponse; + fromProtoMsg(message: _124.QuerySellOrdersResponseProtoMsg): _124.QuerySellOrdersResponse; + toProto(message: _124.QuerySellOrdersResponse): Uint8Array; + toProtoMsg(message: _124.QuerySellOrdersResponse): _124.QuerySellOrdersResponseProtoMsg; }; QuerySellOrdersByBatchRequest: { - encode(message: _123.QuerySellOrdersByBatchRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrdersByBatchRequest; - fromJSON(object: any): _123.QuerySellOrdersByBatchRequest; - toJSON(message: _123.QuerySellOrdersByBatchRequest): unknown; - fromPartial(object: Partial<_123.QuerySellOrdersByBatchRequest>): _123.QuerySellOrdersByBatchRequest; - fromAmino(object: _123.QuerySellOrdersByBatchRequestAmino): _123.QuerySellOrdersByBatchRequest; - toAmino(message: _123.QuerySellOrdersByBatchRequest): _123.QuerySellOrdersByBatchRequestAmino; - fromAminoMsg(object: _123.QuerySellOrdersByBatchRequestAminoMsg): _123.QuerySellOrdersByBatchRequest; - fromProtoMsg(message: _123.QuerySellOrdersByBatchRequestProtoMsg): _123.QuerySellOrdersByBatchRequest; - toProto(message: _123.QuerySellOrdersByBatchRequest): Uint8Array; - toProtoMsg(message: _123.QuerySellOrdersByBatchRequest): _123.QuerySellOrdersByBatchRequestProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrdersByBatchRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrdersByBatchRequest; + fromJSON(object: any): _124.QuerySellOrdersByBatchRequest; + toJSON(message: _124.QuerySellOrdersByBatchRequest): unknown; + fromPartial(object: Partial<_124.QuerySellOrdersByBatchRequest>): _124.QuerySellOrdersByBatchRequest; + fromAmino(object: _124.QuerySellOrdersByBatchRequestAmino): _124.QuerySellOrdersByBatchRequest; + toAmino(message: _124.QuerySellOrdersByBatchRequest): _124.QuerySellOrdersByBatchRequestAmino; + fromAminoMsg(object: _124.QuerySellOrdersByBatchRequestAminoMsg): _124.QuerySellOrdersByBatchRequest; + fromProtoMsg(message: _124.QuerySellOrdersByBatchRequestProtoMsg): _124.QuerySellOrdersByBatchRequest; + toProto(message: _124.QuerySellOrdersByBatchRequest): Uint8Array; + toProtoMsg(message: _124.QuerySellOrdersByBatchRequest): _124.QuerySellOrdersByBatchRequestProtoMsg; }; QuerySellOrdersByBatchResponse: { - encode(message: _123.QuerySellOrdersByBatchResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrdersByBatchResponse; - fromJSON(object: any): _123.QuerySellOrdersByBatchResponse; - toJSON(message: _123.QuerySellOrdersByBatchResponse): unknown; - fromPartial(object: Partial<_123.QuerySellOrdersByBatchResponse>): _123.QuerySellOrdersByBatchResponse; - fromAmino(object: _123.QuerySellOrdersByBatchResponseAmino): _123.QuerySellOrdersByBatchResponse; - toAmino(message: _123.QuerySellOrdersByBatchResponse): _123.QuerySellOrdersByBatchResponseAmino; - fromAminoMsg(object: _123.QuerySellOrdersByBatchResponseAminoMsg): _123.QuerySellOrdersByBatchResponse; - fromProtoMsg(message: _123.QuerySellOrdersByBatchResponseProtoMsg): _123.QuerySellOrdersByBatchResponse; - toProto(message: _123.QuerySellOrdersByBatchResponse): Uint8Array; - toProtoMsg(message: _123.QuerySellOrdersByBatchResponse): _123.QuerySellOrdersByBatchResponseProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrdersByBatchResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrdersByBatchResponse; + fromJSON(object: any): _124.QuerySellOrdersByBatchResponse; + toJSON(message: _124.QuerySellOrdersByBatchResponse): unknown; + fromPartial(object: Partial<_124.QuerySellOrdersByBatchResponse>): _124.QuerySellOrdersByBatchResponse; + fromAmino(object: _124.QuerySellOrdersByBatchResponseAmino): _124.QuerySellOrdersByBatchResponse; + toAmino(message: _124.QuerySellOrdersByBatchResponse): _124.QuerySellOrdersByBatchResponseAmino; + fromAminoMsg(object: _124.QuerySellOrdersByBatchResponseAminoMsg): _124.QuerySellOrdersByBatchResponse; + fromProtoMsg(message: _124.QuerySellOrdersByBatchResponseProtoMsg): _124.QuerySellOrdersByBatchResponse; + toProto(message: _124.QuerySellOrdersByBatchResponse): Uint8Array; + toProtoMsg(message: _124.QuerySellOrdersByBatchResponse): _124.QuerySellOrdersByBatchResponseProtoMsg; }; QuerySellOrdersBySellerRequest: { - encode(message: _123.QuerySellOrdersBySellerRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrdersBySellerRequest; - fromJSON(object: any): _123.QuerySellOrdersBySellerRequest; - toJSON(message: _123.QuerySellOrdersBySellerRequest): unknown; - fromPartial(object: Partial<_123.QuerySellOrdersBySellerRequest>): _123.QuerySellOrdersBySellerRequest; - fromAmino(object: _123.QuerySellOrdersBySellerRequestAmino): _123.QuerySellOrdersBySellerRequest; - toAmino(message: _123.QuerySellOrdersBySellerRequest): _123.QuerySellOrdersBySellerRequestAmino; - fromAminoMsg(object: _123.QuerySellOrdersBySellerRequestAminoMsg): _123.QuerySellOrdersBySellerRequest; - fromProtoMsg(message: _123.QuerySellOrdersBySellerRequestProtoMsg): _123.QuerySellOrdersBySellerRequest; - toProto(message: _123.QuerySellOrdersBySellerRequest): Uint8Array; - toProtoMsg(message: _123.QuerySellOrdersBySellerRequest): _123.QuerySellOrdersBySellerRequestProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrdersBySellerRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrdersBySellerRequest; + fromJSON(object: any): _124.QuerySellOrdersBySellerRequest; + toJSON(message: _124.QuerySellOrdersBySellerRequest): unknown; + fromPartial(object: Partial<_124.QuerySellOrdersBySellerRequest>): _124.QuerySellOrdersBySellerRequest; + fromAmino(object: _124.QuerySellOrdersBySellerRequestAmino): _124.QuerySellOrdersBySellerRequest; + toAmino(message: _124.QuerySellOrdersBySellerRequest): _124.QuerySellOrdersBySellerRequestAmino; + fromAminoMsg(object: _124.QuerySellOrdersBySellerRequestAminoMsg): _124.QuerySellOrdersBySellerRequest; + fromProtoMsg(message: _124.QuerySellOrdersBySellerRequestProtoMsg): _124.QuerySellOrdersBySellerRequest; + toProto(message: _124.QuerySellOrdersBySellerRequest): Uint8Array; + toProtoMsg(message: _124.QuerySellOrdersBySellerRequest): _124.QuerySellOrdersBySellerRequestProtoMsg; }; QuerySellOrdersBySellerResponse: { - encode(message: _123.QuerySellOrdersBySellerResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QuerySellOrdersBySellerResponse; - fromJSON(object: any): _123.QuerySellOrdersBySellerResponse; - toJSON(message: _123.QuerySellOrdersBySellerResponse): unknown; - fromPartial(object: Partial<_123.QuerySellOrdersBySellerResponse>): _123.QuerySellOrdersBySellerResponse; - fromAmino(object: _123.QuerySellOrdersBySellerResponseAmino): _123.QuerySellOrdersBySellerResponse; - toAmino(message: _123.QuerySellOrdersBySellerResponse): _123.QuerySellOrdersBySellerResponseAmino; - fromAminoMsg(object: _123.QuerySellOrdersBySellerResponseAminoMsg): _123.QuerySellOrdersBySellerResponse; - fromProtoMsg(message: _123.QuerySellOrdersBySellerResponseProtoMsg): _123.QuerySellOrdersBySellerResponse; - toProto(message: _123.QuerySellOrdersBySellerResponse): Uint8Array; - toProtoMsg(message: _123.QuerySellOrdersBySellerResponse): _123.QuerySellOrdersBySellerResponseProtoMsg; + typeUrl: string; + encode(message: _124.QuerySellOrdersBySellerResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QuerySellOrdersBySellerResponse; + fromJSON(object: any): _124.QuerySellOrdersBySellerResponse; + toJSON(message: _124.QuerySellOrdersBySellerResponse): unknown; + fromPartial(object: Partial<_124.QuerySellOrdersBySellerResponse>): _124.QuerySellOrdersBySellerResponse; + fromAmino(object: _124.QuerySellOrdersBySellerResponseAmino): _124.QuerySellOrdersBySellerResponse; + toAmino(message: _124.QuerySellOrdersBySellerResponse): _124.QuerySellOrdersBySellerResponseAmino; + fromAminoMsg(object: _124.QuerySellOrdersBySellerResponseAminoMsg): _124.QuerySellOrdersBySellerResponse; + fromProtoMsg(message: _124.QuerySellOrdersBySellerResponseProtoMsg): _124.QuerySellOrdersBySellerResponse; + toProto(message: _124.QuerySellOrdersBySellerResponse): Uint8Array; + toProtoMsg(message: _124.QuerySellOrdersBySellerResponse): _124.QuerySellOrdersBySellerResponseProtoMsg; }; QueryAllowedDenomsRequest: { - encode(message: _123.QueryAllowedDenomsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QueryAllowedDenomsRequest; - fromJSON(object: any): _123.QueryAllowedDenomsRequest; - toJSON(message: _123.QueryAllowedDenomsRequest): unknown; - fromPartial(object: Partial<_123.QueryAllowedDenomsRequest>): _123.QueryAllowedDenomsRequest; - fromAmino(object: _123.QueryAllowedDenomsRequestAmino): _123.QueryAllowedDenomsRequest; - toAmino(message: _123.QueryAllowedDenomsRequest): _123.QueryAllowedDenomsRequestAmino; - fromAminoMsg(object: _123.QueryAllowedDenomsRequestAminoMsg): _123.QueryAllowedDenomsRequest; - fromProtoMsg(message: _123.QueryAllowedDenomsRequestProtoMsg): _123.QueryAllowedDenomsRequest; - toProto(message: _123.QueryAllowedDenomsRequest): Uint8Array; - toProtoMsg(message: _123.QueryAllowedDenomsRequest): _123.QueryAllowedDenomsRequestProtoMsg; + typeUrl: string; + encode(message: _124.QueryAllowedDenomsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QueryAllowedDenomsRequest; + fromJSON(object: any): _124.QueryAllowedDenomsRequest; + toJSON(message: _124.QueryAllowedDenomsRequest): unknown; + fromPartial(object: Partial<_124.QueryAllowedDenomsRequest>): _124.QueryAllowedDenomsRequest; + fromAmino(object: _124.QueryAllowedDenomsRequestAmino): _124.QueryAllowedDenomsRequest; + toAmino(message: _124.QueryAllowedDenomsRequest): _124.QueryAllowedDenomsRequestAmino; + fromAminoMsg(object: _124.QueryAllowedDenomsRequestAminoMsg): _124.QueryAllowedDenomsRequest; + fromProtoMsg(message: _124.QueryAllowedDenomsRequestProtoMsg): _124.QueryAllowedDenomsRequest; + toProto(message: _124.QueryAllowedDenomsRequest): Uint8Array; + toProtoMsg(message: _124.QueryAllowedDenomsRequest): _124.QueryAllowedDenomsRequestProtoMsg; }; QueryAllowedDenomsResponse: { - encode(message: _123.QueryAllowedDenomsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.QueryAllowedDenomsResponse; - fromJSON(object: any): _123.QueryAllowedDenomsResponse; - toJSON(message: _123.QueryAllowedDenomsResponse): unknown; - fromPartial(object: Partial<_123.QueryAllowedDenomsResponse>): _123.QueryAllowedDenomsResponse; - fromAmino(object: _123.QueryAllowedDenomsResponseAmino): _123.QueryAllowedDenomsResponse; - toAmino(message: _123.QueryAllowedDenomsResponse): _123.QueryAllowedDenomsResponseAmino; - fromAminoMsg(object: _123.QueryAllowedDenomsResponseAminoMsg): _123.QueryAllowedDenomsResponse; - fromProtoMsg(message: _123.QueryAllowedDenomsResponseProtoMsg): _123.QueryAllowedDenomsResponse; - toProto(message: _123.QueryAllowedDenomsResponse): Uint8Array; - toProtoMsg(message: _123.QueryAllowedDenomsResponse): _123.QueryAllowedDenomsResponseProtoMsg; + typeUrl: string; + encode(message: _124.QueryAllowedDenomsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.QueryAllowedDenomsResponse; + fromJSON(object: any): _124.QueryAllowedDenomsResponse; + toJSON(message: _124.QueryAllowedDenomsResponse): unknown; + fromPartial(object: Partial<_124.QueryAllowedDenomsResponse>): _124.QueryAllowedDenomsResponse; + fromAmino(object: _124.QueryAllowedDenomsResponseAmino): _124.QueryAllowedDenomsResponse; + toAmino(message: _124.QueryAllowedDenomsResponse): _124.QueryAllowedDenomsResponseAmino; + fromAminoMsg(object: _124.QueryAllowedDenomsResponseAminoMsg): _124.QueryAllowedDenomsResponse; + fromProtoMsg(message: _124.QueryAllowedDenomsResponseProtoMsg): _124.QueryAllowedDenomsResponse; + toProto(message: _124.QueryAllowedDenomsResponse): Uint8Array; + toProtoMsg(message: _124.QueryAllowedDenomsResponse): _124.QueryAllowedDenomsResponseProtoMsg; }; SellOrderInfo: { - encode(message: _123.SellOrderInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _123.SellOrderInfo; - fromJSON(object: any): _123.SellOrderInfo; - toJSON(message: _123.SellOrderInfo): unknown; - fromPartial(object: Partial<_123.SellOrderInfo>): _123.SellOrderInfo; - fromAmino(object: _123.SellOrderInfoAmino): _123.SellOrderInfo; - toAmino(message: _123.SellOrderInfo): _123.SellOrderInfoAmino; - fromAminoMsg(object: _123.SellOrderInfoAminoMsg): _123.SellOrderInfo; - fromProtoMsg(message: _123.SellOrderInfoProtoMsg): _123.SellOrderInfo; - toProto(message: _123.SellOrderInfo): Uint8Array; - toProtoMsg(message: _123.SellOrderInfo): _123.SellOrderInfoProtoMsg; + typeUrl: string; + encode(message: _124.SellOrderInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _124.SellOrderInfo; + fromJSON(object: any): _124.SellOrderInfo; + toJSON(message: _124.SellOrderInfo): unknown; + fromPartial(object: Partial<_124.SellOrderInfo>): _124.SellOrderInfo; + fromAmino(object: _124.SellOrderInfoAmino): _124.SellOrderInfo; + toAmino(message: _124.SellOrderInfo): _124.SellOrderInfoAmino; + fromAminoMsg(object: _124.SellOrderInfoAminoMsg): _124.SellOrderInfo; + fromProtoMsg(message: _124.SellOrderInfoProtoMsg): _124.SellOrderInfo; + toProto(message: _124.SellOrderInfo): Uint8Array; + toProtoMsg(message: _124.SellOrderInfo): _124.SellOrderInfoProtoMsg; }; EventSell: { - encode(message: _122.EventSell, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _122.EventSell; - fromJSON(object: any): _122.EventSell; - toJSON(message: _122.EventSell): unknown; - fromPartial(object: Partial<_122.EventSell>): _122.EventSell; - fromAmino(object: _122.EventSellAmino): _122.EventSell; - toAmino(message: _122.EventSell): _122.EventSellAmino; - fromAminoMsg(object: _122.EventSellAminoMsg): _122.EventSell; - fromProtoMsg(message: _122.EventSellProtoMsg): _122.EventSell; - toProto(message: _122.EventSell): Uint8Array; - toProtoMsg(message: _122.EventSell): _122.EventSellProtoMsg; + typeUrl: string; + encode(message: _123.EventSell, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _123.EventSell; + fromJSON(object: any): _123.EventSell; + toJSON(message: _123.EventSell): unknown; + fromPartial(object: Partial<_123.EventSell>): _123.EventSell; + fromAmino(object: _123.EventSellAmino): _123.EventSell; + toAmino(message: _123.EventSell): _123.EventSellAmino; + fromAminoMsg(object: _123.EventSellAminoMsg): _123.EventSell; + fromProtoMsg(message: _123.EventSellProtoMsg): _123.EventSell; + toProto(message: _123.EventSell): Uint8Array; + toProtoMsg(message: _123.EventSell): _123.EventSellProtoMsg; }; EventBuyDirect: { - encode(message: _122.EventBuyDirect, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _122.EventBuyDirect; - fromJSON(object: any): _122.EventBuyDirect; - toJSON(message: _122.EventBuyDirect): unknown; - fromPartial(object: Partial<_122.EventBuyDirect>): _122.EventBuyDirect; - fromAmino(object: _122.EventBuyDirectAmino): _122.EventBuyDirect; - toAmino(message: _122.EventBuyDirect): _122.EventBuyDirectAmino; - fromAminoMsg(object: _122.EventBuyDirectAminoMsg): _122.EventBuyDirect; - fromProtoMsg(message: _122.EventBuyDirectProtoMsg): _122.EventBuyDirect; - toProto(message: _122.EventBuyDirect): Uint8Array; - toProtoMsg(message: _122.EventBuyDirect): _122.EventBuyDirectProtoMsg; + typeUrl: string; + encode(message: _123.EventBuyDirect, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _123.EventBuyDirect; + fromJSON(object: any): _123.EventBuyDirect; + toJSON(message: _123.EventBuyDirect): unknown; + fromPartial(object: Partial<_123.EventBuyDirect>): _123.EventBuyDirect; + fromAmino(object: _123.EventBuyDirectAmino): _123.EventBuyDirect; + toAmino(message: _123.EventBuyDirect): _123.EventBuyDirectAmino; + fromAminoMsg(object: _123.EventBuyDirectAminoMsg): _123.EventBuyDirect; + fromProtoMsg(message: _123.EventBuyDirectProtoMsg): _123.EventBuyDirect; + toProto(message: _123.EventBuyDirect): Uint8Array; + toProtoMsg(message: _123.EventBuyDirect): _123.EventBuyDirectProtoMsg; }; EventUpdateSellOrder: { - encode(message: _122.EventUpdateSellOrder, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _122.EventUpdateSellOrder; - fromJSON(object: any): _122.EventUpdateSellOrder; - toJSON(message: _122.EventUpdateSellOrder): unknown; - fromPartial(object: Partial<_122.EventUpdateSellOrder>): _122.EventUpdateSellOrder; - fromAmino(object: _122.EventUpdateSellOrderAmino): _122.EventUpdateSellOrder; - toAmino(message: _122.EventUpdateSellOrder): _122.EventUpdateSellOrderAmino; - fromAminoMsg(object: _122.EventUpdateSellOrderAminoMsg): _122.EventUpdateSellOrder; - fromProtoMsg(message: _122.EventUpdateSellOrderProtoMsg): _122.EventUpdateSellOrder; - toProto(message: _122.EventUpdateSellOrder): Uint8Array; - toProtoMsg(message: _122.EventUpdateSellOrder): _122.EventUpdateSellOrderProtoMsg; + typeUrl: string; + encode(message: _123.EventUpdateSellOrder, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _123.EventUpdateSellOrder; + fromJSON(object: any): _123.EventUpdateSellOrder; + toJSON(message: _123.EventUpdateSellOrder): unknown; + fromPartial(object: Partial<_123.EventUpdateSellOrder>): _123.EventUpdateSellOrder; + fromAmino(object: _123.EventUpdateSellOrderAmino): _123.EventUpdateSellOrder; + toAmino(message: _123.EventUpdateSellOrder): _123.EventUpdateSellOrderAmino; + fromAminoMsg(object: _123.EventUpdateSellOrderAminoMsg): _123.EventUpdateSellOrder; + fromProtoMsg(message: _123.EventUpdateSellOrderProtoMsg): _123.EventUpdateSellOrder; + toProto(message: _123.EventUpdateSellOrder): Uint8Array; + toProtoMsg(message: _123.EventUpdateSellOrder): _123.EventUpdateSellOrderProtoMsg; }; EventCancelSellOrder: { - encode(message: _122.EventCancelSellOrder, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _122.EventCancelSellOrder; - fromJSON(object: any): _122.EventCancelSellOrder; - toJSON(message: _122.EventCancelSellOrder): unknown; - fromPartial(object: Partial<_122.EventCancelSellOrder>): _122.EventCancelSellOrder; - fromAmino(object: _122.EventCancelSellOrderAmino): _122.EventCancelSellOrder; - toAmino(message: _122.EventCancelSellOrder): _122.EventCancelSellOrderAmino; - fromAminoMsg(object: _122.EventCancelSellOrderAminoMsg): _122.EventCancelSellOrder; - fromProtoMsg(message: _122.EventCancelSellOrderProtoMsg): _122.EventCancelSellOrder; - toProto(message: _122.EventCancelSellOrder): Uint8Array; - toProtoMsg(message: _122.EventCancelSellOrder): _122.EventCancelSellOrderProtoMsg; + typeUrl: string; + encode(message: _123.EventCancelSellOrder, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _123.EventCancelSellOrder; + fromJSON(object: any): _123.EventCancelSellOrder; + toJSON(message: _123.EventCancelSellOrder): unknown; + fromPartial(object: Partial<_123.EventCancelSellOrder>): _123.EventCancelSellOrder; + fromAmino(object: _123.EventCancelSellOrderAmino): _123.EventCancelSellOrder; + toAmino(message: _123.EventCancelSellOrder): _123.EventCancelSellOrderAmino; + fromAminoMsg(object: _123.EventCancelSellOrderAminoMsg): _123.EventCancelSellOrder; + fromProtoMsg(message: _123.EventCancelSellOrderProtoMsg): _123.EventCancelSellOrder; + toProto(message: _123.EventCancelSellOrder): Uint8Array; + toProtoMsg(message: _123.EventCancelSellOrder): _123.EventCancelSellOrderProtoMsg; }; EventAllowDenom: { - encode(message: _122.EventAllowDenom, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _122.EventAllowDenom; - fromJSON(object: any): _122.EventAllowDenom; - toJSON(message: _122.EventAllowDenom): unknown; - fromPartial(object: Partial<_122.EventAllowDenom>): _122.EventAllowDenom; - fromAmino(object: _122.EventAllowDenomAmino): _122.EventAllowDenom; - toAmino(message: _122.EventAllowDenom): _122.EventAllowDenomAmino; - fromAminoMsg(object: _122.EventAllowDenomAminoMsg): _122.EventAllowDenom; - fromProtoMsg(message: _122.EventAllowDenomProtoMsg): _122.EventAllowDenom; - toProto(message: _122.EventAllowDenom): Uint8Array; - toProtoMsg(message: _122.EventAllowDenom): _122.EventAllowDenomProtoMsg; + typeUrl: string; + encode(message: _123.EventAllowDenom, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _123.EventAllowDenom; + fromJSON(object: any): _123.EventAllowDenom; + toJSON(message: _123.EventAllowDenom): unknown; + fromPartial(object: Partial<_123.EventAllowDenom>): _123.EventAllowDenom; + fromAmino(object: _123.EventAllowDenomAmino): _123.EventAllowDenom; + toAmino(message: _123.EventAllowDenom): _123.EventAllowDenomAmino; + fromAminoMsg(object: _123.EventAllowDenomAminoMsg): _123.EventAllowDenom; + fromProtoMsg(message: _123.EventAllowDenomProtoMsg): _123.EventAllowDenom; + toProto(message: _123.EventAllowDenom): Uint8Array; + toProtoMsg(message: _123.EventAllowDenom): _123.EventAllowDenomProtoMsg; }; EventRemoveAllowedDenom: { - encode(message: _122.EventRemoveAllowedDenom, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _122.EventRemoveAllowedDenom; - fromJSON(object: any): _122.EventRemoveAllowedDenom; - toJSON(message: _122.EventRemoveAllowedDenom): unknown; - fromPartial(object: Partial<_122.EventRemoveAllowedDenom>): _122.EventRemoveAllowedDenom; - fromAmino(object: _122.EventRemoveAllowedDenomAmino): _122.EventRemoveAllowedDenom; - toAmino(message: _122.EventRemoveAllowedDenom): _122.EventRemoveAllowedDenomAmino; - fromAminoMsg(object: _122.EventRemoveAllowedDenomAminoMsg): _122.EventRemoveAllowedDenom; - fromProtoMsg(message: _122.EventRemoveAllowedDenomProtoMsg): _122.EventRemoveAllowedDenom; - toProto(message: _122.EventRemoveAllowedDenom): Uint8Array; - toProtoMsg(message: _122.EventRemoveAllowedDenom): _122.EventRemoveAllowedDenomProtoMsg; + typeUrl: string; + encode(message: _123.EventRemoveAllowedDenom, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _123.EventRemoveAllowedDenom; + fromJSON(object: any): _123.EventRemoveAllowedDenom; + toJSON(message: _123.EventRemoveAllowedDenom): unknown; + fromPartial(object: Partial<_123.EventRemoveAllowedDenom>): _123.EventRemoveAllowedDenom; + fromAmino(object: _123.EventRemoveAllowedDenomAmino): _123.EventRemoveAllowedDenom; + toAmino(message: _123.EventRemoveAllowedDenom): _123.EventRemoveAllowedDenomAmino; + fromAminoMsg(object: _123.EventRemoveAllowedDenomAminoMsg): _123.EventRemoveAllowedDenom; + fromProtoMsg(message: _123.EventRemoveAllowedDenomProtoMsg): _123.EventRemoveAllowedDenom; + toProto(message: _123.EventRemoveAllowedDenom): Uint8Array; + toProtoMsg(message: _123.EventRemoveAllowedDenom): _123.EventRemoveAllowedDenomProtoMsg; }; }; } namespace orderbook { const v1alpha1: { BuyOrderSellOrderMatch: { - encode(message: _127.BuyOrderSellOrderMatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _127.BuyOrderSellOrderMatch; - fromJSON(object: any): _127.BuyOrderSellOrderMatch; - toJSON(message: _127.BuyOrderSellOrderMatch): unknown; - fromPartial(object: Partial<_127.BuyOrderSellOrderMatch>): _127.BuyOrderSellOrderMatch; - fromAmino(object: _127.BuyOrderSellOrderMatchAmino): _127.BuyOrderSellOrderMatch; - toAmino(message: _127.BuyOrderSellOrderMatch): _127.BuyOrderSellOrderMatchAmino; - fromAminoMsg(object: _127.BuyOrderSellOrderMatchAminoMsg): _127.BuyOrderSellOrderMatch; - fromProtoMsg(message: _127.BuyOrderSellOrderMatchProtoMsg): _127.BuyOrderSellOrderMatch; - toProto(message: _127.BuyOrderSellOrderMatch): Uint8Array; - toProtoMsg(message: _127.BuyOrderSellOrderMatch): _127.BuyOrderSellOrderMatchProtoMsg; + typeUrl: string; + encode(message: _128.BuyOrderSellOrderMatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _128.BuyOrderSellOrderMatch; + fromJSON(object: any): _128.BuyOrderSellOrderMatch; + toJSON(message: _128.BuyOrderSellOrderMatch): unknown; + fromPartial(object: Partial<_128.BuyOrderSellOrderMatch>): _128.BuyOrderSellOrderMatch; + fromAmino(object: _128.BuyOrderSellOrderMatchAmino): _128.BuyOrderSellOrderMatch; + toAmino(message: _128.BuyOrderSellOrderMatch): _128.BuyOrderSellOrderMatchAmino; + fromAminoMsg(object: _128.BuyOrderSellOrderMatchAminoMsg): _128.BuyOrderSellOrderMatch; + fromProtoMsg(message: _128.BuyOrderSellOrderMatchProtoMsg): _128.BuyOrderSellOrderMatch; + toProto(message: _128.BuyOrderSellOrderMatch): Uint8Array; + toProtoMsg(message: _128.BuyOrderSellOrderMatch): _128.BuyOrderSellOrderMatchProtoMsg; }; BuyOrderClassSelector: { - encode(message: _127.BuyOrderClassSelector, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _127.BuyOrderClassSelector; - fromJSON(object: any): _127.BuyOrderClassSelector; - toJSON(message: _127.BuyOrderClassSelector): unknown; - fromPartial(object: Partial<_127.BuyOrderClassSelector>): _127.BuyOrderClassSelector; - fromAmino(object: _127.BuyOrderClassSelectorAmino): _127.BuyOrderClassSelector; - toAmino(message: _127.BuyOrderClassSelector): _127.BuyOrderClassSelectorAmino; - fromAminoMsg(object: _127.BuyOrderClassSelectorAminoMsg): _127.BuyOrderClassSelector; - fromProtoMsg(message: _127.BuyOrderClassSelectorProtoMsg): _127.BuyOrderClassSelector; - toProto(message: _127.BuyOrderClassSelector): Uint8Array; - toProtoMsg(message: _127.BuyOrderClassSelector): _127.BuyOrderClassSelectorProtoMsg; + typeUrl: string; + encode(message: _128.BuyOrderClassSelector, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _128.BuyOrderClassSelector; + fromJSON(object: any): _128.BuyOrderClassSelector; + toJSON(message: _128.BuyOrderClassSelector): unknown; + fromPartial(object: Partial<_128.BuyOrderClassSelector>): _128.BuyOrderClassSelector; + fromAmino(object: _128.BuyOrderClassSelectorAmino): _128.BuyOrderClassSelector; + toAmino(message: _128.BuyOrderClassSelector): _128.BuyOrderClassSelectorAmino; + fromAminoMsg(object: _128.BuyOrderClassSelectorAminoMsg): _128.BuyOrderClassSelector; + fromProtoMsg(message: _128.BuyOrderClassSelectorProtoMsg): _128.BuyOrderClassSelector; + toProto(message: _128.BuyOrderClassSelector): Uint8Array; + toProtoMsg(message: _128.BuyOrderClassSelector): _128.BuyOrderClassSelectorProtoMsg; }; BuyOrderProjectSelector: { - encode(message: _127.BuyOrderProjectSelector, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _127.BuyOrderProjectSelector; - fromJSON(object: any): _127.BuyOrderProjectSelector; - toJSON(message: _127.BuyOrderProjectSelector): unknown; - fromPartial(object: Partial<_127.BuyOrderProjectSelector>): _127.BuyOrderProjectSelector; - fromAmino(object: _127.BuyOrderProjectSelectorAmino): _127.BuyOrderProjectSelector; - toAmino(message: _127.BuyOrderProjectSelector): _127.BuyOrderProjectSelectorAmino; - fromAminoMsg(object: _127.BuyOrderProjectSelectorAminoMsg): _127.BuyOrderProjectSelector; - fromProtoMsg(message: _127.BuyOrderProjectSelectorProtoMsg): _127.BuyOrderProjectSelector; - toProto(message: _127.BuyOrderProjectSelector): Uint8Array; - toProtoMsg(message: _127.BuyOrderProjectSelector): _127.BuyOrderProjectSelectorProtoMsg; + typeUrl: string; + encode(message: _128.BuyOrderProjectSelector, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _128.BuyOrderProjectSelector; + fromJSON(object: any): _128.BuyOrderProjectSelector; + toJSON(message: _128.BuyOrderProjectSelector): unknown; + fromPartial(object: Partial<_128.BuyOrderProjectSelector>): _128.BuyOrderProjectSelector; + fromAmino(object: _128.BuyOrderProjectSelectorAmino): _128.BuyOrderProjectSelector; + toAmino(message: _128.BuyOrderProjectSelector): _128.BuyOrderProjectSelectorAmino; + fromAminoMsg(object: _128.BuyOrderProjectSelectorAminoMsg): _128.BuyOrderProjectSelector; + fromProtoMsg(message: _128.BuyOrderProjectSelectorProtoMsg): _128.BuyOrderProjectSelector; + toProto(message: _128.BuyOrderProjectSelector): Uint8Array; + toProtoMsg(message: _128.BuyOrderProjectSelector): _128.BuyOrderProjectSelectorProtoMsg; }; BuyOrderBatchSelector: { - encode(message: _127.BuyOrderBatchSelector, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _127.BuyOrderBatchSelector; - fromJSON(object: any): _127.BuyOrderBatchSelector; - toJSON(message: _127.BuyOrderBatchSelector): unknown; - fromPartial(object: Partial<_127.BuyOrderBatchSelector>): _127.BuyOrderBatchSelector; - fromAmino(object: _127.BuyOrderBatchSelectorAmino): _127.BuyOrderBatchSelector; - toAmino(message: _127.BuyOrderBatchSelector): _127.BuyOrderBatchSelectorAmino; - fromAminoMsg(object: _127.BuyOrderBatchSelectorAminoMsg): _127.BuyOrderBatchSelector; - fromProtoMsg(message: _127.BuyOrderBatchSelectorProtoMsg): _127.BuyOrderBatchSelector; - toProto(message: _127.BuyOrderBatchSelector): Uint8Array; - toProtoMsg(message: _127.BuyOrderBatchSelector): _127.BuyOrderBatchSelectorProtoMsg; + typeUrl: string; + encode(message: _128.BuyOrderBatchSelector, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _128.BuyOrderBatchSelector; + fromJSON(object: any): _128.BuyOrderBatchSelector; + toJSON(message: _128.BuyOrderBatchSelector): unknown; + fromPartial(object: Partial<_128.BuyOrderBatchSelector>): _128.BuyOrderBatchSelector; + fromAmino(object: _128.BuyOrderBatchSelectorAmino): _128.BuyOrderBatchSelector; + toAmino(message: _128.BuyOrderBatchSelector): _128.BuyOrderBatchSelectorAmino; + fromAminoMsg(object: _128.BuyOrderBatchSelectorAminoMsg): _128.BuyOrderBatchSelector; + fromProtoMsg(message: _128.BuyOrderBatchSelectorProtoMsg): _128.BuyOrderBatchSelector; + toProto(message: _128.BuyOrderBatchSelector): Uint8Array; + toProtoMsg(message: _128.BuyOrderBatchSelector): _128.BuyOrderBatchSelectorProtoMsg; }; }; } const v1: { - MsgClientImpl: typeof _267.MsgClientImpl; - QueryClientImpl: typeof _261.QueryClientImpl; + MsgClientImpl: typeof _268.MsgClientImpl; + QueryClientImpl: typeof _262.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - classes(request?: _129.QueryClassesRequest | undefined): Promise<_129.QueryClassesResponse>; - classesByAdmin(request: _129.QueryClassesByAdminRequest): Promise<_129.QueryClassesByAdminResponse>; - class(request: _129.QueryClassRequest): Promise<_129.QueryClassResponse>; - classIssuers(request: _129.QueryClassIssuersRequest): Promise<_129.QueryClassIssuersResponse>; - projects(request?: _129.QueryProjectsRequest | undefined): Promise<_129.QueryProjectsResponse>; - projectsByClass(request: _129.QueryProjectsByClassRequest): Promise<_129.QueryProjectsByClassResponse>; - projectsByReferenceId(request: _129.QueryProjectsByReferenceIdRequest): Promise<_129.QueryProjectsByReferenceIdResponse>; - projectsByAdmin(request: _129.QueryProjectsByAdminRequest): Promise<_129.QueryProjectsByAdminResponse>; - project(request: _129.QueryProjectRequest): Promise<_129.QueryProjectResponse>; - batches(request?: _129.QueryBatchesRequest | undefined): Promise<_129.QueryBatchesResponse>; - batchesByIssuer(request: _129.QueryBatchesByIssuerRequest): Promise<_129.QueryBatchesByIssuerResponse>; - batchesByClass(request: _129.QueryBatchesByClassRequest): Promise<_129.QueryBatchesByClassResponse>; - batchesByProject(request: _129.QueryBatchesByProjectRequest): Promise<_129.QueryBatchesByProjectResponse>; - batch(request: _129.QueryBatchRequest): Promise<_129.QueryBatchResponse>; - balance(request: _129.QueryBalanceRequest): Promise<_129.QueryBalanceResponse>; - balances(request: _129.QueryBalancesRequest): Promise<_129.QueryBalancesResponse>; - balancesByBatch(request: _129.QueryBalancesByBatchRequest): Promise<_129.QueryBalancesByBatchResponse>; - allBalances(request?: _129.QueryAllBalancesRequest | undefined): Promise<_129.QueryAllBalancesResponse>; - supply(request: _129.QuerySupplyRequest): Promise<_129.QuerySupplyResponse>; - creditTypes(request?: _129.QueryCreditTypesRequest | undefined): Promise<_129.QueryCreditTypesResponse>; - params(request?: _129.QueryParamsRequest | undefined): Promise<_129.QueryParamsResponse>; - creditType(request: _129.QueryCreditTypeRequest): Promise<_129.QueryCreditTypeResponse>; - classCreatorAllowlist(request?: _129.QueryClassCreatorAllowlistRequest | undefined): Promise<_129.QueryClassCreatorAllowlistResponse>; - allowedClassCreators(request?: _129.QueryAllowedClassCreatorsRequest | undefined): Promise<_129.QueryAllowedClassCreatorsResponse>; - classFee(request?: _129.QueryClassFeeRequest | undefined): Promise<_129.QueryClassFeeResponse>; - allowedBridgeChains(request?: _129.QueryAllowedBridgeChainsRequest | undefined): Promise<_129.QueryAllowedBridgeChainsResponse>; - }; - LCDQueryClient: typeof _255.LCDQueryClient; + classes(request?: _130.QueryClassesRequest | undefined): Promise<_130.QueryClassesResponse>; + classesByAdmin(request: _130.QueryClassesByAdminRequest): Promise<_130.QueryClassesByAdminResponse>; + class(request: _130.QueryClassRequest): Promise<_130.QueryClassResponse>; + classIssuers(request: _130.QueryClassIssuersRequest): Promise<_130.QueryClassIssuersResponse>; + projects(request?: _130.QueryProjectsRequest | undefined): Promise<_130.QueryProjectsResponse>; + projectsByClass(request: _130.QueryProjectsByClassRequest): Promise<_130.QueryProjectsByClassResponse>; + projectsByReferenceId(request: _130.QueryProjectsByReferenceIdRequest): Promise<_130.QueryProjectsByReferenceIdResponse>; + projectsByAdmin(request: _130.QueryProjectsByAdminRequest): Promise<_130.QueryProjectsByAdminResponse>; + project(request: _130.QueryProjectRequest): Promise<_130.QueryProjectResponse>; + batches(request?: _130.QueryBatchesRequest | undefined): Promise<_130.QueryBatchesResponse>; + batchesByIssuer(request: _130.QueryBatchesByIssuerRequest): Promise<_130.QueryBatchesByIssuerResponse>; + batchesByClass(request: _130.QueryBatchesByClassRequest): Promise<_130.QueryBatchesByClassResponse>; + batchesByProject(request: _130.QueryBatchesByProjectRequest): Promise<_130.QueryBatchesByProjectResponse>; + batch(request: _130.QueryBatchRequest): Promise<_130.QueryBatchResponse>; + balance(request: _130.QueryBalanceRequest): Promise<_130.QueryBalanceResponse>; + balances(request: _130.QueryBalancesRequest): Promise<_130.QueryBalancesResponse>; + balancesByBatch(request: _130.QueryBalancesByBatchRequest): Promise<_130.QueryBalancesByBatchResponse>; + allBalances(request?: _130.QueryAllBalancesRequest | undefined): Promise<_130.QueryAllBalancesResponse>; + supply(request: _130.QuerySupplyRequest): Promise<_130.QuerySupplyResponse>; + creditTypes(request?: _130.QueryCreditTypesRequest | undefined): Promise<_130.QueryCreditTypesResponse>; + params(request?: _130.QueryParamsRequest | undefined): Promise<_130.QueryParamsResponse>; + creditType(request: _130.QueryCreditTypeRequest): Promise<_130.QueryCreditTypeResponse>; + classCreatorAllowlist(request?: _130.QueryClassCreatorAllowlistRequest | undefined): Promise<_130.QueryClassCreatorAllowlistResponse>; + allowedClassCreators(request?: _130.QueryAllowedClassCreatorsRequest | undefined): Promise<_130.QueryAllowedClassCreatorsResponse>; + classFee(request?: _130.QueryClassFeeRequest | undefined): Promise<_130.QueryClassFeeResponse>; + allowedBridgeChains(request?: _130.QueryAllowedBridgeChainsRequest | undefined): Promise<_130.QueryAllowedBridgeChainsResponse>; + }; + LCDQueryClient: typeof _256.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - createClass(value: _131.MsgCreateClass): { + createClass(value: _132.MsgCreateClass): { typeUrl: string; value: Uint8Array; }; - createProject(value: _131.MsgCreateProject): { + createProject(value: _132.MsgCreateProject): { typeUrl: string; value: Uint8Array; }; - createBatch(value: _131.MsgCreateBatch): { + createBatch(value: _132.MsgCreateBatch): { typeUrl: string; value: Uint8Array; }; - mintBatchCredits(value: _131.MsgMintBatchCredits): { + mintBatchCredits(value: _132.MsgMintBatchCredits): { typeUrl: string; value: Uint8Array; }; - sealBatch(value: _131.MsgSealBatch): { + sealBatch(value: _132.MsgSealBatch): { typeUrl: string; value: Uint8Array; }; - send(value: _131.MsgSend): { + send(value: _132.MsgSend): { typeUrl: string; value: Uint8Array; }; - retire(value: _131.MsgRetire): { + retire(value: _132.MsgRetire): { typeUrl: string; value: Uint8Array; }; - cancel(value: _131.MsgCancel): { + cancel(value: _132.MsgCancel): { typeUrl: string; value: Uint8Array; }; - updateClassAdmin(value: _131.MsgUpdateClassAdmin): { + updateClassAdmin(value: _132.MsgUpdateClassAdmin): { typeUrl: string; value: Uint8Array; }; - updateClassIssuers(value: _131.MsgUpdateClassIssuers): { + updateClassIssuers(value: _132.MsgUpdateClassIssuers): { typeUrl: string; value: Uint8Array; }; - updateClassMetadata(value: _131.MsgUpdateClassMetadata): { + updateClassMetadata(value: _132.MsgUpdateClassMetadata): { typeUrl: string; value: Uint8Array; }; - updateProjectAdmin(value: _131.MsgUpdateProjectAdmin): { + updateProjectAdmin(value: _132.MsgUpdateProjectAdmin): { typeUrl: string; value: Uint8Array; }; - updateProjectMetadata(value: _131.MsgUpdateProjectMetadata): { + updateProjectMetadata(value: _132.MsgUpdateProjectMetadata): { typeUrl: string; value: Uint8Array; }; - updateBatchMetadata(value: _131.MsgUpdateBatchMetadata): { + updateBatchMetadata(value: _132.MsgUpdateBatchMetadata): { typeUrl: string; value: Uint8Array; }; - bridge(value: _131.MsgBridge): { + bridge(value: _132.MsgBridge): { typeUrl: string; value: Uint8Array; }; - bridgeReceive(value: _131.MsgBridgeReceive): { + bridgeReceive(value: _132.MsgBridgeReceive): { typeUrl: string; value: Uint8Array; }; - addCreditType(value: _131.MsgAddCreditType): { + addCreditType(value: _132.MsgAddCreditType): { typeUrl: string; value: Uint8Array; }; - setClassCreatorAllowlist(value: _131.MsgSetClassCreatorAllowlist): { + setClassCreatorAllowlist(value: _132.MsgSetClassCreatorAllowlist): { typeUrl: string; value: Uint8Array; }; - addClassCreator(value: _131.MsgAddClassCreator): { + addClassCreator(value: _132.MsgAddClassCreator): { typeUrl: string; value: Uint8Array; }; - removeClassCreator(value: _131.MsgRemoveClassCreator): { + removeClassCreator(value: _132.MsgRemoveClassCreator): { typeUrl: string; value: Uint8Array; }; - updateClassFee(value: _131.MsgUpdateClassFee): { + updateClassFee(value: _132.MsgUpdateClassFee): { typeUrl: string; value: Uint8Array; }; - addAllowedBridgeChain(value: _131.MsgAddAllowedBridgeChain): { + addAllowedBridgeChain(value: _132.MsgAddAllowedBridgeChain): { typeUrl: string; value: Uint8Array; }; - removeAllowedBridgeChain(value: _131.MsgRemoveAllowedBridgeChain): { + removeAllowedBridgeChain(value: _132.MsgRemoveAllowedBridgeChain): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - createClass(value: _131.MsgCreateClass): { + createClass(value: _132.MsgCreateClass): { typeUrl: string; - value: _131.MsgCreateClass; + value: _132.MsgCreateClass; }; - createProject(value: _131.MsgCreateProject): { + createProject(value: _132.MsgCreateProject): { typeUrl: string; - value: _131.MsgCreateProject; + value: _132.MsgCreateProject; }; - createBatch(value: _131.MsgCreateBatch): { + createBatch(value: _132.MsgCreateBatch): { typeUrl: string; - value: _131.MsgCreateBatch; + value: _132.MsgCreateBatch; }; - mintBatchCredits(value: _131.MsgMintBatchCredits): { + mintBatchCredits(value: _132.MsgMintBatchCredits): { typeUrl: string; - value: _131.MsgMintBatchCredits; + value: _132.MsgMintBatchCredits; }; - sealBatch(value: _131.MsgSealBatch): { + sealBatch(value: _132.MsgSealBatch): { typeUrl: string; - value: _131.MsgSealBatch; + value: _132.MsgSealBatch; }; - send(value: _131.MsgSend): { + send(value: _132.MsgSend): { typeUrl: string; - value: _131.MsgSend; + value: _132.MsgSend; }; - retire(value: _131.MsgRetire): { + retire(value: _132.MsgRetire): { typeUrl: string; - value: _131.MsgRetire; + value: _132.MsgRetire; }; - cancel(value: _131.MsgCancel): { + cancel(value: _132.MsgCancel): { typeUrl: string; - value: _131.MsgCancel; + value: _132.MsgCancel; }; - updateClassAdmin(value: _131.MsgUpdateClassAdmin): { + updateClassAdmin(value: _132.MsgUpdateClassAdmin): { typeUrl: string; - value: _131.MsgUpdateClassAdmin; + value: _132.MsgUpdateClassAdmin; }; - updateClassIssuers(value: _131.MsgUpdateClassIssuers): { + updateClassIssuers(value: _132.MsgUpdateClassIssuers): { typeUrl: string; - value: _131.MsgUpdateClassIssuers; + value: _132.MsgUpdateClassIssuers; }; - updateClassMetadata(value: _131.MsgUpdateClassMetadata): { + updateClassMetadata(value: _132.MsgUpdateClassMetadata): { typeUrl: string; - value: _131.MsgUpdateClassMetadata; + value: _132.MsgUpdateClassMetadata; }; - updateProjectAdmin(value: _131.MsgUpdateProjectAdmin): { + updateProjectAdmin(value: _132.MsgUpdateProjectAdmin): { typeUrl: string; - value: _131.MsgUpdateProjectAdmin; + value: _132.MsgUpdateProjectAdmin; }; - updateProjectMetadata(value: _131.MsgUpdateProjectMetadata): { + updateProjectMetadata(value: _132.MsgUpdateProjectMetadata): { typeUrl: string; - value: _131.MsgUpdateProjectMetadata; + value: _132.MsgUpdateProjectMetadata; }; - updateBatchMetadata(value: _131.MsgUpdateBatchMetadata): { + updateBatchMetadata(value: _132.MsgUpdateBatchMetadata): { typeUrl: string; - value: _131.MsgUpdateBatchMetadata; + value: _132.MsgUpdateBatchMetadata; }; - bridge(value: _131.MsgBridge): { + bridge(value: _132.MsgBridge): { typeUrl: string; - value: _131.MsgBridge; + value: _132.MsgBridge; }; - bridgeReceive(value: _131.MsgBridgeReceive): { + bridgeReceive(value: _132.MsgBridgeReceive): { typeUrl: string; - value: _131.MsgBridgeReceive; + value: _132.MsgBridgeReceive; }; - addCreditType(value: _131.MsgAddCreditType): { + addCreditType(value: _132.MsgAddCreditType): { typeUrl: string; - value: _131.MsgAddCreditType; + value: _132.MsgAddCreditType; }; - setClassCreatorAllowlist(value: _131.MsgSetClassCreatorAllowlist): { + setClassCreatorAllowlist(value: _132.MsgSetClassCreatorAllowlist): { typeUrl: string; - value: _131.MsgSetClassCreatorAllowlist; + value: _132.MsgSetClassCreatorAllowlist; }; - addClassCreator(value: _131.MsgAddClassCreator): { + addClassCreator(value: _132.MsgAddClassCreator): { typeUrl: string; - value: _131.MsgAddClassCreator; + value: _132.MsgAddClassCreator; }; - removeClassCreator(value: _131.MsgRemoveClassCreator): { + removeClassCreator(value: _132.MsgRemoveClassCreator): { typeUrl: string; - value: _131.MsgRemoveClassCreator; + value: _132.MsgRemoveClassCreator; }; - updateClassFee(value: _131.MsgUpdateClassFee): { + updateClassFee(value: _132.MsgUpdateClassFee): { typeUrl: string; - value: _131.MsgUpdateClassFee; + value: _132.MsgUpdateClassFee; }; - addAllowedBridgeChain(value: _131.MsgAddAllowedBridgeChain): { + addAllowedBridgeChain(value: _132.MsgAddAllowedBridgeChain): { typeUrl: string; - value: _131.MsgAddAllowedBridgeChain; + value: _132.MsgAddAllowedBridgeChain; }; - removeAllowedBridgeChain(value: _131.MsgRemoveAllowedBridgeChain): { + removeAllowedBridgeChain(value: _132.MsgRemoveAllowedBridgeChain): { typeUrl: string; - value: _131.MsgRemoveAllowedBridgeChain; + value: _132.MsgRemoveAllowedBridgeChain; }; }; toJSON: { - createClass(value: _131.MsgCreateClass): { + createClass(value: _132.MsgCreateClass): { typeUrl: string; value: unknown; }; - createProject(value: _131.MsgCreateProject): { + createProject(value: _132.MsgCreateProject): { typeUrl: string; value: unknown; }; - createBatch(value: _131.MsgCreateBatch): { + createBatch(value: _132.MsgCreateBatch): { typeUrl: string; value: unknown; }; - mintBatchCredits(value: _131.MsgMintBatchCredits): { + mintBatchCredits(value: _132.MsgMintBatchCredits): { typeUrl: string; value: unknown; }; - sealBatch(value: _131.MsgSealBatch): { + sealBatch(value: _132.MsgSealBatch): { typeUrl: string; value: unknown; }; - send(value: _131.MsgSend): { + send(value: _132.MsgSend): { typeUrl: string; value: unknown; }; - retire(value: _131.MsgRetire): { + retire(value: _132.MsgRetire): { typeUrl: string; value: unknown; }; - cancel(value: _131.MsgCancel): { + cancel(value: _132.MsgCancel): { typeUrl: string; value: unknown; }; - updateClassAdmin(value: _131.MsgUpdateClassAdmin): { + updateClassAdmin(value: _132.MsgUpdateClassAdmin): { typeUrl: string; value: unknown; }; - updateClassIssuers(value: _131.MsgUpdateClassIssuers): { + updateClassIssuers(value: _132.MsgUpdateClassIssuers): { typeUrl: string; value: unknown; }; - updateClassMetadata(value: _131.MsgUpdateClassMetadata): { + updateClassMetadata(value: _132.MsgUpdateClassMetadata): { typeUrl: string; value: unknown; }; - updateProjectAdmin(value: _131.MsgUpdateProjectAdmin): { + updateProjectAdmin(value: _132.MsgUpdateProjectAdmin): { typeUrl: string; value: unknown; }; - updateProjectMetadata(value: _131.MsgUpdateProjectMetadata): { + updateProjectMetadata(value: _132.MsgUpdateProjectMetadata): { typeUrl: string; value: unknown; }; - updateBatchMetadata(value: _131.MsgUpdateBatchMetadata): { + updateBatchMetadata(value: _132.MsgUpdateBatchMetadata): { typeUrl: string; value: unknown; }; - bridge(value: _131.MsgBridge): { + bridge(value: _132.MsgBridge): { typeUrl: string; value: unknown; }; - bridgeReceive(value: _131.MsgBridgeReceive): { + bridgeReceive(value: _132.MsgBridgeReceive): { typeUrl: string; value: unknown; }; - addCreditType(value: _131.MsgAddCreditType): { + addCreditType(value: _132.MsgAddCreditType): { typeUrl: string; value: unknown; }; - setClassCreatorAllowlist(value: _131.MsgSetClassCreatorAllowlist): { + setClassCreatorAllowlist(value: _132.MsgSetClassCreatorAllowlist): { typeUrl: string; value: unknown; }; - addClassCreator(value: _131.MsgAddClassCreator): { + addClassCreator(value: _132.MsgAddClassCreator): { typeUrl: string; value: unknown; }; - removeClassCreator(value: _131.MsgRemoveClassCreator): { + removeClassCreator(value: _132.MsgRemoveClassCreator): { typeUrl: string; value: unknown; }; - updateClassFee(value: _131.MsgUpdateClassFee): { + updateClassFee(value: _132.MsgUpdateClassFee): { typeUrl: string; value: unknown; }; - addAllowedBridgeChain(value: _131.MsgAddAllowedBridgeChain): { + addAllowedBridgeChain(value: _132.MsgAddAllowedBridgeChain): { typeUrl: string; value: unknown; }; - removeAllowedBridgeChain(value: _131.MsgRemoveAllowedBridgeChain): { + removeAllowedBridgeChain(value: _132.MsgRemoveAllowedBridgeChain): { typeUrl: string; value: unknown; }; @@ -2475,2333 +2596,2478 @@ export declare namespace regen { fromJSON: { createClass(value: any): { typeUrl: string; - value: _131.MsgCreateClass; + value: _132.MsgCreateClass; }; createProject(value: any): { typeUrl: string; - value: _131.MsgCreateProject; + value: _132.MsgCreateProject; }; createBatch(value: any): { typeUrl: string; - value: _131.MsgCreateBatch; + value: _132.MsgCreateBatch; }; mintBatchCredits(value: any): { typeUrl: string; - value: _131.MsgMintBatchCredits; + value: _132.MsgMintBatchCredits; }; sealBatch(value: any): { typeUrl: string; - value: _131.MsgSealBatch; + value: _132.MsgSealBatch; }; send(value: any): { typeUrl: string; - value: _131.MsgSend; + value: _132.MsgSend; }; retire(value: any): { typeUrl: string; - value: _131.MsgRetire; + value: _132.MsgRetire; }; cancel(value: any): { typeUrl: string; - value: _131.MsgCancel; + value: _132.MsgCancel; }; updateClassAdmin(value: any): { typeUrl: string; - value: _131.MsgUpdateClassAdmin; + value: _132.MsgUpdateClassAdmin; }; updateClassIssuers(value: any): { typeUrl: string; - value: _131.MsgUpdateClassIssuers; + value: _132.MsgUpdateClassIssuers; }; updateClassMetadata(value: any): { typeUrl: string; - value: _131.MsgUpdateClassMetadata; + value: _132.MsgUpdateClassMetadata; }; updateProjectAdmin(value: any): { typeUrl: string; - value: _131.MsgUpdateProjectAdmin; + value: _132.MsgUpdateProjectAdmin; }; updateProjectMetadata(value: any): { typeUrl: string; - value: _131.MsgUpdateProjectMetadata; + value: _132.MsgUpdateProjectMetadata; }; updateBatchMetadata(value: any): { typeUrl: string; - value: _131.MsgUpdateBatchMetadata; + value: _132.MsgUpdateBatchMetadata; }; bridge(value: any): { typeUrl: string; - value: _131.MsgBridge; + value: _132.MsgBridge; }; bridgeReceive(value: any): { typeUrl: string; - value: _131.MsgBridgeReceive; + value: _132.MsgBridgeReceive; }; addCreditType(value: any): { typeUrl: string; - value: _131.MsgAddCreditType; + value: _132.MsgAddCreditType; }; setClassCreatorAllowlist(value: any): { typeUrl: string; - value: _131.MsgSetClassCreatorAllowlist; + value: _132.MsgSetClassCreatorAllowlist; }; addClassCreator(value: any): { typeUrl: string; - value: _131.MsgAddClassCreator; + value: _132.MsgAddClassCreator; }; removeClassCreator(value: any): { typeUrl: string; - value: _131.MsgRemoveClassCreator; + value: _132.MsgRemoveClassCreator; }; updateClassFee(value: any): { typeUrl: string; - value: _131.MsgUpdateClassFee; + value: _132.MsgUpdateClassFee; }; addAllowedBridgeChain(value: any): { typeUrl: string; - value: _131.MsgAddAllowedBridgeChain; + value: _132.MsgAddAllowedBridgeChain; }; removeAllowedBridgeChain(value: any): { typeUrl: string; - value: _131.MsgRemoveAllowedBridgeChain; + value: _132.MsgRemoveAllowedBridgeChain; }; }; fromPartial: { - createClass(value: _131.MsgCreateClass): { + createClass(value: _132.MsgCreateClass): { typeUrl: string; - value: _131.MsgCreateClass; + value: _132.MsgCreateClass; }; - createProject(value: _131.MsgCreateProject): { + createProject(value: _132.MsgCreateProject): { typeUrl: string; - value: _131.MsgCreateProject; + value: _132.MsgCreateProject; }; - createBatch(value: _131.MsgCreateBatch): { + createBatch(value: _132.MsgCreateBatch): { typeUrl: string; - value: _131.MsgCreateBatch; + value: _132.MsgCreateBatch; }; - mintBatchCredits(value: _131.MsgMintBatchCredits): { + mintBatchCredits(value: _132.MsgMintBatchCredits): { typeUrl: string; - value: _131.MsgMintBatchCredits; + value: _132.MsgMintBatchCredits; }; - sealBatch(value: _131.MsgSealBatch): { + sealBatch(value: _132.MsgSealBatch): { typeUrl: string; - value: _131.MsgSealBatch; + value: _132.MsgSealBatch; }; - send(value: _131.MsgSend): { + send(value: _132.MsgSend): { typeUrl: string; - value: _131.MsgSend; + value: _132.MsgSend; }; - retire(value: _131.MsgRetire): { + retire(value: _132.MsgRetire): { typeUrl: string; - value: _131.MsgRetire; + value: _132.MsgRetire; }; - cancel(value: _131.MsgCancel): { + cancel(value: _132.MsgCancel): { typeUrl: string; - value: _131.MsgCancel; + value: _132.MsgCancel; }; - updateClassAdmin(value: _131.MsgUpdateClassAdmin): { + updateClassAdmin(value: _132.MsgUpdateClassAdmin): { typeUrl: string; - value: _131.MsgUpdateClassAdmin; + value: _132.MsgUpdateClassAdmin; }; - updateClassIssuers(value: _131.MsgUpdateClassIssuers): { + updateClassIssuers(value: _132.MsgUpdateClassIssuers): { typeUrl: string; - value: _131.MsgUpdateClassIssuers; + value: _132.MsgUpdateClassIssuers; }; - updateClassMetadata(value: _131.MsgUpdateClassMetadata): { + updateClassMetadata(value: _132.MsgUpdateClassMetadata): { typeUrl: string; - value: _131.MsgUpdateClassMetadata; + value: _132.MsgUpdateClassMetadata; }; - updateProjectAdmin(value: _131.MsgUpdateProjectAdmin): { + updateProjectAdmin(value: _132.MsgUpdateProjectAdmin): { typeUrl: string; - value: _131.MsgUpdateProjectAdmin; + value: _132.MsgUpdateProjectAdmin; }; - updateProjectMetadata(value: _131.MsgUpdateProjectMetadata): { + updateProjectMetadata(value: _132.MsgUpdateProjectMetadata): { typeUrl: string; - value: _131.MsgUpdateProjectMetadata; + value: _132.MsgUpdateProjectMetadata; }; - updateBatchMetadata(value: _131.MsgUpdateBatchMetadata): { + updateBatchMetadata(value: _132.MsgUpdateBatchMetadata): { typeUrl: string; - value: _131.MsgUpdateBatchMetadata; + value: _132.MsgUpdateBatchMetadata; }; - bridge(value: _131.MsgBridge): { + bridge(value: _132.MsgBridge): { typeUrl: string; - value: _131.MsgBridge; + value: _132.MsgBridge; }; - bridgeReceive(value: _131.MsgBridgeReceive): { + bridgeReceive(value: _132.MsgBridgeReceive): { typeUrl: string; - value: _131.MsgBridgeReceive; + value: _132.MsgBridgeReceive; }; - addCreditType(value: _131.MsgAddCreditType): { + addCreditType(value: _132.MsgAddCreditType): { typeUrl: string; - value: _131.MsgAddCreditType; + value: _132.MsgAddCreditType; }; - setClassCreatorAllowlist(value: _131.MsgSetClassCreatorAllowlist): { + setClassCreatorAllowlist(value: _132.MsgSetClassCreatorAllowlist): { typeUrl: string; - value: _131.MsgSetClassCreatorAllowlist; + value: _132.MsgSetClassCreatorAllowlist; }; - addClassCreator(value: _131.MsgAddClassCreator): { + addClassCreator(value: _132.MsgAddClassCreator): { typeUrl: string; - value: _131.MsgAddClassCreator; + value: _132.MsgAddClassCreator; }; - removeClassCreator(value: _131.MsgRemoveClassCreator): { + removeClassCreator(value: _132.MsgRemoveClassCreator): { typeUrl: string; - value: _131.MsgRemoveClassCreator; + value: _132.MsgRemoveClassCreator; }; - updateClassFee(value: _131.MsgUpdateClassFee): { + updateClassFee(value: _132.MsgUpdateClassFee): { typeUrl: string; - value: _131.MsgUpdateClassFee; + value: _132.MsgUpdateClassFee; }; - addAllowedBridgeChain(value: _131.MsgAddAllowedBridgeChain): { + addAllowedBridgeChain(value: _132.MsgAddAllowedBridgeChain): { typeUrl: string; - value: _131.MsgAddAllowedBridgeChain; + value: _132.MsgAddAllowedBridgeChain; }; - removeAllowedBridgeChain(value: _131.MsgRemoveAllowedBridgeChain): { + removeAllowedBridgeChain(value: _132.MsgRemoveAllowedBridgeChain): { typeUrl: string; - value: _131.MsgRemoveAllowedBridgeChain; + value: _132.MsgRemoveAllowedBridgeChain; }; }; }; AminoConverter: { "/regen.ecocredit.v1.MsgCreateClass": { aminoType: string; - toAmino: (message: _131.MsgCreateClass) => _131.MsgCreateClassAmino; - fromAmino: (object: _131.MsgCreateClassAmino) => _131.MsgCreateClass; + toAmino: (message: _132.MsgCreateClass) => _132.MsgCreateClassAmino; + fromAmino: (object: _132.MsgCreateClassAmino) => _132.MsgCreateClass; }; "/regen.ecocredit.v1.MsgCreateProject": { aminoType: string; - toAmino: (message: _131.MsgCreateProject) => _131.MsgCreateProjectAmino; - fromAmino: (object: _131.MsgCreateProjectAmino) => _131.MsgCreateProject; + toAmino: (message: _132.MsgCreateProject) => _132.MsgCreateProjectAmino; + fromAmino: (object: _132.MsgCreateProjectAmino) => _132.MsgCreateProject; }; "/regen.ecocredit.v1.MsgCreateBatch": { aminoType: string; - toAmino: (message: _131.MsgCreateBatch) => _131.MsgCreateBatchAmino; - fromAmino: (object: _131.MsgCreateBatchAmino) => _131.MsgCreateBatch; + toAmino: (message: _132.MsgCreateBatch) => _132.MsgCreateBatchAmino; + fromAmino: (object: _132.MsgCreateBatchAmino) => _132.MsgCreateBatch; }; "/regen.ecocredit.v1.MsgMintBatchCredits": { aminoType: string; - toAmino: (message: _131.MsgMintBatchCredits) => _131.MsgMintBatchCreditsAmino; - fromAmino: (object: _131.MsgMintBatchCreditsAmino) => _131.MsgMintBatchCredits; + toAmino: (message: _132.MsgMintBatchCredits) => _132.MsgMintBatchCreditsAmino; + fromAmino: (object: _132.MsgMintBatchCreditsAmino) => _132.MsgMintBatchCredits; }; "/regen.ecocredit.v1.MsgSealBatch": { aminoType: string; - toAmino: (message: _131.MsgSealBatch) => _131.MsgSealBatchAmino; - fromAmino: (object: _131.MsgSealBatchAmino) => _131.MsgSealBatch; + toAmino: (message: _132.MsgSealBatch) => _132.MsgSealBatchAmino; + fromAmino: (object: _132.MsgSealBatchAmino) => _132.MsgSealBatch; }; "/regen.ecocredit.v1.MsgSend": { aminoType: string; - toAmino: (message: _131.MsgSend) => _131.MsgSendAmino; - fromAmino: (object: _131.MsgSendAmino) => _131.MsgSend; + toAmino: (message: _132.MsgSend) => _132.MsgSendAmino; + fromAmino: (object: _132.MsgSendAmino) => _132.MsgSend; }; "/regen.ecocredit.v1.MsgRetire": { aminoType: string; - toAmino: (message: _131.MsgRetire) => _131.MsgRetireAmino; - fromAmino: (object: _131.MsgRetireAmino) => _131.MsgRetire; + toAmino: (message: _132.MsgRetire) => _132.MsgRetireAmino; + fromAmino: (object: _132.MsgRetireAmino) => _132.MsgRetire; }; "/regen.ecocredit.v1.MsgCancel": { aminoType: string; - toAmino: (message: _131.MsgCancel) => _131.MsgCancelAmino; - fromAmino: (object: _131.MsgCancelAmino) => _131.MsgCancel; + toAmino: (message: _132.MsgCancel) => _132.MsgCancelAmino; + fromAmino: (object: _132.MsgCancelAmino) => _132.MsgCancel; }; "/regen.ecocredit.v1.MsgUpdateClassAdmin": { aminoType: string; - toAmino: (message: _131.MsgUpdateClassAdmin) => _131.MsgUpdateClassAdminAmino; - fromAmino: (object: _131.MsgUpdateClassAdminAmino) => _131.MsgUpdateClassAdmin; + toAmino: (message: _132.MsgUpdateClassAdmin) => _132.MsgUpdateClassAdminAmino; + fromAmino: (object: _132.MsgUpdateClassAdminAmino) => _132.MsgUpdateClassAdmin; }; "/regen.ecocredit.v1.MsgUpdateClassIssuers": { aminoType: string; - toAmino: (message: _131.MsgUpdateClassIssuers) => _131.MsgUpdateClassIssuersAmino; - fromAmino: (object: _131.MsgUpdateClassIssuersAmino) => _131.MsgUpdateClassIssuers; + toAmino: (message: _132.MsgUpdateClassIssuers) => _132.MsgUpdateClassIssuersAmino; + fromAmino: (object: _132.MsgUpdateClassIssuersAmino) => _132.MsgUpdateClassIssuers; }; "/regen.ecocredit.v1.MsgUpdateClassMetadata": { aminoType: string; - toAmino: (message: _131.MsgUpdateClassMetadata) => _131.MsgUpdateClassMetadataAmino; - fromAmino: (object: _131.MsgUpdateClassMetadataAmino) => _131.MsgUpdateClassMetadata; + toAmino: (message: _132.MsgUpdateClassMetadata) => _132.MsgUpdateClassMetadataAmino; + fromAmino: (object: _132.MsgUpdateClassMetadataAmino) => _132.MsgUpdateClassMetadata; }; "/regen.ecocredit.v1.MsgUpdateProjectAdmin": { aminoType: string; - toAmino: (message: _131.MsgUpdateProjectAdmin) => _131.MsgUpdateProjectAdminAmino; - fromAmino: (object: _131.MsgUpdateProjectAdminAmino) => _131.MsgUpdateProjectAdmin; + toAmino: (message: _132.MsgUpdateProjectAdmin) => _132.MsgUpdateProjectAdminAmino; + fromAmino: (object: _132.MsgUpdateProjectAdminAmino) => _132.MsgUpdateProjectAdmin; }; "/regen.ecocredit.v1.MsgUpdateProjectMetadata": { aminoType: string; - toAmino: (message: _131.MsgUpdateProjectMetadata) => _131.MsgUpdateProjectMetadataAmino; - fromAmino: (object: _131.MsgUpdateProjectMetadataAmino) => _131.MsgUpdateProjectMetadata; + toAmino: (message: _132.MsgUpdateProjectMetadata) => _132.MsgUpdateProjectMetadataAmino; + fromAmino: (object: _132.MsgUpdateProjectMetadataAmino) => _132.MsgUpdateProjectMetadata; }; "/regen.ecocredit.v1.MsgUpdateBatchMetadata": { aminoType: string; - toAmino: (message: _131.MsgUpdateBatchMetadata) => _131.MsgUpdateBatchMetadataAmino; - fromAmino: (object: _131.MsgUpdateBatchMetadataAmino) => _131.MsgUpdateBatchMetadata; + toAmino: (message: _132.MsgUpdateBatchMetadata) => _132.MsgUpdateBatchMetadataAmino; + fromAmino: (object: _132.MsgUpdateBatchMetadataAmino) => _132.MsgUpdateBatchMetadata; }; "/regen.ecocredit.v1.MsgBridge": { aminoType: string; - toAmino: (message: _131.MsgBridge) => _131.MsgBridgeAmino; - fromAmino: (object: _131.MsgBridgeAmino) => _131.MsgBridge; + toAmino: (message: _132.MsgBridge) => _132.MsgBridgeAmino; + fromAmino: (object: _132.MsgBridgeAmino) => _132.MsgBridge; }; "/regen.ecocredit.v1.MsgBridgeReceive": { aminoType: string; - toAmino: (message: _131.MsgBridgeReceive) => _131.MsgBridgeReceiveAmino; - fromAmino: (object: _131.MsgBridgeReceiveAmino) => _131.MsgBridgeReceive; + toAmino: (message: _132.MsgBridgeReceive) => _132.MsgBridgeReceiveAmino; + fromAmino: (object: _132.MsgBridgeReceiveAmino) => _132.MsgBridgeReceive; }; "/regen.ecocredit.v1.MsgAddCreditType": { aminoType: string; - toAmino: (message: _131.MsgAddCreditType) => _131.MsgAddCreditTypeAmino; - fromAmino: (object: _131.MsgAddCreditTypeAmino) => _131.MsgAddCreditType; + toAmino: (message: _132.MsgAddCreditType) => _132.MsgAddCreditTypeAmino; + fromAmino: (object: _132.MsgAddCreditTypeAmino) => _132.MsgAddCreditType; }; "/regen.ecocredit.v1.MsgSetClassCreatorAllowlist": { aminoType: string; - toAmino: (message: _131.MsgSetClassCreatorAllowlist) => _131.MsgSetClassCreatorAllowlistAmino; - fromAmino: (object: _131.MsgSetClassCreatorAllowlistAmino) => _131.MsgSetClassCreatorAllowlist; + toAmino: (message: _132.MsgSetClassCreatorAllowlist) => _132.MsgSetClassCreatorAllowlistAmino; + fromAmino: (object: _132.MsgSetClassCreatorAllowlistAmino) => _132.MsgSetClassCreatorAllowlist; }; "/regen.ecocredit.v1.MsgAddClassCreator": { aminoType: string; - toAmino: (message: _131.MsgAddClassCreator) => _131.MsgAddClassCreatorAmino; - fromAmino: (object: _131.MsgAddClassCreatorAmino) => _131.MsgAddClassCreator; + toAmino: (message: _132.MsgAddClassCreator) => _132.MsgAddClassCreatorAmino; + fromAmino: (object: _132.MsgAddClassCreatorAmino) => _132.MsgAddClassCreator; }; "/regen.ecocredit.v1.MsgRemoveClassCreator": { aminoType: string; - toAmino: (message: _131.MsgRemoveClassCreator) => _131.MsgRemoveClassCreatorAmino; - fromAmino: (object: _131.MsgRemoveClassCreatorAmino) => _131.MsgRemoveClassCreator; + toAmino: (message: _132.MsgRemoveClassCreator) => _132.MsgRemoveClassCreatorAmino; + fromAmino: (object: _132.MsgRemoveClassCreatorAmino) => _132.MsgRemoveClassCreator; }; "/regen.ecocredit.v1.MsgUpdateClassFee": { aminoType: string; - toAmino: (message: _131.MsgUpdateClassFee) => _131.MsgUpdateClassFeeAmino; - fromAmino: (object: _131.MsgUpdateClassFeeAmino) => _131.MsgUpdateClassFee; + toAmino: (message: _132.MsgUpdateClassFee) => _132.MsgUpdateClassFeeAmino; + fromAmino: (object: _132.MsgUpdateClassFeeAmino) => _132.MsgUpdateClassFee; }; "/regen.ecocredit.v1.MsgAddAllowedBridgeChain": { aminoType: string; - toAmino: (message: _131.MsgAddAllowedBridgeChain) => _131.MsgAddAllowedBridgeChainAmino; - fromAmino: (object: _131.MsgAddAllowedBridgeChainAmino) => _131.MsgAddAllowedBridgeChain; + toAmino: (message: _132.MsgAddAllowedBridgeChain) => _132.MsgAddAllowedBridgeChainAmino; + fromAmino: (object: _132.MsgAddAllowedBridgeChainAmino) => _132.MsgAddAllowedBridgeChain; }; "/regen.ecocredit.v1.MsgRemoveAllowedBridgeChain": { aminoType: string; - toAmino: (message: _131.MsgRemoveAllowedBridgeChain) => _131.MsgRemoveAllowedBridgeChainAmino; - fromAmino: (object: _131.MsgRemoveAllowedBridgeChainAmino) => _131.MsgRemoveAllowedBridgeChain; + toAmino: (message: _132.MsgRemoveAllowedBridgeChain) => _132.MsgRemoveAllowedBridgeChainAmino; + fromAmino: (object: _132.MsgRemoveAllowedBridgeChainAmino) => _132.MsgRemoveAllowedBridgeChain; }; }; Params: { - encode(message: _132.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _132.Params; - fromJSON(object: any): _132.Params; - toJSON(message: _132.Params): unknown; - fromPartial(object: Partial<_132.Params>): _132.Params; - fromAmino(object: _132.ParamsAmino): _132.Params; - toAmino(message: _132.Params): _132.ParamsAmino; - fromAminoMsg(object: _132.ParamsAminoMsg): _132.Params; - fromProtoMsg(message: _132.ParamsProtoMsg): _132.Params; - toProto(message: _132.Params): Uint8Array; - toProtoMsg(message: _132.Params): _132.ParamsProtoMsg; + typeUrl: string; + encode(message: _133.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _133.Params; + fromJSON(object: any): _133.Params; + toJSON(message: _133.Params): unknown; + fromPartial(object: Partial<_133.Params>): _133.Params; + fromAmino(object: _133.ParamsAmino): _133.Params; + toAmino(message: _133.Params): _133.ParamsAmino; + fromAminoMsg(object: _133.ParamsAminoMsg): _133.Params; + fromProtoMsg(message: _133.ParamsProtoMsg): _133.Params; + toProto(message: _133.Params): Uint8Array; + toProtoMsg(message: _133.Params): _133.ParamsProtoMsg; }; Credits: { - encode(message: _132.Credits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _132.Credits; - fromJSON(object: any): _132.Credits; - toJSON(message: _132.Credits): unknown; - fromPartial(object: Partial<_132.Credits>): _132.Credits; - fromAmino(object: _132.CreditsAmino): _132.Credits; - toAmino(message: _132.Credits): _132.CreditsAmino; - fromAminoMsg(object: _132.CreditsAminoMsg): _132.Credits; - fromProtoMsg(message: _132.CreditsProtoMsg): _132.Credits; - toProto(message: _132.Credits): Uint8Array; - toProtoMsg(message: _132.Credits): _132.CreditsProtoMsg; + typeUrl: string; + encode(message: _133.Credits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _133.Credits; + fromJSON(object: any): _133.Credits; + toJSON(message: _133.Credits): unknown; + fromPartial(object: Partial<_133.Credits>): _133.Credits; + fromAmino(object: _133.CreditsAmino): _133.Credits; + toAmino(message: _133.Credits): _133.CreditsAmino; + fromAminoMsg(object: _133.CreditsAminoMsg): _133.Credits; + fromProtoMsg(message: _133.CreditsProtoMsg): _133.Credits; + toProto(message: _133.Credits): Uint8Array; + toProtoMsg(message: _133.Credits): _133.CreditsProtoMsg; }; BatchIssuance: { - encode(message: _132.BatchIssuance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _132.BatchIssuance; - fromJSON(object: any): _132.BatchIssuance; - toJSON(message: _132.BatchIssuance): unknown; - fromPartial(object: Partial<_132.BatchIssuance>): _132.BatchIssuance; - fromAmino(object: _132.BatchIssuanceAmino): _132.BatchIssuance; - toAmino(message: _132.BatchIssuance): _132.BatchIssuanceAmino; - fromAminoMsg(object: _132.BatchIssuanceAminoMsg): _132.BatchIssuance; - fromProtoMsg(message: _132.BatchIssuanceProtoMsg): _132.BatchIssuance; - toProto(message: _132.BatchIssuance): Uint8Array; - toProtoMsg(message: _132.BatchIssuance): _132.BatchIssuanceProtoMsg; + typeUrl: string; + encode(message: _133.BatchIssuance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _133.BatchIssuance; + fromJSON(object: any): _133.BatchIssuance; + toJSON(message: _133.BatchIssuance): unknown; + fromPartial(object: Partial<_133.BatchIssuance>): _133.BatchIssuance; + fromAmino(object: _133.BatchIssuanceAmino): _133.BatchIssuance; + toAmino(message: _133.BatchIssuance): _133.BatchIssuanceAmino; + fromAminoMsg(object: _133.BatchIssuanceAminoMsg): _133.BatchIssuance; + fromProtoMsg(message: _133.BatchIssuanceProtoMsg): _133.BatchIssuance; + toProto(message: _133.BatchIssuance): Uint8Array; + toProtoMsg(message: _133.BatchIssuance): _133.BatchIssuanceProtoMsg; }; OriginTx: { - encode(message: _132.OriginTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _132.OriginTx; - fromJSON(object: any): _132.OriginTx; - toJSON(message: _132.OriginTx): unknown; - fromPartial(object: Partial<_132.OriginTx>): _132.OriginTx; - fromAmino(object: _132.OriginTxAmino): _132.OriginTx; - toAmino(message: _132.OriginTx): _132.OriginTxAmino; - fromAminoMsg(object: _132.OriginTxAminoMsg): _132.OriginTx; - fromProtoMsg(message: _132.OriginTxProtoMsg): _132.OriginTx; - toProto(message: _132.OriginTx): Uint8Array; - toProtoMsg(message: _132.OriginTx): _132.OriginTxProtoMsg; + typeUrl: string; + encode(message: _133.OriginTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _133.OriginTx; + fromJSON(object: any): _133.OriginTx; + toJSON(message: _133.OriginTx): unknown; + fromPartial(object: Partial<_133.OriginTx>): _133.OriginTx; + fromAmino(object: _133.OriginTxAmino): _133.OriginTx; + toAmino(message: _133.OriginTx): _133.OriginTxAmino; + fromAminoMsg(object: _133.OriginTxAminoMsg): _133.OriginTx; + fromProtoMsg(message: _133.OriginTxProtoMsg): _133.OriginTx; + toProto(message: _133.OriginTx): Uint8Array; + toProtoMsg(message: _133.OriginTx): _133.OriginTxProtoMsg; }; CreditTypeProposal: { - encode(message: _132.CreditTypeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _132.CreditTypeProposal; - fromJSON(object: any): _132.CreditTypeProposal; - toJSON(message: _132.CreditTypeProposal): unknown; - fromPartial(object: Partial<_132.CreditTypeProposal>): _132.CreditTypeProposal; - fromAmino(object: _132.CreditTypeProposalAmino): _132.CreditTypeProposal; - toAmino(message: _132.CreditTypeProposal): _132.CreditTypeProposalAmino; - fromAminoMsg(object: _132.CreditTypeProposalAminoMsg): _132.CreditTypeProposal; - fromProtoMsg(message: _132.CreditTypeProposalProtoMsg): _132.CreditTypeProposal; - toProto(message: _132.CreditTypeProposal): Uint8Array; - toProtoMsg(message: _132.CreditTypeProposal): _132.CreditTypeProposalProtoMsg; + typeUrl: string; + encode(message: _133.CreditTypeProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _133.CreditTypeProposal; + fromJSON(object: any): _133.CreditTypeProposal; + toJSON(message: _133.CreditTypeProposal): unknown; + fromPartial(object: Partial<_133.CreditTypeProposal>): _133.CreditTypeProposal; + fromAmino(object: _133.CreditTypeProposalAmino): _133.CreditTypeProposal; + toAmino(message: _133.CreditTypeProposal): _133.CreditTypeProposalAmino; + fromAminoMsg(object: _133.CreditTypeProposalAminoMsg): _133.CreditTypeProposal; + fromProtoMsg(message: _133.CreditTypeProposalProtoMsg): _133.CreditTypeProposal; + toProto(message: _133.CreditTypeProposal): Uint8Array; + toProtoMsg(message: _133.CreditTypeProposal): _133.CreditTypeProposalProtoMsg; }; AllowedDenom: { - encode(message: _132.AllowedDenom, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _132.AllowedDenom; - fromJSON(object: any): _132.AllowedDenom; - toJSON(message: _132.AllowedDenom): unknown; - fromPartial(object: Partial<_132.AllowedDenom>): _132.AllowedDenom; - fromAmino(object: _132.AllowedDenomAmino): _132.AllowedDenom; - toAmino(message: _132.AllowedDenom): _132.AllowedDenomAmino; - fromAminoMsg(object: _132.AllowedDenomAminoMsg): _132.AllowedDenom; - fromProtoMsg(message: _132.AllowedDenomProtoMsg): _132.AllowedDenom; - toProto(message: _132.AllowedDenom): Uint8Array; - toProtoMsg(message: _132.AllowedDenom): _132.AllowedDenomProtoMsg; + typeUrl: string; + encode(message: _133.AllowedDenom, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _133.AllowedDenom; + fromJSON(object: any): _133.AllowedDenom; + toJSON(message: _133.AllowedDenom): unknown; + fromPartial(object: Partial<_133.AllowedDenom>): _133.AllowedDenom; + fromAmino(object: _133.AllowedDenomAmino): _133.AllowedDenom; + toAmino(message: _133.AllowedDenom): _133.AllowedDenomAmino; + fromAminoMsg(object: _133.AllowedDenomAminoMsg): _133.AllowedDenom; + fromProtoMsg(message: _133.AllowedDenomProtoMsg): _133.AllowedDenom; + toProto(message: _133.AllowedDenom): Uint8Array; + toProtoMsg(message: _133.AllowedDenom): _133.AllowedDenomProtoMsg; }; MsgAddCreditType: { - encode(message: _131.MsgAddCreditType, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgAddCreditType; - fromJSON(object: any): _131.MsgAddCreditType; - toJSON(message: _131.MsgAddCreditType): unknown; - fromPartial(object: Partial<_131.MsgAddCreditType>): _131.MsgAddCreditType; - fromAmino(object: _131.MsgAddCreditTypeAmino): _131.MsgAddCreditType; - toAmino(message: _131.MsgAddCreditType): _131.MsgAddCreditTypeAmino; - fromAminoMsg(object: _131.MsgAddCreditTypeAminoMsg): _131.MsgAddCreditType; - toAminoMsg(message: _131.MsgAddCreditType): _131.MsgAddCreditTypeAminoMsg; - fromProtoMsg(message: _131.MsgAddCreditTypeProtoMsg): _131.MsgAddCreditType; - toProto(message: _131.MsgAddCreditType): Uint8Array; - toProtoMsg(message: _131.MsgAddCreditType): _131.MsgAddCreditTypeProtoMsg; + typeUrl: string; + encode(message: _132.MsgAddCreditType, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgAddCreditType; + fromJSON(object: any): _132.MsgAddCreditType; + toJSON(message: _132.MsgAddCreditType): unknown; + fromPartial(object: Partial<_132.MsgAddCreditType>): _132.MsgAddCreditType; + fromAmino(object: _132.MsgAddCreditTypeAmino): _132.MsgAddCreditType; + toAmino(message: _132.MsgAddCreditType): _132.MsgAddCreditTypeAmino; + fromAminoMsg(object: _132.MsgAddCreditTypeAminoMsg): _132.MsgAddCreditType; + toAminoMsg(message: _132.MsgAddCreditType): _132.MsgAddCreditTypeAminoMsg; + fromProtoMsg(message: _132.MsgAddCreditTypeProtoMsg): _132.MsgAddCreditType; + toProto(message: _132.MsgAddCreditType): Uint8Array; + toProtoMsg(message: _132.MsgAddCreditType): _132.MsgAddCreditTypeProtoMsg; }; MsgAddCreditTypeResponse: { - encode(_: _131.MsgAddCreditTypeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgAddCreditTypeResponse; - fromJSON(_: any): _131.MsgAddCreditTypeResponse; - toJSON(_: _131.MsgAddCreditTypeResponse): unknown; - fromPartial(_: Partial<_131.MsgAddCreditTypeResponse>): _131.MsgAddCreditTypeResponse; - fromAmino(_: _131.MsgAddCreditTypeResponseAmino): _131.MsgAddCreditTypeResponse; - toAmino(_: _131.MsgAddCreditTypeResponse): _131.MsgAddCreditTypeResponseAmino; - fromAminoMsg(object: _131.MsgAddCreditTypeResponseAminoMsg): _131.MsgAddCreditTypeResponse; - fromProtoMsg(message: _131.MsgAddCreditTypeResponseProtoMsg): _131.MsgAddCreditTypeResponse; - toProto(message: _131.MsgAddCreditTypeResponse): Uint8Array; - toProtoMsg(message: _131.MsgAddCreditTypeResponse): _131.MsgAddCreditTypeResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgAddCreditTypeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgAddCreditTypeResponse; + fromJSON(_: any): _132.MsgAddCreditTypeResponse; + toJSON(_: _132.MsgAddCreditTypeResponse): unknown; + fromPartial(_: Partial<_132.MsgAddCreditTypeResponse>): _132.MsgAddCreditTypeResponse; + fromAmino(_: _132.MsgAddCreditTypeResponseAmino): _132.MsgAddCreditTypeResponse; + toAmino(_: _132.MsgAddCreditTypeResponse): _132.MsgAddCreditTypeResponseAmino; + fromAminoMsg(object: _132.MsgAddCreditTypeResponseAminoMsg): _132.MsgAddCreditTypeResponse; + fromProtoMsg(message: _132.MsgAddCreditTypeResponseProtoMsg): _132.MsgAddCreditTypeResponse; + toProto(message: _132.MsgAddCreditTypeResponse): Uint8Array; + toProtoMsg(message: _132.MsgAddCreditTypeResponse): _132.MsgAddCreditTypeResponseProtoMsg; }; MsgCreateClass: { - encode(message: _131.MsgCreateClass, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCreateClass; - fromJSON(object: any): _131.MsgCreateClass; - toJSON(message: _131.MsgCreateClass): unknown; - fromPartial(object: Partial<_131.MsgCreateClass>): _131.MsgCreateClass; - fromAmino(object: _131.MsgCreateClassAmino): _131.MsgCreateClass; - toAmino(message: _131.MsgCreateClass): _131.MsgCreateClassAmino; - fromAminoMsg(object: _131.MsgCreateClassAminoMsg): _131.MsgCreateClass; - toAminoMsg(message: _131.MsgCreateClass): _131.MsgCreateClassAminoMsg; - fromProtoMsg(message: _131.MsgCreateClassProtoMsg): _131.MsgCreateClass; - toProto(message: _131.MsgCreateClass): Uint8Array; - toProtoMsg(message: _131.MsgCreateClass): _131.MsgCreateClassProtoMsg; + typeUrl: string; + encode(message: _132.MsgCreateClass, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCreateClass; + fromJSON(object: any): _132.MsgCreateClass; + toJSON(message: _132.MsgCreateClass): unknown; + fromPartial(object: Partial<_132.MsgCreateClass>): _132.MsgCreateClass; + fromAmino(object: _132.MsgCreateClassAmino): _132.MsgCreateClass; + toAmino(message: _132.MsgCreateClass): _132.MsgCreateClassAmino; + fromAminoMsg(object: _132.MsgCreateClassAminoMsg): _132.MsgCreateClass; + toAminoMsg(message: _132.MsgCreateClass): _132.MsgCreateClassAminoMsg; + fromProtoMsg(message: _132.MsgCreateClassProtoMsg): _132.MsgCreateClass; + toProto(message: _132.MsgCreateClass): Uint8Array; + toProtoMsg(message: _132.MsgCreateClass): _132.MsgCreateClassProtoMsg; }; MsgCreateClassResponse: { - encode(message: _131.MsgCreateClassResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCreateClassResponse; - fromJSON(object: any): _131.MsgCreateClassResponse; - toJSON(message: _131.MsgCreateClassResponse): unknown; - fromPartial(object: Partial<_131.MsgCreateClassResponse>): _131.MsgCreateClassResponse; - fromAmino(object: _131.MsgCreateClassResponseAmino): _131.MsgCreateClassResponse; - toAmino(message: _131.MsgCreateClassResponse): _131.MsgCreateClassResponseAmino; - fromAminoMsg(object: _131.MsgCreateClassResponseAminoMsg): _131.MsgCreateClassResponse; - fromProtoMsg(message: _131.MsgCreateClassResponseProtoMsg): _131.MsgCreateClassResponse; - toProto(message: _131.MsgCreateClassResponse): Uint8Array; - toProtoMsg(message: _131.MsgCreateClassResponse): _131.MsgCreateClassResponseProtoMsg; + typeUrl: string; + encode(message: _132.MsgCreateClassResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCreateClassResponse; + fromJSON(object: any): _132.MsgCreateClassResponse; + toJSON(message: _132.MsgCreateClassResponse): unknown; + fromPartial(object: Partial<_132.MsgCreateClassResponse>): _132.MsgCreateClassResponse; + fromAmino(object: _132.MsgCreateClassResponseAmino): _132.MsgCreateClassResponse; + toAmino(message: _132.MsgCreateClassResponse): _132.MsgCreateClassResponseAmino; + fromAminoMsg(object: _132.MsgCreateClassResponseAminoMsg): _132.MsgCreateClassResponse; + fromProtoMsg(message: _132.MsgCreateClassResponseProtoMsg): _132.MsgCreateClassResponse; + toProto(message: _132.MsgCreateClassResponse): Uint8Array; + toProtoMsg(message: _132.MsgCreateClassResponse): _132.MsgCreateClassResponseProtoMsg; }; MsgCreateProject: { - encode(message: _131.MsgCreateProject, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCreateProject; - fromJSON(object: any): _131.MsgCreateProject; - toJSON(message: _131.MsgCreateProject): unknown; - fromPartial(object: Partial<_131.MsgCreateProject>): _131.MsgCreateProject; - fromAmino(object: _131.MsgCreateProjectAmino): _131.MsgCreateProject; - toAmino(message: _131.MsgCreateProject): _131.MsgCreateProjectAmino; - fromAminoMsg(object: _131.MsgCreateProjectAminoMsg): _131.MsgCreateProject; - toAminoMsg(message: _131.MsgCreateProject): _131.MsgCreateProjectAminoMsg; - fromProtoMsg(message: _131.MsgCreateProjectProtoMsg): _131.MsgCreateProject; - toProto(message: _131.MsgCreateProject): Uint8Array; - toProtoMsg(message: _131.MsgCreateProject): _131.MsgCreateProjectProtoMsg; + typeUrl: string; + encode(message: _132.MsgCreateProject, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCreateProject; + fromJSON(object: any): _132.MsgCreateProject; + toJSON(message: _132.MsgCreateProject): unknown; + fromPartial(object: Partial<_132.MsgCreateProject>): _132.MsgCreateProject; + fromAmino(object: _132.MsgCreateProjectAmino): _132.MsgCreateProject; + toAmino(message: _132.MsgCreateProject): _132.MsgCreateProjectAmino; + fromAminoMsg(object: _132.MsgCreateProjectAminoMsg): _132.MsgCreateProject; + toAminoMsg(message: _132.MsgCreateProject): _132.MsgCreateProjectAminoMsg; + fromProtoMsg(message: _132.MsgCreateProjectProtoMsg): _132.MsgCreateProject; + toProto(message: _132.MsgCreateProject): Uint8Array; + toProtoMsg(message: _132.MsgCreateProject): _132.MsgCreateProjectProtoMsg; }; MsgCreateProjectResponse: { - encode(message: _131.MsgCreateProjectResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCreateProjectResponse; - fromJSON(object: any): _131.MsgCreateProjectResponse; - toJSON(message: _131.MsgCreateProjectResponse): unknown; - fromPartial(object: Partial<_131.MsgCreateProjectResponse>): _131.MsgCreateProjectResponse; - fromAmino(object: _131.MsgCreateProjectResponseAmino): _131.MsgCreateProjectResponse; - toAmino(message: _131.MsgCreateProjectResponse): _131.MsgCreateProjectResponseAmino; - fromAminoMsg(object: _131.MsgCreateProjectResponseAminoMsg): _131.MsgCreateProjectResponse; - fromProtoMsg(message: _131.MsgCreateProjectResponseProtoMsg): _131.MsgCreateProjectResponse; - toProto(message: _131.MsgCreateProjectResponse): Uint8Array; - toProtoMsg(message: _131.MsgCreateProjectResponse): _131.MsgCreateProjectResponseProtoMsg; + typeUrl: string; + encode(message: _132.MsgCreateProjectResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCreateProjectResponse; + fromJSON(object: any): _132.MsgCreateProjectResponse; + toJSON(message: _132.MsgCreateProjectResponse): unknown; + fromPartial(object: Partial<_132.MsgCreateProjectResponse>): _132.MsgCreateProjectResponse; + fromAmino(object: _132.MsgCreateProjectResponseAmino): _132.MsgCreateProjectResponse; + toAmino(message: _132.MsgCreateProjectResponse): _132.MsgCreateProjectResponseAmino; + fromAminoMsg(object: _132.MsgCreateProjectResponseAminoMsg): _132.MsgCreateProjectResponse; + fromProtoMsg(message: _132.MsgCreateProjectResponseProtoMsg): _132.MsgCreateProjectResponse; + toProto(message: _132.MsgCreateProjectResponse): Uint8Array; + toProtoMsg(message: _132.MsgCreateProjectResponse): _132.MsgCreateProjectResponseProtoMsg; }; MsgCreateBatch: { - encode(message: _131.MsgCreateBatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCreateBatch; - fromJSON(object: any): _131.MsgCreateBatch; - toJSON(message: _131.MsgCreateBatch): unknown; - fromPartial(object: Partial<_131.MsgCreateBatch>): _131.MsgCreateBatch; - fromAmino(object: _131.MsgCreateBatchAmino): _131.MsgCreateBatch; - toAmino(message: _131.MsgCreateBatch): _131.MsgCreateBatchAmino; - fromAminoMsg(object: _131.MsgCreateBatchAminoMsg): _131.MsgCreateBatch; - toAminoMsg(message: _131.MsgCreateBatch): _131.MsgCreateBatchAminoMsg; - fromProtoMsg(message: _131.MsgCreateBatchProtoMsg): _131.MsgCreateBatch; - toProto(message: _131.MsgCreateBatch): Uint8Array; - toProtoMsg(message: _131.MsgCreateBatch): _131.MsgCreateBatchProtoMsg; + typeUrl: string; + encode(message: _132.MsgCreateBatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCreateBatch; + fromJSON(object: any): _132.MsgCreateBatch; + toJSON(message: _132.MsgCreateBatch): unknown; + fromPartial(object: Partial<_132.MsgCreateBatch>): _132.MsgCreateBatch; + fromAmino(object: _132.MsgCreateBatchAmino): _132.MsgCreateBatch; + toAmino(message: _132.MsgCreateBatch): _132.MsgCreateBatchAmino; + fromAminoMsg(object: _132.MsgCreateBatchAminoMsg): _132.MsgCreateBatch; + toAminoMsg(message: _132.MsgCreateBatch): _132.MsgCreateBatchAminoMsg; + fromProtoMsg(message: _132.MsgCreateBatchProtoMsg): _132.MsgCreateBatch; + toProto(message: _132.MsgCreateBatch): Uint8Array; + toProtoMsg(message: _132.MsgCreateBatch): _132.MsgCreateBatchProtoMsg; }; MsgCreateBatchResponse: { - encode(message: _131.MsgCreateBatchResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCreateBatchResponse; - fromJSON(object: any): _131.MsgCreateBatchResponse; - toJSON(message: _131.MsgCreateBatchResponse): unknown; - fromPartial(object: Partial<_131.MsgCreateBatchResponse>): _131.MsgCreateBatchResponse; - fromAmino(object: _131.MsgCreateBatchResponseAmino): _131.MsgCreateBatchResponse; - toAmino(message: _131.MsgCreateBatchResponse): _131.MsgCreateBatchResponseAmino; - fromAminoMsg(object: _131.MsgCreateBatchResponseAminoMsg): _131.MsgCreateBatchResponse; - fromProtoMsg(message: _131.MsgCreateBatchResponseProtoMsg): _131.MsgCreateBatchResponse; - toProto(message: _131.MsgCreateBatchResponse): Uint8Array; - toProtoMsg(message: _131.MsgCreateBatchResponse): _131.MsgCreateBatchResponseProtoMsg; + typeUrl: string; + encode(message: _132.MsgCreateBatchResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCreateBatchResponse; + fromJSON(object: any): _132.MsgCreateBatchResponse; + toJSON(message: _132.MsgCreateBatchResponse): unknown; + fromPartial(object: Partial<_132.MsgCreateBatchResponse>): _132.MsgCreateBatchResponse; + fromAmino(object: _132.MsgCreateBatchResponseAmino): _132.MsgCreateBatchResponse; + toAmino(message: _132.MsgCreateBatchResponse): _132.MsgCreateBatchResponseAmino; + fromAminoMsg(object: _132.MsgCreateBatchResponseAminoMsg): _132.MsgCreateBatchResponse; + fromProtoMsg(message: _132.MsgCreateBatchResponseProtoMsg): _132.MsgCreateBatchResponse; + toProto(message: _132.MsgCreateBatchResponse): Uint8Array; + toProtoMsg(message: _132.MsgCreateBatchResponse): _132.MsgCreateBatchResponseProtoMsg; }; MsgMintBatchCredits: { - encode(message: _131.MsgMintBatchCredits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgMintBatchCredits; - fromJSON(object: any): _131.MsgMintBatchCredits; - toJSON(message: _131.MsgMintBatchCredits): unknown; - fromPartial(object: Partial<_131.MsgMintBatchCredits>): _131.MsgMintBatchCredits; - fromAmino(object: _131.MsgMintBatchCreditsAmino): _131.MsgMintBatchCredits; - toAmino(message: _131.MsgMintBatchCredits): _131.MsgMintBatchCreditsAmino; - fromAminoMsg(object: _131.MsgMintBatchCreditsAminoMsg): _131.MsgMintBatchCredits; - toAminoMsg(message: _131.MsgMintBatchCredits): _131.MsgMintBatchCreditsAminoMsg; - fromProtoMsg(message: _131.MsgMintBatchCreditsProtoMsg): _131.MsgMintBatchCredits; - toProto(message: _131.MsgMintBatchCredits): Uint8Array; - toProtoMsg(message: _131.MsgMintBatchCredits): _131.MsgMintBatchCreditsProtoMsg; + typeUrl: string; + encode(message: _132.MsgMintBatchCredits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgMintBatchCredits; + fromJSON(object: any): _132.MsgMintBatchCredits; + toJSON(message: _132.MsgMintBatchCredits): unknown; + fromPartial(object: Partial<_132.MsgMintBatchCredits>): _132.MsgMintBatchCredits; + fromAmino(object: _132.MsgMintBatchCreditsAmino): _132.MsgMintBatchCredits; + toAmino(message: _132.MsgMintBatchCredits): _132.MsgMintBatchCreditsAmino; + fromAminoMsg(object: _132.MsgMintBatchCreditsAminoMsg): _132.MsgMintBatchCredits; + toAminoMsg(message: _132.MsgMintBatchCredits): _132.MsgMintBatchCreditsAminoMsg; + fromProtoMsg(message: _132.MsgMintBatchCreditsProtoMsg): _132.MsgMintBatchCredits; + toProto(message: _132.MsgMintBatchCredits): Uint8Array; + toProtoMsg(message: _132.MsgMintBatchCredits): _132.MsgMintBatchCreditsProtoMsg; }; MsgMintBatchCreditsResponse: { - encode(_: _131.MsgMintBatchCreditsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgMintBatchCreditsResponse; - fromJSON(_: any): _131.MsgMintBatchCreditsResponse; - toJSON(_: _131.MsgMintBatchCreditsResponse): unknown; - fromPartial(_: Partial<_131.MsgMintBatchCreditsResponse>): _131.MsgMintBatchCreditsResponse; - fromAmino(_: _131.MsgMintBatchCreditsResponseAmino): _131.MsgMintBatchCreditsResponse; - toAmino(_: _131.MsgMintBatchCreditsResponse): _131.MsgMintBatchCreditsResponseAmino; - fromAminoMsg(object: _131.MsgMintBatchCreditsResponseAminoMsg): _131.MsgMintBatchCreditsResponse; - fromProtoMsg(message: _131.MsgMintBatchCreditsResponseProtoMsg): _131.MsgMintBatchCreditsResponse; - toProto(message: _131.MsgMintBatchCreditsResponse): Uint8Array; - toProtoMsg(message: _131.MsgMintBatchCreditsResponse): _131.MsgMintBatchCreditsResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgMintBatchCreditsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgMintBatchCreditsResponse; + fromJSON(_: any): _132.MsgMintBatchCreditsResponse; + toJSON(_: _132.MsgMintBatchCreditsResponse): unknown; + fromPartial(_: Partial<_132.MsgMintBatchCreditsResponse>): _132.MsgMintBatchCreditsResponse; + fromAmino(_: _132.MsgMintBatchCreditsResponseAmino): _132.MsgMintBatchCreditsResponse; + toAmino(_: _132.MsgMintBatchCreditsResponse): _132.MsgMintBatchCreditsResponseAmino; + fromAminoMsg(object: _132.MsgMintBatchCreditsResponseAminoMsg): _132.MsgMintBatchCreditsResponse; + fromProtoMsg(message: _132.MsgMintBatchCreditsResponseProtoMsg): _132.MsgMintBatchCreditsResponse; + toProto(message: _132.MsgMintBatchCreditsResponse): Uint8Array; + toProtoMsg(message: _132.MsgMintBatchCreditsResponse): _132.MsgMintBatchCreditsResponseProtoMsg; }; MsgSealBatch: { - encode(message: _131.MsgSealBatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSealBatch; - fromJSON(object: any): _131.MsgSealBatch; - toJSON(message: _131.MsgSealBatch): unknown; - fromPartial(object: Partial<_131.MsgSealBatch>): _131.MsgSealBatch; - fromAmino(object: _131.MsgSealBatchAmino): _131.MsgSealBatch; - toAmino(message: _131.MsgSealBatch): _131.MsgSealBatchAmino; - fromAminoMsg(object: _131.MsgSealBatchAminoMsg): _131.MsgSealBatch; - toAminoMsg(message: _131.MsgSealBatch): _131.MsgSealBatchAminoMsg; - fromProtoMsg(message: _131.MsgSealBatchProtoMsg): _131.MsgSealBatch; - toProto(message: _131.MsgSealBatch): Uint8Array; - toProtoMsg(message: _131.MsgSealBatch): _131.MsgSealBatchProtoMsg; + typeUrl: string; + encode(message: _132.MsgSealBatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSealBatch; + fromJSON(object: any): _132.MsgSealBatch; + toJSON(message: _132.MsgSealBatch): unknown; + fromPartial(object: Partial<_132.MsgSealBatch>): _132.MsgSealBatch; + fromAmino(object: _132.MsgSealBatchAmino): _132.MsgSealBatch; + toAmino(message: _132.MsgSealBatch): _132.MsgSealBatchAmino; + fromAminoMsg(object: _132.MsgSealBatchAminoMsg): _132.MsgSealBatch; + toAminoMsg(message: _132.MsgSealBatch): _132.MsgSealBatchAminoMsg; + fromProtoMsg(message: _132.MsgSealBatchProtoMsg): _132.MsgSealBatch; + toProto(message: _132.MsgSealBatch): Uint8Array; + toProtoMsg(message: _132.MsgSealBatch): _132.MsgSealBatchProtoMsg; }; MsgSealBatchResponse: { - encode(_: _131.MsgSealBatchResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSealBatchResponse; - fromJSON(_: any): _131.MsgSealBatchResponse; - toJSON(_: _131.MsgSealBatchResponse): unknown; - fromPartial(_: Partial<_131.MsgSealBatchResponse>): _131.MsgSealBatchResponse; - fromAmino(_: _131.MsgSealBatchResponseAmino): _131.MsgSealBatchResponse; - toAmino(_: _131.MsgSealBatchResponse): _131.MsgSealBatchResponseAmino; - fromAminoMsg(object: _131.MsgSealBatchResponseAminoMsg): _131.MsgSealBatchResponse; - fromProtoMsg(message: _131.MsgSealBatchResponseProtoMsg): _131.MsgSealBatchResponse; - toProto(message: _131.MsgSealBatchResponse): Uint8Array; - toProtoMsg(message: _131.MsgSealBatchResponse): _131.MsgSealBatchResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgSealBatchResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSealBatchResponse; + fromJSON(_: any): _132.MsgSealBatchResponse; + toJSON(_: _132.MsgSealBatchResponse): unknown; + fromPartial(_: Partial<_132.MsgSealBatchResponse>): _132.MsgSealBatchResponse; + fromAmino(_: _132.MsgSealBatchResponseAmino): _132.MsgSealBatchResponse; + toAmino(_: _132.MsgSealBatchResponse): _132.MsgSealBatchResponseAmino; + fromAminoMsg(object: _132.MsgSealBatchResponseAminoMsg): _132.MsgSealBatchResponse; + fromProtoMsg(message: _132.MsgSealBatchResponseProtoMsg): _132.MsgSealBatchResponse; + toProto(message: _132.MsgSealBatchResponse): Uint8Array; + toProtoMsg(message: _132.MsgSealBatchResponse): _132.MsgSealBatchResponseProtoMsg; }; MsgSend: { - encode(message: _131.MsgSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSend; - fromJSON(object: any): _131.MsgSend; - toJSON(message: _131.MsgSend): unknown; - fromPartial(object: Partial<_131.MsgSend>): _131.MsgSend; - fromAmino(object: _131.MsgSendAmino): _131.MsgSend; - toAmino(message: _131.MsgSend): _131.MsgSendAmino; - fromAminoMsg(object: _131.MsgSendAminoMsg): _131.MsgSend; - toAminoMsg(message: _131.MsgSend): _131.MsgSendAminoMsg; - fromProtoMsg(message: _131.MsgSendProtoMsg): _131.MsgSend; - toProto(message: _131.MsgSend): Uint8Array; - toProtoMsg(message: _131.MsgSend): _131.MsgSendProtoMsg; + typeUrl: string; + encode(message: _132.MsgSend, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSend; + fromJSON(object: any): _132.MsgSend; + toJSON(message: _132.MsgSend): unknown; + fromPartial(object: Partial<_132.MsgSend>): _132.MsgSend; + fromAmino(object: _132.MsgSendAmino): _132.MsgSend; + toAmino(message: _132.MsgSend): _132.MsgSendAmino; + fromAminoMsg(object: _132.MsgSendAminoMsg): _132.MsgSend; + toAminoMsg(message: _132.MsgSend): _132.MsgSendAminoMsg; + fromProtoMsg(message: _132.MsgSendProtoMsg): _132.MsgSend; + toProto(message: _132.MsgSend): Uint8Array; + toProtoMsg(message: _132.MsgSend): _132.MsgSendProtoMsg; }; MsgSend_SendCredits: { - encode(message: _131.MsgSend_SendCredits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSend_SendCredits; - fromJSON(object: any): _131.MsgSend_SendCredits; - toJSON(message: _131.MsgSend_SendCredits): unknown; - fromPartial(object: Partial<_131.MsgSend_SendCredits>): _131.MsgSend_SendCredits; - fromAmino(object: _131.MsgSend_SendCreditsAmino): _131.MsgSend_SendCredits; - toAmino(message: _131.MsgSend_SendCredits): _131.MsgSend_SendCreditsAmino; - fromAminoMsg(object: _131.MsgSend_SendCreditsAminoMsg): _131.MsgSend_SendCredits; - fromProtoMsg(message: _131.MsgSend_SendCreditsProtoMsg): _131.MsgSend_SendCredits; - toProto(message: _131.MsgSend_SendCredits): Uint8Array; - toProtoMsg(message: _131.MsgSend_SendCredits): _131.MsgSend_SendCreditsProtoMsg; + typeUrl: string; + encode(message: _132.MsgSend_SendCredits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSend_SendCredits; + fromJSON(object: any): _132.MsgSend_SendCredits; + toJSON(message: _132.MsgSend_SendCredits): unknown; + fromPartial(object: Partial<_132.MsgSend_SendCredits>): _132.MsgSend_SendCredits; + fromAmino(object: _132.MsgSend_SendCreditsAmino): _132.MsgSend_SendCredits; + toAmino(message: _132.MsgSend_SendCredits): _132.MsgSend_SendCreditsAmino; + fromAminoMsg(object: _132.MsgSend_SendCreditsAminoMsg): _132.MsgSend_SendCredits; + fromProtoMsg(message: _132.MsgSend_SendCreditsProtoMsg): _132.MsgSend_SendCredits; + toProto(message: _132.MsgSend_SendCredits): Uint8Array; + toProtoMsg(message: _132.MsgSend_SendCredits): _132.MsgSend_SendCreditsProtoMsg; }; MsgSendResponse: { - encode(_: _131.MsgSendResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSendResponse; - fromJSON(_: any): _131.MsgSendResponse; - toJSON(_: _131.MsgSendResponse): unknown; - fromPartial(_: Partial<_131.MsgSendResponse>): _131.MsgSendResponse; - fromAmino(_: _131.MsgSendResponseAmino): _131.MsgSendResponse; - toAmino(_: _131.MsgSendResponse): _131.MsgSendResponseAmino; - fromAminoMsg(object: _131.MsgSendResponseAminoMsg): _131.MsgSendResponse; - fromProtoMsg(message: _131.MsgSendResponseProtoMsg): _131.MsgSendResponse; - toProto(message: _131.MsgSendResponse): Uint8Array; - toProtoMsg(message: _131.MsgSendResponse): _131.MsgSendResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgSendResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSendResponse; + fromJSON(_: any): _132.MsgSendResponse; + toJSON(_: _132.MsgSendResponse): unknown; + fromPartial(_: Partial<_132.MsgSendResponse>): _132.MsgSendResponse; + fromAmino(_: _132.MsgSendResponseAmino): _132.MsgSendResponse; + toAmino(_: _132.MsgSendResponse): _132.MsgSendResponseAmino; + fromAminoMsg(object: _132.MsgSendResponseAminoMsg): _132.MsgSendResponse; + fromProtoMsg(message: _132.MsgSendResponseProtoMsg): _132.MsgSendResponse; + toProto(message: _132.MsgSendResponse): Uint8Array; + toProtoMsg(message: _132.MsgSendResponse): _132.MsgSendResponseProtoMsg; }; MsgRetire: { - encode(message: _131.MsgRetire, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgRetire; - fromJSON(object: any): _131.MsgRetire; - toJSON(message: _131.MsgRetire): unknown; - fromPartial(object: Partial<_131.MsgRetire>): _131.MsgRetire; - fromAmino(object: _131.MsgRetireAmino): _131.MsgRetire; - toAmino(message: _131.MsgRetire): _131.MsgRetireAmino; - fromAminoMsg(object: _131.MsgRetireAminoMsg): _131.MsgRetire; - toAminoMsg(message: _131.MsgRetire): _131.MsgRetireAminoMsg; - fromProtoMsg(message: _131.MsgRetireProtoMsg): _131.MsgRetire; - toProto(message: _131.MsgRetire): Uint8Array; - toProtoMsg(message: _131.MsgRetire): _131.MsgRetireProtoMsg; + typeUrl: string; + encode(message: _132.MsgRetire, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgRetire; + fromJSON(object: any): _132.MsgRetire; + toJSON(message: _132.MsgRetire): unknown; + fromPartial(object: Partial<_132.MsgRetire>): _132.MsgRetire; + fromAmino(object: _132.MsgRetireAmino): _132.MsgRetire; + toAmino(message: _132.MsgRetire): _132.MsgRetireAmino; + fromAminoMsg(object: _132.MsgRetireAminoMsg): _132.MsgRetire; + toAminoMsg(message: _132.MsgRetire): _132.MsgRetireAminoMsg; + fromProtoMsg(message: _132.MsgRetireProtoMsg): _132.MsgRetire; + toProto(message: _132.MsgRetire): Uint8Array; + toProtoMsg(message: _132.MsgRetire): _132.MsgRetireProtoMsg; }; MsgRetireResponse: { - encode(_: _131.MsgRetireResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgRetireResponse; - fromJSON(_: any): _131.MsgRetireResponse; - toJSON(_: _131.MsgRetireResponse): unknown; - fromPartial(_: Partial<_131.MsgRetireResponse>): _131.MsgRetireResponse; - fromAmino(_: _131.MsgRetireResponseAmino): _131.MsgRetireResponse; - toAmino(_: _131.MsgRetireResponse): _131.MsgRetireResponseAmino; - fromAminoMsg(object: _131.MsgRetireResponseAminoMsg): _131.MsgRetireResponse; - fromProtoMsg(message: _131.MsgRetireResponseProtoMsg): _131.MsgRetireResponse; - toProto(message: _131.MsgRetireResponse): Uint8Array; - toProtoMsg(message: _131.MsgRetireResponse): _131.MsgRetireResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgRetireResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgRetireResponse; + fromJSON(_: any): _132.MsgRetireResponse; + toJSON(_: _132.MsgRetireResponse): unknown; + fromPartial(_: Partial<_132.MsgRetireResponse>): _132.MsgRetireResponse; + fromAmino(_: _132.MsgRetireResponseAmino): _132.MsgRetireResponse; + toAmino(_: _132.MsgRetireResponse): _132.MsgRetireResponseAmino; + fromAminoMsg(object: _132.MsgRetireResponseAminoMsg): _132.MsgRetireResponse; + fromProtoMsg(message: _132.MsgRetireResponseProtoMsg): _132.MsgRetireResponse; + toProto(message: _132.MsgRetireResponse): Uint8Array; + toProtoMsg(message: _132.MsgRetireResponse): _132.MsgRetireResponseProtoMsg; }; MsgCancel: { - encode(message: _131.MsgCancel, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCancel; - fromJSON(object: any): _131.MsgCancel; - toJSON(message: _131.MsgCancel): unknown; - fromPartial(object: Partial<_131.MsgCancel>): _131.MsgCancel; - fromAmino(object: _131.MsgCancelAmino): _131.MsgCancel; - toAmino(message: _131.MsgCancel): _131.MsgCancelAmino; - fromAminoMsg(object: _131.MsgCancelAminoMsg): _131.MsgCancel; - toAminoMsg(message: _131.MsgCancel): _131.MsgCancelAminoMsg; - fromProtoMsg(message: _131.MsgCancelProtoMsg): _131.MsgCancel; - toProto(message: _131.MsgCancel): Uint8Array; - toProtoMsg(message: _131.MsgCancel): _131.MsgCancelProtoMsg; + typeUrl: string; + encode(message: _132.MsgCancel, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCancel; + fromJSON(object: any): _132.MsgCancel; + toJSON(message: _132.MsgCancel): unknown; + fromPartial(object: Partial<_132.MsgCancel>): _132.MsgCancel; + fromAmino(object: _132.MsgCancelAmino): _132.MsgCancel; + toAmino(message: _132.MsgCancel): _132.MsgCancelAmino; + fromAminoMsg(object: _132.MsgCancelAminoMsg): _132.MsgCancel; + toAminoMsg(message: _132.MsgCancel): _132.MsgCancelAminoMsg; + fromProtoMsg(message: _132.MsgCancelProtoMsg): _132.MsgCancel; + toProto(message: _132.MsgCancel): Uint8Array; + toProtoMsg(message: _132.MsgCancel): _132.MsgCancelProtoMsg; }; MsgCancelResponse: { - encode(_: _131.MsgCancelResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgCancelResponse; - fromJSON(_: any): _131.MsgCancelResponse; - toJSON(_: _131.MsgCancelResponse): unknown; - fromPartial(_: Partial<_131.MsgCancelResponse>): _131.MsgCancelResponse; - fromAmino(_: _131.MsgCancelResponseAmino): _131.MsgCancelResponse; - toAmino(_: _131.MsgCancelResponse): _131.MsgCancelResponseAmino; - fromAminoMsg(object: _131.MsgCancelResponseAminoMsg): _131.MsgCancelResponse; - fromProtoMsg(message: _131.MsgCancelResponseProtoMsg): _131.MsgCancelResponse; - toProto(message: _131.MsgCancelResponse): Uint8Array; - toProtoMsg(message: _131.MsgCancelResponse): _131.MsgCancelResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgCancelResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgCancelResponse; + fromJSON(_: any): _132.MsgCancelResponse; + toJSON(_: _132.MsgCancelResponse): unknown; + fromPartial(_: Partial<_132.MsgCancelResponse>): _132.MsgCancelResponse; + fromAmino(_: _132.MsgCancelResponseAmino): _132.MsgCancelResponse; + toAmino(_: _132.MsgCancelResponse): _132.MsgCancelResponseAmino; + fromAminoMsg(object: _132.MsgCancelResponseAminoMsg): _132.MsgCancelResponse; + fromProtoMsg(message: _132.MsgCancelResponseProtoMsg): _132.MsgCancelResponse; + toProto(message: _132.MsgCancelResponse): Uint8Array; + toProtoMsg(message: _132.MsgCancelResponse): _132.MsgCancelResponseProtoMsg; }; MsgUpdateClassAdmin: { - encode(message: _131.MsgUpdateClassAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassAdmin; - fromJSON(object: any): _131.MsgUpdateClassAdmin; - toJSON(message: _131.MsgUpdateClassAdmin): unknown; - fromPartial(object: Partial<_131.MsgUpdateClassAdmin>): _131.MsgUpdateClassAdmin; - fromAmino(object: _131.MsgUpdateClassAdminAmino): _131.MsgUpdateClassAdmin; - toAmino(message: _131.MsgUpdateClassAdmin): _131.MsgUpdateClassAdminAmino; - fromAminoMsg(object: _131.MsgUpdateClassAdminAminoMsg): _131.MsgUpdateClassAdmin; - toAminoMsg(message: _131.MsgUpdateClassAdmin): _131.MsgUpdateClassAdminAminoMsg; - fromProtoMsg(message: _131.MsgUpdateClassAdminProtoMsg): _131.MsgUpdateClassAdmin; - toProto(message: _131.MsgUpdateClassAdmin): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassAdmin): _131.MsgUpdateClassAdminProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateClassAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassAdmin; + fromJSON(object: any): _132.MsgUpdateClassAdmin; + toJSON(message: _132.MsgUpdateClassAdmin): unknown; + fromPartial(object: Partial<_132.MsgUpdateClassAdmin>): _132.MsgUpdateClassAdmin; + fromAmino(object: _132.MsgUpdateClassAdminAmino): _132.MsgUpdateClassAdmin; + toAmino(message: _132.MsgUpdateClassAdmin): _132.MsgUpdateClassAdminAmino; + fromAminoMsg(object: _132.MsgUpdateClassAdminAminoMsg): _132.MsgUpdateClassAdmin; + toAminoMsg(message: _132.MsgUpdateClassAdmin): _132.MsgUpdateClassAdminAminoMsg; + fromProtoMsg(message: _132.MsgUpdateClassAdminProtoMsg): _132.MsgUpdateClassAdmin; + toProto(message: _132.MsgUpdateClassAdmin): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassAdmin): _132.MsgUpdateClassAdminProtoMsg; }; MsgUpdateClassAdminResponse: { - encode(_: _131.MsgUpdateClassAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassAdminResponse; - fromJSON(_: any): _131.MsgUpdateClassAdminResponse; - toJSON(_: _131.MsgUpdateClassAdminResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateClassAdminResponse>): _131.MsgUpdateClassAdminResponse; - fromAmino(_: _131.MsgUpdateClassAdminResponseAmino): _131.MsgUpdateClassAdminResponse; - toAmino(_: _131.MsgUpdateClassAdminResponse): _131.MsgUpdateClassAdminResponseAmino; - fromAminoMsg(object: _131.MsgUpdateClassAdminResponseAminoMsg): _131.MsgUpdateClassAdminResponse; - fromProtoMsg(message: _131.MsgUpdateClassAdminResponseProtoMsg): _131.MsgUpdateClassAdminResponse; - toProto(message: _131.MsgUpdateClassAdminResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassAdminResponse): _131.MsgUpdateClassAdminResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateClassAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassAdminResponse; + fromJSON(_: any): _132.MsgUpdateClassAdminResponse; + toJSON(_: _132.MsgUpdateClassAdminResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateClassAdminResponse>): _132.MsgUpdateClassAdminResponse; + fromAmino(_: _132.MsgUpdateClassAdminResponseAmino): _132.MsgUpdateClassAdminResponse; + toAmino(_: _132.MsgUpdateClassAdminResponse): _132.MsgUpdateClassAdminResponseAmino; + fromAminoMsg(object: _132.MsgUpdateClassAdminResponseAminoMsg): _132.MsgUpdateClassAdminResponse; + fromProtoMsg(message: _132.MsgUpdateClassAdminResponseProtoMsg): _132.MsgUpdateClassAdminResponse; + toProto(message: _132.MsgUpdateClassAdminResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassAdminResponse): _132.MsgUpdateClassAdminResponseProtoMsg; }; MsgUpdateClassIssuers: { - encode(message: _131.MsgUpdateClassIssuers, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassIssuers; - fromJSON(object: any): _131.MsgUpdateClassIssuers; - toJSON(message: _131.MsgUpdateClassIssuers): unknown; - fromPartial(object: Partial<_131.MsgUpdateClassIssuers>): _131.MsgUpdateClassIssuers; - fromAmino(object: _131.MsgUpdateClassIssuersAmino): _131.MsgUpdateClassIssuers; - toAmino(message: _131.MsgUpdateClassIssuers): _131.MsgUpdateClassIssuersAmino; - fromAminoMsg(object: _131.MsgUpdateClassIssuersAminoMsg): _131.MsgUpdateClassIssuers; - toAminoMsg(message: _131.MsgUpdateClassIssuers): _131.MsgUpdateClassIssuersAminoMsg; - fromProtoMsg(message: _131.MsgUpdateClassIssuersProtoMsg): _131.MsgUpdateClassIssuers; - toProto(message: _131.MsgUpdateClassIssuers): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassIssuers): _131.MsgUpdateClassIssuersProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateClassIssuers, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassIssuers; + fromJSON(object: any): _132.MsgUpdateClassIssuers; + toJSON(message: _132.MsgUpdateClassIssuers): unknown; + fromPartial(object: Partial<_132.MsgUpdateClassIssuers>): _132.MsgUpdateClassIssuers; + fromAmino(object: _132.MsgUpdateClassIssuersAmino): _132.MsgUpdateClassIssuers; + toAmino(message: _132.MsgUpdateClassIssuers): _132.MsgUpdateClassIssuersAmino; + fromAminoMsg(object: _132.MsgUpdateClassIssuersAminoMsg): _132.MsgUpdateClassIssuers; + toAminoMsg(message: _132.MsgUpdateClassIssuers): _132.MsgUpdateClassIssuersAminoMsg; + fromProtoMsg(message: _132.MsgUpdateClassIssuersProtoMsg): _132.MsgUpdateClassIssuers; + toProto(message: _132.MsgUpdateClassIssuers): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassIssuers): _132.MsgUpdateClassIssuersProtoMsg; }; MsgUpdateClassIssuersResponse: { - encode(_: _131.MsgUpdateClassIssuersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassIssuersResponse; - fromJSON(_: any): _131.MsgUpdateClassIssuersResponse; - toJSON(_: _131.MsgUpdateClassIssuersResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateClassIssuersResponse>): _131.MsgUpdateClassIssuersResponse; - fromAmino(_: _131.MsgUpdateClassIssuersResponseAmino): _131.MsgUpdateClassIssuersResponse; - toAmino(_: _131.MsgUpdateClassIssuersResponse): _131.MsgUpdateClassIssuersResponseAmino; - fromAminoMsg(object: _131.MsgUpdateClassIssuersResponseAminoMsg): _131.MsgUpdateClassIssuersResponse; - fromProtoMsg(message: _131.MsgUpdateClassIssuersResponseProtoMsg): _131.MsgUpdateClassIssuersResponse; - toProto(message: _131.MsgUpdateClassIssuersResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassIssuersResponse): _131.MsgUpdateClassIssuersResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateClassIssuersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassIssuersResponse; + fromJSON(_: any): _132.MsgUpdateClassIssuersResponse; + toJSON(_: _132.MsgUpdateClassIssuersResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateClassIssuersResponse>): _132.MsgUpdateClassIssuersResponse; + fromAmino(_: _132.MsgUpdateClassIssuersResponseAmino): _132.MsgUpdateClassIssuersResponse; + toAmino(_: _132.MsgUpdateClassIssuersResponse): _132.MsgUpdateClassIssuersResponseAmino; + fromAminoMsg(object: _132.MsgUpdateClassIssuersResponseAminoMsg): _132.MsgUpdateClassIssuersResponse; + fromProtoMsg(message: _132.MsgUpdateClassIssuersResponseProtoMsg): _132.MsgUpdateClassIssuersResponse; + toProto(message: _132.MsgUpdateClassIssuersResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassIssuersResponse): _132.MsgUpdateClassIssuersResponseProtoMsg; }; MsgUpdateClassMetadata: { - encode(message: _131.MsgUpdateClassMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassMetadata; - fromJSON(object: any): _131.MsgUpdateClassMetadata; - toJSON(message: _131.MsgUpdateClassMetadata): unknown; - fromPartial(object: Partial<_131.MsgUpdateClassMetadata>): _131.MsgUpdateClassMetadata; - fromAmino(object: _131.MsgUpdateClassMetadataAmino): _131.MsgUpdateClassMetadata; - toAmino(message: _131.MsgUpdateClassMetadata): _131.MsgUpdateClassMetadataAmino; - fromAminoMsg(object: _131.MsgUpdateClassMetadataAminoMsg): _131.MsgUpdateClassMetadata; - toAminoMsg(message: _131.MsgUpdateClassMetadata): _131.MsgUpdateClassMetadataAminoMsg; - fromProtoMsg(message: _131.MsgUpdateClassMetadataProtoMsg): _131.MsgUpdateClassMetadata; - toProto(message: _131.MsgUpdateClassMetadata): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassMetadata): _131.MsgUpdateClassMetadataProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateClassMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassMetadata; + fromJSON(object: any): _132.MsgUpdateClassMetadata; + toJSON(message: _132.MsgUpdateClassMetadata): unknown; + fromPartial(object: Partial<_132.MsgUpdateClassMetadata>): _132.MsgUpdateClassMetadata; + fromAmino(object: _132.MsgUpdateClassMetadataAmino): _132.MsgUpdateClassMetadata; + toAmino(message: _132.MsgUpdateClassMetadata): _132.MsgUpdateClassMetadataAmino; + fromAminoMsg(object: _132.MsgUpdateClassMetadataAminoMsg): _132.MsgUpdateClassMetadata; + toAminoMsg(message: _132.MsgUpdateClassMetadata): _132.MsgUpdateClassMetadataAminoMsg; + fromProtoMsg(message: _132.MsgUpdateClassMetadataProtoMsg): _132.MsgUpdateClassMetadata; + toProto(message: _132.MsgUpdateClassMetadata): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassMetadata): _132.MsgUpdateClassMetadataProtoMsg; }; MsgUpdateClassMetadataResponse: { - encode(_: _131.MsgUpdateClassMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassMetadataResponse; - fromJSON(_: any): _131.MsgUpdateClassMetadataResponse; - toJSON(_: _131.MsgUpdateClassMetadataResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateClassMetadataResponse>): _131.MsgUpdateClassMetadataResponse; - fromAmino(_: _131.MsgUpdateClassMetadataResponseAmino): _131.MsgUpdateClassMetadataResponse; - toAmino(_: _131.MsgUpdateClassMetadataResponse): _131.MsgUpdateClassMetadataResponseAmino; - fromAminoMsg(object: _131.MsgUpdateClassMetadataResponseAminoMsg): _131.MsgUpdateClassMetadataResponse; - fromProtoMsg(message: _131.MsgUpdateClassMetadataResponseProtoMsg): _131.MsgUpdateClassMetadataResponse; - toProto(message: _131.MsgUpdateClassMetadataResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassMetadataResponse): _131.MsgUpdateClassMetadataResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateClassMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassMetadataResponse; + fromJSON(_: any): _132.MsgUpdateClassMetadataResponse; + toJSON(_: _132.MsgUpdateClassMetadataResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateClassMetadataResponse>): _132.MsgUpdateClassMetadataResponse; + fromAmino(_: _132.MsgUpdateClassMetadataResponseAmino): _132.MsgUpdateClassMetadataResponse; + toAmino(_: _132.MsgUpdateClassMetadataResponse): _132.MsgUpdateClassMetadataResponseAmino; + fromAminoMsg(object: _132.MsgUpdateClassMetadataResponseAminoMsg): _132.MsgUpdateClassMetadataResponse; + fromProtoMsg(message: _132.MsgUpdateClassMetadataResponseProtoMsg): _132.MsgUpdateClassMetadataResponse; + toProto(message: _132.MsgUpdateClassMetadataResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassMetadataResponse): _132.MsgUpdateClassMetadataResponseProtoMsg; }; MsgUpdateProjectAdmin: { - encode(message: _131.MsgUpdateProjectAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateProjectAdmin; - fromJSON(object: any): _131.MsgUpdateProjectAdmin; - toJSON(message: _131.MsgUpdateProjectAdmin): unknown; - fromPartial(object: Partial<_131.MsgUpdateProjectAdmin>): _131.MsgUpdateProjectAdmin; - fromAmino(object: _131.MsgUpdateProjectAdminAmino): _131.MsgUpdateProjectAdmin; - toAmino(message: _131.MsgUpdateProjectAdmin): _131.MsgUpdateProjectAdminAmino; - fromAminoMsg(object: _131.MsgUpdateProjectAdminAminoMsg): _131.MsgUpdateProjectAdmin; - toAminoMsg(message: _131.MsgUpdateProjectAdmin): _131.MsgUpdateProjectAdminAminoMsg; - fromProtoMsg(message: _131.MsgUpdateProjectAdminProtoMsg): _131.MsgUpdateProjectAdmin; - toProto(message: _131.MsgUpdateProjectAdmin): Uint8Array; - toProtoMsg(message: _131.MsgUpdateProjectAdmin): _131.MsgUpdateProjectAdminProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateProjectAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateProjectAdmin; + fromJSON(object: any): _132.MsgUpdateProjectAdmin; + toJSON(message: _132.MsgUpdateProjectAdmin): unknown; + fromPartial(object: Partial<_132.MsgUpdateProjectAdmin>): _132.MsgUpdateProjectAdmin; + fromAmino(object: _132.MsgUpdateProjectAdminAmino): _132.MsgUpdateProjectAdmin; + toAmino(message: _132.MsgUpdateProjectAdmin): _132.MsgUpdateProjectAdminAmino; + fromAminoMsg(object: _132.MsgUpdateProjectAdminAminoMsg): _132.MsgUpdateProjectAdmin; + toAminoMsg(message: _132.MsgUpdateProjectAdmin): _132.MsgUpdateProjectAdminAminoMsg; + fromProtoMsg(message: _132.MsgUpdateProjectAdminProtoMsg): _132.MsgUpdateProjectAdmin; + toProto(message: _132.MsgUpdateProjectAdmin): Uint8Array; + toProtoMsg(message: _132.MsgUpdateProjectAdmin): _132.MsgUpdateProjectAdminProtoMsg; }; MsgUpdateProjectAdminResponse: { - encode(_: _131.MsgUpdateProjectAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateProjectAdminResponse; - fromJSON(_: any): _131.MsgUpdateProjectAdminResponse; - toJSON(_: _131.MsgUpdateProjectAdminResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateProjectAdminResponse>): _131.MsgUpdateProjectAdminResponse; - fromAmino(_: _131.MsgUpdateProjectAdminResponseAmino): _131.MsgUpdateProjectAdminResponse; - toAmino(_: _131.MsgUpdateProjectAdminResponse): _131.MsgUpdateProjectAdminResponseAmino; - fromAminoMsg(object: _131.MsgUpdateProjectAdminResponseAminoMsg): _131.MsgUpdateProjectAdminResponse; - fromProtoMsg(message: _131.MsgUpdateProjectAdminResponseProtoMsg): _131.MsgUpdateProjectAdminResponse; - toProto(message: _131.MsgUpdateProjectAdminResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateProjectAdminResponse): _131.MsgUpdateProjectAdminResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateProjectAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateProjectAdminResponse; + fromJSON(_: any): _132.MsgUpdateProjectAdminResponse; + toJSON(_: _132.MsgUpdateProjectAdminResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateProjectAdminResponse>): _132.MsgUpdateProjectAdminResponse; + fromAmino(_: _132.MsgUpdateProjectAdminResponseAmino): _132.MsgUpdateProjectAdminResponse; + toAmino(_: _132.MsgUpdateProjectAdminResponse): _132.MsgUpdateProjectAdminResponseAmino; + fromAminoMsg(object: _132.MsgUpdateProjectAdminResponseAminoMsg): _132.MsgUpdateProjectAdminResponse; + fromProtoMsg(message: _132.MsgUpdateProjectAdminResponseProtoMsg): _132.MsgUpdateProjectAdminResponse; + toProto(message: _132.MsgUpdateProjectAdminResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateProjectAdminResponse): _132.MsgUpdateProjectAdminResponseProtoMsg; }; MsgUpdateProjectMetadata: { - encode(message: _131.MsgUpdateProjectMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateProjectMetadata; - fromJSON(object: any): _131.MsgUpdateProjectMetadata; - toJSON(message: _131.MsgUpdateProjectMetadata): unknown; - fromPartial(object: Partial<_131.MsgUpdateProjectMetadata>): _131.MsgUpdateProjectMetadata; - fromAmino(object: _131.MsgUpdateProjectMetadataAmino): _131.MsgUpdateProjectMetadata; - toAmino(message: _131.MsgUpdateProjectMetadata): _131.MsgUpdateProjectMetadataAmino; - fromAminoMsg(object: _131.MsgUpdateProjectMetadataAminoMsg): _131.MsgUpdateProjectMetadata; - toAminoMsg(message: _131.MsgUpdateProjectMetadata): _131.MsgUpdateProjectMetadataAminoMsg; - fromProtoMsg(message: _131.MsgUpdateProjectMetadataProtoMsg): _131.MsgUpdateProjectMetadata; - toProto(message: _131.MsgUpdateProjectMetadata): Uint8Array; - toProtoMsg(message: _131.MsgUpdateProjectMetadata): _131.MsgUpdateProjectMetadataProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateProjectMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateProjectMetadata; + fromJSON(object: any): _132.MsgUpdateProjectMetadata; + toJSON(message: _132.MsgUpdateProjectMetadata): unknown; + fromPartial(object: Partial<_132.MsgUpdateProjectMetadata>): _132.MsgUpdateProjectMetadata; + fromAmino(object: _132.MsgUpdateProjectMetadataAmino): _132.MsgUpdateProjectMetadata; + toAmino(message: _132.MsgUpdateProjectMetadata): _132.MsgUpdateProjectMetadataAmino; + fromAminoMsg(object: _132.MsgUpdateProjectMetadataAminoMsg): _132.MsgUpdateProjectMetadata; + toAminoMsg(message: _132.MsgUpdateProjectMetadata): _132.MsgUpdateProjectMetadataAminoMsg; + fromProtoMsg(message: _132.MsgUpdateProjectMetadataProtoMsg): _132.MsgUpdateProjectMetadata; + toProto(message: _132.MsgUpdateProjectMetadata): Uint8Array; + toProtoMsg(message: _132.MsgUpdateProjectMetadata): _132.MsgUpdateProjectMetadataProtoMsg; }; MsgUpdateProjectMetadataResponse: { - encode(_: _131.MsgUpdateProjectMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateProjectMetadataResponse; - fromJSON(_: any): _131.MsgUpdateProjectMetadataResponse; - toJSON(_: _131.MsgUpdateProjectMetadataResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateProjectMetadataResponse>): _131.MsgUpdateProjectMetadataResponse; - fromAmino(_: _131.MsgUpdateProjectMetadataResponseAmino): _131.MsgUpdateProjectMetadataResponse; - toAmino(_: _131.MsgUpdateProjectMetadataResponse): _131.MsgUpdateProjectMetadataResponseAmino; - fromAminoMsg(object: _131.MsgUpdateProjectMetadataResponseAminoMsg): _131.MsgUpdateProjectMetadataResponse; - fromProtoMsg(message: _131.MsgUpdateProjectMetadataResponseProtoMsg): _131.MsgUpdateProjectMetadataResponse; - toProto(message: _131.MsgUpdateProjectMetadataResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateProjectMetadataResponse): _131.MsgUpdateProjectMetadataResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateProjectMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateProjectMetadataResponse; + fromJSON(_: any): _132.MsgUpdateProjectMetadataResponse; + toJSON(_: _132.MsgUpdateProjectMetadataResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateProjectMetadataResponse>): _132.MsgUpdateProjectMetadataResponse; + fromAmino(_: _132.MsgUpdateProjectMetadataResponseAmino): _132.MsgUpdateProjectMetadataResponse; + toAmino(_: _132.MsgUpdateProjectMetadataResponse): _132.MsgUpdateProjectMetadataResponseAmino; + fromAminoMsg(object: _132.MsgUpdateProjectMetadataResponseAminoMsg): _132.MsgUpdateProjectMetadataResponse; + fromProtoMsg(message: _132.MsgUpdateProjectMetadataResponseProtoMsg): _132.MsgUpdateProjectMetadataResponse; + toProto(message: _132.MsgUpdateProjectMetadataResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateProjectMetadataResponse): _132.MsgUpdateProjectMetadataResponseProtoMsg; }; MsgBridge: { - encode(message: _131.MsgBridge, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgBridge; - fromJSON(object: any): _131.MsgBridge; - toJSON(message: _131.MsgBridge): unknown; - fromPartial(object: Partial<_131.MsgBridge>): _131.MsgBridge; - fromAmino(object: _131.MsgBridgeAmino): _131.MsgBridge; - toAmino(message: _131.MsgBridge): _131.MsgBridgeAmino; - fromAminoMsg(object: _131.MsgBridgeAminoMsg): _131.MsgBridge; - toAminoMsg(message: _131.MsgBridge): _131.MsgBridgeAminoMsg; - fromProtoMsg(message: _131.MsgBridgeProtoMsg): _131.MsgBridge; - toProto(message: _131.MsgBridge): Uint8Array; - toProtoMsg(message: _131.MsgBridge): _131.MsgBridgeProtoMsg; + typeUrl: string; + encode(message: _132.MsgBridge, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgBridge; + fromJSON(object: any): _132.MsgBridge; + toJSON(message: _132.MsgBridge): unknown; + fromPartial(object: Partial<_132.MsgBridge>): _132.MsgBridge; + fromAmino(object: _132.MsgBridgeAmino): _132.MsgBridge; + toAmino(message: _132.MsgBridge): _132.MsgBridgeAmino; + fromAminoMsg(object: _132.MsgBridgeAminoMsg): _132.MsgBridge; + toAminoMsg(message: _132.MsgBridge): _132.MsgBridgeAminoMsg; + fromProtoMsg(message: _132.MsgBridgeProtoMsg): _132.MsgBridge; + toProto(message: _132.MsgBridge): Uint8Array; + toProtoMsg(message: _132.MsgBridge): _132.MsgBridgeProtoMsg; }; MsgUpdateBatchMetadata: { - encode(message: _131.MsgUpdateBatchMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateBatchMetadata; - fromJSON(object: any): _131.MsgUpdateBatchMetadata; - toJSON(message: _131.MsgUpdateBatchMetadata): unknown; - fromPartial(object: Partial<_131.MsgUpdateBatchMetadata>): _131.MsgUpdateBatchMetadata; - fromAmino(object: _131.MsgUpdateBatchMetadataAmino): _131.MsgUpdateBatchMetadata; - toAmino(message: _131.MsgUpdateBatchMetadata): _131.MsgUpdateBatchMetadataAmino; - fromAminoMsg(object: _131.MsgUpdateBatchMetadataAminoMsg): _131.MsgUpdateBatchMetadata; - toAminoMsg(message: _131.MsgUpdateBatchMetadata): _131.MsgUpdateBatchMetadataAminoMsg; - fromProtoMsg(message: _131.MsgUpdateBatchMetadataProtoMsg): _131.MsgUpdateBatchMetadata; - toProto(message: _131.MsgUpdateBatchMetadata): Uint8Array; - toProtoMsg(message: _131.MsgUpdateBatchMetadata): _131.MsgUpdateBatchMetadataProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateBatchMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateBatchMetadata; + fromJSON(object: any): _132.MsgUpdateBatchMetadata; + toJSON(message: _132.MsgUpdateBatchMetadata): unknown; + fromPartial(object: Partial<_132.MsgUpdateBatchMetadata>): _132.MsgUpdateBatchMetadata; + fromAmino(object: _132.MsgUpdateBatchMetadataAmino): _132.MsgUpdateBatchMetadata; + toAmino(message: _132.MsgUpdateBatchMetadata): _132.MsgUpdateBatchMetadataAmino; + fromAminoMsg(object: _132.MsgUpdateBatchMetadataAminoMsg): _132.MsgUpdateBatchMetadata; + toAminoMsg(message: _132.MsgUpdateBatchMetadata): _132.MsgUpdateBatchMetadataAminoMsg; + fromProtoMsg(message: _132.MsgUpdateBatchMetadataProtoMsg): _132.MsgUpdateBatchMetadata; + toProto(message: _132.MsgUpdateBatchMetadata): Uint8Array; + toProtoMsg(message: _132.MsgUpdateBatchMetadata): _132.MsgUpdateBatchMetadataProtoMsg; }; MsgUpdateBatchMetadataResponse: { - encode(_: _131.MsgUpdateBatchMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateBatchMetadataResponse; - fromJSON(_: any): _131.MsgUpdateBatchMetadataResponse; - toJSON(_: _131.MsgUpdateBatchMetadataResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateBatchMetadataResponse>): _131.MsgUpdateBatchMetadataResponse; - fromAmino(_: _131.MsgUpdateBatchMetadataResponseAmino): _131.MsgUpdateBatchMetadataResponse; - toAmino(_: _131.MsgUpdateBatchMetadataResponse): _131.MsgUpdateBatchMetadataResponseAmino; - fromAminoMsg(object: _131.MsgUpdateBatchMetadataResponseAminoMsg): _131.MsgUpdateBatchMetadataResponse; - fromProtoMsg(message: _131.MsgUpdateBatchMetadataResponseProtoMsg): _131.MsgUpdateBatchMetadataResponse; - toProto(message: _131.MsgUpdateBatchMetadataResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateBatchMetadataResponse): _131.MsgUpdateBatchMetadataResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateBatchMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateBatchMetadataResponse; + fromJSON(_: any): _132.MsgUpdateBatchMetadataResponse; + toJSON(_: _132.MsgUpdateBatchMetadataResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateBatchMetadataResponse>): _132.MsgUpdateBatchMetadataResponse; + fromAmino(_: _132.MsgUpdateBatchMetadataResponseAmino): _132.MsgUpdateBatchMetadataResponse; + toAmino(_: _132.MsgUpdateBatchMetadataResponse): _132.MsgUpdateBatchMetadataResponseAmino; + fromAminoMsg(object: _132.MsgUpdateBatchMetadataResponseAminoMsg): _132.MsgUpdateBatchMetadataResponse; + fromProtoMsg(message: _132.MsgUpdateBatchMetadataResponseProtoMsg): _132.MsgUpdateBatchMetadataResponse; + toProto(message: _132.MsgUpdateBatchMetadataResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateBatchMetadataResponse): _132.MsgUpdateBatchMetadataResponseProtoMsg; }; MsgBridgeResponse: { - encode(_: _131.MsgBridgeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgBridgeResponse; - fromJSON(_: any): _131.MsgBridgeResponse; - toJSON(_: _131.MsgBridgeResponse): unknown; - fromPartial(_: Partial<_131.MsgBridgeResponse>): _131.MsgBridgeResponse; - fromAmino(_: _131.MsgBridgeResponseAmino): _131.MsgBridgeResponse; - toAmino(_: _131.MsgBridgeResponse): _131.MsgBridgeResponseAmino; - fromAminoMsg(object: _131.MsgBridgeResponseAminoMsg): _131.MsgBridgeResponse; - fromProtoMsg(message: _131.MsgBridgeResponseProtoMsg): _131.MsgBridgeResponse; - toProto(message: _131.MsgBridgeResponse): Uint8Array; - toProtoMsg(message: _131.MsgBridgeResponse): _131.MsgBridgeResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgBridgeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgBridgeResponse; + fromJSON(_: any): _132.MsgBridgeResponse; + toJSON(_: _132.MsgBridgeResponse): unknown; + fromPartial(_: Partial<_132.MsgBridgeResponse>): _132.MsgBridgeResponse; + fromAmino(_: _132.MsgBridgeResponseAmino): _132.MsgBridgeResponse; + toAmino(_: _132.MsgBridgeResponse): _132.MsgBridgeResponseAmino; + fromAminoMsg(object: _132.MsgBridgeResponseAminoMsg): _132.MsgBridgeResponse; + fromProtoMsg(message: _132.MsgBridgeResponseProtoMsg): _132.MsgBridgeResponse; + toProto(message: _132.MsgBridgeResponse): Uint8Array; + toProtoMsg(message: _132.MsgBridgeResponse): _132.MsgBridgeResponseProtoMsg; }; MsgBridgeReceive: { - encode(message: _131.MsgBridgeReceive, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgBridgeReceive; - fromJSON(object: any): _131.MsgBridgeReceive; - toJSON(message: _131.MsgBridgeReceive): unknown; - fromPartial(object: Partial<_131.MsgBridgeReceive>): _131.MsgBridgeReceive; - fromAmino(object: _131.MsgBridgeReceiveAmino): _131.MsgBridgeReceive; - toAmino(message: _131.MsgBridgeReceive): _131.MsgBridgeReceiveAmino; - fromAminoMsg(object: _131.MsgBridgeReceiveAminoMsg): _131.MsgBridgeReceive; - toAminoMsg(message: _131.MsgBridgeReceive): _131.MsgBridgeReceiveAminoMsg; - fromProtoMsg(message: _131.MsgBridgeReceiveProtoMsg): _131.MsgBridgeReceive; - toProto(message: _131.MsgBridgeReceive): Uint8Array; - toProtoMsg(message: _131.MsgBridgeReceive): _131.MsgBridgeReceiveProtoMsg; + typeUrl: string; + encode(message: _132.MsgBridgeReceive, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgBridgeReceive; + fromJSON(object: any): _132.MsgBridgeReceive; + toJSON(message: _132.MsgBridgeReceive): unknown; + fromPartial(object: Partial<_132.MsgBridgeReceive>): _132.MsgBridgeReceive; + fromAmino(object: _132.MsgBridgeReceiveAmino): _132.MsgBridgeReceive; + toAmino(message: _132.MsgBridgeReceive): _132.MsgBridgeReceiveAmino; + fromAminoMsg(object: _132.MsgBridgeReceiveAminoMsg): _132.MsgBridgeReceive; + toAminoMsg(message: _132.MsgBridgeReceive): _132.MsgBridgeReceiveAminoMsg; + fromProtoMsg(message: _132.MsgBridgeReceiveProtoMsg): _132.MsgBridgeReceive; + toProto(message: _132.MsgBridgeReceive): Uint8Array; + toProtoMsg(message: _132.MsgBridgeReceive): _132.MsgBridgeReceiveProtoMsg; }; MsgBridgeReceive_Batch: { - encode(message: _131.MsgBridgeReceive_Batch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgBridgeReceive_Batch; - fromJSON(object: any): _131.MsgBridgeReceive_Batch; - toJSON(message: _131.MsgBridgeReceive_Batch): unknown; - fromPartial(object: Partial<_131.MsgBridgeReceive_Batch>): _131.MsgBridgeReceive_Batch; - fromAmino(object: _131.MsgBridgeReceive_BatchAmino): _131.MsgBridgeReceive_Batch; - toAmino(message: _131.MsgBridgeReceive_Batch): _131.MsgBridgeReceive_BatchAmino; - fromAminoMsg(object: _131.MsgBridgeReceive_BatchAminoMsg): _131.MsgBridgeReceive_Batch; - fromProtoMsg(message: _131.MsgBridgeReceive_BatchProtoMsg): _131.MsgBridgeReceive_Batch; - toProto(message: _131.MsgBridgeReceive_Batch): Uint8Array; - toProtoMsg(message: _131.MsgBridgeReceive_Batch): _131.MsgBridgeReceive_BatchProtoMsg; + typeUrl: string; + encode(message: _132.MsgBridgeReceive_Batch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgBridgeReceive_Batch; + fromJSON(object: any): _132.MsgBridgeReceive_Batch; + toJSON(message: _132.MsgBridgeReceive_Batch): unknown; + fromPartial(object: Partial<_132.MsgBridgeReceive_Batch>): _132.MsgBridgeReceive_Batch; + fromAmino(object: _132.MsgBridgeReceive_BatchAmino): _132.MsgBridgeReceive_Batch; + toAmino(message: _132.MsgBridgeReceive_Batch): _132.MsgBridgeReceive_BatchAmino; + fromAminoMsg(object: _132.MsgBridgeReceive_BatchAminoMsg): _132.MsgBridgeReceive_Batch; + fromProtoMsg(message: _132.MsgBridgeReceive_BatchProtoMsg): _132.MsgBridgeReceive_Batch; + toProto(message: _132.MsgBridgeReceive_Batch): Uint8Array; + toProtoMsg(message: _132.MsgBridgeReceive_Batch): _132.MsgBridgeReceive_BatchProtoMsg; }; MsgBridgeReceive_Project: { - encode(message: _131.MsgBridgeReceive_Project, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgBridgeReceive_Project; - fromJSON(object: any): _131.MsgBridgeReceive_Project; - toJSON(message: _131.MsgBridgeReceive_Project): unknown; - fromPartial(object: Partial<_131.MsgBridgeReceive_Project>): _131.MsgBridgeReceive_Project; - fromAmino(object: _131.MsgBridgeReceive_ProjectAmino): _131.MsgBridgeReceive_Project; - toAmino(message: _131.MsgBridgeReceive_Project): _131.MsgBridgeReceive_ProjectAmino; - fromAminoMsg(object: _131.MsgBridgeReceive_ProjectAminoMsg): _131.MsgBridgeReceive_Project; - fromProtoMsg(message: _131.MsgBridgeReceive_ProjectProtoMsg): _131.MsgBridgeReceive_Project; - toProto(message: _131.MsgBridgeReceive_Project): Uint8Array; - toProtoMsg(message: _131.MsgBridgeReceive_Project): _131.MsgBridgeReceive_ProjectProtoMsg; + typeUrl: string; + encode(message: _132.MsgBridgeReceive_Project, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgBridgeReceive_Project; + fromJSON(object: any): _132.MsgBridgeReceive_Project; + toJSON(message: _132.MsgBridgeReceive_Project): unknown; + fromPartial(object: Partial<_132.MsgBridgeReceive_Project>): _132.MsgBridgeReceive_Project; + fromAmino(object: _132.MsgBridgeReceive_ProjectAmino): _132.MsgBridgeReceive_Project; + toAmino(message: _132.MsgBridgeReceive_Project): _132.MsgBridgeReceive_ProjectAmino; + fromAminoMsg(object: _132.MsgBridgeReceive_ProjectAminoMsg): _132.MsgBridgeReceive_Project; + fromProtoMsg(message: _132.MsgBridgeReceive_ProjectProtoMsg): _132.MsgBridgeReceive_Project; + toProto(message: _132.MsgBridgeReceive_Project): Uint8Array; + toProtoMsg(message: _132.MsgBridgeReceive_Project): _132.MsgBridgeReceive_ProjectProtoMsg; }; MsgBridgeReceiveResponse: { - encode(message: _131.MsgBridgeReceiveResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgBridgeReceiveResponse; - fromJSON(object: any): _131.MsgBridgeReceiveResponse; - toJSON(message: _131.MsgBridgeReceiveResponse): unknown; - fromPartial(object: Partial<_131.MsgBridgeReceiveResponse>): _131.MsgBridgeReceiveResponse; - fromAmino(object: _131.MsgBridgeReceiveResponseAmino): _131.MsgBridgeReceiveResponse; - toAmino(message: _131.MsgBridgeReceiveResponse): _131.MsgBridgeReceiveResponseAmino; - fromAminoMsg(object: _131.MsgBridgeReceiveResponseAminoMsg): _131.MsgBridgeReceiveResponse; - fromProtoMsg(message: _131.MsgBridgeReceiveResponseProtoMsg): _131.MsgBridgeReceiveResponse; - toProto(message: _131.MsgBridgeReceiveResponse): Uint8Array; - toProtoMsg(message: _131.MsgBridgeReceiveResponse): _131.MsgBridgeReceiveResponseProtoMsg; + typeUrl: string; + encode(message: _132.MsgBridgeReceiveResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgBridgeReceiveResponse; + fromJSON(object: any): _132.MsgBridgeReceiveResponse; + toJSON(message: _132.MsgBridgeReceiveResponse): unknown; + fromPartial(object: Partial<_132.MsgBridgeReceiveResponse>): _132.MsgBridgeReceiveResponse; + fromAmino(object: _132.MsgBridgeReceiveResponseAmino): _132.MsgBridgeReceiveResponse; + toAmino(message: _132.MsgBridgeReceiveResponse): _132.MsgBridgeReceiveResponseAmino; + fromAminoMsg(object: _132.MsgBridgeReceiveResponseAminoMsg): _132.MsgBridgeReceiveResponse; + fromProtoMsg(message: _132.MsgBridgeReceiveResponseProtoMsg): _132.MsgBridgeReceiveResponse; + toProto(message: _132.MsgBridgeReceiveResponse): Uint8Array; + toProtoMsg(message: _132.MsgBridgeReceiveResponse): _132.MsgBridgeReceiveResponseProtoMsg; }; MsgAddClassCreator: { - encode(message: _131.MsgAddClassCreator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgAddClassCreator; - fromJSON(object: any): _131.MsgAddClassCreator; - toJSON(message: _131.MsgAddClassCreator): unknown; - fromPartial(object: Partial<_131.MsgAddClassCreator>): _131.MsgAddClassCreator; - fromAmino(object: _131.MsgAddClassCreatorAmino): _131.MsgAddClassCreator; - toAmino(message: _131.MsgAddClassCreator): _131.MsgAddClassCreatorAmino; - fromAminoMsg(object: _131.MsgAddClassCreatorAminoMsg): _131.MsgAddClassCreator; - toAminoMsg(message: _131.MsgAddClassCreator): _131.MsgAddClassCreatorAminoMsg; - fromProtoMsg(message: _131.MsgAddClassCreatorProtoMsg): _131.MsgAddClassCreator; - toProto(message: _131.MsgAddClassCreator): Uint8Array; - toProtoMsg(message: _131.MsgAddClassCreator): _131.MsgAddClassCreatorProtoMsg; + typeUrl: string; + encode(message: _132.MsgAddClassCreator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgAddClassCreator; + fromJSON(object: any): _132.MsgAddClassCreator; + toJSON(message: _132.MsgAddClassCreator): unknown; + fromPartial(object: Partial<_132.MsgAddClassCreator>): _132.MsgAddClassCreator; + fromAmino(object: _132.MsgAddClassCreatorAmino): _132.MsgAddClassCreator; + toAmino(message: _132.MsgAddClassCreator): _132.MsgAddClassCreatorAmino; + fromAminoMsg(object: _132.MsgAddClassCreatorAminoMsg): _132.MsgAddClassCreator; + toAminoMsg(message: _132.MsgAddClassCreator): _132.MsgAddClassCreatorAminoMsg; + fromProtoMsg(message: _132.MsgAddClassCreatorProtoMsg): _132.MsgAddClassCreator; + toProto(message: _132.MsgAddClassCreator): Uint8Array; + toProtoMsg(message: _132.MsgAddClassCreator): _132.MsgAddClassCreatorProtoMsg; }; MsgAddClassCreatorResponse: { - encode(_: _131.MsgAddClassCreatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgAddClassCreatorResponse; - fromJSON(_: any): _131.MsgAddClassCreatorResponse; - toJSON(_: _131.MsgAddClassCreatorResponse): unknown; - fromPartial(_: Partial<_131.MsgAddClassCreatorResponse>): _131.MsgAddClassCreatorResponse; - fromAmino(_: _131.MsgAddClassCreatorResponseAmino): _131.MsgAddClassCreatorResponse; - toAmino(_: _131.MsgAddClassCreatorResponse): _131.MsgAddClassCreatorResponseAmino; - fromAminoMsg(object: _131.MsgAddClassCreatorResponseAminoMsg): _131.MsgAddClassCreatorResponse; - fromProtoMsg(message: _131.MsgAddClassCreatorResponseProtoMsg): _131.MsgAddClassCreatorResponse; - toProto(message: _131.MsgAddClassCreatorResponse): Uint8Array; - toProtoMsg(message: _131.MsgAddClassCreatorResponse): _131.MsgAddClassCreatorResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgAddClassCreatorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgAddClassCreatorResponse; + fromJSON(_: any): _132.MsgAddClassCreatorResponse; + toJSON(_: _132.MsgAddClassCreatorResponse): unknown; + fromPartial(_: Partial<_132.MsgAddClassCreatorResponse>): _132.MsgAddClassCreatorResponse; + fromAmino(_: _132.MsgAddClassCreatorResponseAmino): _132.MsgAddClassCreatorResponse; + toAmino(_: _132.MsgAddClassCreatorResponse): _132.MsgAddClassCreatorResponseAmino; + fromAminoMsg(object: _132.MsgAddClassCreatorResponseAminoMsg): _132.MsgAddClassCreatorResponse; + fromProtoMsg(message: _132.MsgAddClassCreatorResponseProtoMsg): _132.MsgAddClassCreatorResponse; + toProto(message: _132.MsgAddClassCreatorResponse): Uint8Array; + toProtoMsg(message: _132.MsgAddClassCreatorResponse): _132.MsgAddClassCreatorResponseProtoMsg; }; MsgSetClassCreatorAllowlist: { - encode(message: _131.MsgSetClassCreatorAllowlist, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSetClassCreatorAllowlist; - fromJSON(object: any): _131.MsgSetClassCreatorAllowlist; - toJSON(message: _131.MsgSetClassCreatorAllowlist): unknown; - fromPartial(object: Partial<_131.MsgSetClassCreatorAllowlist>): _131.MsgSetClassCreatorAllowlist; - fromAmino(object: _131.MsgSetClassCreatorAllowlistAmino): _131.MsgSetClassCreatorAllowlist; - toAmino(message: _131.MsgSetClassCreatorAllowlist): _131.MsgSetClassCreatorAllowlistAmino; - fromAminoMsg(object: _131.MsgSetClassCreatorAllowlistAminoMsg): _131.MsgSetClassCreatorAllowlist; - toAminoMsg(message: _131.MsgSetClassCreatorAllowlist): _131.MsgSetClassCreatorAllowlistAminoMsg; - fromProtoMsg(message: _131.MsgSetClassCreatorAllowlistProtoMsg): _131.MsgSetClassCreatorAllowlist; - toProto(message: _131.MsgSetClassCreatorAllowlist): Uint8Array; - toProtoMsg(message: _131.MsgSetClassCreatorAllowlist): _131.MsgSetClassCreatorAllowlistProtoMsg; + typeUrl: string; + encode(message: _132.MsgSetClassCreatorAllowlist, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSetClassCreatorAllowlist; + fromJSON(object: any): _132.MsgSetClassCreatorAllowlist; + toJSON(message: _132.MsgSetClassCreatorAllowlist): unknown; + fromPartial(object: Partial<_132.MsgSetClassCreatorAllowlist>): _132.MsgSetClassCreatorAllowlist; + fromAmino(object: _132.MsgSetClassCreatorAllowlistAmino): _132.MsgSetClassCreatorAllowlist; + toAmino(message: _132.MsgSetClassCreatorAllowlist): _132.MsgSetClassCreatorAllowlistAmino; + fromAminoMsg(object: _132.MsgSetClassCreatorAllowlistAminoMsg): _132.MsgSetClassCreatorAllowlist; + toAminoMsg(message: _132.MsgSetClassCreatorAllowlist): _132.MsgSetClassCreatorAllowlistAminoMsg; + fromProtoMsg(message: _132.MsgSetClassCreatorAllowlistProtoMsg): _132.MsgSetClassCreatorAllowlist; + toProto(message: _132.MsgSetClassCreatorAllowlist): Uint8Array; + toProtoMsg(message: _132.MsgSetClassCreatorAllowlist): _132.MsgSetClassCreatorAllowlistProtoMsg; }; MsgSetClassCreatorAllowlistResponse: { - encode(_: _131.MsgSetClassCreatorAllowlistResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgSetClassCreatorAllowlistResponse; - fromJSON(_: any): _131.MsgSetClassCreatorAllowlistResponse; - toJSON(_: _131.MsgSetClassCreatorAllowlistResponse): unknown; - fromPartial(_: Partial<_131.MsgSetClassCreatorAllowlistResponse>): _131.MsgSetClassCreatorAllowlistResponse; - fromAmino(_: _131.MsgSetClassCreatorAllowlistResponseAmino): _131.MsgSetClassCreatorAllowlistResponse; - toAmino(_: _131.MsgSetClassCreatorAllowlistResponse): _131.MsgSetClassCreatorAllowlistResponseAmino; - fromAminoMsg(object: _131.MsgSetClassCreatorAllowlistResponseAminoMsg): _131.MsgSetClassCreatorAllowlistResponse; - fromProtoMsg(message: _131.MsgSetClassCreatorAllowlistResponseProtoMsg): _131.MsgSetClassCreatorAllowlistResponse; - toProto(message: _131.MsgSetClassCreatorAllowlistResponse): Uint8Array; - toProtoMsg(message: _131.MsgSetClassCreatorAllowlistResponse): _131.MsgSetClassCreatorAllowlistResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgSetClassCreatorAllowlistResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgSetClassCreatorAllowlistResponse; + fromJSON(_: any): _132.MsgSetClassCreatorAllowlistResponse; + toJSON(_: _132.MsgSetClassCreatorAllowlistResponse): unknown; + fromPartial(_: Partial<_132.MsgSetClassCreatorAllowlistResponse>): _132.MsgSetClassCreatorAllowlistResponse; + fromAmino(_: _132.MsgSetClassCreatorAllowlistResponseAmino): _132.MsgSetClassCreatorAllowlistResponse; + toAmino(_: _132.MsgSetClassCreatorAllowlistResponse): _132.MsgSetClassCreatorAllowlistResponseAmino; + fromAminoMsg(object: _132.MsgSetClassCreatorAllowlistResponseAminoMsg): _132.MsgSetClassCreatorAllowlistResponse; + fromProtoMsg(message: _132.MsgSetClassCreatorAllowlistResponseProtoMsg): _132.MsgSetClassCreatorAllowlistResponse; + toProto(message: _132.MsgSetClassCreatorAllowlistResponse): Uint8Array; + toProtoMsg(message: _132.MsgSetClassCreatorAllowlistResponse): _132.MsgSetClassCreatorAllowlistResponseProtoMsg; }; MsgRemoveClassCreator: { - encode(message: _131.MsgRemoveClassCreator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgRemoveClassCreator; - fromJSON(object: any): _131.MsgRemoveClassCreator; - toJSON(message: _131.MsgRemoveClassCreator): unknown; - fromPartial(object: Partial<_131.MsgRemoveClassCreator>): _131.MsgRemoveClassCreator; - fromAmino(object: _131.MsgRemoveClassCreatorAmino): _131.MsgRemoveClassCreator; - toAmino(message: _131.MsgRemoveClassCreator): _131.MsgRemoveClassCreatorAmino; - fromAminoMsg(object: _131.MsgRemoveClassCreatorAminoMsg): _131.MsgRemoveClassCreator; - toAminoMsg(message: _131.MsgRemoveClassCreator): _131.MsgRemoveClassCreatorAminoMsg; - fromProtoMsg(message: _131.MsgRemoveClassCreatorProtoMsg): _131.MsgRemoveClassCreator; - toProto(message: _131.MsgRemoveClassCreator): Uint8Array; - toProtoMsg(message: _131.MsgRemoveClassCreator): _131.MsgRemoveClassCreatorProtoMsg; + typeUrl: string; + encode(message: _132.MsgRemoveClassCreator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgRemoveClassCreator; + fromJSON(object: any): _132.MsgRemoveClassCreator; + toJSON(message: _132.MsgRemoveClassCreator): unknown; + fromPartial(object: Partial<_132.MsgRemoveClassCreator>): _132.MsgRemoveClassCreator; + fromAmino(object: _132.MsgRemoveClassCreatorAmino): _132.MsgRemoveClassCreator; + toAmino(message: _132.MsgRemoveClassCreator): _132.MsgRemoveClassCreatorAmino; + fromAminoMsg(object: _132.MsgRemoveClassCreatorAminoMsg): _132.MsgRemoveClassCreator; + toAminoMsg(message: _132.MsgRemoveClassCreator): _132.MsgRemoveClassCreatorAminoMsg; + fromProtoMsg(message: _132.MsgRemoveClassCreatorProtoMsg): _132.MsgRemoveClassCreator; + toProto(message: _132.MsgRemoveClassCreator): Uint8Array; + toProtoMsg(message: _132.MsgRemoveClassCreator): _132.MsgRemoveClassCreatorProtoMsg; }; MsgRemoveClassCreatorResponse: { - encode(_: _131.MsgRemoveClassCreatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgRemoveClassCreatorResponse; - fromJSON(_: any): _131.MsgRemoveClassCreatorResponse; - toJSON(_: _131.MsgRemoveClassCreatorResponse): unknown; - fromPartial(_: Partial<_131.MsgRemoveClassCreatorResponse>): _131.MsgRemoveClassCreatorResponse; - fromAmino(_: _131.MsgRemoveClassCreatorResponseAmino): _131.MsgRemoveClassCreatorResponse; - toAmino(_: _131.MsgRemoveClassCreatorResponse): _131.MsgRemoveClassCreatorResponseAmino; - fromAminoMsg(object: _131.MsgRemoveClassCreatorResponseAminoMsg): _131.MsgRemoveClassCreatorResponse; - fromProtoMsg(message: _131.MsgRemoveClassCreatorResponseProtoMsg): _131.MsgRemoveClassCreatorResponse; - toProto(message: _131.MsgRemoveClassCreatorResponse): Uint8Array; - toProtoMsg(message: _131.MsgRemoveClassCreatorResponse): _131.MsgRemoveClassCreatorResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgRemoveClassCreatorResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgRemoveClassCreatorResponse; + fromJSON(_: any): _132.MsgRemoveClassCreatorResponse; + toJSON(_: _132.MsgRemoveClassCreatorResponse): unknown; + fromPartial(_: Partial<_132.MsgRemoveClassCreatorResponse>): _132.MsgRemoveClassCreatorResponse; + fromAmino(_: _132.MsgRemoveClassCreatorResponseAmino): _132.MsgRemoveClassCreatorResponse; + toAmino(_: _132.MsgRemoveClassCreatorResponse): _132.MsgRemoveClassCreatorResponseAmino; + fromAminoMsg(object: _132.MsgRemoveClassCreatorResponseAminoMsg): _132.MsgRemoveClassCreatorResponse; + fromProtoMsg(message: _132.MsgRemoveClassCreatorResponseProtoMsg): _132.MsgRemoveClassCreatorResponse; + toProto(message: _132.MsgRemoveClassCreatorResponse): Uint8Array; + toProtoMsg(message: _132.MsgRemoveClassCreatorResponse): _132.MsgRemoveClassCreatorResponseProtoMsg; }; MsgUpdateClassFee: { - encode(message: _131.MsgUpdateClassFee, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassFee; - fromJSON(object: any): _131.MsgUpdateClassFee; - toJSON(message: _131.MsgUpdateClassFee): unknown; - fromPartial(object: Partial<_131.MsgUpdateClassFee>): _131.MsgUpdateClassFee; - fromAmino(object: _131.MsgUpdateClassFeeAmino): _131.MsgUpdateClassFee; - toAmino(message: _131.MsgUpdateClassFee): _131.MsgUpdateClassFeeAmino; - fromAminoMsg(object: _131.MsgUpdateClassFeeAminoMsg): _131.MsgUpdateClassFee; - toAminoMsg(message: _131.MsgUpdateClassFee): _131.MsgUpdateClassFeeAminoMsg; - fromProtoMsg(message: _131.MsgUpdateClassFeeProtoMsg): _131.MsgUpdateClassFee; - toProto(message: _131.MsgUpdateClassFee): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassFee): _131.MsgUpdateClassFeeProtoMsg; + typeUrl: string; + encode(message: _132.MsgUpdateClassFee, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassFee; + fromJSON(object: any): _132.MsgUpdateClassFee; + toJSON(message: _132.MsgUpdateClassFee): unknown; + fromPartial(object: Partial<_132.MsgUpdateClassFee>): _132.MsgUpdateClassFee; + fromAmino(object: _132.MsgUpdateClassFeeAmino): _132.MsgUpdateClassFee; + toAmino(message: _132.MsgUpdateClassFee): _132.MsgUpdateClassFeeAmino; + fromAminoMsg(object: _132.MsgUpdateClassFeeAminoMsg): _132.MsgUpdateClassFee; + toAminoMsg(message: _132.MsgUpdateClassFee): _132.MsgUpdateClassFeeAminoMsg; + fromProtoMsg(message: _132.MsgUpdateClassFeeProtoMsg): _132.MsgUpdateClassFee; + toProto(message: _132.MsgUpdateClassFee): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassFee): _132.MsgUpdateClassFeeProtoMsg; }; MsgUpdateClassFeeResponse: { - encode(_: _131.MsgUpdateClassFeeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgUpdateClassFeeResponse; - fromJSON(_: any): _131.MsgUpdateClassFeeResponse; - toJSON(_: _131.MsgUpdateClassFeeResponse): unknown; - fromPartial(_: Partial<_131.MsgUpdateClassFeeResponse>): _131.MsgUpdateClassFeeResponse; - fromAmino(_: _131.MsgUpdateClassFeeResponseAmino): _131.MsgUpdateClassFeeResponse; - toAmino(_: _131.MsgUpdateClassFeeResponse): _131.MsgUpdateClassFeeResponseAmino; - fromAminoMsg(object: _131.MsgUpdateClassFeeResponseAminoMsg): _131.MsgUpdateClassFeeResponse; - fromProtoMsg(message: _131.MsgUpdateClassFeeResponseProtoMsg): _131.MsgUpdateClassFeeResponse; - toProto(message: _131.MsgUpdateClassFeeResponse): Uint8Array; - toProtoMsg(message: _131.MsgUpdateClassFeeResponse): _131.MsgUpdateClassFeeResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgUpdateClassFeeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgUpdateClassFeeResponse; + fromJSON(_: any): _132.MsgUpdateClassFeeResponse; + toJSON(_: _132.MsgUpdateClassFeeResponse): unknown; + fromPartial(_: Partial<_132.MsgUpdateClassFeeResponse>): _132.MsgUpdateClassFeeResponse; + fromAmino(_: _132.MsgUpdateClassFeeResponseAmino): _132.MsgUpdateClassFeeResponse; + toAmino(_: _132.MsgUpdateClassFeeResponse): _132.MsgUpdateClassFeeResponseAmino; + fromAminoMsg(object: _132.MsgUpdateClassFeeResponseAminoMsg): _132.MsgUpdateClassFeeResponse; + fromProtoMsg(message: _132.MsgUpdateClassFeeResponseProtoMsg): _132.MsgUpdateClassFeeResponse; + toProto(message: _132.MsgUpdateClassFeeResponse): Uint8Array; + toProtoMsg(message: _132.MsgUpdateClassFeeResponse): _132.MsgUpdateClassFeeResponseProtoMsg; }; MsgAddAllowedBridgeChain: { - encode(message: _131.MsgAddAllowedBridgeChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgAddAllowedBridgeChain; - fromJSON(object: any): _131.MsgAddAllowedBridgeChain; - toJSON(message: _131.MsgAddAllowedBridgeChain): unknown; - fromPartial(object: Partial<_131.MsgAddAllowedBridgeChain>): _131.MsgAddAllowedBridgeChain; - fromAmino(object: _131.MsgAddAllowedBridgeChainAmino): _131.MsgAddAllowedBridgeChain; - toAmino(message: _131.MsgAddAllowedBridgeChain): _131.MsgAddAllowedBridgeChainAmino; - fromAminoMsg(object: _131.MsgAddAllowedBridgeChainAminoMsg): _131.MsgAddAllowedBridgeChain; - toAminoMsg(message: _131.MsgAddAllowedBridgeChain): _131.MsgAddAllowedBridgeChainAminoMsg; - fromProtoMsg(message: _131.MsgAddAllowedBridgeChainProtoMsg): _131.MsgAddAllowedBridgeChain; - toProto(message: _131.MsgAddAllowedBridgeChain): Uint8Array; - toProtoMsg(message: _131.MsgAddAllowedBridgeChain): _131.MsgAddAllowedBridgeChainProtoMsg; + typeUrl: string; + encode(message: _132.MsgAddAllowedBridgeChain, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgAddAllowedBridgeChain; + fromJSON(object: any): _132.MsgAddAllowedBridgeChain; + toJSON(message: _132.MsgAddAllowedBridgeChain): unknown; + fromPartial(object: Partial<_132.MsgAddAllowedBridgeChain>): _132.MsgAddAllowedBridgeChain; + fromAmino(object: _132.MsgAddAllowedBridgeChainAmino): _132.MsgAddAllowedBridgeChain; + toAmino(message: _132.MsgAddAllowedBridgeChain): _132.MsgAddAllowedBridgeChainAmino; + fromAminoMsg(object: _132.MsgAddAllowedBridgeChainAminoMsg): _132.MsgAddAllowedBridgeChain; + toAminoMsg(message: _132.MsgAddAllowedBridgeChain): _132.MsgAddAllowedBridgeChainAminoMsg; + fromProtoMsg(message: _132.MsgAddAllowedBridgeChainProtoMsg): _132.MsgAddAllowedBridgeChain; + toProto(message: _132.MsgAddAllowedBridgeChain): Uint8Array; + toProtoMsg(message: _132.MsgAddAllowedBridgeChain): _132.MsgAddAllowedBridgeChainProtoMsg; }; MsgAddAllowedBridgeChainResponse: { - encode(_: _131.MsgAddAllowedBridgeChainResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgAddAllowedBridgeChainResponse; - fromJSON(_: any): _131.MsgAddAllowedBridgeChainResponse; - toJSON(_: _131.MsgAddAllowedBridgeChainResponse): unknown; - fromPartial(_: Partial<_131.MsgAddAllowedBridgeChainResponse>): _131.MsgAddAllowedBridgeChainResponse; - fromAmino(_: _131.MsgAddAllowedBridgeChainResponseAmino): _131.MsgAddAllowedBridgeChainResponse; - toAmino(_: _131.MsgAddAllowedBridgeChainResponse): _131.MsgAddAllowedBridgeChainResponseAmino; - fromAminoMsg(object: _131.MsgAddAllowedBridgeChainResponseAminoMsg): _131.MsgAddAllowedBridgeChainResponse; - fromProtoMsg(message: _131.MsgAddAllowedBridgeChainResponseProtoMsg): _131.MsgAddAllowedBridgeChainResponse; - toProto(message: _131.MsgAddAllowedBridgeChainResponse): Uint8Array; - toProtoMsg(message: _131.MsgAddAllowedBridgeChainResponse): _131.MsgAddAllowedBridgeChainResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgAddAllowedBridgeChainResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgAddAllowedBridgeChainResponse; + fromJSON(_: any): _132.MsgAddAllowedBridgeChainResponse; + toJSON(_: _132.MsgAddAllowedBridgeChainResponse): unknown; + fromPartial(_: Partial<_132.MsgAddAllowedBridgeChainResponse>): _132.MsgAddAllowedBridgeChainResponse; + fromAmino(_: _132.MsgAddAllowedBridgeChainResponseAmino): _132.MsgAddAllowedBridgeChainResponse; + toAmino(_: _132.MsgAddAllowedBridgeChainResponse): _132.MsgAddAllowedBridgeChainResponseAmino; + fromAminoMsg(object: _132.MsgAddAllowedBridgeChainResponseAminoMsg): _132.MsgAddAllowedBridgeChainResponse; + fromProtoMsg(message: _132.MsgAddAllowedBridgeChainResponseProtoMsg): _132.MsgAddAllowedBridgeChainResponse; + toProto(message: _132.MsgAddAllowedBridgeChainResponse): Uint8Array; + toProtoMsg(message: _132.MsgAddAllowedBridgeChainResponse): _132.MsgAddAllowedBridgeChainResponseProtoMsg; }; MsgRemoveAllowedBridgeChain: { - encode(message: _131.MsgRemoveAllowedBridgeChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgRemoveAllowedBridgeChain; - fromJSON(object: any): _131.MsgRemoveAllowedBridgeChain; - toJSON(message: _131.MsgRemoveAllowedBridgeChain): unknown; - fromPartial(object: Partial<_131.MsgRemoveAllowedBridgeChain>): _131.MsgRemoveAllowedBridgeChain; - fromAmino(object: _131.MsgRemoveAllowedBridgeChainAmino): _131.MsgRemoveAllowedBridgeChain; - toAmino(message: _131.MsgRemoveAllowedBridgeChain): _131.MsgRemoveAllowedBridgeChainAmino; - fromAminoMsg(object: _131.MsgRemoveAllowedBridgeChainAminoMsg): _131.MsgRemoveAllowedBridgeChain; - toAminoMsg(message: _131.MsgRemoveAllowedBridgeChain): _131.MsgRemoveAllowedBridgeChainAminoMsg; - fromProtoMsg(message: _131.MsgRemoveAllowedBridgeChainProtoMsg): _131.MsgRemoveAllowedBridgeChain; - toProto(message: _131.MsgRemoveAllowedBridgeChain): Uint8Array; - toProtoMsg(message: _131.MsgRemoveAllowedBridgeChain): _131.MsgRemoveAllowedBridgeChainProtoMsg; + typeUrl: string; + encode(message: _132.MsgRemoveAllowedBridgeChain, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgRemoveAllowedBridgeChain; + fromJSON(object: any): _132.MsgRemoveAllowedBridgeChain; + toJSON(message: _132.MsgRemoveAllowedBridgeChain): unknown; + fromPartial(object: Partial<_132.MsgRemoveAllowedBridgeChain>): _132.MsgRemoveAllowedBridgeChain; + fromAmino(object: _132.MsgRemoveAllowedBridgeChainAmino): _132.MsgRemoveAllowedBridgeChain; + toAmino(message: _132.MsgRemoveAllowedBridgeChain): _132.MsgRemoveAllowedBridgeChainAmino; + fromAminoMsg(object: _132.MsgRemoveAllowedBridgeChainAminoMsg): _132.MsgRemoveAllowedBridgeChain; + toAminoMsg(message: _132.MsgRemoveAllowedBridgeChain): _132.MsgRemoveAllowedBridgeChainAminoMsg; + fromProtoMsg(message: _132.MsgRemoveAllowedBridgeChainProtoMsg): _132.MsgRemoveAllowedBridgeChain; + toProto(message: _132.MsgRemoveAllowedBridgeChain): Uint8Array; + toProtoMsg(message: _132.MsgRemoveAllowedBridgeChain): _132.MsgRemoveAllowedBridgeChainProtoMsg; }; MsgRemoveAllowedBridgeChainResponse: { - encode(_: _131.MsgRemoveAllowedBridgeChainResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _131.MsgRemoveAllowedBridgeChainResponse; - fromJSON(_: any): _131.MsgRemoveAllowedBridgeChainResponse; - toJSON(_: _131.MsgRemoveAllowedBridgeChainResponse): unknown; - fromPartial(_: Partial<_131.MsgRemoveAllowedBridgeChainResponse>): _131.MsgRemoveAllowedBridgeChainResponse; - fromAmino(_: _131.MsgRemoveAllowedBridgeChainResponseAmino): _131.MsgRemoveAllowedBridgeChainResponse; - toAmino(_: _131.MsgRemoveAllowedBridgeChainResponse): _131.MsgRemoveAllowedBridgeChainResponseAmino; - fromAminoMsg(object: _131.MsgRemoveAllowedBridgeChainResponseAminoMsg): _131.MsgRemoveAllowedBridgeChainResponse; - fromProtoMsg(message: _131.MsgRemoveAllowedBridgeChainResponseProtoMsg): _131.MsgRemoveAllowedBridgeChainResponse; - toProto(message: _131.MsgRemoveAllowedBridgeChainResponse): Uint8Array; - toProtoMsg(message: _131.MsgRemoveAllowedBridgeChainResponse): _131.MsgRemoveAllowedBridgeChainResponseProtoMsg; + typeUrl: string; + encode(_: _132.MsgRemoveAllowedBridgeChainResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _132.MsgRemoveAllowedBridgeChainResponse; + fromJSON(_: any): _132.MsgRemoveAllowedBridgeChainResponse; + toJSON(_: _132.MsgRemoveAllowedBridgeChainResponse): unknown; + fromPartial(_: Partial<_132.MsgRemoveAllowedBridgeChainResponse>): _132.MsgRemoveAllowedBridgeChainResponse; + fromAmino(_: _132.MsgRemoveAllowedBridgeChainResponseAmino): _132.MsgRemoveAllowedBridgeChainResponse; + toAmino(_: _132.MsgRemoveAllowedBridgeChainResponse): _132.MsgRemoveAllowedBridgeChainResponseAmino; + fromAminoMsg(object: _132.MsgRemoveAllowedBridgeChainResponseAminoMsg): _132.MsgRemoveAllowedBridgeChainResponse; + fromProtoMsg(message: _132.MsgRemoveAllowedBridgeChainResponseProtoMsg): _132.MsgRemoveAllowedBridgeChainResponse; + toProto(message: _132.MsgRemoveAllowedBridgeChainResponse): Uint8Array; + toProtoMsg(message: _132.MsgRemoveAllowedBridgeChainResponse): _132.MsgRemoveAllowedBridgeChainResponseProtoMsg; }; CreditType: { - encode(message: _130.CreditType, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.CreditType; - fromJSON(object: any): _130.CreditType; - toJSON(message: _130.CreditType): unknown; - fromPartial(object: Partial<_130.CreditType>): _130.CreditType; - fromAmino(object: _130.CreditTypeAmino): _130.CreditType; - toAmino(message: _130.CreditType): _130.CreditTypeAmino; - fromAminoMsg(object: _130.CreditTypeAminoMsg): _130.CreditType; - fromProtoMsg(message: _130.CreditTypeProtoMsg): _130.CreditType; - toProto(message: _130.CreditType): Uint8Array; - toProtoMsg(message: _130.CreditType): _130.CreditTypeProtoMsg; + typeUrl: string; + encode(message: _131.CreditType, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.CreditType; + fromJSON(object: any): _131.CreditType; + toJSON(message: _131.CreditType): unknown; + fromPartial(object: Partial<_131.CreditType>): _131.CreditType; + fromAmino(object: _131.CreditTypeAmino): _131.CreditType; + toAmino(message: _131.CreditType): _131.CreditTypeAmino; + fromAminoMsg(object: _131.CreditTypeAminoMsg): _131.CreditType; + fromProtoMsg(message: _131.CreditTypeProtoMsg): _131.CreditType; + toProto(message: _131.CreditType): Uint8Array; + toProtoMsg(message: _131.CreditType): _131.CreditTypeProtoMsg; }; Class: { - encode(message: _130.Class, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.Class; - fromJSON(object: any): _130.Class; - toJSON(message: _130.Class): unknown; - fromPartial(object: Partial<_130.Class>): _130.Class; - fromAmino(object: _130.ClassAmino): _130.Class; - toAmino(message: _130.Class): _130.ClassAmino; - fromAminoMsg(object: _130.ClassAminoMsg): _130.Class; - fromProtoMsg(message: _130.ClassProtoMsg): _130.Class; - toProto(message: _130.Class): Uint8Array; - toProtoMsg(message: _130.Class): _130.ClassProtoMsg; + typeUrl: string; + encode(message: _131.Class, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.Class; + fromJSON(object: any): _131.Class; + toJSON(message: _131.Class): unknown; + fromPartial(object: Partial<_131.Class>): _131.Class; + fromAmino(object: _131.ClassAmino): _131.Class; + toAmino(message: _131.Class): _131.ClassAmino; + fromAminoMsg(object: _131.ClassAminoMsg): _131.Class; + fromProtoMsg(message: _131.ClassProtoMsg): _131.Class; + toProto(message: _131.Class): Uint8Array; + toProtoMsg(message: _131.Class): _131.ClassProtoMsg; }; ClassIssuer: { - encode(message: _130.ClassIssuer, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.ClassIssuer; - fromJSON(object: any): _130.ClassIssuer; - toJSON(message: _130.ClassIssuer): unknown; - fromPartial(object: Partial<_130.ClassIssuer>): _130.ClassIssuer; - fromAmino(object: _130.ClassIssuerAmino): _130.ClassIssuer; - toAmino(message: _130.ClassIssuer): _130.ClassIssuerAmino; - fromAminoMsg(object: _130.ClassIssuerAminoMsg): _130.ClassIssuer; - fromProtoMsg(message: _130.ClassIssuerProtoMsg): _130.ClassIssuer; - toProto(message: _130.ClassIssuer): Uint8Array; - toProtoMsg(message: _130.ClassIssuer): _130.ClassIssuerProtoMsg; + typeUrl: string; + encode(message: _131.ClassIssuer, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.ClassIssuer; + fromJSON(object: any): _131.ClassIssuer; + toJSON(message: _131.ClassIssuer): unknown; + fromPartial(object: Partial<_131.ClassIssuer>): _131.ClassIssuer; + fromAmino(object: _131.ClassIssuerAmino): _131.ClassIssuer; + toAmino(message: _131.ClassIssuer): _131.ClassIssuerAmino; + fromAminoMsg(object: _131.ClassIssuerAminoMsg): _131.ClassIssuer; + fromProtoMsg(message: _131.ClassIssuerProtoMsg): _131.ClassIssuer; + toProto(message: _131.ClassIssuer): Uint8Array; + toProtoMsg(message: _131.ClassIssuer): _131.ClassIssuerProtoMsg; }; Project: { - encode(message: _130.Project, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.Project; - fromJSON(object: any): _130.Project; - toJSON(message: _130.Project): unknown; - fromPartial(object: Partial<_130.Project>): _130.Project; - fromAmino(object: _130.ProjectAmino): _130.Project; - toAmino(message: _130.Project): _130.ProjectAmino; - fromAminoMsg(object: _130.ProjectAminoMsg): _130.Project; - fromProtoMsg(message: _130.ProjectProtoMsg): _130.Project; - toProto(message: _130.Project): Uint8Array; - toProtoMsg(message: _130.Project): _130.ProjectProtoMsg; + typeUrl: string; + encode(message: _131.Project, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.Project; + fromJSON(object: any): _131.Project; + toJSON(message: _131.Project): unknown; + fromPartial(object: Partial<_131.Project>): _131.Project; + fromAmino(object: _131.ProjectAmino): _131.Project; + toAmino(message: _131.Project): _131.ProjectAmino; + fromAminoMsg(object: _131.ProjectAminoMsg): _131.Project; + fromProtoMsg(message: _131.ProjectProtoMsg): _131.Project; + toProto(message: _131.Project): Uint8Array; + toProtoMsg(message: _131.Project): _131.ProjectProtoMsg; }; Batch: { - encode(message: _130.Batch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.Batch; - fromJSON(object: any): _130.Batch; - toJSON(message: _130.Batch): unknown; - fromPartial(object: Partial<_130.Batch>): _130.Batch; - fromAmino(object: _130.BatchAmino): _130.Batch; - toAmino(message: _130.Batch): _130.BatchAmino; - fromAminoMsg(object: _130.BatchAminoMsg): _130.Batch; - fromProtoMsg(message: _130.BatchProtoMsg): _130.Batch; - toProto(message: _130.Batch): Uint8Array; - toProtoMsg(message: _130.Batch): _130.BatchProtoMsg; + typeUrl: string; + encode(message: _131.Batch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.Batch; + fromJSON(object: any): _131.Batch; + toJSON(message: _131.Batch): unknown; + fromPartial(object: Partial<_131.Batch>): _131.Batch; + fromAmino(object: _131.BatchAmino): _131.Batch; + toAmino(message: _131.Batch): _131.BatchAmino; + fromAminoMsg(object: _131.BatchAminoMsg): _131.Batch; + fromProtoMsg(message: _131.BatchProtoMsg): _131.Batch; + toProto(message: _131.Batch): Uint8Array; + toProtoMsg(message: _131.Batch): _131.BatchProtoMsg; }; ClassSequence: { - encode(message: _130.ClassSequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.ClassSequence; - fromJSON(object: any): _130.ClassSequence; - toJSON(message: _130.ClassSequence): unknown; - fromPartial(object: Partial<_130.ClassSequence>): _130.ClassSequence; - fromAmino(object: _130.ClassSequenceAmino): _130.ClassSequence; - toAmino(message: _130.ClassSequence): _130.ClassSequenceAmino; - fromAminoMsg(object: _130.ClassSequenceAminoMsg): _130.ClassSequence; - fromProtoMsg(message: _130.ClassSequenceProtoMsg): _130.ClassSequence; - toProto(message: _130.ClassSequence): Uint8Array; - toProtoMsg(message: _130.ClassSequence): _130.ClassSequenceProtoMsg; + typeUrl: string; + encode(message: _131.ClassSequence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.ClassSequence; + fromJSON(object: any): _131.ClassSequence; + toJSON(message: _131.ClassSequence): unknown; + fromPartial(object: Partial<_131.ClassSequence>): _131.ClassSequence; + fromAmino(object: _131.ClassSequenceAmino): _131.ClassSequence; + toAmino(message: _131.ClassSequence): _131.ClassSequenceAmino; + fromAminoMsg(object: _131.ClassSequenceAminoMsg): _131.ClassSequence; + fromProtoMsg(message: _131.ClassSequenceProtoMsg): _131.ClassSequence; + toProto(message: _131.ClassSequence): Uint8Array; + toProtoMsg(message: _131.ClassSequence): _131.ClassSequenceProtoMsg; }; ProjectSequence: { - encode(message: _130.ProjectSequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.ProjectSequence; - fromJSON(object: any): _130.ProjectSequence; - toJSON(message: _130.ProjectSequence): unknown; - fromPartial(object: Partial<_130.ProjectSequence>): _130.ProjectSequence; - fromAmino(object: _130.ProjectSequenceAmino): _130.ProjectSequence; - toAmino(message: _130.ProjectSequence): _130.ProjectSequenceAmino; - fromAminoMsg(object: _130.ProjectSequenceAminoMsg): _130.ProjectSequence; - fromProtoMsg(message: _130.ProjectSequenceProtoMsg): _130.ProjectSequence; - toProto(message: _130.ProjectSequence): Uint8Array; - toProtoMsg(message: _130.ProjectSequence): _130.ProjectSequenceProtoMsg; + typeUrl: string; + encode(message: _131.ProjectSequence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.ProjectSequence; + fromJSON(object: any): _131.ProjectSequence; + toJSON(message: _131.ProjectSequence): unknown; + fromPartial(object: Partial<_131.ProjectSequence>): _131.ProjectSequence; + fromAmino(object: _131.ProjectSequenceAmino): _131.ProjectSequence; + toAmino(message: _131.ProjectSequence): _131.ProjectSequenceAmino; + fromAminoMsg(object: _131.ProjectSequenceAminoMsg): _131.ProjectSequence; + fromProtoMsg(message: _131.ProjectSequenceProtoMsg): _131.ProjectSequence; + toProto(message: _131.ProjectSequence): Uint8Array; + toProtoMsg(message: _131.ProjectSequence): _131.ProjectSequenceProtoMsg; }; BatchSequence: { - encode(message: _130.BatchSequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.BatchSequence; - fromJSON(object: any): _130.BatchSequence; - toJSON(message: _130.BatchSequence): unknown; - fromPartial(object: Partial<_130.BatchSequence>): _130.BatchSequence; - fromAmino(object: _130.BatchSequenceAmino): _130.BatchSequence; - toAmino(message: _130.BatchSequence): _130.BatchSequenceAmino; - fromAminoMsg(object: _130.BatchSequenceAminoMsg): _130.BatchSequence; - fromProtoMsg(message: _130.BatchSequenceProtoMsg): _130.BatchSequence; - toProto(message: _130.BatchSequence): Uint8Array; - toProtoMsg(message: _130.BatchSequence): _130.BatchSequenceProtoMsg; + typeUrl: string; + encode(message: _131.BatchSequence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.BatchSequence; + fromJSON(object: any): _131.BatchSequence; + toJSON(message: _131.BatchSequence): unknown; + fromPartial(object: Partial<_131.BatchSequence>): _131.BatchSequence; + fromAmino(object: _131.BatchSequenceAmino): _131.BatchSequence; + toAmino(message: _131.BatchSequence): _131.BatchSequenceAmino; + fromAminoMsg(object: _131.BatchSequenceAminoMsg): _131.BatchSequence; + fromProtoMsg(message: _131.BatchSequenceProtoMsg): _131.BatchSequence; + toProto(message: _131.BatchSequence): Uint8Array; + toProtoMsg(message: _131.BatchSequence): _131.BatchSequenceProtoMsg; }; BatchBalance: { - encode(message: _130.BatchBalance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.BatchBalance; - fromJSON(object: any): _130.BatchBalance; - toJSON(message: _130.BatchBalance): unknown; - fromPartial(object: Partial<_130.BatchBalance>): _130.BatchBalance; - fromAmino(object: _130.BatchBalanceAmino): _130.BatchBalance; - toAmino(message: _130.BatchBalance): _130.BatchBalanceAmino; - fromAminoMsg(object: _130.BatchBalanceAminoMsg): _130.BatchBalance; - fromProtoMsg(message: _130.BatchBalanceProtoMsg): _130.BatchBalance; - toProto(message: _130.BatchBalance): Uint8Array; - toProtoMsg(message: _130.BatchBalance): _130.BatchBalanceProtoMsg; + typeUrl: string; + encode(message: _131.BatchBalance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.BatchBalance; + fromJSON(object: any): _131.BatchBalance; + toJSON(message: _131.BatchBalance): unknown; + fromPartial(object: Partial<_131.BatchBalance>): _131.BatchBalance; + fromAmino(object: _131.BatchBalanceAmino): _131.BatchBalance; + toAmino(message: _131.BatchBalance): _131.BatchBalanceAmino; + fromAminoMsg(object: _131.BatchBalanceAminoMsg): _131.BatchBalance; + fromProtoMsg(message: _131.BatchBalanceProtoMsg): _131.BatchBalance; + toProto(message: _131.BatchBalance): Uint8Array; + toProtoMsg(message: _131.BatchBalance): _131.BatchBalanceProtoMsg; }; BatchSupply: { - encode(message: _130.BatchSupply, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.BatchSupply; - fromJSON(object: any): _130.BatchSupply; - toJSON(message: _130.BatchSupply): unknown; - fromPartial(object: Partial<_130.BatchSupply>): _130.BatchSupply; - fromAmino(object: _130.BatchSupplyAmino): _130.BatchSupply; - toAmino(message: _130.BatchSupply): _130.BatchSupplyAmino; - fromAminoMsg(object: _130.BatchSupplyAminoMsg): _130.BatchSupply; - fromProtoMsg(message: _130.BatchSupplyProtoMsg): _130.BatchSupply; - toProto(message: _130.BatchSupply): Uint8Array; - toProtoMsg(message: _130.BatchSupply): _130.BatchSupplyProtoMsg; + typeUrl: string; + encode(message: _131.BatchSupply, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.BatchSupply; + fromJSON(object: any): _131.BatchSupply; + toJSON(message: _131.BatchSupply): unknown; + fromPartial(object: Partial<_131.BatchSupply>): _131.BatchSupply; + fromAmino(object: _131.BatchSupplyAmino): _131.BatchSupply; + toAmino(message: _131.BatchSupply): _131.BatchSupplyAmino; + fromAminoMsg(object: _131.BatchSupplyAminoMsg): _131.BatchSupply; + fromProtoMsg(message: _131.BatchSupplyProtoMsg): _131.BatchSupply; + toProto(message: _131.BatchSupply): Uint8Array; + toProtoMsg(message: _131.BatchSupply): _131.BatchSupplyProtoMsg; }; OriginTxIndex: { - encode(message: _130.OriginTxIndex, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.OriginTxIndex; - fromJSON(object: any): _130.OriginTxIndex; - toJSON(message: _130.OriginTxIndex): unknown; - fromPartial(object: Partial<_130.OriginTxIndex>): _130.OriginTxIndex; - fromAmino(object: _130.OriginTxIndexAmino): _130.OriginTxIndex; - toAmino(message: _130.OriginTxIndex): _130.OriginTxIndexAmino; - fromAminoMsg(object: _130.OriginTxIndexAminoMsg): _130.OriginTxIndex; - fromProtoMsg(message: _130.OriginTxIndexProtoMsg): _130.OriginTxIndex; - toProto(message: _130.OriginTxIndex): Uint8Array; - toProtoMsg(message: _130.OriginTxIndex): _130.OriginTxIndexProtoMsg; + typeUrl: string; + encode(message: _131.OriginTxIndex, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.OriginTxIndex; + fromJSON(object: any): _131.OriginTxIndex; + toJSON(message: _131.OriginTxIndex): unknown; + fromPartial(object: Partial<_131.OriginTxIndex>): _131.OriginTxIndex; + fromAmino(object: _131.OriginTxIndexAmino): _131.OriginTxIndex; + toAmino(message: _131.OriginTxIndex): _131.OriginTxIndexAmino; + fromAminoMsg(object: _131.OriginTxIndexAminoMsg): _131.OriginTxIndex; + fromProtoMsg(message: _131.OriginTxIndexProtoMsg): _131.OriginTxIndex; + toProto(message: _131.OriginTxIndex): Uint8Array; + toProtoMsg(message: _131.OriginTxIndex): _131.OriginTxIndexProtoMsg; }; BatchContract: { - encode(message: _130.BatchContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.BatchContract; - fromJSON(object: any): _130.BatchContract; - toJSON(message: _130.BatchContract): unknown; - fromPartial(object: Partial<_130.BatchContract>): _130.BatchContract; - fromAmino(object: _130.BatchContractAmino): _130.BatchContract; - toAmino(message: _130.BatchContract): _130.BatchContractAmino; - fromAminoMsg(object: _130.BatchContractAminoMsg): _130.BatchContract; - fromProtoMsg(message: _130.BatchContractProtoMsg): _130.BatchContract; - toProto(message: _130.BatchContract): Uint8Array; - toProtoMsg(message: _130.BatchContract): _130.BatchContractProtoMsg; + typeUrl: string; + encode(message: _131.BatchContract, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.BatchContract; + fromJSON(object: any): _131.BatchContract; + toJSON(message: _131.BatchContract): unknown; + fromPartial(object: Partial<_131.BatchContract>): _131.BatchContract; + fromAmino(object: _131.BatchContractAmino): _131.BatchContract; + toAmino(message: _131.BatchContract): _131.BatchContractAmino; + fromAminoMsg(object: _131.BatchContractAminoMsg): _131.BatchContract; + fromProtoMsg(message: _131.BatchContractProtoMsg): _131.BatchContract; + toProto(message: _131.BatchContract): Uint8Array; + toProtoMsg(message: _131.BatchContract): _131.BatchContractProtoMsg; }; ClassCreatorAllowlist: { - encode(message: _130.ClassCreatorAllowlist, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.ClassCreatorAllowlist; - fromJSON(object: any): _130.ClassCreatorAllowlist; - toJSON(message: _130.ClassCreatorAllowlist): unknown; - fromPartial(object: Partial<_130.ClassCreatorAllowlist>): _130.ClassCreatorAllowlist; - fromAmino(object: _130.ClassCreatorAllowlistAmino): _130.ClassCreatorAllowlist; - toAmino(message: _130.ClassCreatorAllowlist): _130.ClassCreatorAllowlistAmino; - fromAminoMsg(object: _130.ClassCreatorAllowlistAminoMsg): _130.ClassCreatorAllowlist; - fromProtoMsg(message: _130.ClassCreatorAllowlistProtoMsg): _130.ClassCreatorAllowlist; - toProto(message: _130.ClassCreatorAllowlist): Uint8Array; - toProtoMsg(message: _130.ClassCreatorAllowlist): _130.ClassCreatorAllowlistProtoMsg; + typeUrl: string; + encode(message: _131.ClassCreatorAllowlist, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.ClassCreatorAllowlist; + fromJSON(object: any): _131.ClassCreatorAllowlist; + toJSON(message: _131.ClassCreatorAllowlist): unknown; + fromPartial(object: Partial<_131.ClassCreatorAllowlist>): _131.ClassCreatorAllowlist; + fromAmino(object: _131.ClassCreatorAllowlistAmino): _131.ClassCreatorAllowlist; + toAmino(message: _131.ClassCreatorAllowlist): _131.ClassCreatorAllowlistAmino; + fromAminoMsg(object: _131.ClassCreatorAllowlistAminoMsg): _131.ClassCreatorAllowlist; + fromProtoMsg(message: _131.ClassCreatorAllowlistProtoMsg): _131.ClassCreatorAllowlist; + toProto(message: _131.ClassCreatorAllowlist): Uint8Array; + toProtoMsg(message: _131.ClassCreatorAllowlist): _131.ClassCreatorAllowlistProtoMsg; }; AllowedClassCreator: { - encode(message: _130.AllowedClassCreator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.AllowedClassCreator; - fromJSON(object: any): _130.AllowedClassCreator; - toJSON(message: _130.AllowedClassCreator): unknown; - fromPartial(object: Partial<_130.AllowedClassCreator>): _130.AllowedClassCreator; - fromAmino(object: _130.AllowedClassCreatorAmino): _130.AllowedClassCreator; - toAmino(message: _130.AllowedClassCreator): _130.AllowedClassCreatorAmino; - fromAminoMsg(object: _130.AllowedClassCreatorAminoMsg): _130.AllowedClassCreator; - fromProtoMsg(message: _130.AllowedClassCreatorProtoMsg): _130.AllowedClassCreator; - toProto(message: _130.AllowedClassCreator): Uint8Array; - toProtoMsg(message: _130.AllowedClassCreator): _130.AllowedClassCreatorProtoMsg; + typeUrl: string; + encode(message: _131.AllowedClassCreator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.AllowedClassCreator; + fromJSON(object: any): _131.AllowedClassCreator; + toJSON(message: _131.AllowedClassCreator): unknown; + fromPartial(object: Partial<_131.AllowedClassCreator>): _131.AllowedClassCreator; + fromAmino(object: _131.AllowedClassCreatorAmino): _131.AllowedClassCreator; + toAmino(message: _131.AllowedClassCreator): _131.AllowedClassCreatorAmino; + fromAminoMsg(object: _131.AllowedClassCreatorAminoMsg): _131.AllowedClassCreator; + fromProtoMsg(message: _131.AllowedClassCreatorProtoMsg): _131.AllowedClassCreator; + toProto(message: _131.AllowedClassCreator): Uint8Array; + toProtoMsg(message: _131.AllowedClassCreator): _131.AllowedClassCreatorProtoMsg; }; ClassFee: { - encode(message: _130.ClassFee, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.ClassFee; - fromJSON(object: any): _130.ClassFee; - toJSON(message: _130.ClassFee): unknown; - fromPartial(object: Partial<_130.ClassFee>): _130.ClassFee; - fromAmino(object: _130.ClassFeeAmino): _130.ClassFee; - toAmino(message: _130.ClassFee): _130.ClassFeeAmino; - fromAminoMsg(object: _130.ClassFeeAminoMsg): _130.ClassFee; - fromProtoMsg(message: _130.ClassFeeProtoMsg): _130.ClassFee; - toProto(message: _130.ClassFee): Uint8Array; - toProtoMsg(message: _130.ClassFee): _130.ClassFeeProtoMsg; + typeUrl: string; + encode(message: _131.ClassFee, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.ClassFee; + fromJSON(object: any): _131.ClassFee; + toJSON(message: _131.ClassFee): unknown; + fromPartial(object: Partial<_131.ClassFee>): _131.ClassFee; + fromAmino(object: _131.ClassFeeAmino): _131.ClassFee; + toAmino(message: _131.ClassFee): _131.ClassFeeAmino; + fromAminoMsg(object: _131.ClassFeeAminoMsg): _131.ClassFee; + fromProtoMsg(message: _131.ClassFeeProtoMsg): _131.ClassFee; + toProto(message: _131.ClassFee): Uint8Array; + toProtoMsg(message: _131.ClassFee): _131.ClassFeeProtoMsg; }; AllowedBridgeChain: { - encode(message: _130.AllowedBridgeChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _130.AllowedBridgeChain; - fromJSON(object: any): _130.AllowedBridgeChain; - toJSON(message: _130.AllowedBridgeChain): unknown; - fromPartial(object: Partial<_130.AllowedBridgeChain>): _130.AllowedBridgeChain; - fromAmino(object: _130.AllowedBridgeChainAmino): _130.AllowedBridgeChain; - toAmino(message: _130.AllowedBridgeChain): _130.AllowedBridgeChainAmino; - fromAminoMsg(object: _130.AllowedBridgeChainAminoMsg): _130.AllowedBridgeChain; - fromProtoMsg(message: _130.AllowedBridgeChainProtoMsg): _130.AllowedBridgeChain; - toProto(message: _130.AllowedBridgeChain): Uint8Array; - toProtoMsg(message: _130.AllowedBridgeChain): _130.AllowedBridgeChainProtoMsg; + typeUrl: string; + encode(message: _131.AllowedBridgeChain, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _131.AllowedBridgeChain; + fromJSON(object: any): _131.AllowedBridgeChain; + toJSON(message: _131.AllowedBridgeChain): unknown; + fromPartial(object: Partial<_131.AllowedBridgeChain>): _131.AllowedBridgeChain; + fromAmino(object: _131.AllowedBridgeChainAmino): _131.AllowedBridgeChain; + toAmino(message: _131.AllowedBridgeChain): _131.AllowedBridgeChainAmino; + fromAminoMsg(object: _131.AllowedBridgeChainAminoMsg): _131.AllowedBridgeChain; + fromProtoMsg(message: _131.AllowedBridgeChainProtoMsg): _131.AllowedBridgeChain; + toProto(message: _131.AllowedBridgeChain): Uint8Array; + toProtoMsg(message: _131.AllowedBridgeChain): _131.AllowedBridgeChainProtoMsg; }; QueryClassesRequest: { - encode(message: _129.QueryClassesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassesRequest; - fromJSON(object: any): _129.QueryClassesRequest; - toJSON(message: _129.QueryClassesRequest): unknown; - fromPartial(object: Partial<_129.QueryClassesRequest>): _129.QueryClassesRequest; - fromAmino(object: _129.QueryClassesRequestAmino): _129.QueryClassesRequest; - toAmino(message: _129.QueryClassesRequest): _129.QueryClassesRequestAmino; - fromAminoMsg(object: _129.QueryClassesRequestAminoMsg): _129.QueryClassesRequest; - fromProtoMsg(message: _129.QueryClassesRequestProtoMsg): _129.QueryClassesRequest; - toProto(message: _129.QueryClassesRequest): Uint8Array; - toProtoMsg(message: _129.QueryClassesRequest): _129.QueryClassesRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassesRequest; + fromJSON(object: any): _130.QueryClassesRequest; + toJSON(message: _130.QueryClassesRequest): unknown; + fromPartial(object: Partial<_130.QueryClassesRequest>): _130.QueryClassesRequest; + fromAmino(object: _130.QueryClassesRequestAmino): _130.QueryClassesRequest; + toAmino(message: _130.QueryClassesRequest): _130.QueryClassesRequestAmino; + fromAminoMsg(object: _130.QueryClassesRequestAminoMsg): _130.QueryClassesRequest; + fromProtoMsg(message: _130.QueryClassesRequestProtoMsg): _130.QueryClassesRequest; + toProto(message: _130.QueryClassesRequest): Uint8Array; + toProtoMsg(message: _130.QueryClassesRequest): _130.QueryClassesRequestProtoMsg; }; QueryClassesResponse: { - encode(message: _129.QueryClassesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassesResponse; - fromJSON(object: any): _129.QueryClassesResponse; - toJSON(message: _129.QueryClassesResponse): unknown; - fromPartial(object: Partial<_129.QueryClassesResponse>): _129.QueryClassesResponse; - fromAmino(object: _129.QueryClassesResponseAmino): _129.QueryClassesResponse; - toAmino(message: _129.QueryClassesResponse): _129.QueryClassesResponseAmino; - fromAminoMsg(object: _129.QueryClassesResponseAminoMsg): _129.QueryClassesResponse; - fromProtoMsg(message: _129.QueryClassesResponseProtoMsg): _129.QueryClassesResponse; - toProto(message: _129.QueryClassesResponse): Uint8Array; - toProtoMsg(message: _129.QueryClassesResponse): _129.QueryClassesResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassesResponse; + fromJSON(object: any): _130.QueryClassesResponse; + toJSON(message: _130.QueryClassesResponse): unknown; + fromPartial(object: Partial<_130.QueryClassesResponse>): _130.QueryClassesResponse; + fromAmino(object: _130.QueryClassesResponseAmino): _130.QueryClassesResponse; + toAmino(message: _130.QueryClassesResponse): _130.QueryClassesResponseAmino; + fromAminoMsg(object: _130.QueryClassesResponseAminoMsg): _130.QueryClassesResponse; + fromProtoMsg(message: _130.QueryClassesResponseProtoMsg): _130.QueryClassesResponse; + toProto(message: _130.QueryClassesResponse): Uint8Array; + toProtoMsg(message: _130.QueryClassesResponse): _130.QueryClassesResponseProtoMsg; }; QueryClassesByAdminRequest: { - encode(message: _129.QueryClassesByAdminRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassesByAdminRequest; - fromJSON(object: any): _129.QueryClassesByAdminRequest; - toJSON(message: _129.QueryClassesByAdminRequest): unknown; - fromPartial(object: Partial<_129.QueryClassesByAdminRequest>): _129.QueryClassesByAdminRequest; - fromAmino(object: _129.QueryClassesByAdminRequestAmino): _129.QueryClassesByAdminRequest; - toAmino(message: _129.QueryClassesByAdminRequest): _129.QueryClassesByAdminRequestAmino; - fromAminoMsg(object: _129.QueryClassesByAdminRequestAminoMsg): _129.QueryClassesByAdminRequest; - fromProtoMsg(message: _129.QueryClassesByAdminRequestProtoMsg): _129.QueryClassesByAdminRequest; - toProto(message: _129.QueryClassesByAdminRequest): Uint8Array; - toProtoMsg(message: _129.QueryClassesByAdminRequest): _129.QueryClassesByAdminRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassesByAdminRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassesByAdminRequest; + fromJSON(object: any): _130.QueryClassesByAdminRequest; + toJSON(message: _130.QueryClassesByAdminRequest): unknown; + fromPartial(object: Partial<_130.QueryClassesByAdminRequest>): _130.QueryClassesByAdminRequest; + fromAmino(object: _130.QueryClassesByAdminRequestAmino): _130.QueryClassesByAdminRequest; + toAmino(message: _130.QueryClassesByAdminRequest): _130.QueryClassesByAdminRequestAmino; + fromAminoMsg(object: _130.QueryClassesByAdminRequestAminoMsg): _130.QueryClassesByAdminRequest; + fromProtoMsg(message: _130.QueryClassesByAdminRequestProtoMsg): _130.QueryClassesByAdminRequest; + toProto(message: _130.QueryClassesByAdminRequest): Uint8Array; + toProtoMsg(message: _130.QueryClassesByAdminRequest): _130.QueryClassesByAdminRequestProtoMsg; }; QueryClassesByAdminResponse: { - encode(message: _129.QueryClassesByAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassesByAdminResponse; - fromJSON(object: any): _129.QueryClassesByAdminResponse; - toJSON(message: _129.QueryClassesByAdminResponse): unknown; - fromPartial(object: Partial<_129.QueryClassesByAdminResponse>): _129.QueryClassesByAdminResponse; - fromAmino(object: _129.QueryClassesByAdminResponseAmino): _129.QueryClassesByAdminResponse; - toAmino(message: _129.QueryClassesByAdminResponse): _129.QueryClassesByAdminResponseAmino; - fromAminoMsg(object: _129.QueryClassesByAdminResponseAminoMsg): _129.QueryClassesByAdminResponse; - fromProtoMsg(message: _129.QueryClassesByAdminResponseProtoMsg): _129.QueryClassesByAdminResponse; - toProto(message: _129.QueryClassesByAdminResponse): Uint8Array; - toProtoMsg(message: _129.QueryClassesByAdminResponse): _129.QueryClassesByAdminResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassesByAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassesByAdminResponse; + fromJSON(object: any): _130.QueryClassesByAdminResponse; + toJSON(message: _130.QueryClassesByAdminResponse): unknown; + fromPartial(object: Partial<_130.QueryClassesByAdminResponse>): _130.QueryClassesByAdminResponse; + fromAmino(object: _130.QueryClassesByAdminResponseAmino): _130.QueryClassesByAdminResponse; + toAmino(message: _130.QueryClassesByAdminResponse): _130.QueryClassesByAdminResponseAmino; + fromAminoMsg(object: _130.QueryClassesByAdminResponseAminoMsg): _130.QueryClassesByAdminResponse; + fromProtoMsg(message: _130.QueryClassesByAdminResponseProtoMsg): _130.QueryClassesByAdminResponse; + toProto(message: _130.QueryClassesByAdminResponse): Uint8Array; + toProtoMsg(message: _130.QueryClassesByAdminResponse): _130.QueryClassesByAdminResponseProtoMsg; }; QueryClassRequest: { - encode(message: _129.QueryClassRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassRequest; - fromJSON(object: any): _129.QueryClassRequest; - toJSON(message: _129.QueryClassRequest): unknown; - fromPartial(object: Partial<_129.QueryClassRequest>): _129.QueryClassRequest; - fromAmino(object: _129.QueryClassRequestAmino): _129.QueryClassRequest; - toAmino(message: _129.QueryClassRequest): _129.QueryClassRequestAmino; - fromAminoMsg(object: _129.QueryClassRequestAminoMsg): _129.QueryClassRequest; - fromProtoMsg(message: _129.QueryClassRequestProtoMsg): _129.QueryClassRequest; - toProto(message: _129.QueryClassRequest): Uint8Array; - toProtoMsg(message: _129.QueryClassRequest): _129.QueryClassRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassRequest; + fromJSON(object: any): _130.QueryClassRequest; + toJSON(message: _130.QueryClassRequest): unknown; + fromPartial(object: Partial<_130.QueryClassRequest>): _130.QueryClassRequest; + fromAmino(object: _130.QueryClassRequestAmino): _130.QueryClassRequest; + toAmino(message: _130.QueryClassRequest): _130.QueryClassRequestAmino; + fromAminoMsg(object: _130.QueryClassRequestAminoMsg): _130.QueryClassRequest; + fromProtoMsg(message: _130.QueryClassRequestProtoMsg): _130.QueryClassRequest; + toProto(message: _130.QueryClassRequest): Uint8Array; + toProtoMsg(message: _130.QueryClassRequest): _130.QueryClassRequestProtoMsg; }; QueryClassResponse: { - encode(message: _129.QueryClassResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassResponse; - fromJSON(object: any): _129.QueryClassResponse; - toJSON(message: _129.QueryClassResponse): unknown; - fromPartial(object: Partial<_129.QueryClassResponse>): _129.QueryClassResponse; - fromAmino(object: _129.QueryClassResponseAmino): _129.QueryClassResponse; - toAmino(message: _129.QueryClassResponse): _129.QueryClassResponseAmino; - fromAminoMsg(object: _129.QueryClassResponseAminoMsg): _129.QueryClassResponse; - fromProtoMsg(message: _129.QueryClassResponseProtoMsg): _129.QueryClassResponse; - toProto(message: _129.QueryClassResponse): Uint8Array; - toProtoMsg(message: _129.QueryClassResponse): _129.QueryClassResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassResponse; + fromJSON(object: any): _130.QueryClassResponse; + toJSON(message: _130.QueryClassResponse): unknown; + fromPartial(object: Partial<_130.QueryClassResponse>): _130.QueryClassResponse; + fromAmino(object: _130.QueryClassResponseAmino): _130.QueryClassResponse; + toAmino(message: _130.QueryClassResponse): _130.QueryClassResponseAmino; + fromAminoMsg(object: _130.QueryClassResponseAminoMsg): _130.QueryClassResponse; + fromProtoMsg(message: _130.QueryClassResponseProtoMsg): _130.QueryClassResponse; + toProto(message: _130.QueryClassResponse): Uint8Array; + toProtoMsg(message: _130.QueryClassResponse): _130.QueryClassResponseProtoMsg; }; QueryClassIssuersRequest: { - encode(message: _129.QueryClassIssuersRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassIssuersRequest; - fromJSON(object: any): _129.QueryClassIssuersRequest; - toJSON(message: _129.QueryClassIssuersRequest): unknown; - fromPartial(object: Partial<_129.QueryClassIssuersRequest>): _129.QueryClassIssuersRequest; - fromAmino(object: _129.QueryClassIssuersRequestAmino): _129.QueryClassIssuersRequest; - toAmino(message: _129.QueryClassIssuersRequest): _129.QueryClassIssuersRequestAmino; - fromAminoMsg(object: _129.QueryClassIssuersRequestAminoMsg): _129.QueryClassIssuersRequest; - fromProtoMsg(message: _129.QueryClassIssuersRequestProtoMsg): _129.QueryClassIssuersRequest; - toProto(message: _129.QueryClassIssuersRequest): Uint8Array; - toProtoMsg(message: _129.QueryClassIssuersRequest): _129.QueryClassIssuersRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassIssuersRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassIssuersRequest; + fromJSON(object: any): _130.QueryClassIssuersRequest; + toJSON(message: _130.QueryClassIssuersRequest): unknown; + fromPartial(object: Partial<_130.QueryClassIssuersRequest>): _130.QueryClassIssuersRequest; + fromAmino(object: _130.QueryClassIssuersRequestAmino): _130.QueryClassIssuersRequest; + toAmino(message: _130.QueryClassIssuersRequest): _130.QueryClassIssuersRequestAmino; + fromAminoMsg(object: _130.QueryClassIssuersRequestAminoMsg): _130.QueryClassIssuersRequest; + fromProtoMsg(message: _130.QueryClassIssuersRequestProtoMsg): _130.QueryClassIssuersRequest; + toProto(message: _130.QueryClassIssuersRequest): Uint8Array; + toProtoMsg(message: _130.QueryClassIssuersRequest): _130.QueryClassIssuersRequestProtoMsg; }; QueryClassIssuersResponse: { - encode(message: _129.QueryClassIssuersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassIssuersResponse; - fromJSON(object: any): _129.QueryClassIssuersResponse; - toJSON(message: _129.QueryClassIssuersResponse): unknown; - fromPartial(object: Partial<_129.QueryClassIssuersResponse>): _129.QueryClassIssuersResponse; - fromAmino(object: _129.QueryClassIssuersResponseAmino): _129.QueryClassIssuersResponse; - toAmino(message: _129.QueryClassIssuersResponse): _129.QueryClassIssuersResponseAmino; - fromAminoMsg(object: _129.QueryClassIssuersResponseAminoMsg): _129.QueryClassIssuersResponse; - fromProtoMsg(message: _129.QueryClassIssuersResponseProtoMsg): _129.QueryClassIssuersResponse; - toProto(message: _129.QueryClassIssuersResponse): Uint8Array; - toProtoMsg(message: _129.QueryClassIssuersResponse): _129.QueryClassIssuersResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassIssuersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassIssuersResponse; + fromJSON(object: any): _130.QueryClassIssuersResponse; + toJSON(message: _130.QueryClassIssuersResponse): unknown; + fromPartial(object: Partial<_130.QueryClassIssuersResponse>): _130.QueryClassIssuersResponse; + fromAmino(object: _130.QueryClassIssuersResponseAmino): _130.QueryClassIssuersResponse; + toAmino(message: _130.QueryClassIssuersResponse): _130.QueryClassIssuersResponseAmino; + fromAminoMsg(object: _130.QueryClassIssuersResponseAminoMsg): _130.QueryClassIssuersResponse; + fromProtoMsg(message: _130.QueryClassIssuersResponseProtoMsg): _130.QueryClassIssuersResponse; + toProto(message: _130.QueryClassIssuersResponse): Uint8Array; + toProtoMsg(message: _130.QueryClassIssuersResponse): _130.QueryClassIssuersResponseProtoMsg; }; QueryProjectsRequest: { - encode(message: _129.QueryProjectsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsRequest; - fromJSON(object: any): _129.QueryProjectsRequest; - toJSON(message: _129.QueryProjectsRequest): unknown; - fromPartial(object: Partial<_129.QueryProjectsRequest>): _129.QueryProjectsRequest; - fromAmino(object: _129.QueryProjectsRequestAmino): _129.QueryProjectsRequest; - toAmino(message: _129.QueryProjectsRequest): _129.QueryProjectsRequestAmino; - fromAminoMsg(object: _129.QueryProjectsRequestAminoMsg): _129.QueryProjectsRequest; - fromProtoMsg(message: _129.QueryProjectsRequestProtoMsg): _129.QueryProjectsRequest; - toProto(message: _129.QueryProjectsRequest): Uint8Array; - toProtoMsg(message: _129.QueryProjectsRequest): _129.QueryProjectsRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsRequest; + fromJSON(object: any): _130.QueryProjectsRequest; + toJSON(message: _130.QueryProjectsRequest): unknown; + fromPartial(object: Partial<_130.QueryProjectsRequest>): _130.QueryProjectsRequest; + fromAmino(object: _130.QueryProjectsRequestAmino): _130.QueryProjectsRequest; + toAmino(message: _130.QueryProjectsRequest): _130.QueryProjectsRequestAmino; + fromAminoMsg(object: _130.QueryProjectsRequestAminoMsg): _130.QueryProjectsRequest; + fromProtoMsg(message: _130.QueryProjectsRequestProtoMsg): _130.QueryProjectsRequest; + toProto(message: _130.QueryProjectsRequest): Uint8Array; + toProtoMsg(message: _130.QueryProjectsRequest): _130.QueryProjectsRequestProtoMsg; }; QueryProjectsResponse: { - encode(message: _129.QueryProjectsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsResponse; - fromJSON(object: any): _129.QueryProjectsResponse; - toJSON(message: _129.QueryProjectsResponse): unknown; - fromPartial(object: Partial<_129.QueryProjectsResponse>): _129.QueryProjectsResponse; - fromAmino(object: _129.QueryProjectsResponseAmino): _129.QueryProjectsResponse; - toAmino(message: _129.QueryProjectsResponse): _129.QueryProjectsResponseAmino; - fromAminoMsg(object: _129.QueryProjectsResponseAminoMsg): _129.QueryProjectsResponse; - fromProtoMsg(message: _129.QueryProjectsResponseProtoMsg): _129.QueryProjectsResponse; - toProto(message: _129.QueryProjectsResponse): Uint8Array; - toProtoMsg(message: _129.QueryProjectsResponse): _129.QueryProjectsResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsResponse; + fromJSON(object: any): _130.QueryProjectsResponse; + toJSON(message: _130.QueryProjectsResponse): unknown; + fromPartial(object: Partial<_130.QueryProjectsResponse>): _130.QueryProjectsResponse; + fromAmino(object: _130.QueryProjectsResponseAmino): _130.QueryProjectsResponse; + toAmino(message: _130.QueryProjectsResponse): _130.QueryProjectsResponseAmino; + fromAminoMsg(object: _130.QueryProjectsResponseAminoMsg): _130.QueryProjectsResponse; + fromProtoMsg(message: _130.QueryProjectsResponseProtoMsg): _130.QueryProjectsResponse; + toProto(message: _130.QueryProjectsResponse): Uint8Array; + toProtoMsg(message: _130.QueryProjectsResponse): _130.QueryProjectsResponseProtoMsg; }; QueryProjectsByClassRequest: { - encode(message: _129.QueryProjectsByClassRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsByClassRequest; - fromJSON(object: any): _129.QueryProjectsByClassRequest; - toJSON(message: _129.QueryProjectsByClassRequest): unknown; - fromPartial(object: Partial<_129.QueryProjectsByClassRequest>): _129.QueryProjectsByClassRequest; - fromAmino(object: _129.QueryProjectsByClassRequestAmino): _129.QueryProjectsByClassRequest; - toAmino(message: _129.QueryProjectsByClassRequest): _129.QueryProjectsByClassRequestAmino; - fromAminoMsg(object: _129.QueryProjectsByClassRequestAminoMsg): _129.QueryProjectsByClassRequest; - fromProtoMsg(message: _129.QueryProjectsByClassRequestProtoMsg): _129.QueryProjectsByClassRequest; - toProto(message: _129.QueryProjectsByClassRequest): Uint8Array; - toProtoMsg(message: _129.QueryProjectsByClassRequest): _129.QueryProjectsByClassRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsByClassRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsByClassRequest; + fromJSON(object: any): _130.QueryProjectsByClassRequest; + toJSON(message: _130.QueryProjectsByClassRequest): unknown; + fromPartial(object: Partial<_130.QueryProjectsByClassRequest>): _130.QueryProjectsByClassRequest; + fromAmino(object: _130.QueryProjectsByClassRequestAmino): _130.QueryProjectsByClassRequest; + toAmino(message: _130.QueryProjectsByClassRequest): _130.QueryProjectsByClassRequestAmino; + fromAminoMsg(object: _130.QueryProjectsByClassRequestAminoMsg): _130.QueryProjectsByClassRequest; + fromProtoMsg(message: _130.QueryProjectsByClassRequestProtoMsg): _130.QueryProjectsByClassRequest; + toProto(message: _130.QueryProjectsByClassRequest): Uint8Array; + toProtoMsg(message: _130.QueryProjectsByClassRequest): _130.QueryProjectsByClassRequestProtoMsg; }; QueryProjectsByClassResponse: { - encode(message: _129.QueryProjectsByClassResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsByClassResponse; - fromJSON(object: any): _129.QueryProjectsByClassResponse; - toJSON(message: _129.QueryProjectsByClassResponse): unknown; - fromPartial(object: Partial<_129.QueryProjectsByClassResponse>): _129.QueryProjectsByClassResponse; - fromAmino(object: _129.QueryProjectsByClassResponseAmino): _129.QueryProjectsByClassResponse; - toAmino(message: _129.QueryProjectsByClassResponse): _129.QueryProjectsByClassResponseAmino; - fromAminoMsg(object: _129.QueryProjectsByClassResponseAminoMsg): _129.QueryProjectsByClassResponse; - fromProtoMsg(message: _129.QueryProjectsByClassResponseProtoMsg): _129.QueryProjectsByClassResponse; - toProto(message: _129.QueryProjectsByClassResponse): Uint8Array; - toProtoMsg(message: _129.QueryProjectsByClassResponse): _129.QueryProjectsByClassResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsByClassResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsByClassResponse; + fromJSON(object: any): _130.QueryProjectsByClassResponse; + toJSON(message: _130.QueryProjectsByClassResponse): unknown; + fromPartial(object: Partial<_130.QueryProjectsByClassResponse>): _130.QueryProjectsByClassResponse; + fromAmino(object: _130.QueryProjectsByClassResponseAmino): _130.QueryProjectsByClassResponse; + toAmino(message: _130.QueryProjectsByClassResponse): _130.QueryProjectsByClassResponseAmino; + fromAminoMsg(object: _130.QueryProjectsByClassResponseAminoMsg): _130.QueryProjectsByClassResponse; + fromProtoMsg(message: _130.QueryProjectsByClassResponseProtoMsg): _130.QueryProjectsByClassResponse; + toProto(message: _130.QueryProjectsByClassResponse): Uint8Array; + toProtoMsg(message: _130.QueryProjectsByClassResponse): _130.QueryProjectsByClassResponseProtoMsg; }; QueryProjectsByReferenceIdRequest: { - encode(message: _129.QueryProjectsByReferenceIdRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsByReferenceIdRequest; - fromJSON(object: any): _129.QueryProjectsByReferenceIdRequest; - toJSON(message: _129.QueryProjectsByReferenceIdRequest): unknown; - fromPartial(object: Partial<_129.QueryProjectsByReferenceIdRequest>): _129.QueryProjectsByReferenceIdRequest; - fromAmino(object: _129.QueryProjectsByReferenceIdRequestAmino): _129.QueryProjectsByReferenceIdRequest; - toAmino(message: _129.QueryProjectsByReferenceIdRequest): _129.QueryProjectsByReferenceIdRequestAmino; - fromAminoMsg(object: _129.QueryProjectsByReferenceIdRequestAminoMsg): _129.QueryProjectsByReferenceIdRequest; - fromProtoMsg(message: _129.QueryProjectsByReferenceIdRequestProtoMsg): _129.QueryProjectsByReferenceIdRequest; - toProto(message: _129.QueryProjectsByReferenceIdRequest): Uint8Array; - toProtoMsg(message: _129.QueryProjectsByReferenceIdRequest): _129.QueryProjectsByReferenceIdRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsByReferenceIdRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsByReferenceIdRequest; + fromJSON(object: any): _130.QueryProjectsByReferenceIdRequest; + toJSON(message: _130.QueryProjectsByReferenceIdRequest): unknown; + fromPartial(object: Partial<_130.QueryProjectsByReferenceIdRequest>): _130.QueryProjectsByReferenceIdRequest; + fromAmino(object: _130.QueryProjectsByReferenceIdRequestAmino): _130.QueryProjectsByReferenceIdRequest; + toAmino(message: _130.QueryProjectsByReferenceIdRequest): _130.QueryProjectsByReferenceIdRequestAmino; + fromAminoMsg(object: _130.QueryProjectsByReferenceIdRequestAminoMsg): _130.QueryProjectsByReferenceIdRequest; + fromProtoMsg(message: _130.QueryProjectsByReferenceIdRequestProtoMsg): _130.QueryProjectsByReferenceIdRequest; + toProto(message: _130.QueryProjectsByReferenceIdRequest): Uint8Array; + toProtoMsg(message: _130.QueryProjectsByReferenceIdRequest): _130.QueryProjectsByReferenceIdRequestProtoMsg; }; QueryProjectsByReferenceIdResponse: { - encode(message: _129.QueryProjectsByReferenceIdResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsByReferenceIdResponse; - fromJSON(object: any): _129.QueryProjectsByReferenceIdResponse; - toJSON(message: _129.QueryProjectsByReferenceIdResponse): unknown; - fromPartial(object: Partial<_129.QueryProjectsByReferenceIdResponse>): _129.QueryProjectsByReferenceIdResponse; - fromAmino(object: _129.QueryProjectsByReferenceIdResponseAmino): _129.QueryProjectsByReferenceIdResponse; - toAmino(message: _129.QueryProjectsByReferenceIdResponse): _129.QueryProjectsByReferenceIdResponseAmino; - fromAminoMsg(object: _129.QueryProjectsByReferenceIdResponseAminoMsg): _129.QueryProjectsByReferenceIdResponse; - fromProtoMsg(message: _129.QueryProjectsByReferenceIdResponseProtoMsg): _129.QueryProjectsByReferenceIdResponse; - toProto(message: _129.QueryProjectsByReferenceIdResponse): Uint8Array; - toProtoMsg(message: _129.QueryProjectsByReferenceIdResponse): _129.QueryProjectsByReferenceIdResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsByReferenceIdResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsByReferenceIdResponse; + fromJSON(object: any): _130.QueryProjectsByReferenceIdResponse; + toJSON(message: _130.QueryProjectsByReferenceIdResponse): unknown; + fromPartial(object: Partial<_130.QueryProjectsByReferenceIdResponse>): _130.QueryProjectsByReferenceIdResponse; + fromAmino(object: _130.QueryProjectsByReferenceIdResponseAmino): _130.QueryProjectsByReferenceIdResponse; + toAmino(message: _130.QueryProjectsByReferenceIdResponse): _130.QueryProjectsByReferenceIdResponseAmino; + fromAminoMsg(object: _130.QueryProjectsByReferenceIdResponseAminoMsg): _130.QueryProjectsByReferenceIdResponse; + fromProtoMsg(message: _130.QueryProjectsByReferenceIdResponseProtoMsg): _130.QueryProjectsByReferenceIdResponse; + toProto(message: _130.QueryProjectsByReferenceIdResponse): Uint8Array; + toProtoMsg(message: _130.QueryProjectsByReferenceIdResponse): _130.QueryProjectsByReferenceIdResponseProtoMsg; }; QueryProjectsByAdminRequest: { - encode(message: _129.QueryProjectsByAdminRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsByAdminRequest; - fromJSON(object: any): _129.QueryProjectsByAdminRequest; - toJSON(message: _129.QueryProjectsByAdminRequest): unknown; - fromPartial(object: Partial<_129.QueryProjectsByAdminRequest>): _129.QueryProjectsByAdminRequest; - fromAmino(object: _129.QueryProjectsByAdminRequestAmino): _129.QueryProjectsByAdminRequest; - toAmino(message: _129.QueryProjectsByAdminRequest): _129.QueryProjectsByAdminRequestAmino; - fromAminoMsg(object: _129.QueryProjectsByAdminRequestAminoMsg): _129.QueryProjectsByAdminRequest; - fromProtoMsg(message: _129.QueryProjectsByAdminRequestProtoMsg): _129.QueryProjectsByAdminRequest; - toProto(message: _129.QueryProjectsByAdminRequest): Uint8Array; - toProtoMsg(message: _129.QueryProjectsByAdminRequest): _129.QueryProjectsByAdminRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsByAdminRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsByAdminRequest; + fromJSON(object: any): _130.QueryProjectsByAdminRequest; + toJSON(message: _130.QueryProjectsByAdminRequest): unknown; + fromPartial(object: Partial<_130.QueryProjectsByAdminRequest>): _130.QueryProjectsByAdminRequest; + fromAmino(object: _130.QueryProjectsByAdminRequestAmino): _130.QueryProjectsByAdminRequest; + toAmino(message: _130.QueryProjectsByAdminRequest): _130.QueryProjectsByAdminRequestAmino; + fromAminoMsg(object: _130.QueryProjectsByAdminRequestAminoMsg): _130.QueryProjectsByAdminRequest; + fromProtoMsg(message: _130.QueryProjectsByAdminRequestProtoMsg): _130.QueryProjectsByAdminRequest; + toProto(message: _130.QueryProjectsByAdminRequest): Uint8Array; + toProtoMsg(message: _130.QueryProjectsByAdminRequest): _130.QueryProjectsByAdminRequestProtoMsg; }; QueryProjectsByAdminResponse: { - encode(message: _129.QueryProjectsByAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectsByAdminResponse; - fromJSON(object: any): _129.QueryProjectsByAdminResponse; - toJSON(message: _129.QueryProjectsByAdminResponse): unknown; - fromPartial(object: Partial<_129.QueryProjectsByAdminResponse>): _129.QueryProjectsByAdminResponse; - fromAmino(object: _129.QueryProjectsByAdminResponseAmino): _129.QueryProjectsByAdminResponse; - toAmino(message: _129.QueryProjectsByAdminResponse): _129.QueryProjectsByAdminResponseAmino; - fromAminoMsg(object: _129.QueryProjectsByAdminResponseAminoMsg): _129.QueryProjectsByAdminResponse; - fromProtoMsg(message: _129.QueryProjectsByAdminResponseProtoMsg): _129.QueryProjectsByAdminResponse; - toProto(message: _129.QueryProjectsByAdminResponse): Uint8Array; - toProtoMsg(message: _129.QueryProjectsByAdminResponse): _129.QueryProjectsByAdminResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectsByAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectsByAdminResponse; + fromJSON(object: any): _130.QueryProjectsByAdminResponse; + toJSON(message: _130.QueryProjectsByAdminResponse): unknown; + fromPartial(object: Partial<_130.QueryProjectsByAdminResponse>): _130.QueryProjectsByAdminResponse; + fromAmino(object: _130.QueryProjectsByAdminResponseAmino): _130.QueryProjectsByAdminResponse; + toAmino(message: _130.QueryProjectsByAdminResponse): _130.QueryProjectsByAdminResponseAmino; + fromAminoMsg(object: _130.QueryProjectsByAdminResponseAminoMsg): _130.QueryProjectsByAdminResponse; + fromProtoMsg(message: _130.QueryProjectsByAdminResponseProtoMsg): _130.QueryProjectsByAdminResponse; + toProto(message: _130.QueryProjectsByAdminResponse): Uint8Array; + toProtoMsg(message: _130.QueryProjectsByAdminResponse): _130.QueryProjectsByAdminResponseProtoMsg; }; QueryProjectRequest: { - encode(message: _129.QueryProjectRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectRequest; - fromJSON(object: any): _129.QueryProjectRequest; - toJSON(message: _129.QueryProjectRequest): unknown; - fromPartial(object: Partial<_129.QueryProjectRequest>): _129.QueryProjectRequest; - fromAmino(object: _129.QueryProjectRequestAmino): _129.QueryProjectRequest; - toAmino(message: _129.QueryProjectRequest): _129.QueryProjectRequestAmino; - fromAminoMsg(object: _129.QueryProjectRequestAminoMsg): _129.QueryProjectRequest; - fromProtoMsg(message: _129.QueryProjectRequestProtoMsg): _129.QueryProjectRequest; - toProto(message: _129.QueryProjectRequest): Uint8Array; - toProtoMsg(message: _129.QueryProjectRequest): _129.QueryProjectRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectRequest; + fromJSON(object: any): _130.QueryProjectRequest; + toJSON(message: _130.QueryProjectRequest): unknown; + fromPartial(object: Partial<_130.QueryProjectRequest>): _130.QueryProjectRequest; + fromAmino(object: _130.QueryProjectRequestAmino): _130.QueryProjectRequest; + toAmino(message: _130.QueryProjectRequest): _130.QueryProjectRequestAmino; + fromAminoMsg(object: _130.QueryProjectRequestAminoMsg): _130.QueryProjectRequest; + fromProtoMsg(message: _130.QueryProjectRequestProtoMsg): _130.QueryProjectRequest; + toProto(message: _130.QueryProjectRequest): Uint8Array; + toProtoMsg(message: _130.QueryProjectRequest): _130.QueryProjectRequestProtoMsg; }; QueryProjectResponse: { - encode(message: _129.QueryProjectResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryProjectResponse; - fromJSON(object: any): _129.QueryProjectResponse; - toJSON(message: _129.QueryProjectResponse): unknown; - fromPartial(object: Partial<_129.QueryProjectResponse>): _129.QueryProjectResponse; - fromAmino(object: _129.QueryProjectResponseAmino): _129.QueryProjectResponse; - toAmino(message: _129.QueryProjectResponse): _129.QueryProjectResponseAmino; - fromAminoMsg(object: _129.QueryProjectResponseAminoMsg): _129.QueryProjectResponse; - fromProtoMsg(message: _129.QueryProjectResponseProtoMsg): _129.QueryProjectResponse; - toProto(message: _129.QueryProjectResponse): Uint8Array; - toProtoMsg(message: _129.QueryProjectResponse): _129.QueryProjectResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryProjectResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryProjectResponse; + fromJSON(object: any): _130.QueryProjectResponse; + toJSON(message: _130.QueryProjectResponse): unknown; + fromPartial(object: Partial<_130.QueryProjectResponse>): _130.QueryProjectResponse; + fromAmino(object: _130.QueryProjectResponseAmino): _130.QueryProjectResponse; + toAmino(message: _130.QueryProjectResponse): _130.QueryProjectResponseAmino; + fromAminoMsg(object: _130.QueryProjectResponseAminoMsg): _130.QueryProjectResponse; + fromProtoMsg(message: _130.QueryProjectResponseProtoMsg): _130.QueryProjectResponse; + toProto(message: _130.QueryProjectResponse): Uint8Array; + toProtoMsg(message: _130.QueryProjectResponse): _130.QueryProjectResponseProtoMsg; }; QueryBatchesRequest: { - encode(message: _129.QueryBatchesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesRequest; - fromJSON(object: any): _129.QueryBatchesRequest; - toJSON(message: _129.QueryBatchesRequest): unknown; - fromPartial(object: Partial<_129.QueryBatchesRequest>): _129.QueryBatchesRequest; - fromAmino(object: _129.QueryBatchesRequestAmino): _129.QueryBatchesRequest; - toAmino(message: _129.QueryBatchesRequest): _129.QueryBatchesRequestAmino; - fromAminoMsg(object: _129.QueryBatchesRequestAminoMsg): _129.QueryBatchesRequest; - fromProtoMsg(message: _129.QueryBatchesRequestProtoMsg): _129.QueryBatchesRequest; - toProto(message: _129.QueryBatchesRequest): Uint8Array; - toProtoMsg(message: _129.QueryBatchesRequest): _129.QueryBatchesRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesRequest; + fromJSON(object: any): _130.QueryBatchesRequest; + toJSON(message: _130.QueryBatchesRequest): unknown; + fromPartial(object: Partial<_130.QueryBatchesRequest>): _130.QueryBatchesRequest; + fromAmino(object: _130.QueryBatchesRequestAmino): _130.QueryBatchesRequest; + toAmino(message: _130.QueryBatchesRequest): _130.QueryBatchesRequestAmino; + fromAminoMsg(object: _130.QueryBatchesRequestAminoMsg): _130.QueryBatchesRequest; + fromProtoMsg(message: _130.QueryBatchesRequestProtoMsg): _130.QueryBatchesRequest; + toProto(message: _130.QueryBatchesRequest): Uint8Array; + toProtoMsg(message: _130.QueryBatchesRequest): _130.QueryBatchesRequestProtoMsg; }; QueryBatchesResponse: { - encode(message: _129.QueryBatchesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesResponse; - fromJSON(object: any): _129.QueryBatchesResponse; - toJSON(message: _129.QueryBatchesResponse): unknown; - fromPartial(object: Partial<_129.QueryBatchesResponse>): _129.QueryBatchesResponse; - fromAmino(object: _129.QueryBatchesResponseAmino): _129.QueryBatchesResponse; - toAmino(message: _129.QueryBatchesResponse): _129.QueryBatchesResponseAmino; - fromAminoMsg(object: _129.QueryBatchesResponseAminoMsg): _129.QueryBatchesResponse; - fromProtoMsg(message: _129.QueryBatchesResponseProtoMsg): _129.QueryBatchesResponse; - toProto(message: _129.QueryBatchesResponse): Uint8Array; - toProtoMsg(message: _129.QueryBatchesResponse): _129.QueryBatchesResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesResponse; + fromJSON(object: any): _130.QueryBatchesResponse; + toJSON(message: _130.QueryBatchesResponse): unknown; + fromPartial(object: Partial<_130.QueryBatchesResponse>): _130.QueryBatchesResponse; + fromAmino(object: _130.QueryBatchesResponseAmino): _130.QueryBatchesResponse; + toAmino(message: _130.QueryBatchesResponse): _130.QueryBatchesResponseAmino; + fromAminoMsg(object: _130.QueryBatchesResponseAminoMsg): _130.QueryBatchesResponse; + fromProtoMsg(message: _130.QueryBatchesResponseProtoMsg): _130.QueryBatchesResponse; + toProto(message: _130.QueryBatchesResponse): Uint8Array; + toProtoMsg(message: _130.QueryBatchesResponse): _130.QueryBatchesResponseProtoMsg; }; QueryBatchesByIssuerRequest: { - encode(message: _129.QueryBatchesByIssuerRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesByIssuerRequest; - fromJSON(object: any): _129.QueryBatchesByIssuerRequest; - toJSON(message: _129.QueryBatchesByIssuerRequest): unknown; - fromPartial(object: Partial<_129.QueryBatchesByIssuerRequest>): _129.QueryBatchesByIssuerRequest; - fromAmino(object: _129.QueryBatchesByIssuerRequestAmino): _129.QueryBatchesByIssuerRequest; - toAmino(message: _129.QueryBatchesByIssuerRequest): _129.QueryBatchesByIssuerRequestAmino; - fromAminoMsg(object: _129.QueryBatchesByIssuerRequestAminoMsg): _129.QueryBatchesByIssuerRequest; - fromProtoMsg(message: _129.QueryBatchesByIssuerRequestProtoMsg): _129.QueryBatchesByIssuerRequest; - toProto(message: _129.QueryBatchesByIssuerRequest): Uint8Array; - toProtoMsg(message: _129.QueryBatchesByIssuerRequest): _129.QueryBatchesByIssuerRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesByIssuerRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesByIssuerRequest; + fromJSON(object: any): _130.QueryBatchesByIssuerRequest; + toJSON(message: _130.QueryBatchesByIssuerRequest): unknown; + fromPartial(object: Partial<_130.QueryBatchesByIssuerRequest>): _130.QueryBatchesByIssuerRequest; + fromAmino(object: _130.QueryBatchesByIssuerRequestAmino): _130.QueryBatchesByIssuerRequest; + toAmino(message: _130.QueryBatchesByIssuerRequest): _130.QueryBatchesByIssuerRequestAmino; + fromAminoMsg(object: _130.QueryBatchesByIssuerRequestAminoMsg): _130.QueryBatchesByIssuerRequest; + fromProtoMsg(message: _130.QueryBatchesByIssuerRequestProtoMsg): _130.QueryBatchesByIssuerRequest; + toProto(message: _130.QueryBatchesByIssuerRequest): Uint8Array; + toProtoMsg(message: _130.QueryBatchesByIssuerRequest): _130.QueryBatchesByIssuerRequestProtoMsg; }; QueryBatchesByIssuerResponse: { - encode(message: _129.QueryBatchesByIssuerResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesByIssuerResponse; - fromJSON(object: any): _129.QueryBatchesByIssuerResponse; - toJSON(message: _129.QueryBatchesByIssuerResponse): unknown; - fromPartial(object: Partial<_129.QueryBatchesByIssuerResponse>): _129.QueryBatchesByIssuerResponse; - fromAmino(object: _129.QueryBatchesByIssuerResponseAmino): _129.QueryBatchesByIssuerResponse; - toAmino(message: _129.QueryBatchesByIssuerResponse): _129.QueryBatchesByIssuerResponseAmino; - fromAminoMsg(object: _129.QueryBatchesByIssuerResponseAminoMsg): _129.QueryBatchesByIssuerResponse; - fromProtoMsg(message: _129.QueryBatchesByIssuerResponseProtoMsg): _129.QueryBatchesByIssuerResponse; - toProto(message: _129.QueryBatchesByIssuerResponse): Uint8Array; - toProtoMsg(message: _129.QueryBatchesByIssuerResponse): _129.QueryBatchesByIssuerResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesByIssuerResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesByIssuerResponse; + fromJSON(object: any): _130.QueryBatchesByIssuerResponse; + toJSON(message: _130.QueryBatchesByIssuerResponse): unknown; + fromPartial(object: Partial<_130.QueryBatchesByIssuerResponse>): _130.QueryBatchesByIssuerResponse; + fromAmino(object: _130.QueryBatchesByIssuerResponseAmino): _130.QueryBatchesByIssuerResponse; + toAmino(message: _130.QueryBatchesByIssuerResponse): _130.QueryBatchesByIssuerResponseAmino; + fromAminoMsg(object: _130.QueryBatchesByIssuerResponseAminoMsg): _130.QueryBatchesByIssuerResponse; + fromProtoMsg(message: _130.QueryBatchesByIssuerResponseProtoMsg): _130.QueryBatchesByIssuerResponse; + toProto(message: _130.QueryBatchesByIssuerResponse): Uint8Array; + toProtoMsg(message: _130.QueryBatchesByIssuerResponse): _130.QueryBatchesByIssuerResponseProtoMsg; }; QueryBatchesByClassRequest: { - encode(message: _129.QueryBatchesByClassRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesByClassRequest; - fromJSON(object: any): _129.QueryBatchesByClassRequest; - toJSON(message: _129.QueryBatchesByClassRequest): unknown; - fromPartial(object: Partial<_129.QueryBatchesByClassRequest>): _129.QueryBatchesByClassRequest; - fromAmino(object: _129.QueryBatchesByClassRequestAmino): _129.QueryBatchesByClassRequest; - toAmino(message: _129.QueryBatchesByClassRequest): _129.QueryBatchesByClassRequestAmino; - fromAminoMsg(object: _129.QueryBatchesByClassRequestAminoMsg): _129.QueryBatchesByClassRequest; - fromProtoMsg(message: _129.QueryBatchesByClassRequestProtoMsg): _129.QueryBatchesByClassRequest; - toProto(message: _129.QueryBatchesByClassRequest): Uint8Array; - toProtoMsg(message: _129.QueryBatchesByClassRequest): _129.QueryBatchesByClassRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesByClassRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesByClassRequest; + fromJSON(object: any): _130.QueryBatchesByClassRequest; + toJSON(message: _130.QueryBatchesByClassRequest): unknown; + fromPartial(object: Partial<_130.QueryBatchesByClassRequest>): _130.QueryBatchesByClassRequest; + fromAmino(object: _130.QueryBatchesByClassRequestAmino): _130.QueryBatchesByClassRequest; + toAmino(message: _130.QueryBatchesByClassRequest): _130.QueryBatchesByClassRequestAmino; + fromAminoMsg(object: _130.QueryBatchesByClassRequestAminoMsg): _130.QueryBatchesByClassRequest; + fromProtoMsg(message: _130.QueryBatchesByClassRequestProtoMsg): _130.QueryBatchesByClassRequest; + toProto(message: _130.QueryBatchesByClassRequest): Uint8Array; + toProtoMsg(message: _130.QueryBatchesByClassRequest): _130.QueryBatchesByClassRequestProtoMsg; }; QueryBatchesByProjectRequest: { - encode(message: _129.QueryBatchesByProjectRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesByProjectRequest; - fromJSON(object: any): _129.QueryBatchesByProjectRequest; - toJSON(message: _129.QueryBatchesByProjectRequest): unknown; - fromPartial(object: Partial<_129.QueryBatchesByProjectRequest>): _129.QueryBatchesByProjectRequest; - fromAmino(object: _129.QueryBatchesByProjectRequestAmino): _129.QueryBatchesByProjectRequest; - toAmino(message: _129.QueryBatchesByProjectRequest): _129.QueryBatchesByProjectRequestAmino; - fromAminoMsg(object: _129.QueryBatchesByProjectRequestAminoMsg): _129.QueryBatchesByProjectRequest; - fromProtoMsg(message: _129.QueryBatchesByProjectRequestProtoMsg): _129.QueryBatchesByProjectRequest; - toProto(message: _129.QueryBatchesByProjectRequest): Uint8Array; - toProtoMsg(message: _129.QueryBatchesByProjectRequest): _129.QueryBatchesByProjectRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesByProjectRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesByProjectRequest; + fromJSON(object: any): _130.QueryBatchesByProjectRequest; + toJSON(message: _130.QueryBatchesByProjectRequest): unknown; + fromPartial(object: Partial<_130.QueryBatchesByProjectRequest>): _130.QueryBatchesByProjectRequest; + fromAmino(object: _130.QueryBatchesByProjectRequestAmino): _130.QueryBatchesByProjectRequest; + toAmino(message: _130.QueryBatchesByProjectRequest): _130.QueryBatchesByProjectRequestAmino; + fromAminoMsg(object: _130.QueryBatchesByProjectRequestAminoMsg): _130.QueryBatchesByProjectRequest; + fromProtoMsg(message: _130.QueryBatchesByProjectRequestProtoMsg): _130.QueryBatchesByProjectRequest; + toProto(message: _130.QueryBatchesByProjectRequest): Uint8Array; + toProtoMsg(message: _130.QueryBatchesByProjectRequest): _130.QueryBatchesByProjectRequestProtoMsg; }; QueryBatchesByProjectResponse: { - encode(message: _129.QueryBatchesByProjectResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesByProjectResponse; - fromJSON(object: any): _129.QueryBatchesByProjectResponse; - toJSON(message: _129.QueryBatchesByProjectResponse): unknown; - fromPartial(object: Partial<_129.QueryBatchesByProjectResponse>): _129.QueryBatchesByProjectResponse; - fromAmino(object: _129.QueryBatchesByProjectResponseAmino): _129.QueryBatchesByProjectResponse; - toAmino(message: _129.QueryBatchesByProjectResponse): _129.QueryBatchesByProjectResponseAmino; - fromAminoMsg(object: _129.QueryBatchesByProjectResponseAminoMsg): _129.QueryBatchesByProjectResponse; - fromProtoMsg(message: _129.QueryBatchesByProjectResponseProtoMsg): _129.QueryBatchesByProjectResponse; - toProto(message: _129.QueryBatchesByProjectResponse): Uint8Array; - toProtoMsg(message: _129.QueryBatchesByProjectResponse): _129.QueryBatchesByProjectResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesByProjectResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesByProjectResponse; + fromJSON(object: any): _130.QueryBatchesByProjectResponse; + toJSON(message: _130.QueryBatchesByProjectResponse): unknown; + fromPartial(object: Partial<_130.QueryBatchesByProjectResponse>): _130.QueryBatchesByProjectResponse; + fromAmino(object: _130.QueryBatchesByProjectResponseAmino): _130.QueryBatchesByProjectResponse; + toAmino(message: _130.QueryBatchesByProjectResponse): _130.QueryBatchesByProjectResponseAmino; + fromAminoMsg(object: _130.QueryBatchesByProjectResponseAminoMsg): _130.QueryBatchesByProjectResponse; + fromProtoMsg(message: _130.QueryBatchesByProjectResponseProtoMsg): _130.QueryBatchesByProjectResponse; + toProto(message: _130.QueryBatchesByProjectResponse): Uint8Array; + toProtoMsg(message: _130.QueryBatchesByProjectResponse): _130.QueryBatchesByProjectResponseProtoMsg; }; QueryBatchesByClassResponse: { - encode(message: _129.QueryBatchesByClassResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchesByClassResponse; - fromJSON(object: any): _129.QueryBatchesByClassResponse; - toJSON(message: _129.QueryBatchesByClassResponse): unknown; - fromPartial(object: Partial<_129.QueryBatchesByClassResponse>): _129.QueryBatchesByClassResponse; - fromAmino(object: _129.QueryBatchesByClassResponseAmino): _129.QueryBatchesByClassResponse; - toAmino(message: _129.QueryBatchesByClassResponse): _129.QueryBatchesByClassResponseAmino; - fromAminoMsg(object: _129.QueryBatchesByClassResponseAminoMsg): _129.QueryBatchesByClassResponse; - fromProtoMsg(message: _129.QueryBatchesByClassResponseProtoMsg): _129.QueryBatchesByClassResponse; - toProto(message: _129.QueryBatchesByClassResponse): Uint8Array; - toProtoMsg(message: _129.QueryBatchesByClassResponse): _129.QueryBatchesByClassResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchesByClassResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchesByClassResponse; + fromJSON(object: any): _130.QueryBatchesByClassResponse; + toJSON(message: _130.QueryBatchesByClassResponse): unknown; + fromPartial(object: Partial<_130.QueryBatchesByClassResponse>): _130.QueryBatchesByClassResponse; + fromAmino(object: _130.QueryBatchesByClassResponseAmino): _130.QueryBatchesByClassResponse; + toAmino(message: _130.QueryBatchesByClassResponse): _130.QueryBatchesByClassResponseAmino; + fromAminoMsg(object: _130.QueryBatchesByClassResponseAminoMsg): _130.QueryBatchesByClassResponse; + fromProtoMsg(message: _130.QueryBatchesByClassResponseProtoMsg): _130.QueryBatchesByClassResponse; + toProto(message: _130.QueryBatchesByClassResponse): Uint8Array; + toProtoMsg(message: _130.QueryBatchesByClassResponse): _130.QueryBatchesByClassResponseProtoMsg; }; QueryBatchRequest: { - encode(message: _129.QueryBatchRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchRequest; - fromJSON(object: any): _129.QueryBatchRequest; - toJSON(message: _129.QueryBatchRequest): unknown; - fromPartial(object: Partial<_129.QueryBatchRequest>): _129.QueryBatchRequest; - fromAmino(object: _129.QueryBatchRequestAmino): _129.QueryBatchRequest; - toAmino(message: _129.QueryBatchRequest): _129.QueryBatchRequestAmino; - fromAminoMsg(object: _129.QueryBatchRequestAminoMsg): _129.QueryBatchRequest; - fromProtoMsg(message: _129.QueryBatchRequestProtoMsg): _129.QueryBatchRequest; - toProto(message: _129.QueryBatchRequest): Uint8Array; - toProtoMsg(message: _129.QueryBatchRequest): _129.QueryBatchRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchRequest; + fromJSON(object: any): _130.QueryBatchRequest; + toJSON(message: _130.QueryBatchRequest): unknown; + fromPartial(object: Partial<_130.QueryBatchRequest>): _130.QueryBatchRequest; + fromAmino(object: _130.QueryBatchRequestAmino): _130.QueryBatchRequest; + toAmino(message: _130.QueryBatchRequest): _130.QueryBatchRequestAmino; + fromAminoMsg(object: _130.QueryBatchRequestAminoMsg): _130.QueryBatchRequest; + fromProtoMsg(message: _130.QueryBatchRequestProtoMsg): _130.QueryBatchRequest; + toProto(message: _130.QueryBatchRequest): Uint8Array; + toProtoMsg(message: _130.QueryBatchRequest): _130.QueryBatchRequestProtoMsg; }; QueryBatchResponse: { - encode(message: _129.QueryBatchResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBatchResponse; - fromJSON(object: any): _129.QueryBatchResponse; - toJSON(message: _129.QueryBatchResponse): unknown; - fromPartial(object: Partial<_129.QueryBatchResponse>): _129.QueryBatchResponse; - fromAmino(object: _129.QueryBatchResponseAmino): _129.QueryBatchResponse; - toAmino(message: _129.QueryBatchResponse): _129.QueryBatchResponseAmino; - fromAminoMsg(object: _129.QueryBatchResponseAminoMsg): _129.QueryBatchResponse; - fromProtoMsg(message: _129.QueryBatchResponseProtoMsg): _129.QueryBatchResponse; - toProto(message: _129.QueryBatchResponse): Uint8Array; - toProtoMsg(message: _129.QueryBatchResponse): _129.QueryBatchResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBatchResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBatchResponse; + fromJSON(object: any): _130.QueryBatchResponse; + toJSON(message: _130.QueryBatchResponse): unknown; + fromPartial(object: Partial<_130.QueryBatchResponse>): _130.QueryBatchResponse; + fromAmino(object: _130.QueryBatchResponseAmino): _130.QueryBatchResponse; + toAmino(message: _130.QueryBatchResponse): _130.QueryBatchResponseAmino; + fromAminoMsg(object: _130.QueryBatchResponseAminoMsg): _130.QueryBatchResponse; + fromProtoMsg(message: _130.QueryBatchResponseProtoMsg): _130.QueryBatchResponse; + toProto(message: _130.QueryBatchResponse): Uint8Array; + toProtoMsg(message: _130.QueryBatchResponse): _130.QueryBatchResponseProtoMsg; }; QueryBalanceRequest: { - encode(message: _129.QueryBalanceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBalanceRequest; - fromJSON(object: any): _129.QueryBalanceRequest; - toJSON(message: _129.QueryBalanceRequest): unknown; - fromPartial(object: Partial<_129.QueryBalanceRequest>): _129.QueryBalanceRequest; - fromAmino(object: _129.QueryBalanceRequestAmino): _129.QueryBalanceRequest; - toAmino(message: _129.QueryBalanceRequest): _129.QueryBalanceRequestAmino; - fromAminoMsg(object: _129.QueryBalanceRequestAminoMsg): _129.QueryBalanceRequest; - fromProtoMsg(message: _129.QueryBalanceRequestProtoMsg): _129.QueryBalanceRequest; - toProto(message: _129.QueryBalanceRequest): Uint8Array; - toProtoMsg(message: _129.QueryBalanceRequest): _129.QueryBalanceRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBalanceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBalanceRequest; + fromJSON(object: any): _130.QueryBalanceRequest; + toJSON(message: _130.QueryBalanceRequest): unknown; + fromPartial(object: Partial<_130.QueryBalanceRequest>): _130.QueryBalanceRequest; + fromAmino(object: _130.QueryBalanceRequestAmino): _130.QueryBalanceRequest; + toAmino(message: _130.QueryBalanceRequest): _130.QueryBalanceRequestAmino; + fromAminoMsg(object: _130.QueryBalanceRequestAminoMsg): _130.QueryBalanceRequest; + fromProtoMsg(message: _130.QueryBalanceRequestProtoMsg): _130.QueryBalanceRequest; + toProto(message: _130.QueryBalanceRequest): Uint8Array; + toProtoMsg(message: _130.QueryBalanceRequest): _130.QueryBalanceRequestProtoMsg; }; QueryBalanceResponse: { - encode(message: _129.QueryBalanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBalanceResponse; - fromJSON(object: any): _129.QueryBalanceResponse; - toJSON(message: _129.QueryBalanceResponse): unknown; - fromPartial(object: Partial<_129.QueryBalanceResponse>): _129.QueryBalanceResponse; - fromAmino(object: _129.QueryBalanceResponseAmino): _129.QueryBalanceResponse; - toAmino(message: _129.QueryBalanceResponse): _129.QueryBalanceResponseAmino; - fromAminoMsg(object: _129.QueryBalanceResponseAminoMsg): _129.QueryBalanceResponse; - fromProtoMsg(message: _129.QueryBalanceResponseProtoMsg): _129.QueryBalanceResponse; - toProto(message: _129.QueryBalanceResponse): Uint8Array; - toProtoMsg(message: _129.QueryBalanceResponse): _129.QueryBalanceResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBalanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBalanceResponse; + fromJSON(object: any): _130.QueryBalanceResponse; + toJSON(message: _130.QueryBalanceResponse): unknown; + fromPartial(object: Partial<_130.QueryBalanceResponse>): _130.QueryBalanceResponse; + fromAmino(object: _130.QueryBalanceResponseAmino): _130.QueryBalanceResponse; + toAmino(message: _130.QueryBalanceResponse): _130.QueryBalanceResponseAmino; + fromAminoMsg(object: _130.QueryBalanceResponseAminoMsg): _130.QueryBalanceResponse; + fromProtoMsg(message: _130.QueryBalanceResponseProtoMsg): _130.QueryBalanceResponse; + toProto(message: _130.QueryBalanceResponse): Uint8Array; + toProtoMsg(message: _130.QueryBalanceResponse): _130.QueryBalanceResponseProtoMsg; }; QueryBalancesRequest: { - encode(message: _129.QueryBalancesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBalancesRequest; - fromJSON(object: any): _129.QueryBalancesRequest; - toJSON(message: _129.QueryBalancesRequest): unknown; - fromPartial(object: Partial<_129.QueryBalancesRequest>): _129.QueryBalancesRequest; - fromAmino(object: _129.QueryBalancesRequestAmino): _129.QueryBalancesRequest; - toAmino(message: _129.QueryBalancesRequest): _129.QueryBalancesRequestAmino; - fromAminoMsg(object: _129.QueryBalancesRequestAminoMsg): _129.QueryBalancesRequest; - fromProtoMsg(message: _129.QueryBalancesRequestProtoMsg): _129.QueryBalancesRequest; - toProto(message: _129.QueryBalancesRequest): Uint8Array; - toProtoMsg(message: _129.QueryBalancesRequest): _129.QueryBalancesRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBalancesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBalancesRequest; + fromJSON(object: any): _130.QueryBalancesRequest; + toJSON(message: _130.QueryBalancesRequest): unknown; + fromPartial(object: Partial<_130.QueryBalancesRequest>): _130.QueryBalancesRequest; + fromAmino(object: _130.QueryBalancesRequestAmino): _130.QueryBalancesRequest; + toAmino(message: _130.QueryBalancesRequest): _130.QueryBalancesRequestAmino; + fromAminoMsg(object: _130.QueryBalancesRequestAminoMsg): _130.QueryBalancesRequest; + fromProtoMsg(message: _130.QueryBalancesRequestProtoMsg): _130.QueryBalancesRequest; + toProto(message: _130.QueryBalancesRequest): Uint8Array; + toProtoMsg(message: _130.QueryBalancesRequest): _130.QueryBalancesRequestProtoMsg; }; QueryBalancesResponse: { - encode(message: _129.QueryBalancesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBalancesResponse; - fromJSON(object: any): _129.QueryBalancesResponse; - toJSON(message: _129.QueryBalancesResponse): unknown; - fromPartial(object: Partial<_129.QueryBalancesResponse>): _129.QueryBalancesResponse; - fromAmino(object: _129.QueryBalancesResponseAmino): _129.QueryBalancesResponse; - toAmino(message: _129.QueryBalancesResponse): _129.QueryBalancesResponseAmino; - fromAminoMsg(object: _129.QueryBalancesResponseAminoMsg): _129.QueryBalancesResponse; - fromProtoMsg(message: _129.QueryBalancesResponseProtoMsg): _129.QueryBalancesResponse; - toProto(message: _129.QueryBalancesResponse): Uint8Array; - toProtoMsg(message: _129.QueryBalancesResponse): _129.QueryBalancesResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBalancesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBalancesResponse; + fromJSON(object: any): _130.QueryBalancesResponse; + toJSON(message: _130.QueryBalancesResponse): unknown; + fromPartial(object: Partial<_130.QueryBalancesResponse>): _130.QueryBalancesResponse; + fromAmino(object: _130.QueryBalancesResponseAmino): _130.QueryBalancesResponse; + toAmino(message: _130.QueryBalancesResponse): _130.QueryBalancesResponseAmino; + fromAminoMsg(object: _130.QueryBalancesResponseAminoMsg): _130.QueryBalancesResponse; + fromProtoMsg(message: _130.QueryBalancesResponseProtoMsg): _130.QueryBalancesResponse; + toProto(message: _130.QueryBalancesResponse): Uint8Array; + toProtoMsg(message: _130.QueryBalancesResponse): _130.QueryBalancesResponseProtoMsg; }; QueryBalancesByBatchRequest: { - encode(message: _129.QueryBalancesByBatchRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBalancesByBatchRequest; - fromJSON(object: any): _129.QueryBalancesByBatchRequest; - toJSON(message: _129.QueryBalancesByBatchRequest): unknown; - fromPartial(object: Partial<_129.QueryBalancesByBatchRequest>): _129.QueryBalancesByBatchRequest; - fromAmino(object: _129.QueryBalancesByBatchRequestAmino): _129.QueryBalancesByBatchRequest; - toAmino(message: _129.QueryBalancesByBatchRequest): _129.QueryBalancesByBatchRequestAmino; - fromAminoMsg(object: _129.QueryBalancesByBatchRequestAminoMsg): _129.QueryBalancesByBatchRequest; - fromProtoMsg(message: _129.QueryBalancesByBatchRequestProtoMsg): _129.QueryBalancesByBatchRequest; - toProto(message: _129.QueryBalancesByBatchRequest): Uint8Array; - toProtoMsg(message: _129.QueryBalancesByBatchRequest): _129.QueryBalancesByBatchRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryBalancesByBatchRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBalancesByBatchRequest; + fromJSON(object: any): _130.QueryBalancesByBatchRequest; + toJSON(message: _130.QueryBalancesByBatchRequest): unknown; + fromPartial(object: Partial<_130.QueryBalancesByBatchRequest>): _130.QueryBalancesByBatchRequest; + fromAmino(object: _130.QueryBalancesByBatchRequestAmino): _130.QueryBalancesByBatchRequest; + toAmino(message: _130.QueryBalancesByBatchRequest): _130.QueryBalancesByBatchRequestAmino; + fromAminoMsg(object: _130.QueryBalancesByBatchRequestAminoMsg): _130.QueryBalancesByBatchRequest; + fromProtoMsg(message: _130.QueryBalancesByBatchRequestProtoMsg): _130.QueryBalancesByBatchRequest; + toProto(message: _130.QueryBalancesByBatchRequest): Uint8Array; + toProtoMsg(message: _130.QueryBalancesByBatchRequest): _130.QueryBalancesByBatchRequestProtoMsg; }; QueryBalancesByBatchResponse: { - encode(message: _129.QueryBalancesByBatchResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryBalancesByBatchResponse; - fromJSON(object: any): _129.QueryBalancesByBatchResponse; - toJSON(message: _129.QueryBalancesByBatchResponse): unknown; - fromPartial(object: Partial<_129.QueryBalancesByBatchResponse>): _129.QueryBalancesByBatchResponse; - fromAmino(object: _129.QueryBalancesByBatchResponseAmino): _129.QueryBalancesByBatchResponse; - toAmino(message: _129.QueryBalancesByBatchResponse): _129.QueryBalancesByBatchResponseAmino; - fromAminoMsg(object: _129.QueryBalancesByBatchResponseAminoMsg): _129.QueryBalancesByBatchResponse; - fromProtoMsg(message: _129.QueryBalancesByBatchResponseProtoMsg): _129.QueryBalancesByBatchResponse; - toProto(message: _129.QueryBalancesByBatchResponse): Uint8Array; - toProtoMsg(message: _129.QueryBalancesByBatchResponse): _129.QueryBalancesByBatchResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryBalancesByBatchResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryBalancesByBatchResponse; + fromJSON(object: any): _130.QueryBalancesByBatchResponse; + toJSON(message: _130.QueryBalancesByBatchResponse): unknown; + fromPartial(object: Partial<_130.QueryBalancesByBatchResponse>): _130.QueryBalancesByBatchResponse; + fromAmino(object: _130.QueryBalancesByBatchResponseAmino): _130.QueryBalancesByBatchResponse; + toAmino(message: _130.QueryBalancesByBatchResponse): _130.QueryBalancesByBatchResponseAmino; + fromAminoMsg(object: _130.QueryBalancesByBatchResponseAminoMsg): _130.QueryBalancesByBatchResponse; + fromProtoMsg(message: _130.QueryBalancesByBatchResponseProtoMsg): _130.QueryBalancesByBatchResponse; + toProto(message: _130.QueryBalancesByBatchResponse): Uint8Array; + toProtoMsg(message: _130.QueryBalancesByBatchResponse): _130.QueryBalancesByBatchResponseProtoMsg; }; QueryAllBalancesRequest: { - encode(message: _129.QueryAllBalancesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryAllBalancesRequest; - fromJSON(object: any): _129.QueryAllBalancesRequest; - toJSON(message: _129.QueryAllBalancesRequest): unknown; - fromPartial(object: Partial<_129.QueryAllBalancesRequest>): _129.QueryAllBalancesRequest; - fromAmino(object: _129.QueryAllBalancesRequestAmino): _129.QueryAllBalancesRequest; - toAmino(message: _129.QueryAllBalancesRequest): _129.QueryAllBalancesRequestAmino; - fromAminoMsg(object: _129.QueryAllBalancesRequestAminoMsg): _129.QueryAllBalancesRequest; - fromProtoMsg(message: _129.QueryAllBalancesRequestProtoMsg): _129.QueryAllBalancesRequest; - toProto(message: _129.QueryAllBalancesRequest): Uint8Array; - toProtoMsg(message: _129.QueryAllBalancesRequest): _129.QueryAllBalancesRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryAllBalancesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryAllBalancesRequest; + fromJSON(object: any): _130.QueryAllBalancesRequest; + toJSON(message: _130.QueryAllBalancesRequest): unknown; + fromPartial(object: Partial<_130.QueryAllBalancesRequest>): _130.QueryAllBalancesRequest; + fromAmino(object: _130.QueryAllBalancesRequestAmino): _130.QueryAllBalancesRequest; + toAmino(message: _130.QueryAllBalancesRequest): _130.QueryAllBalancesRequestAmino; + fromAminoMsg(object: _130.QueryAllBalancesRequestAminoMsg): _130.QueryAllBalancesRequest; + fromProtoMsg(message: _130.QueryAllBalancesRequestProtoMsg): _130.QueryAllBalancesRequest; + toProto(message: _130.QueryAllBalancesRequest): Uint8Array; + toProtoMsg(message: _130.QueryAllBalancesRequest): _130.QueryAllBalancesRequestProtoMsg; }; QueryAllBalancesResponse: { - encode(message: _129.QueryAllBalancesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryAllBalancesResponse; - fromJSON(object: any): _129.QueryAllBalancesResponse; - toJSON(message: _129.QueryAllBalancesResponse): unknown; - fromPartial(object: Partial<_129.QueryAllBalancesResponse>): _129.QueryAllBalancesResponse; - fromAmino(object: _129.QueryAllBalancesResponseAmino): _129.QueryAllBalancesResponse; - toAmino(message: _129.QueryAllBalancesResponse): _129.QueryAllBalancesResponseAmino; - fromAminoMsg(object: _129.QueryAllBalancesResponseAminoMsg): _129.QueryAllBalancesResponse; - fromProtoMsg(message: _129.QueryAllBalancesResponseProtoMsg): _129.QueryAllBalancesResponse; - toProto(message: _129.QueryAllBalancesResponse): Uint8Array; - toProtoMsg(message: _129.QueryAllBalancesResponse): _129.QueryAllBalancesResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryAllBalancesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryAllBalancesResponse; + fromJSON(object: any): _130.QueryAllBalancesResponse; + toJSON(message: _130.QueryAllBalancesResponse): unknown; + fromPartial(object: Partial<_130.QueryAllBalancesResponse>): _130.QueryAllBalancesResponse; + fromAmino(object: _130.QueryAllBalancesResponseAmino): _130.QueryAllBalancesResponse; + toAmino(message: _130.QueryAllBalancesResponse): _130.QueryAllBalancesResponseAmino; + fromAminoMsg(object: _130.QueryAllBalancesResponseAminoMsg): _130.QueryAllBalancesResponse; + fromProtoMsg(message: _130.QueryAllBalancesResponseProtoMsg): _130.QueryAllBalancesResponse; + toProto(message: _130.QueryAllBalancesResponse): Uint8Array; + toProtoMsg(message: _130.QueryAllBalancesResponse): _130.QueryAllBalancesResponseProtoMsg; }; QuerySupplyRequest: { - encode(message: _129.QuerySupplyRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QuerySupplyRequest; - fromJSON(object: any): _129.QuerySupplyRequest; - toJSON(message: _129.QuerySupplyRequest): unknown; - fromPartial(object: Partial<_129.QuerySupplyRequest>): _129.QuerySupplyRequest; - fromAmino(object: _129.QuerySupplyRequestAmino): _129.QuerySupplyRequest; - toAmino(message: _129.QuerySupplyRequest): _129.QuerySupplyRequestAmino; - fromAminoMsg(object: _129.QuerySupplyRequestAminoMsg): _129.QuerySupplyRequest; - fromProtoMsg(message: _129.QuerySupplyRequestProtoMsg): _129.QuerySupplyRequest; - toProto(message: _129.QuerySupplyRequest): Uint8Array; - toProtoMsg(message: _129.QuerySupplyRequest): _129.QuerySupplyRequestProtoMsg; + typeUrl: string; + encode(message: _130.QuerySupplyRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QuerySupplyRequest; + fromJSON(object: any): _130.QuerySupplyRequest; + toJSON(message: _130.QuerySupplyRequest): unknown; + fromPartial(object: Partial<_130.QuerySupplyRequest>): _130.QuerySupplyRequest; + fromAmino(object: _130.QuerySupplyRequestAmino): _130.QuerySupplyRequest; + toAmino(message: _130.QuerySupplyRequest): _130.QuerySupplyRequestAmino; + fromAminoMsg(object: _130.QuerySupplyRequestAminoMsg): _130.QuerySupplyRequest; + fromProtoMsg(message: _130.QuerySupplyRequestProtoMsg): _130.QuerySupplyRequest; + toProto(message: _130.QuerySupplyRequest): Uint8Array; + toProtoMsg(message: _130.QuerySupplyRequest): _130.QuerySupplyRequestProtoMsg; }; QuerySupplyResponse: { - encode(message: _129.QuerySupplyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QuerySupplyResponse; - fromJSON(object: any): _129.QuerySupplyResponse; - toJSON(message: _129.QuerySupplyResponse): unknown; - fromPartial(object: Partial<_129.QuerySupplyResponse>): _129.QuerySupplyResponse; - fromAmino(object: _129.QuerySupplyResponseAmino): _129.QuerySupplyResponse; - toAmino(message: _129.QuerySupplyResponse): _129.QuerySupplyResponseAmino; - fromAminoMsg(object: _129.QuerySupplyResponseAminoMsg): _129.QuerySupplyResponse; - fromProtoMsg(message: _129.QuerySupplyResponseProtoMsg): _129.QuerySupplyResponse; - toProto(message: _129.QuerySupplyResponse): Uint8Array; - toProtoMsg(message: _129.QuerySupplyResponse): _129.QuerySupplyResponseProtoMsg; + typeUrl: string; + encode(message: _130.QuerySupplyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QuerySupplyResponse; + fromJSON(object: any): _130.QuerySupplyResponse; + toJSON(message: _130.QuerySupplyResponse): unknown; + fromPartial(object: Partial<_130.QuerySupplyResponse>): _130.QuerySupplyResponse; + fromAmino(object: _130.QuerySupplyResponseAmino): _130.QuerySupplyResponse; + toAmino(message: _130.QuerySupplyResponse): _130.QuerySupplyResponseAmino; + fromAminoMsg(object: _130.QuerySupplyResponseAminoMsg): _130.QuerySupplyResponse; + fromProtoMsg(message: _130.QuerySupplyResponseProtoMsg): _130.QuerySupplyResponse; + toProto(message: _130.QuerySupplyResponse): Uint8Array; + toProtoMsg(message: _130.QuerySupplyResponse): _130.QuerySupplyResponseProtoMsg; }; QueryCreditTypesRequest: { - encode(_: _129.QueryCreditTypesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryCreditTypesRequest; - fromJSON(_: any): _129.QueryCreditTypesRequest; - toJSON(_: _129.QueryCreditTypesRequest): unknown; - fromPartial(_: Partial<_129.QueryCreditTypesRequest>): _129.QueryCreditTypesRequest; - fromAmino(_: _129.QueryCreditTypesRequestAmino): _129.QueryCreditTypesRequest; - toAmino(_: _129.QueryCreditTypesRequest): _129.QueryCreditTypesRequestAmino; - fromAminoMsg(object: _129.QueryCreditTypesRequestAminoMsg): _129.QueryCreditTypesRequest; - fromProtoMsg(message: _129.QueryCreditTypesRequestProtoMsg): _129.QueryCreditTypesRequest; - toProto(message: _129.QueryCreditTypesRequest): Uint8Array; - toProtoMsg(message: _129.QueryCreditTypesRequest): _129.QueryCreditTypesRequestProtoMsg; + typeUrl: string; + encode(_: _130.QueryCreditTypesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryCreditTypesRequest; + fromJSON(_: any): _130.QueryCreditTypesRequest; + toJSON(_: _130.QueryCreditTypesRequest): unknown; + fromPartial(_: Partial<_130.QueryCreditTypesRequest>): _130.QueryCreditTypesRequest; + fromAmino(_: _130.QueryCreditTypesRequestAmino): _130.QueryCreditTypesRequest; + toAmino(_: _130.QueryCreditTypesRequest): _130.QueryCreditTypesRequestAmino; + fromAminoMsg(object: _130.QueryCreditTypesRequestAminoMsg): _130.QueryCreditTypesRequest; + fromProtoMsg(message: _130.QueryCreditTypesRequestProtoMsg): _130.QueryCreditTypesRequest; + toProto(message: _130.QueryCreditTypesRequest): Uint8Array; + toProtoMsg(message: _130.QueryCreditTypesRequest): _130.QueryCreditTypesRequestProtoMsg; }; QueryCreditTypesResponse: { - encode(message: _129.QueryCreditTypesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryCreditTypesResponse; - fromJSON(object: any): _129.QueryCreditTypesResponse; - toJSON(message: _129.QueryCreditTypesResponse): unknown; - fromPartial(object: Partial<_129.QueryCreditTypesResponse>): _129.QueryCreditTypesResponse; - fromAmino(object: _129.QueryCreditTypesResponseAmino): _129.QueryCreditTypesResponse; - toAmino(message: _129.QueryCreditTypesResponse): _129.QueryCreditTypesResponseAmino; - fromAminoMsg(object: _129.QueryCreditTypesResponseAminoMsg): _129.QueryCreditTypesResponse; - fromProtoMsg(message: _129.QueryCreditTypesResponseProtoMsg): _129.QueryCreditTypesResponse; - toProto(message: _129.QueryCreditTypesResponse): Uint8Array; - toProtoMsg(message: _129.QueryCreditTypesResponse): _129.QueryCreditTypesResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryCreditTypesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryCreditTypesResponse; + fromJSON(object: any): _130.QueryCreditTypesResponse; + toJSON(message: _130.QueryCreditTypesResponse): unknown; + fromPartial(object: Partial<_130.QueryCreditTypesResponse>): _130.QueryCreditTypesResponse; + fromAmino(object: _130.QueryCreditTypesResponseAmino): _130.QueryCreditTypesResponse; + toAmino(message: _130.QueryCreditTypesResponse): _130.QueryCreditTypesResponseAmino; + fromAminoMsg(object: _130.QueryCreditTypesResponseAminoMsg): _130.QueryCreditTypesResponse; + fromProtoMsg(message: _130.QueryCreditTypesResponseProtoMsg): _130.QueryCreditTypesResponse; + toProto(message: _130.QueryCreditTypesResponse): Uint8Array; + toProtoMsg(message: _130.QueryCreditTypesResponse): _130.QueryCreditTypesResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _129.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryParamsRequest; - fromJSON(_: any): _129.QueryParamsRequest; - toJSON(_: _129.QueryParamsRequest): unknown; - fromPartial(_: Partial<_129.QueryParamsRequest>): _129.QueryParamsRequest; - fromAmino(_: _129.QueryParamsRequestAmino): _129.QueryParamsRequest; - toAmino(_: _129.QueryParamsRequest): _129.QueryParamsRequestAmino; - fromAminoMsg(object: _129.QueryParamsRequestAminoMsg): _129.QueryParamsRequest; - fromProtoMsg(message: _129.QueryParamsRequestProtoMsg): _129.QueryParamsRequest; - toProto(message: _129.QueryParamsRequest): Uint8Array; - toProtoMsg(message: _129.QueryParamsRequest): _129.QueryParamsRequestProtoMsg; + typeUrl: string; + encode(_: _130.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryParamsRequest; + fromJSON(_: any): _130.QueryParamsRequest; + toJSON(_: _130.QueryParamsRequest): unknown; + fromPartial(_: Partial<_130.QueryParamsRequest>): _130.QueryParamsRequest; + fromAmino(_: _130.QueryParamsRequestAmino): _130.QueryParamsRequest; + toAmino(_: _130.QueryParamsRequest): _130.QueryParamsRequestAmino; + fromAminoMsg(object: _130.QueryParamsRequestAminoMsg): _130.QueryParamsRequest; + fromProtoMsg(message: _130.QueryParamsRequestProtoMsg): _130.QueryParamsRequest; + toProto(message: _130.QueryParamsRequest): Uint8Array; + toProtoMsg(message: _130.QueryParamsRequest): _130.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _129.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryParamsResponse; - fromJSON(object: any): _129.QueryParamsResponse; - toJSON(message: _129.QueryParamsResponse): unknown; - fromPartial(object: Partial<_129.QueryParamsResponse>): _129.QueryParamsResponse; - fromAmino(object: _129.QueryParamsResponseAmino): _129.QueryParamsResponse; - toAmino(message: _129.QueryParamsResponse): _129.QueryParamsResponseAmino; - fromAminoMsg(object: _129.QueryParamsResponseAminoMsg): _129.QueryParamsResponse; - fromProtoMsg(message: _129.QueryParamsResponseProtoMsg): _129.QueryParamsResponse; - toProto(message: _129.QueryParamsResponse): Uint8Array; - toProtoMsg(message: _129.QueryParamsResponse): _129.QueryParamsResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryParamsResponse; + fromJSON(object: any): _130.QueryParamsResponse; + toJSON(message: _130.QueryParamsResponse): unknown; + fromPartial(object: Partial<_130.QueryParamsResponse>): _130.QueryParamsResponse; + fromAmino(object: _130.QueryParamsResponseAmino): _130.QueryParamsResponse; + toAmino(message: _130.QueryParamsResponse): _130.QueryParamsResponseAmino; + fromAminoMsg(object: _130.QueryParamsResponseAminoMsg): _130.QueryParamsResponse; + fromProtoMsg(message: _130.QueryParamsResponseProtoMsg): _130.QueryParamsResponse; + toProto(message: _130.QueryParamsResponse): Uint8Array; + toProtoMsg(message: _130.QueryParamsResponse): _130.QueryParamsResponseProtoMsg; }; QueryCreditTypeRequest: { - encode(message: _129.QueryCreditTypeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryCreditTypeRequest; - fromJSON(object: any): _129.QueryCreditTypeRequest; - toJSON(message: _129.QueryCreditTypeRequest): unknown; - fromPartial(object: Partial<_129.QueryCreditTypeRequest>): _129.QueryCreditTypeRequest; - fromAmino(object: _129.QueryCreditTypeRequestAmino): _129.QueryCreditTypeRequest; - toAmino(message: _129.QueryCreditTypeRequest): _129.QueryCreditTypeRequestAmino; - fromAminoMsg(object: _129.QueryCreditTypeRequestAminoMsg): _129.QueryCreditTypeRequest; - fromProtoMsg(message: _129.QueryCreditTypeRequestProtoMsg): _129.QueryCreditTypeRequest; - toProto(message: _129.QueryCreditTypeRequest): Uint8Array; - toProtoMsg(message: _129.QueryCreditTypeRequest): _129.QueryCreditTypeRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryCreditTypeRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryCreditTypeRequest; + fromJSON(object: any): _130.QueryCreditTypeRequest; + toJSON(message: _130.QueryCreditTypeRequest): unknown; + fromPartial(object: Partial<_130.QueryCreditTypeRequest>): _130.QueryCreditTypeRequest; + fromAmino(object: _130.QueryCreditTypeRequestAmino): _130.QueryCreditTypeRequest; + toAmino(message: _130.QueryCreditTypeRequest): _130.QueryCreditTypeRequestAmino; + fromAminoMsg(object: _130.QueryCreditTypeRequestAminoMsg): _130.QueryCreditTypeRequest; + fromProtoMsg(message: _130.QueryCreditTypeRequestProtoMsg): _130.QueryCreditTypeRequest; + toProto(message: _130.QueryCreditTypeRequest): Uint8Array; + toProtoMsg(message: _130.QueryCreditTypeRequest): _130.QueryCreditTypeRequestProtoMsg; }; QueryCreditTypeResponse: { - encode(message: _129.QueryCreditTypeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryCreditTypeResponse; - fromJSON(object: any): _129.QueryCreditTypeResponse; - toJSON(message: _129.QueryCreditTypeResponse): unknown; - fromPartial(object: Partial<_129.QueryCreditTypeResponse>): _129.QueryCreditTypeResponse; - fromAmino(object: _129.QueryCreditTypeResponseAmino): _129.QueryCreditTypeResponse; - toAmino(message: _129.QueryCreditTypeResponse): _129.QueryCreditTypeResponseAmino; - fromAminoMsg(object: _129.QueryCreditTypeResponseAminoMsg): _129.QueryCreditTypeResponse; - fromProtoMsg(message: _129.QueryCreditTypeResponseProtoMsg): _129.QueryCreditTypeResponse; - toProto(message: _129.QueryCreditTypeResponse): Uint8Array; - toProtoMsg(message: _129.QueryCreditTypeResponse): _129.QueryCreditTypeResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryCreditTypeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryCreditTypeResponse; + fromJSON(object: any): _130.QueryCreditTypeResponse; + toJSON(message: _130.QueryCreditTypeResponse): unknown; + fromPartial(object: Partial<_130.QueryCreditTypeResponse>): _130.QueryCreditTypeResponse; + fromAmino(object: _130.QueryCreditTypeResponseAmino): _130.QueryCreditTypeResponse; + toAmino(message: _130.QueryCreditTypeResponse): _130.QueryCreditTypeResponseAmino; + fromAminoMsg(object: _130.QueryCreditTypeResponseAminoMsg): _130.QueryCreditTypeResponse; + fromProtoMsg(message: _130.QueryCreditTypeResponseProtoMsg): _130.QueryCreditTypeResponse; + toProto(message: _130.QueryCreditTypeResponse): Uint8Array; + toProtoMsg(message: _130.QueryCreditTypeResponse): _130.QueryCreditTypeResponseProtoMsg; }; ClassInfo: { - encode(message: _129.ClassInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.ClassInfo; - fromJSON(object: any): _129.ClassInfo; - toJSON(message: _129.ClassInfo): unknown; - fromPartial(object: Partial<_129.ClassInfo>): _129.ClassInfo; - fromAmino(object: _129.ClassInfoAmino): _129.ClassInfo; - toAmino(message: _129.ClassInfo): _129.ClassInfoAmino; - fromAminoMsg(object: _129.ClassInfoAminoMsg): _129.ClassInfo; - fromProtoMsg(message: _129.ClassInfoProtoMsg): _129.ClassInfo; - toProto(message: _129.ClassInfo): Uint8Array; - toProtoMsg(message: _129.ClassInfo): _129.ClassInfoProtoMsg; + typeUrl: string; + encode(message: _130.ClassInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.ClassInfo; + fromJSON(object: any): _130.ClassInfo; + toJSON(message: _130.ClassInfo): unknown; + fromPartial(object: Partial<_130.ClassInfo>): _130.ClassInfo; + fromAmino(object: _130.ClassInfoAmino): _130.ClassInfo; + toAmino(message: _130.ClassInfo): _130.ClassInfoAmino; + fromAminoMsg(object: _130.ClassInfoAminoMsg): _130.ClassInfo; + fromProtoMsg(message: _130.ClassInfoProtoMsg): _130.ClassInfo; + toProto(message: _130.ClassInfo): Uint8Array; + toProtoMsg(message: _130.ClassInfo): _130.ClassInfoProtoMsg; }; ProjectInfo: { - encode(message: _129.ProjectInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.ProjectInfo; - fromJSON(object: any): _129.ProjectInfo; - toJSON(message: _129.ProjectInfo): unknown; - fromPartial(object: Partial<_129.ProjectInfo>): _129.ProjectInfo; - fromAmino(object: _129.ProjectInfoAmino): _129.ProjectInfo; - toAmino(message: _129.ProjectInfo): _129.ProjectInfoAmino; - fromAminoMsg(object: _129.ProjectInfoAminoMsg): _129.ProjectInfo; - fromProtoMsg(message: _129.ProjectInfoProtoMsg): _129.ProjectInfo; - toProto(message: _129.ProjectInfo): Uint8Array; - toProtoMsg(message: _129.ProjectInfo): _129.ProjectInfoProtoMsg; + typeUrl: string; + encode(message: _130.ProjectInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.ProjectInfo; + fromJSON(object: any): _130.ProjectInfo; + toJSON(message: _130.ProjectInfo): unknown; + fromPartial(object: Partial<_130.ProjectInfo>): _130.ProjectInfo; + fromAmino(object: _130.ProjectInfoAmino): _130.ProjectInfo; + toAmino(message: _130.ProjectInfo): _130.ProjectInfoAmino; + fromAminoMsg(object: _130.ProjectInfoAminoMsg): _130.ProjectInfo; + fromProtoMsg(message: _130.ProjectInfoProtoMsg): _130.ProjectInfo; + toProto(message: _130.ProjectInfo): Uint8Array; + toProtoMsg(message: _130.ProjectInfo): _130.ProjectInfoProtoMsg; }; BatchInfo: { - encode(message: _129.BatchInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.BatchInfo; - fromJSON(object: any): _129.BatchInfo; - toJSON(message: _129.BatchInfo): unknown; - fromPartial(object: Partial<_129.BatchInfo>): _129.BatchInfo; - fromAmino(object: _129.BatchInfoAmino): _129.BatchInfo; - toAmino(message: _129.BatchInfo): _129.BatchInfoAmino; - fromAminoMsg(object: _129.BatchInfoAminoMsg): _129.BatchInfo; - fromProtoMsg(message: _129.BatchInfoProtoMsg): _129.BatchInfo; - toProto(message: _129.BatchInfo): Uint8Array; - toProtoMsg(message: _129.BatchInfo): _129.BatchInfoProtoMsg; + typeUrl: string; + encode(message: _130.BatchInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.BatchInfo; + fromJSON(object: any): _130.BatchInfo; + toJSON(message: _130.BatchInfo): unknown; + fromPartial(object: Partial<_130.BatchInfo>): _130.BatchInfo; + fromAmino(object: _130.BatchInfoAmino): _130.BatchInfo; + toAmino(message: _130.BatchInfo): _130.BatchInfoAmino; + fromAminoMsg(object: _130.BatchInfoAminoMsg): _130.BatchInfo; + fromProtoMsg(message: _130.BatchInfoProtoMsg): _130.BatchInfo; + toProto(message: _130.BatchInfo): Uint8Array; + toProtoMsg(message: _130.BatchInfo): _130.BatchInfoProtoMsg; }; BatchBalanceInfo: { - encode(message: _129.BatchBalanceInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.BatchBalanceInfo; - fromJSON(object: any): _129.BatchBalanceInfo; - toJSON(message: _129.BatchBalanceInfo): unknown; - fromPartial(object: Partial<_129.BatchBalanceInfo>): _129.BatchBalanceInfo; - fromAmino(object: _129.BatchBalanceInfoAmino): _129.BatchBalanceInfo; - toAmino(message: _129.BatchBalanceInfo): _129.BatchBalanceInfoAmino; - fromAminoMsg(object: _129.BatchBalanceInfoAminoMsg): _129.BatchBalanceInfo; - fromProtoMsg(message: _129.BatchBalanceInfoProtoMsg): _129.BatchBalanceInfo; - toProto(message: _129.BatchBalanceInfo): Uint8Array; - toProtoMsg(message: _129.BatchBalanceInfo): _129.BatchBalanceInfoProtoMsg; + typeUrl: string; + encode(message: _130.BatchBalanceInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.BatchBalanceInfo; + fromJSON(object: any): _130.BatchBalanceInfo; + toJSON(message: _130.BatchBalanceInfo): unknown; + fromPartial(object: Partial<_130.BatchBalanceInfo>): _130.BatchBalanceInfo; + fromAmino(object: _130.BatchBalanceInfoAmino): _130.BatchBalanceInfo; + toAmino(message: _130.BatchBalanceInfo): _130.BatchBalanceInfoAmino; + fromAminoMsg(object: _130.BatchBalanceInfoAminoMsg): _130.BatchBalanceInfo; + fromProtoMsg(message: _130.BatchBalanceInfoProtoMsg): _130.BatchBalanceInfo; + toProto(message: _130.BatchBalanceInfo): Uint8Array; + toProtoMsg(message: _130.BatchBalanceInfo): _130.BatchBalanceInfoProtoMsg; }; QueryClassCreatorAllowlistRequest: { - encode(_: _129.QueryClassCreatorAllowlistRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassCreatorAllowlistRequest; - fromJSON(_: any): _129.QueryClassCreatorAllowlistRequest; - toJSON(_: _129.QueryClassCreatorAllowlistRequest): unknown; - fromPartial(_: Partial<_129.QueryClassCreatorAllowlistRequest>): _129.QueryClassCreatorAllowlistRequest; - fromAmino(_: _129.QueryClassCreatorAllowlistRequestAmino): _129.QueryClassCreatorAllowlistRequest; - toAmino(_: _129.QueryClassCreatorAllowlistRequest): _129.QueryClassCreatorAllowlistRequestAmino; - fromAminoMsg(object: _129.QueryClassCreatorAllowlistRequestAminoMsg): _129.QueryClassCreatorAllowlistRequest; - fromProtoMsg(message: _129.QueryClassCreatorAllowlistRequestProtoMsg): _129.QueryClassCreatorAllowlistRequest; - toProto(message: _129.QueryClassCreatorAllowlistRequest): Uint8Array; - toProtoMsg(message: _129.QueryClassCreatorAllowlistRequest): _129.QueryClassCreatorAllowlistRequestProtoMsg; + typeUrl: string; + encode(_: _130.QueryClassCreatorAllowlistRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassCreatorAllowlistRequest; + fromJSON(_: any): _130.QueryClassCreatorAllowlistRequest; + toJSON(_: _130.QueryClassCreatorAllowlistRequest): unknown; + fromPartial(_: Partial<_130.QueryClassCreatorAllowlistRequest>): _130.QueryClassCreatorAllowlistRequest; + fromAmino(_: _130.QueryClassCreatorAllowlistRequestAmino): _130.QueryClassCreatorAllowlistRequest; + toAmino(_: _130.QueryClassCreatorAllowlistRequest): _130.QueryClassCreatorAllowlistRequestAmino; + fromAminoMsg(object: _130.QueryClassCreatorAllowlistRequestAminoMsg): _130.QueryClassCreatorAllowlistRequest; + fromProtoMsg(message: _130.QueryClassCreatorAllowlistRequestProtoMsg): _130.QueryClassCreatorAllowlistRequest; + toProto(message: _130.QueryClassCreatorAllowlistRequest): Uint8Array; + toProtoMsg(message: _130.QueryClassCreatorAllowlistRequest): _130.QueryClassCreatorAllowlistRequestProtoMsg; }; QueryClassCreatorAllowlistResponse: { - encode(message: _129.QueryClassCreatorAllowlistResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassCreatorAllowlistResponse; - fromJSON(object: any): _129.QueryClassCreatorAllowlistResponse; - toJSON(message: _129.QueryClassCreatorAllowlistResponse): unknown; - fromPartial(object: Partial<_129.QueryClassCreatorAllowlistResponse>): _129.QueryClassCreatorAllowlistResponse; - fromAmino(object: _129.QueryClassCreatorAllowlistResponseAmino): _129.QueryClassCreatorAllowlistResponse; - toAmino(message: _129.QueryClassCreatorAllowlistResponse): _129.QueryClassCreatorAllowlistResponseAmino; - fromAminoMsg(object: _129.QueryClassCreatorAllowlistResponseAminoMsg): _129.QueryClassCreatorAllowlistResponse; - fromProtoMsg(message: _129.QueryClassCreatorAllowlistResponseProtoMsg): _129.QueryClassCreatorAllowlistResponse; - toProto(message: _129.QueryClassCreatorAllowlistResponse): Uint8Array; - toProtoMsg(message: _129.QueryClassCreatorAllowlistResponse): _129.QueryClassCreatorAllowlistResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassCreatorAllowlistResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassCreatorAllowlistResponse; + fromJSON(object: any): _130.QueryClassCreatorAllowlistResponse; + toJSON(message: _130.QueryClassCreatorAllowlistResponse): unknown; + fromPartial(object: Partial<_130.QueryClassCreatorAllowlistResponse>): _130.QueryClassCreatorAllowlistResponse; + fromAmino(object: _130.QueryClassCreatorAllowlistResponseAmino): _130.QueryClassCreatorAllowlistResponse; + toAmino(message: _130.QueryClassCreatorAllowlistResponse): _130.QueryClassCreatorAllowlistResponseAmino; + fromAminoMsg(object: _130.QueryClassCreatorAllowlistResponseAminoMsg): _130.QueryClassCreatorAllowlistResponse; + fromProtoMsg(message: _130.QueryClassCreatorAllowlistResponseProtoMsg): _130.QueryClassCreatorAllowlistResponse; + toProto(message: _130.QueryClassCreatorAllowlistResponse): Uint8Array; + toProtoMsg(message: _130.QueryClassCreatorAllowlistResponse): _130.QueryClassCreatorAllowlistResponseProtoMsg; }; QueryAllowedClassCreatorsRequest: { - encode(message: _129.QueryAllowedClassCreatorsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryAllowedClassCreatorsRequest; - fromJSON(object: any): _129.QueryAllowedClassCreatorsRequest; - toJSON(message: _129.QueryAllowedClassCreatorsRequest): unknown; - fromPartial(object: Partial<_129.QueryAllowedClassCreatorsRequest>): _129.QueryAllowedClassCreatorsRequest; - fromAmino(object: _129.QueryAllowedClassCreatorsRequestAmino): _129.QueryAllowedClassCreatorsRequest; - toAmino(message: _129.QueryAllowedClassCreatorsRequest): _129.QueryAllowedClassCreatorsRequestAmino; - fromAminoMsg(object: _129.QueryAllowedClassCreatorsRequestAminoMsg): _129.QueryAllowedClassCreatorsRequest; - fromProtoMsg(message: _129.QueryAllowedClassCreatorsRequestProtoMsg): _129.QueryAllowedClassCreatorsRequest; - toProto(message: _129.QueryAllowedClassCreatorsRequest): Uint8Array; - toProtoMsg(message: _129.QueryAllowedClassCreatorsRequest): _129.QueryAllowedClassCreatorsRequestProtoMsg; + typeUrl: string; + encode(message: _130.QueryAllowedClassCreatorsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryAllowedClassCreatorsRequest; + fromJSON(object: any): _130.QueryAllowedClassCreatorsRequest; + toJSON(message: _130.QueryAllowedClassCreatorsRequest): unknown; + fromPartial(object: Partial<_130.QueryAllowedClassCreatorsRequest>): _130.QueryAllowedClassCreatorsRequest; + fromAmino(object: _130.QueryAllowedClassCreatorsRequestAmino): _130.QueryAllowedClassCreatorsRequest; + toAmino(message: _130.QueryAllowedClassCreatorsRequest): _130.QueryAllowedClassCreatorsRequestAmino; + fromAminoMsg(object: _130.QueryAllowedClassCreatorsRequestAminoMsg): _130.QueryAllowedClassCreatorsRequest; + fromProtoMsg(message: _130.QueryAllowedClassCreatorsRequestProtoMsg): _130.QueryAllowedClassCreatorsRequest; + toProto(message: _130.QueryAllowedClassCreatorsRequest): Uint8Array; + toProtoMsg(message: _130.QueryAllowedClassCreatorsRequest): _130.QueryAllowedClassCreatorsRequestProtoMsg; }; QueryAllowedClassCreatorsResponse: { - encode(message: _129.QueryAllowedClassCreatorsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryAllowedClassCreatorsResponse; - fromJSON(object: any): _129.QueryAllowedClassCreatorsResponse; - toJSON(message: _129.QueryAllowedClassCreatorsResponse): unknown; - fromPartial(object: Partial<_129.QueryAllowedClassCreatorsResponse>): _129.QueryAllowedClassCreatorsResponse; - fromAmino(object: _129.QueryAllowedClassCreatorsResponseAmino): _129.QueryAllowedClassCreatorsResponse; - toAmino(message: _129.QueryAllowedClassCreatorsResponse): _129.QueryAllowedClassCreatorsResponseAmino; - fromAminoMsg(object: _129.QueryAllowedClassCreatorsResponseAminoMsg): _129.QueryAllowedClassCreatorsResponse; - fromProtoMsg(message: _129.QueryAllowedClassCreatorsResponseProtoMsg): _129.QueryAllowedClassCreatorsResponse; - toProto(message: _129.QueryAllowedClassCreatorsResponse): Uint8Array; - toProtoMsg(message: _129.QueryAllowedClassCreatorsResponse): _129.QueryAllowedClassCreatorsResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryAllowedClassCreatorsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryAllowedClassCreatorsResponse; + fromJSON(object: any): _130.QueryAllowedClassCreatorsResponse; + toJSON(message: _130.QueryAllowedClassCreatorsResponse): unknown; + fromPartial(object: Partial<_130.QueryAllowedClassCreatorsResponse>): _130.QueryAllowedClassCreatorsResponse; + fromAmino(object: _130.QueryAllowedClassCreatorsResponseAmino): _130.QueryAllowedClassCreatorsResponse; + toAmino(message: _130.QueryAllowedClassCreatorsResponse): _130.QueryAllowedClassCreatorsResponseAmino; + fromAminoMsg(object: _130.QueryAllowedClassCreatorsResponseAminoMsg): _130.QueryAllowedClassCreatorsResponse; + fromProtoMsg(message: _130.QueryAllowedClassCreatorsResponseProtoMsg): _130.QueryAllowedClassCreatorsResponse; + toProto(message: _130.QueryAllowedClassCreatorsResponse): Uint8Array; + toProtoMsg(message: _130.QueryAllowedClassCreatorsResponse): _130.QueryAllowedClassCreatorsResponseProtoMsg; }; QueryClassFeeRequest: { - encode(_: _129.QueryClassFeeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassFeeRequest; - fromJSON(_: any): _129.QueryClassFeeRequest; - toJSON(_: _129.QueryClassFeeRequest): unknown; - fromPartial(_: Partial<_129.QueryClassFeeRequest>): _129.QueryClassFeeRequest; - fromAmino(_: _129.QueryClassFeeRequestAmino): _129.QueryClassFeeRequest; - toAmino(_: _129.QueryClassFeeRequest): _129.QueryClassFeeRequestAmino; - fromAminoMsg(object: _129.QueryClassFeeRequestAminoMsg): _129.QueryClassFeeRequest; - fromProtoMsg(message: _129.QueryClassFeeRequestProtoMsg): _129.QueryClassFeeRequest; - toProto(message: _129.QueryClassFeeRequest): Uint8Array; - toProtoMsg(message: _129.QueryClassFeeRequest): _129.QueryClassFeeRequestProtoMsg; + typeUrl: string; + encode(_: _130.QueryClassFeeRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassFeeRequest; + fromJSON(_: any): _130.QueryClassFeeRequest; + toJSON(_: _130.QueryClassFeeRequest): unknown; + fromPartial(_: Partial<_130.QueryClassFeeRequest>): _130.QueryClassFeeRequest; + fromAmino(_: _130.QueryClassFeeRequestAmino): _130.QueryClassFeeRequest; + toAmino(_: _130.QueryClassFeeRequest): _130.QueryClassFeeRequestAmino; + fromAminoMsg(object: _130.QueryClassFeeRequestAminoMsg): _130.QueryClassFeeRequest; + fromProtoMsg(message: _130.QueryClassFeeRequestProtoMsg): _130.QueryClassFeeRequest; + toProto(message: _130.QueryClassFeeRequest): Uint8Array; + toProtoMsg(message: _130.QueryClassFeeRequest): _130.QueryClassFeeRequestProtoMsg; }; QueryClassFeeResponse: { - encode(message: _129.QueryClassFeeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryClassFeeResponse; - fromJSON(object: any): _129.QueryClassFeeResponse; - toJSON(message: _129.QueryClassFeeResponse): unknown; - fromPartial(object: Partial<_129.QueryClassFeeResponse>): _129.QueryClassFeeResponse; - fromAmino(object: _129.QueryClassFeeResponseAmino): _129.QueryClassFeeResponse; - toAmino(message: _129.QueryClassFeeResponse): _129.QueryClassFeeResponseAmino; - fromAminoMsg(object: _129.QueryClassFeeResponseAminoMsg): _129.QueryClassFeeResponse; - fromProtoMsg(message: _129.QueryClassFeeResponseProtoMsg): _129.QueryClassFeeResponse; - toProto(message: _129.QueryClassFeeResponse): Uint8Array; - toProtoMsg(message: _129.QueryClassFeeResponse): _129.QueryClassFeeResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryClassFeeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryClassFeeResponse; + fromJSON(object: any): _130.QueryClassFeeResponse; + toJSON(message: _130.QueryClassFeeResponse): unknown; + fromPartial(object: Partial<_130.QueryClassFeeResponse>): _130.QueryClassFeeResponse; + fromAmino(object: _130.QueryClassFeeResponseAmino): _130.QueryClassFeeResponse; + toAmino(message: _130.QueryClassFeeResponse): _130.QueryClassFeeResponseAmino; + fromAminoMsg(object: _130.QueryClassFeeResponseAminoMsg): _130.QueryClassFeeResponse; + fromProtoMsg(message: _130.QueryClassFeeResponseProtoMsg): _130.QueryClassFeeResponse; + toProto(message: _130.QueryClassFeeResponse): Uint8Array; + toProtoMsg(message: _130.QueryClassFeeResponse): _130.QueryClassFeeResponseProtoMsg; }; QueryAllowedBridgeChainsRequest: { - encode(_: _129.QueryAllowedBridgeChainsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryAllowedBridgeChainsRequest; - fromJSON(_: any): _129.QueryAllowedBridgeChainsRequest; - toJSON(_: _129.QueryAllowedBridgeChainsRequest): unknown; - fromPartial(_: Partial<_129.QueryAllowedBridgeChainsRequest>): _129.QueryAllowedBridgeChainsRequest; - fromAmino(_: _129.QueryAllowedBridgeChainsRequestAmino): _129.QueryAllowedBridgeChainsRequest; - toAmino(_: _129.QueryAllowedBridgeChainsRequest): _129.QueryAllowedBridgeChainsRequestAmino; - fromAminoMsg(object: _129.QueryAllowedBridgeChainsRequestAminoMsg): _129.QueryAllowedBridgeChainsRequest; - fromProtoMsg(message: _129.QueryAllowedBridgeChainsRequestProtoMsg): _129.QueryAllowedBridgeChainsRequest; - toProto(message: _129.QueryAllowedBridgeChainsRequest): Uint8Array; - toProtoMsg(message: _129.QueryAllowedBridgeChainsRequest): _129.QueryAllowedBridgeChainsRequestProtoMsg; + typeUrl: string; + encode(_: _130.QueryAllowedBridgeChainsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryAllowedBridgeChainsRequest; + fromJSON(_: any): _130.QueryAllowedBridgeChainsRequest; + toJSON(_: _130.QueryAllowedBridgeChainsRequest): unknown; + fromPartial(_: Partial<_130.QueryAllowedBridgeChainsRequest>): _130.QueryAllowedBridgeChainsRequest; + fromAmino(_: _130.QueryAllowedBridgeChainsRequestAmino): _130.QueryAllowedBridgeChainsRequest; + toAmino(_: _130.QueryAllowedBridgeChainsRequest): _130.QueryAllowedBridgeChainsRequestAmino; + fromAminoMsg(object: _130.QueryAllowedBridgeChainsRequestAminoMsg): _130.QueryAllowedBridgeChainsRequest; + fromProtoMsg(message: _130.QueryAllowedBridgeChainsRequestProtoMsg): _130.QueryAllowedBridgeChainsRequest; + toProto(message: _130.QueryAllowedBridgeChainsRequest): Uint8Array; + toProtoMsg(message: _130.QueryAllowedBridgeChainsRequest): _130.QueryAllowedBridgeChainsRequestProtoMsg; }; QueryAllowedBridgeChainsResponse: { - encode(message: _129.QueryAllowedBridgeChainsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _129.QueryAllowedBridgeChainsResponse; - fromJSON(object: any): _129.QueryAllowedBridgeChainsResponse; - toJSON(message: _129.QueryAllowedBridgeChainsResponse): unknown; - fromPartial(object: Partial<_129.QueryAllowedBridgeChainsResponse>): _129.QueryAllowedBridgeChainsResponse; - fromAmino(object: _129.QueryAllowedBridgeChainsResponseAmino): _129.QueryAllowedBridgeChainsResponse; - toAmino(message: _129.QueryAllowedBridgeChainsResponse): _129.QueryAllowedBridgeChainsResponseAmino; - fromAminoMsg(object: _129.QueryAllowedBridgeChainsResponseAminoMsg): _129.QueryAllowedBridgeChainsResponse; - fromProtoMsg(message: _129.QueryAllowedBridgeChainsResponseProtoMsg): _129.QueryAllowedBridgeChainsResponse; - toProto(message: _129.QueryAllowedBridgeChainsResponse): Uint8Array; - toProtoMsg(message: _129.QueryAllowedBridgeChainsResponse): _129.QueryAllowedBridgeChainsResponseProtoMsg; + typeUrl: string; + encode(message: _130.QueryAllowedBridgeChainsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _130.QueryAllowedBridgeChainsResponse; + fromJSON(object: any): _130.QueryAllowedBridgeChainsResponse; + toJSON(message: _130.QueryAllowedBridgeChainsResponse): unknown; + fromPartial(object: Partial<_130.QueryAllowedBridgeChainsResponse>): _130.QueryAllowedBridgeChainsResponse; + fromAmino(object: _130.QueryAllowedBridgeChainsResponseAmino): _130.QueryAllowedBridgeChainsResponse; + toAmino(message: _130.QueryAllowedBridgeChainsResponse): _130.QueryAllowedBridgeChainsResponseAmino; + fromAminoMsg(object: _130.QueryAllowedBridgeChainsResponseAminoMsg): _130.QueryAllowedBridgeChainsResponse; + fromProtoMsg(message: _130.QueryAllowedBridgeChainsResponseProtoMsg): _130.QueryAllowedBridgeChainsResponse; + toProto(message: _130.QueryAllowedBridgeChainsResponse): Uint8Array; + toProtoMsg(message: _130.QueryAllowedBridgeChainsResponse): _130.QueryAllowedBridgeChainsResponseProtoMsg; }; EventCreateClass: { - encode(message: _128.EventCreateClass, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventCreateClass; - fromJSON(object: any): _128.EventCreateClass; - toJSON(message: _128.EventCreateClass): unknown; - fromPartial(object: Partial<_128.EventCreateClass>): _128.EventCreateClass; - fromAmino(object: _128.EventCreateClassAmino): _128.EventCreateClass; - toAmino(message: _128.EventCreateClass): _128.EventCreateClassAmino; - fromAminoMsg(object: _128.EventCreateClassAminoMsg): _128.EventCreateClass; - fromProtoMsg(message: _128.EventCreateClassProtoMsg): _128.EventCreateClass; - toProto(message: _128.EventCreateClass): Uint8Array; - toProtoMsg(message: _128.EventCreateClass): _128.EventCreateClassProtoMsg; + typeUrl: string; + encode(message: _129.EventCreateClass, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventCreateClass; + fromJSON(object: any): _129.EventCreateClass; + toJSON(message: _129.EventCreateClass): unknown; + fromPartial(object: Partial<_129.EventCreateClass>): _129.EventCreateClass; + fromAmino(object: _129.EventCreateClassAmino): _129.EventCreateClass; + toAmino(message: _129.EventCreateClass): _129.EventCreateClassAmino; + fromAminoMsg(object: _129.EventCreateClassAminoMsg): _129.EventCreateClass; + fromProtoMsg(message: _129.EventCreateClassProtoMsg): _129.EventCreateClass; + toProto(message: _129.EventCreateClass): Uint8Array; + toProtoMsg(message: _129.EventCreateClass): _129.EventCreateClassProtoMsg; }; EventCreateProject: { - encode(message: _128.EventCreateProject, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventCreateProject; - fromJSON(object: any): _128.EventCreateProject; - toJSON(message: _128.EventCreateProject): unknown; - fromPartial(object: Partial<_128.EventCreateProject>): _128.EventCreateProject; - fromAmino(object: _128.EventCreateProjectAmino): _128.EventCreateProject; - toAmino(message: _128.EventCreateProject): _128.EventCreateProjectAmino; - fromAminoMsg(object: _128.EventCreateProjectAminoMsg): _128.EventCreateProject; - fromProtoMsg(message: _128.EventCreateProjectProtoMsg): _128.EventCreateProject; - toProto(message: _128.EventCreateProject): Uint8Array; - toProtoMsg(message: _128.EventCreateProject): _128.EventCreateProjectProtoMsg; + typeUrl: string; + encode(message: _129.EventCreateProject, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventCreateProject; + fromJSON(object: any): _129.EventCreateProject; + toJSON(message: _129.EventCreateProject): unknown; + fromPartial(object: Partial<_129.EventCreateProject>): _129.EventCreateProject; + fromAmino(object: _129.EventCreateProjectAmino): _129.EventCreateProject; + toAmino(message: _129.EventCreateProject): _129.EventCreateProjectAmino; + fromAminoMsg(object: _129.EventCreateProjectAminoMsg): _129.EventCreateProject; + fromProtoMsg(message: _129.EventCreateProjectProtoMsg): _129.EventCreateProject; + toProto(message: _129.EventCreateProject): Uint8Array; + toProtoMsg(message: _129.EventCreateProject): _129.EventCreateProjectProtoMsg; }; EventCreateBatch: { - encode(message: _128.EventCreateBatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventCreateBatch; - fromJSON(object: any): _128.EventCreateBatch; - toJSON(message: _128.EventCreateBatch): unknown; - fromPartial(object: Partial<_128.EventCreateBatch>): _128.EventCreateBatch; - fromAmino(object: _128.EventCreateBatchAmino): _128.EventCreateBatch; - toAmino(message: _128.EventCreateBatch): _128.EventCreateBatchAmino; - fromAminoMsg(object: _128.EventCreateBatchAminoMsg): _128.EventCreateBatch; - fromProtoMsg(message: _128.EventCreateBatchProtoMsg): _128.EventCreateBatch; - toProto(message: _128.EventCreateBatch): Uint8Array; - toProtoMsg(message: _128.EventCreateBatch): _128.EventCreateBatchProtoMsg; + typeUrl: string; + encode(message: _129.EventCreateBatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventCreateBatch; + fromJSON(object: any): _129.EventCreateBatch; + toJSON(message: _129.EventCreateBatch): unknown; + fromPartial(object: Partial<_129.EventCreateBatch>): _129.EventCreateBatch; + fromAmino(object: _129.EventCreateBatchAmino): _129.EventCreateBatch; + toAmino(message: _129.EventCreateBatch): _129.EventCreateBatchAmino; + fromAminoMsg(object: _129.EventCreateBatchAminoMsg): _129.EventCreateBatch; + fromProtoMsg(message: _129.EventCreateBatchProtoMsg): _129.EventCreateBatch; + toProto(message: _129.EventCreateBatch): Uint8Array; + toProtoMsg(message: _129.EventCreateBatch): _129.EventCreateBatchProtoMsg; }; EventMint: { - encode(message: _128.EventMint, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventMint; - fromJSON(object: any): _128.EventMint; - toJSON(message: _128.EventMint): unknown; - fromPartial(object: Partial<_128.EventMint>): _128.EventMint; - fromAmino(object: _128.EventMintAmino): _128.EventMint; - toAmino(message: _128.EventMint): _128.EventMintAmino; - fromAminoMsg(object: _128.EventMintAminoMsg): _128.EventMint; - fromProtoMsg(message: _128.EventMintProtoMsg): _128.EventMint; - toProto(message: _128.EventMint): Uint8Array; - toProtoMsg(message: _128.EventMint): _128.EventMintProtoMsg; + typeUrl: string; + encode(message: _129.EventMint, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventMint; + fromJSON(object: any): _129.EventMint; + toJSON(message: _129.EventMint): unknown; + fromPartial(object: Partial<_129.EventMint>): _129.EventMint; + fromAmino(object: _129.EventMintAmino): _129.EventMint; + toAmino(message: _129.EventMint): _129.EventMintAmino; + fromAminoMsg(object: _129.EventMintAminoMsg): _129.EventMint; + fromProtoMsg(message: _129.EventMintProtoMsg): _129.EventMint; + toProto(message: _129.EventMint): Uint8Array; + toProtoMsg(message: _129.EventMint): _129.EventMintProtoMsg; }; EventMintBatchCredits: { - encode(message: _128.EventMintBatchCredits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventMintBatchCredits; - fromJSON(object: any): _128.EventMintBatchCredits; - toJSON(message: _128.EventMintBatchCredits): unknown; - fromPartial(object: Partial<_128.EventMintBatchCredits>): _128.EventMintBatchCredits; - fromAmino(object: _128.EventMintBatchCreditsAmino): _128.EventMintBatchCredits; - toAmino(message: _128.EventMintBatchCredits): _128.EventMintBatchCreditsAmino; - fromAminoMsg(object: _128.EventMintBatchCreditsAminoMsg): _128.EventMintBatchCredits; - fromProtoMsg(message: _128.EventMintBatchCreditsProtoMsg): _128.EventMintBatchCredits; - toProto(message: _128.EventMintBatchCredits): Uint8Array; - toProtoMsg(message: _128.EventMintBatchCredits): _128.EventMintBatchCreditsProtoMsg; + typeUrl: string; + encode(message: _129.EventMintBatchCredits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventMintBatchCredits; + fromJSON(object: any): _129.EventMintBatchCredits; + toJSON(message: _129.EventMintBatchCredits): unknown; + fromPartial(object: Partial<_129.EventMintBatchCredits>): _129.EventMintBatchCredits; + fromAmino(object: _129.EventMintBatchCreditsAmino): _129.EventMintBatchCredits; + toAmino(message: _129.EventMintBatchCredits): _129.EventMintBatchCreditsAmino; + fromAminoMsg(object: _129.EventMintBatchCreditsAminoMsg): _129.EventMintBatchCredits; + fromProtoMsg(message: _129.EventMintBatchCreditsProtoMsg): _129.EventMintBatchCredits; + toProto(message: _129.EventMintBatchCredits): Uint8Array; + toProtoMsg(message: _129.EventMintBatchCredits): _129.EventMintBatchCreditsProtoMsg; }; EventTransfer: { - encode(message: _128.EventTransfer, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventTransfer; - fromJSON(object: any): _128.EventTransfer; - toJSON(message: _128.EventTransfer): unknown; - fromPartial(object: Partial<_128.EventTransfer>): _128.EventTransfer; - fromAmino(object: _128.EventTransferAmino): _128.EventTransfer; - toAmino(message: _128.EventTransfer): _128.EventTransferAmino; - fromAminoMsg(object: _128.EventTransferAminoMsg): _128.EventTransfer; - fromProtoMsg(message: _128.EventTransferProtoMsg): _128.EventTransfer; - toProto(message: _128.EventTransfer): Uint8Array; - toProtoMsg(message: _128.EventTransfer): _128.EventTransferProtoMsg; + typeUrl: string; + encode(message: _129.EventTransfer, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventTransfer; + fromJSON(object: any): _129.EventTransfer; + toJSON(message: _129.EventTransfer): unknown; + fromPartial(object: Partial<_129.EventTransfer>): _129.EventTransfer; + fromAmino(object: _129.EventTransferAmino): _129.EventTransfer; + toAmino(message: _129.EventTransfer): _129.EventTransferAmino; + fromAminoMsg(object: _129.EventTransferAminoMsg): _129.EventTransfer; + fromProtoMsg(message: _129.EventTransferProtoMsg): _129.EventTransfer; + toProto(message: _129.EventTransfer): Uint8Array; + toProtoMsg(message: _129.EventTransfer): _129.EventTransferProtoMsg; }; EventRetire: { - encode(message: _128.EventRetire, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventRetire; - fromJSON(object: any): _128.EventRetire; - toJSON(message: _128.EventRetire): unknown; - fromPartial(object: Partial<_128.EventRetire>): _128.EventRetire; - fromAmino(object: _128.EventRetireAmino): _128.EventRetire; - toAmino(message: _128.EventRetire): _128.EventRetireAmino; - fromAminoMsg(object: _128.EventRetireAminoMsg): _128.EventRetire; - fromProtoMsg(message: _128.EventRetireProtoMsg): _128.EventRetire; - toProto(message: _128.EventRetire): Uint8Array; - toProtoMsg(message: _128.EventRetire): _128.EventRetireProtoMsg; + typeUrl: string; + encode(message: _129.EventRetire, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventRetire; + fromJSON(object: any): _129.EventRetire; + toJSON(message: _129.EventRetire): unknown; + fromPartial(object: Partial<_129.EventRetire>): _129.EventRetire; + fromAmino(object: _129.EventRetireAmino): _129.EventRetire; + toAmino(message: _129.EventRetire): _129.EventRetireAmino; + fromAminoMsg(object: _129.EventRetireAminoMsg): _129.EventRetire; + fromProtoMsg(message: _129.EventRetireProtoMsg): _129.EventRetire; + toProto(message: _129.EventRetire): Uint8Array; + toProtoMsg(message: _129.EventRetire): _129.EventRetireProtoMsg; }; EventCancel: { - encode(message: _128.EventCancel, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventCancel; - fromJSON(object: any): _128.EventCancel; - toJSON(message: _128.EventCancel): unknown; - fromPartial(object: Partial<_128.EventCancel>): _128.EventCancel; - fromAmino(object: _128.EventCancelAmino): _128.EventCancel; - toAmino(message: _128.EventCancel): _128.EventCancelAmino; - fromAminoMsg(object: _128.EventCancelAminoMsg): _128.EventCancel; - fromProtoMsg(message: _128.EventCancelProtoMsg): _128.EventCancel; - toProto(message: _128.EventCancel): Uint8Array; - toProtoMsg(message: _128.EventCancel): _128.EventCancelProtoMsg; + typeUrl: string; + encode(message: _129.EventCancel, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventCancel; + fromJSON(object: any): _129.EventCancel; + toJSON(message: _129.EventCancel): unknown; + fromPartial(object: Partial<_129.EventCancel>): _129.EventCancel; + fromAmino(object: _129.EventCancelAmino): _129.EventCancel; + toAmino(message: _129.EventCancel): _129.EventCancelAmino; + fromAminoMsg(object: _129.EventCancelAminoMsg): _129.EventCancel; + fromProtoMsg(message: _129.EventCancelProtoMsg): _129.EventCancel; + toProto(message: _129.EventCancel): Uint8Array; + toProtoMsg(message: _129.EventCancel): _129.EventCancelProtoMsg; }; EventUpdateClassAdmin: { - encode(message: _128.EventUpdateClassAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventUpdateClassAdmin; - fromJSON(object: any): _128.EventUpdateClassAdmin; - toJSON(message: _128.EventUpdateClassAdmin): unknown; - fromPartial(object: Partial<_128.EventUpdateClassAdmin>): _128.EventUpdateClassAdmin; - fromAmino(object: _128.EventUpdateClassAdminAmino): _128.EventUpdateClassAdmin; - toAmino(message: _128.EventUpdateClassAdmin): _128.EventUpdateClassAdminAmino; - fromAminoMsg(object: _128.EventUpdateClassAdminAminoMsg): _128.EventUpdateClassAdmin; - fromProtoMsg(message: _128.EventUpdateClassAdminProtoMsg): _128.EventUpdateClassAdmin; - toProto(message: _128.EventUpdateClassAdmin): Uint8Array; - toProtoMsg(message: _128.EventUpdateClassAdmin): _128.EventUpdateClassAdminProtoMsg; + typeUrl: string; + encode(message: _129.EventUpdateClassAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventUpdateClassAdmin; + fromJSON(object: any): _129.EventUpdateClassAdmin; + toJSON(message: _129.EventUpdateClassAdmin): unknown; + fromPartial(object: Partial<_129.EventUpdateClassAdmin>): _129.EventUpdateClassAdmin; + fromAmino(object: _129.EventUpdateClassAdminAmino): _129.EventUpdateClassAdmin; + toAmino(message: _129.EventUpdateClassAdmin): _129.EventUpdateClassAdminAmino; + fromAminoMsg(object: _129.EventUpdateClassAdminAminoMsg): _129.EventUpdateClassAdmin; + fromProtoMsg(message: _129.EventUpdateClassAdminProtoMsg): _129.EventUpdateClassAdmin; + toProto(message: _129.EventUpdateClassAdmin): Uint8Array; + toProtoMsg(message: _129.EventUpdateClassAdmin): _129.EventUpdateClassAdminProtoMsg; }; EventUpdateClassIssuers: { - encode(message: _128.EventUpdateClassIssuers, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventUpdateClassIssuers; - fromJSON(object: any): _128.EventUpdateClassIssuers; - toJSON(message: _128.EventUpdateClassIssuers): unknown; - fromPartial(object: Partial<_128.EventUpdateClassIssuers>): _128.EventUpdateClassIssuers; - fromAmino(object: _128.EventUpdateClassIssuersAmino): _128.EventUpdateClassIssuers; - toAmino(message: _128.EventUpdateClassIssuers): _128.EventUpdateClassIssuersAmino; - fromAminoMsg(object: _128.EventUpdateClassIssuersAminoMsg): _128.EventUpdateClassIssuers; - fromProtoMsg(message: _128.EventUpdateClassIssuersProtoMsg): _128.EventUpdateClassIssuers; - toProto(message: _128.EventUpdateClassIssuers): Uint8Array; - toProtoMsg(message: _128.EventUpdateClassIssuers): _128.EventUpdateClassIssuersProtoMsg; + typeUrl: string; + encode(message: _129.EventUpdateClassIssuers, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventUpdateClassIssuers; + fromJSON(object: any): _129.EventUpdateClassIssuers; + toJSON(message: _129.EventUpdateClassIssuers): unknown; + fromPartial(object: Partial<_129.EventUpdateClassIssuers>): _129.EventUpdateClassIssuers; + fromAmino(object: _129.EventUpdateClassIssuersAmino): _129.EventUpdateClassIssuers; + toAmino(message: _129.EventUpdateClassIssuers): _129.EventUpdateClassIssuersAmino; + fromAminoMsg(object: _129.EventUpdateClassIssuersAminoMsg): _129.EventUpdateClassIssuers; + fromProtoMsg(message: _129.EventUpdateClassIssuersProtoMsg): _129.EventUpdateClassIssuers; + toProto(message: _129.EventUpdateClassIssuers): Uint8Array; + toProtoMsg(message: _129.EventUpdateClassIssuers): _129.EventUpdateClassIssuersProtoMsg; }; EventUpdateClassMetadata: { - encode(message: _128.EventUpdateClassMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventUpdateClassMetadata; - fromJSON(object: any): _128.EventUpdateClassMetadata; - toJSON(message: _128.EventUpdateClassMetadata): unknown; - fromPartial(object: Partial<_128.EventUpdateClassMetadata>): _128.EventUpdateClassMetadata; - fromAmino(object: _128.EventUpdateClassMetadataAmino): _128.EventUpdateClassMetadata; - toAmino(message: _128.EventUpdateClassMetadata): _128.EventUpdateClassMetadataAmino; - fromAminoMsg(object: _128.EventUpdateClassMetadataAminoMsg): _128.EventUpdateClassMetadata; - fromProtoMsg(message: _128.EventUpdateClassMetadataProtoMsg): _128.EventUpdateClassMetadata; - toProto(message: _128.EventUpdateClassMetadata): Uint8Array; - toProtoMsg(message: _128.EventUpdateClassMetadata): _128.EventUpdateClassMetadataProtoMsg; + typeUrl: string; + encode(message: _129.EventUpdateClassMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventUpdateClassMetadata; + fromJSON(object: any): _129.EventUpdateClassMetadata; + toJSON(message: _129.EventUpdateClassMetadata): unknown; + fromPartial(object: Partial<_129.EventUpdateClassMetadata>): _129.EventUpdateClassMetadata; + fromAmino(object: _129.EventUpdateClassMetadataAmino): _129.EventUpdateClassMetadata; + toAmino(message: _129.EventUpdateClassMetadata): _129.EventUpdateClassMetadataAmino; + fromAminoMsg(object: _129.EventUpdateClassMetadataAminoMsg): _129.EventUpdateClassMetadata; + fromProtoMsg(message: _129.EventUpdateClassMetadataProtoMsg): _129.EventUpdateClassMetadata; + toProto(message: _129.EventUpdateClassMetadata): Uint8Array; + toProtoMsg(message: _129.EventUpdateClassMetadata): _129.EventUpdateClassMetadataProtoMsg; }; EventUpdateProjectAdmin: { - encode(message: _128.EventUpdateProjectAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventUpdateProjectAdmin; - fromJSON(object: any): _128.EventUpdateProjectAdmin; - toJSON(message: _128.EventUpdateProjectAdmin): unknown; - fromPartial(object: Partial<_128.EventUpdateProjectAdmin>): _128.EventUpdateProjectAdmin; - fromAmino(object: _128.EventUpdateProjectAdminAmino): _128.EventUpdateProjectAdmin; - toAmino(message: _128.EventUpdateProjectAdmin): _128.EventUpdateProjectAdminAmino; - fromAminoMsg(object: _128.EventUpdateProjectAdminAminoMsg): _128.EventUpdateProjectAdmin; - fromProtoMsg(message: _128.EventUpdateProjectAdminProtoMsg): _128.EventUpdateProjectAdmin; - toProto(message: _128.EventUpdateProjectAdmin): Uint8Array; - toProtoMsg(message: _128.EventUpdateProjectAdmin): _128.EventUpdateProjectAdminProtoMsg; + typeUrl: string; + encode(message: _129.EventUpdateProjectAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventUpdateProjectAdmin; + fromJSON(object: any): _129.EventUpdateProjectAdmin; + toJSON(message: _129.EventUpdateProjectAdmin): unknown; + fromPartial(object: Partial<_129.EventUpdateProjectAdmin>): _129.EventUpdateProjectAdmin; + fromAmino(object: _129.EventUpdateProjectAdminAmino): _129.EventUpdateProjectAdmin; + toAmino(message: _129.EventUpdateProjectAdmin): _129.EventUpdateProjectAdminAmino; + fromAminoMsg(object: _129.EventUpdateProjectAdminAminoMsg): _129.EventUpdateProjectAdmin; + fromProtoMsg(message: _129.EventUpdateProjectAdminProtoMsg): _129.EventUpdateProjectAdmin; + toProto(message: _129.EventUpdateProjectAdmin): Uint8Array; + toProtoMsg(message: _129.EventUpdateProjectAdmin): _129.EventUpdateProjectAdminProtoMsg; }; EventUpdateProjectMetadata: { - encode(message: _128.EventUpdateProjectMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventUpdateProjectMetadata; - fromJSON(object: any): _128.EventUpdateProjectMetadata; - toJSON(message: _128.EventUpdateProjectMetadata): unknown; - fromPartial(object: Partial<_128.EventUpdateProjectMetadata>): _128.EventUpdateProjectMetadata; - fromAmino(object: _128.EventUpdateProjectMetadataAmino): _128.EventUpdateProjectMetadata; - toAmino(message: _128.EventUpdateProjectMetadata): _128.EventUpdateProjectMetadataAmino; - fromAminoMsg(object: _128.EventUpdateProjectMetadataAminoMsg): _128.EventUpdateProjectMetadata; - fromProtoMsg(message: _128.EventUpdateProjectMetadataProtoMsg): _128.EventUpdateProjectMetadata; - toProto(message: _128.EventUpdateProjectMetadata): Uint8Array; - toProtoMsg(message: _128.EventUpdateProjectMetadata): _128.EventUpdateProjectMetadataProtoMsg; + typeUrl: string; + encode(message: _129.EventUpdateProjectMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventUpdateProjectMetadata; + fromJSON(object: any): _129.EventUpdateProjectMetadata; + toJSON(message: _129.EventUpdateProjectMetadata): unknown; + fromPartial(object: Partial<_129.EventUpdateProjectMetadata>): _129.EventUpdateProjectMetadata; + fromAmino(object: _129.EventUpdateProjectMetadataAmino): _129.EventUpdateProjectMetadata; + toAmino(message: _129.EventUpdateProjectMetadata): _129.EventUpdateProjectMetadataAmino; + fromAminoMsg(object: _129.EventUpdateProjectMetadataAminoMsg): _129.EventUpdateProjectMetadata; + fromProtoMsg(message: _129.EventUpdateProjectMetadataProtoMsg): _129.EventUpdateProjectMetadata; + toProto(message: _129.EventUpdateProjectMetadata): Uint8Array; + toProtoMsg(message: _129.EventUpdateProjectMetadata): _129.EventUpdateProjectMetadataProtoMsg; }; EventUpdateBatchMetadata: { - encode(message: _128.EventUpdateBatchMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventUpdateBatchMetadata; - fromJSON(object: any): _128.EventUpdateBatchMetadata; - toJSON(message: _128.EventUpdateBatchMetadata): unknown; - fromPartial(object: Partial<_128.EventUpdateBatchMetadata>): _128.EventUpdateBatchMetadata; - fromAmino(object: _128.EventUpdateBatchMetadataAmino): _128.EventUpdateBatchMetadata; - toAmino(message: _128.EventUpdateBatchMetadata): _128.EventUpdateBatchMetadataAmino; - fromAminoMsg(object: _128.EventUpdateBatchMetadataAminoMsg): _128.EventUpdateBatchMetadata; - fromProtoMsg(message: _128.EventUpdateBatchMetadataProtoMsg): _128.EventUpdateBatchMetadata; - toProto(message: _128.EventUpdateBatchMetadata): Uint8Array; - toProtoMsg(message: _128.EventUpdateBatchMetadata): _128.EventUpdateBatchMetadataProtoMsg; + typeUrl: string; + encode(message: _129.EventUpdateBatchMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventUpdateBatchMetadata; + fromJSON(object: any): _129.EventUpdateBatchMetadata; + toJSON(message: _129.EventUpdateBatchMetadata): unknown; + fromPartial(object: Partial<_129.EventUpdateBatchMetadata>): _129.EventUpdateBatchMetadata; + fromAmino(object: _129.EventUpdateBatchMetadataAmino): _129.EventUpdateBatchMetadata; + toAmino(message: _129.EventUpdateBatchMetadata): _129.EventUpdateBatchMetadataAmino; + fromAminoMsg(object: _129.EventUpdateBatchMetadataAminoMsg): _129.EventUpdateBatchMetadata; + fromProtoMsg(message: _129.EventUpdateBatchMetadataProtoMsg): _129.EventUpdateBatchMetadata; + toProto(message: _129.EventUpdateBatchMetadata): Uint8Array; + toProtoMsg(message: _129.EventUpdateBatchMetadata): _129.EventUpdateBatchMetadataProtoMsg; }; EventSealBatch: { - encode(message: _128.EventSealBatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventSealBatch; - fromJSON(object: any): _128.EventSealBatch; - toJSON(message: _128.EventSealBatch): unknown; - fromPartial(object: Partial<_128.EventSealBatch>): _128.EventSealBatch; - fromAmino(object: _128.EventSealBatchAmino): _128.EventSealBatch; - toAmino(message: _128.EventSealBatch): _128.EventSealBatchAmino; - fromAminoMsg(object: _128.EventSealBatchAminoMsg): _128.EventSealBatch; - fromProtoMsg(message: _128.EventSealBatchProtoMsg): _128.EventSealBatch; - toProto(message: _128.EventSealBatch): Uint8Array; - toProtoMsg(message: _128.EventSealBatch): _128.EventSealBatchProtoMsg; + typeUrl: string; + encode(message: _129.EventSealBatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventSealBatch; + fromJSON(object: any): _129.EventSealBatch; + toJSON(message: _129.EventSealBatch): unknown; + fromPartial(object: Partial<_129.EventSealBatch>): _129.EventSealBatch; + fromAmino(object: _129.EventSealBatchAmino): _129.EventSealBatch; + toAmino(message: _129.EventSealBatch): _129.EventSealBatchAmino; + fromAminoMsg(object: _129.EventSealBatchAminoMsg): _129.EventSealBatch; + fromProtoMsg(message: _129.EventSealBatchProtoMsg): _129.EventSealBatch; + toProto(message: _129.EventSealBatch): Uint8Array; + toProtoMsg(message: _129.EventSealBatch): _129.EventSealBatchProtoMsg; }; EventAddCreditType: { - encode(message: _128.EventAddCreditType, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventAddCreditType; - fromJSON(object: any): _128.EventAddCreditType; - toJSON(message: _128.EventAddCreditType): unknown; - fromPartial(object: Partial<_128.EventAddCreditType>): _128.EventAddCreditType; - fromAmino(object: _128.EventAddCreditTypeAmino): _128.EventAddCreditType; - toAmino(message: _128.EventAddCreditType): _128.EventAddCreditTypeAmino; - fromAminoMsg(object: _128.EventAddCreditTypeAminoMsg): _128.EventAddCreditType; - fromProtoMsg(message: _128.EventAddCreditTypeProtoMsg): _128.EventAddCreditType; - toProto(message: _128.EventAddCreditType): Uint8Array; - toProtoMsg(message: _128.EventAddCreditType): _128.EventAddCreditTypeProtoMsg; + typeUrl: string; + encode(message: _129.EventAddCreditType, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventAddCreditType; + fromJSON(object: any): _129.EventAddCreditType; + toJSON(message: _129.EventAddCreditType): unknown; + fromPartial(object: Partial<_129.EventAddCreditType>): _129.EventAddCreditType; + fromAmino(object: _129.EventAddCreditTypeAmino): _129.EventAddCreditType; + toAmino(message: _129.EventAddCreditType): _129.EventAddCreditTypeAmino; + fromAminoMsg(object: _129.EventAddCreditTypeAminoMsg): _129.EventAddCreditType; + fromProtoMsg(message: _129.EventAddCreditTypeProtoMsg): _129.EventAddCreditType; + toProto(message: _129.EventAddCreditType): Uint8Array; + toProtoMsg(message: _129.EventAddCreditType): _129.EventAddCreditTypeProtoMsg; }; EventBridge: { - encode(message: _128.EventBridge, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventBridge; - fromJSON(object: any): _128.EventBridge; - toJSON(message: _128.EventBridge): unknown; - fromPartial(object: Partial<_128.EventBridge>): _128.EventBridge; - fromAmino(object: _128.EventBridgeAmino): _128.EventBridge; - toAmino(message: _128.EventBridge): _128.EventBridgeAmino; - fromAminoMsg(object: _128.EventBridgeAminoMsg): _128.EventBridge; - fromProtoMsg(message: _128.EventBridgeProtoMsg): _128.EventBridge; - toProto(message: _128.EventBridge): Uint8Array; - toProtoMsg(message: _128.EventBridge): _128.EventBridgeProtoMsg; + typeUrl: string; + encode(message: _129.EventBridge, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventBridge; + fromJSON(object: any): _129.EventBridge; + toJSON(message: _129.EventBridge): unknown; + fromPartial(object: Partial<_129.EventBridge>): _129.EventBridge; + fromAmino(object: _129.EventBridgeAmino): _129.EventBridge; + toAmino(message: _129.EventBridge): _129.EventBridgeAmino; + fromAminoMsg(object: _129.EventBridgeAminoMsg): _129.EventBridge; + fromProtoMsg(message: _129.EventBridgeProtoMsg): _129.EventBridge; + toProto(message: _129.EventBridge): Uint8Array; + toProtoMsg(message: _129.EventBridge): _129.EventBridgeProtoMsg; }; EventBridgeReceive: { - encode(message: _128.EventBridgeReceive, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _128.EventBridgeReceive; - fromJSON(object: any): _128.EventBridgeReceive; - toJSON(message: _128.EventBridgeReceive): unknown; - fromPartial(object: Partial<_128.EventBridgeReceive>): _128.EventBridgeReceive; - fromAmino(object: _128.EventBridgeReceiveAmino): _128.EventBridgeReceive; - toAmino(message: _128.EventBridgeReceive): _128.EventBridgeReceiveAmino; - fromAminoMsg(object: _128.EventBridgeReceiveAminoMsg): _128.EventBridgeReceive; - fromProtoMsg(message: _128.EventBridgeReceiveProtoMsg): _128.EventBridgeReceive; - toProto(message: _128.EventBridgeReceive): Uint8Array; - toProtoMsg(message: _128.EventBridgeReceive): _128.EventBridgeReceiveProtoMsg; + typeUrl: string; + encode(message: _129.EventBridgeReceive, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _129.EventBridgeReceive; + fromJSON(object: any): _129.EventBridgeReceive; + toJSON(message: _129.EventBridgeReceive): unknown; + fromPartial(object: Partial<_129.EventBridgeReceive>): _129.EventBridgeReceive; + fromAmino(object: _129.EventBridgeReceiveAmino): _129.EventBridgeReceive; + toAmino(message: _129.EventBridgeReceive): _129.EventBridgeReceiveAmino; + fromAminoMsg(object: _129.EventBridgeReceiveAminoMsg): _129.EventBridgeReceive; + fromProtoMsg(message: _129.EventBridgeReceiveProtoMsg): _129.EventBridgeReceive; + toProto(message: _129.EventBridgeReceive): Uint8Array; + toProtoMsg(message: _129.EventBridgeReceive): _129.EventBridgeReceiveProtoMsg; }; }; const v1alpha1: { - MsgClientImpl: typeof _268.MsgClientImpl; - QueryClientImpl: typeof _262.QueryClientImpl; + MsgClientImpl: typeof _269.MsgClientImpl; + QueryClientImpl: typeof _263.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - classes(request?: _135.QueryClassesRequest | undefined): Promise<_135.QueryClassesResponse>; - classInfo(request: _135.QueryClassInfoRequest): Promise<_135.QueryClassInfoResponse>; - batches(request: _135.QueryBatchesRequest): Promise<_135.QueryBatchesResponse>; - batchInfo(request: _135.QueryBatchInfoRequest): Promise<_135.QueryBatchInfoResponse>; - balance(request: _135.QueryBalanceRequest): Promise<_135.QueryBalanceResponse>; - supply(request: _135.QuerySupplyRequest): Promise<_135.QuerySupplyResponse>; - creditTypes(request?: _135.QueryCreditTypesRequest | undefined): Promise<_135.QueryCreditTypesResponse>; - params(request?: _135.QueryParamsRequest | undefined): Promise<_135.QueryParamsResponse>; + classes(request?: _136.QueryClassesRequest | undefined): Promise<_136.QueryClassesResponse>; + classInfo(request: _136.QueryClassInfoRequest): Promise<_136.QueryClassInfoResponse>; + batches(request: _136.QueryBatchesRequest): Promise<_136.QueryBatchesResponse>; + batchInfo(request: _136.QueryBatchInfoRequest): Promise<_136.QueryBatchInfoResponse>; + balance(request: _136.QueryBalanceRequest): Promise<_136.QueryBalanceResponse>; + supply(request: _136.QuerySupplyRequest): Promise<_136.QuerySupplyResponse>; + creditTypes(request?: _136.QueryCreditTypesRequest | undefined): Promise<_136.QueryCreditTypesResponse>; + params(request?: _136.QueryParamsRequest | undefined): Promise<_136.QueryParamsResponse>; }; - LCDQueryClient: typeof _256.LCDQueryClient; + LCDQueryClient: typeof _257.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - createClass(value: _136.MsgCreateClass): { + createClass(value: _137.MsgCreateClass): { typeUrl: string; value: Uint8Array; }; - createBatch(value: _136.MsgCreateBatch): { + createBatch(value: _137.MsgCreateBatch): { typeUrl: string; value: Uint8Array; }; - send(value: _136.MsgSend): { + send(value: _137.MsgSend): { typeUrl: string; value: Uint8Array; }; - retire(value: _136.MsgRetire): { + retire(value: _137.MsgRetire): { typeUrl: string; value: Uint8Array; }; - cancel(value: _136.MsgCancel): { + cancel(value: _137.MsgCancel): { typeUrl: string; value: Uint8Array; }; - updateClassAdmin(value: _136.MsgUpdateClassAdmin): { + updateClassAdmin(value: _137.MsgUpdateClassAdmin): { typeUrl: string; value: Uint8Array; }; - updateClassIssuers(value: _136.MsgUpdateClassIssuers): { + updateClassIssuers(value: _137.MsgUpdateClassIssuers): { typeUrl: string; value: Uint8Array; }; - updateClassMetadata(value: _136.MsgUpdateClassMetadata): { + updateClassMetadata(value: _137.MsgUpdateClassMetadata): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - createClass(value: _136.MsgCreateClass): { + createClass(value: _137.MsgCreateClass): { typeUrl: string; - value: _136.MsgCreateClass; + value: _137.MsgCreateClass; }; - createBatch(value: _136.MsgCreateBatch): { + createBatch(value: _137.MsgCreateBatch): { typeUrl: string; - value: _136.MsgCreateBatch; + value: _137.MsgCreateBatch; }; - send(value: _136.MsgSend): { + send(value: _137.MsgSend): { typeUrl: string; - value: _136.MsgSend; + value: _137.MsgSend; }; - retire(value: _136.MsgRetire): { + retire(value: _137.MsgRetire): { typeUrl: string; - value: _136.MsgRetire; + value: _137.MsgRetire; }; - cancel(value: _136.MsgCancel): { + cancel(value: _137.MsgCancel): { typeUrl: string; - value: _136.MsgCancel; + value: _137.MsgCancel; }; - updateClassAdmin(value: _136.MsgUpdateClassAdmin): { + updateClassAdmin(value: _137.MsgUpdateClassAdmin): { typeUrl: string; - value: _136.MsgUpdateClassAdmin; + value: _137.MsgUpdateClassAdmin; }; - updateClassIssuers(value: _136.MsgUpdateClassIssuers): { + updateClassIssuers(value: _137.MsgUpdateClassIssuers): { typeUrl: string; - value: _136.MsgUpdateClassIssuers; + value: _137.MsgUpdateClassIssuers; }; - updateClassMetadata(value: _136.MsgUpdateClassMetadata): { + updateClassMetadata(value: _137.MsgUpdateClassMetadata): { typeUrl: string; - value: _136.MsgUpdateClassMetadata; + value: _137.MsgUpdateClassMetadata; }; }; toJSON: { - createClass(value: _136.MsgCreateClass): { + createClass(value: _137.MsgCreateClass): { typeUrl: string; value: unknown; }; - createBatch(value: _136.MsgCreateBatch): { + createBatch(value: _137.MsgCreateBatch): { typeUrl: string; value: unknown; }; - send(value: _136.MsgSend): { + send(value: _137.MsgSend): { typeUrl: string; value: unknown; }; - retire(value: _136.MsgRetire): { + retire(value: _137.MsgRetire): { typeUrl: string; value: unknown; }; - cancel(value: _136.MsgCancel): { + cancel(value: _137.MsgCancel): { typeUrl: string; value: unknown; }; - updateClassAdmin(value: _136.MsgUpdateClassAdmin): { + updateClassAdmin(value: _137.MsgUpdateClassAdmin): { typeUrl: string; value: unknown; }; - updateClassIssuers(value: _136.MsgUpdateClassIssuers): { + updateClassIssuers(value: _137.MsgUpdateClassIssuers): { typeUrl: string; value: unknown; }; - updateClassMetadata(value: _136.MsgUpdateClassMetadata): { + updateClassMetadata(value: _137.MsgUpdateClassMetadata): { typeUrl: string; value: unknown; }; @@ -4809,790 +5075,839 @@ export declare namespace regen { fromJSON: { createClass(value: any): { typeUrl: string; - value: _136.MsgCreateClass; + value: _137.MsgCreateClass; }; createBatch(value: any): { typeUrl: string; - value: _136.MsgCreateBatch; + value: _137.MsgCreateBatch; }; send(value: any): { typeUrl: string; - value: _136.MsgSend; + value: _137.MsgSend; }; retire(value: any): { typeUrl: string; - value: _136.MsgRetire; + value: _137.MsgRetire; }; cancel(value: any): { typeUrl: string; - value: _136.MsgCancel; + value: _137.MsgCancel; }; updateClassAdmin(value: any): { typeUrl: string; - value: _136.MsgUpdateClassAdmin; + value: _137.MsgUpdateClassAdmin; }; updateClassIssuers(value: any): { typeUrl: string; - value: _136.MsgUpdateClassIssuers; + value: _137.MsgUpdateClassIssuers; }; updateClassMetadata(value: any): { typeUrl: string; - value: _136.MsgUpdateClassMetadata; + value: _137.MsgUpdateClassMetadata; }; }; fromPartial: { - createClass(value: _136.MsgCreateClass): { + createClass(value: _137.MsgCreateClass): { typeUrl: string; - value: _136.MsgCreateClass; + value: _137.MsgCreateClass; }; - createBatch(value: _136.MsgCreateBatch): { + createBatch(value: _137.MsgCreateBatch): { typeUrl: string; - value: _136.MsgCreateBatch; + value: _137.MsgCreateBatch; }; - send(value: _136.MsgSend): { + send(value: _137.MsgSend): { typeUrl: string; - value: _136.MsgSend; + value: _137.MsgSend; }; - retire(value: _136.MsgRetire): { + retire(value: _137.MsgRetire): { typeUrl: string; - value: _136.MsgRetire; + value: _137.MsgRetire; }; - cancel(value: _136.MsgCancel): { + cancel(value: _137.MsgCancel): { typeUrl: string; - value: _136.MsgCancel; + value: _137.MsgCancel; }; - updateClassAdmin(value: _136.MsgUpdateClassAdmin): { + updateClassAdmin(value: _137.MsgUpdateClassAdmin): { typeUrl: string; - value: _136.MsgUpdateClassAdmin; + value: _137.MsgUpdateClassAdmin; }; - updateClassIssuers(value: _136.MsgUpdateClassIssuers): { + updateClassIssuers(value: _137.MsgUpdateClassIssuers): { typeUrl: string; - value: _136.MsgUpdateClassIssuers; + value: _137.MsgUpdateClassIssuers; }; - updateClassMetadata(value: _136.MsgUpdateClassMetadata): { + updateClassMetadata(value: _137.MsgUpdateClassMetadata): { typeUrl: string; - value: _136.MsgUpdateClassMetadata; + value: _137.MsgUpdateClassMetadata; }; }; }; AminoConverter: { "/regen.ecocredit.v1alpha1.MsgCreateClass": { aminoType: string; - toAmino: (message: _136.MsgCreateClass) => _136.MsgCreateClassAmino; - fromAmino: (object: _136.MsgCreateClassAmino) => _136.MsgCreateClass; + toAmino: (message: _137.MsgCreateClass) => _137.MsgCreateClassAmino; + fromAmino: (object: _137.MsgCreateClassAmino) => _137.MsgCreateClass; }; "/regen.ecocredit.v1alpha1.MsgCreateBatch": { aminoType: string; - toAmino: (message: _136.MsgCreateBatch) => _136.MsgCreateBatchAmino; - fromAmino: (object: _136.MsgCreateBatchAmino) => _136.MsgCreateBatch; + toAmino: (message: _137.MsgCreateBatch) => _137.MsgCreateBatchAmino; + fromAmino: (object: _137.MsgCreateBatchAmino) => _137.MsgCreateBatch; }; "/regen.ecocredit.v1alpha1.MsgSend": { aminoType: string; - toAmino: (message: _136.MsgSend) => _136.MsgSendAmino; - fromAmino: (object: _136.MsgSendAmino) => _136.MsgSend; + toAmino: (message: _137.MsgSend) => _137.MsgSendAmino; + fromAmino: (object: _137.MsgSendAmino) => _137.MsgSend; }; "/regen.ecocredit.v1alpha1.MsgRetire": { aminoType: string; - toAmino: (message: _136.MsgRetire) => _136.MsgRetireAmino; - fromAmino: (object: _136.MsgRetireAmino) => _136.MsgRetire; + toAmino: (message: _137.MsgRetire) => _137.MsgRetireAmino; + fromAmino: (object: _137.MsgRetireAmino) => _137.MsgRetire; }; "/regen.ecocredit.v1alpha1.MsgCancel": { aminoType: string; - toAmino: (message: _136.MsgCancel) => _136.MsgCancelAmino; - fromAmino: (object: _136.MsgCancelAmino) => _136.MsgCancel; + toAmino: (message: _137.MsgCancel) => _137.MsgCancelAmino; + fromAmino: (object: _137.MsgCancelAmino) => _137.MsgCancel; }; "/regen.ecocredit.v1alpha1.MsgUpdateClassAdmin": { aminoType: string; - toAmino: (message: _136.MsgUpdateClassAdmin) => _136.MsgUpdateClassAdminAmino; - fromAmino: (object: _136.MsgUpdateClassAdminAmino) => _136.MsgUpdateClassAdmin; + toAmino: (message: _137.MsgUpdateClassAdmin) => _137.MsgUpdateClassAdminAmino; + fromAmino: (object: _137.MsgUpdateClassAdminAmino) => _137.MsgUpdateClassAdmin; }; "/regen.ecocredit.v1alpha1.MsgUpdateClassIssuers": { aminoType: string; - toAmino: (message: _136.MsgUpdateClassIssuers) => _136.MsgUpdateClassIssuersAmino; - fromAmino: (object: _136.MsgUpdateClassIssuersAmino) => _136.MsgUpdateClassIssuers; + toAmino: (message: _137.MsgUpdateClassIssuers) => _137.MsgUpdateClassIssuersAmino; + fromAmino: (object: _137.MsgUpdateClassIssuersAmino) => _137.MsgUpdateClassIssuers; }; "/regen.ecocredit.v1alpha1.MsgUpdateClassMetadata": { aminoType: string; - toAmino: (message: _136.MsgUpdateClassMetadata) => _136.MsgUpdateClassMetadataAmino; - fromAmino: (object: _136.MsgUpdateClassMetadataAmino) => _136.MsgUpdateClassMetadata; + toAmino: (message: _137.MsgUpdateClassMetadata) => _137.MsgUpdateClassMetadataAmino; + fromAmino: (object: _137.MsgUpdateClassMetadataAmino) => _137.MsgUpdateClassMetadata; }; }; ClassInfo: { - encode(message: _137.ClassInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _137.ClassInfo; - fromJSON(object: any): _137.ClassInfo; - toJSON(message: _137.ClassInfo): unknown; - fromPartial(object: Partial<_137.ClassInfo>): _137.ClassInfo; - fromAmino(object: _137.ClassInfoAmino): _137.ClassInfo; - toAmino(message: _137.ClassInfo): _137.ClassInfoAmino; - fromAminoMsg(object: _137.ClassInfoAminoMsg): _137.ClassInfo; - fromProtoMsg(message: _137.ClassInfoProtoMsg): _137.ClassInfo; - toProto(message: _137.ClassInfo): Uint8Array; - toProtoMsg(message: _137.ClassInfo): _137.ClassInfoProtoMsg; + typeUrl: string; + encode(message: _138.ClassInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _138.ClassInfo; + fromJSON(object: any): _138.ClassInfo; + toJSON(message: _138.ClassInfo): unknown; + fromPartial(object: Partial<_138.ClassInfo>): _138.ClassInfo; + fromAmino(object: _138.ClassInfoAmino): _138.ClassInfo; + toAmino(message: _138.ClassInfo): _138.ClassInfoAmino; + fromAminoMsg(object: _138.ClassInfoAminoMsg): _138.ClassInfo; + fromProtoMsg(message: _138.ClassInfoProtoMsg): _138.ClassInfo; + toProto(message: _138.ClassInfo): Uint8Array; + toProtoMsg(message: _138.ClassInfo): _138.ClassInfoProtoMsg; }; BatchInfo: { - encode(message: _137.BatchInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _137.BatchInfo; - fromJSON(object: any): _137.BatchInfo; - toJSON(message: _137.BatchInfo): unknown; - fromPartial(object: Partial<_137.BatchInfo>): _137.BatchInfo; - fromAmino(object: _137.BatchInfoAmino): _137.BatchInfo; - toAmino(message: _137.BatchInfo): _137.BatchInfoAmino; - fromAminoMsg(object: _137.BatchInfoAminoMsg): _137.BatchInfo; - fromProtoMsg(message: _137.BatchInfoProtoMsg): _137.BatchInfo; - toProto(message: _137.BatchInfo): Uint8Array; - toProtoMsg(message: _137.BatchInfo): _137.BatchInfoProtoMsg; + typeUrl: string; + encode(message: _138.BatchInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _138.BatchInfo; + fromJSON(object: any): _138.BatchInfo; + toJSON(message: _138.BatchInfo): unknown; + fromPartial(object: Partial<_138.BatchInfo>): _138.BatchInfo; + fromAmino(object: _138.BatchInfoAmino): _138.BatchInfo; + toAmino(message: _138.BatchInfo): _138.BatchInfoAmino; + fromAminoMsg(object: _138.BatchInfoAminoMsg): _138.BatchInfo; + fromProtoMsg(message: _138.BatchInfoProtoMsg): _138.BatchInfo; + toProto(message: _138.BatchInfo): Uint8Array; + toProtoMsg(message: _138.BatchInfo): _138.BatchInfoProtoMsg; }; Params: { - encode(message: _137.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _137.Params; - fromJSON(object: any): _137.Params; - toJSON(message: _137.Params): unknown; - fromPartial(object: Partial<_137.Params>): _137.Params; - fromAmino(object: _137.ParamsAmino): _137.Params; - toAmino(message: _137.Params): _137.ParamsAmino; - fromAminoMsg(object: _137.ParamsAminoMsg): _137.Params; - fromProtoMsg(message: _137.ParamsProtoMsg): _137.Params; - toProto(message: _137.Params): Uint8Array; - toProtoMsg(message: _137.Params): _137.ParamsProtoMsg; + typeUrl: string; + encode(message: _138.Params, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _138.Params; + fromJSON(object: any): _138.Params; + toJSON(message: _138.Params): unknown; + fromPartial(object: Partial<_138.Params>): _138.Params; + fromAmino(object: _138.ParamsAmino): _138.Params; + toAmino(message: _138.Params): _138.ParamsAmino; + fromAminoMsg(object: _138.ParamsAminoMsg): _138.Params; + fromProtoMsg(message: _138.ParamsProtoMsg): _138.Params; + toProto(message: _138.Params): Uint8Array; + toProtoMsg(message: _138.Params): _138.ParamsProtoMsg; }; CreditType: { - encode(message: _137.CreditType, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _137.CreditType; - fromJSON(object: any): _137.CreditType; - toJSON(message: _137.CreditType): unknown; - fromPartial(object: Partial<_137.CreditType>): _137.CreditType; - fromAmino(object: _137.CreditTypeAmino): _137.CreditType; - toAmino(message: _137.CreditType): _137.CreditTypeAmino; - fromAminoMsg(object: _137.CreditTypeAminoMsg): _137.CreditType; - fromProtoMsg(message: _137.CreditTypeProtoMsg): _137.CreditType; - toProto(message: _137.CreditType): Uint8Array; - toProtoMsg(message: _137.CreditType): _137.CreditTypeProtoMsg; + typeUrl: string; + encode(message: _138.CreditType, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _138.CreditType; + fromJSON(object: any): _138.CreditType; + toJSON(message: _138.CreditType): unknown; + fromPartial(object: Partial<_138.CreditType>): _138.CreditType; + fromAmino(object: _138.CreditTypeAmino): _138.CreditType; + toAmino(message: _138.CreditType): _138.CreditTypeAmino; + fromAminoMsg(object: _138.CreditTypeAminoMsg): _138.CreditType; + fromProtoMsg(message: _138.CreditTypeProtoMsg): _138.CreditType; + toProto(message: _138.CreditType): Uint8Array; + toProtoMsg(message: _138.CreditType): _138.CreditTypeProtoMsg; }; CreditTypeSeq: { - encode(message: _137.CreditTypeSeq, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _137.CreditTypeSeq; - fromJSON(object: any): _137.CreditTypeSeq; - toJSON(message: _137.CreditTypeSeq): unknown; - fromPartial(object: Partial<_137.CreditTypeSeq>): _137.CreditTypeSeq; - fromAmino(object: _137.CreditTypeSeqAmino): _137.CreditTypeSeq; - toAmino(message: _137.CreditTypeSeq): _137.CreditTypeSeqAmino; - fromAminoMsg(object: _137.CreditTypeSeqAminoMsg): _137.CreditTypeSeq; - fromProtoMsg(message: _137.CreditTypeSeqProtoMsg): _137.CreditTypeSeq; - toProto(message: _137.CreditTypeSeq): Uint8Array; - toProtoMsg(message: _137.CreditTypeSeq): _137.CreditTypeSeqProtoMsg; + typeUrl: string; + encode(message: _138.CreditTypeSeq, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _138.CreditTypeSeq; + fromJSON(object: any): _138.CreditTypeSeq; + toJSON(message: _138.CreditTypeSeq): unknown; + fromPartial(object: Partial<_138.CreditTypeSeq>): _138.CreditTypeSeq; + fromAmino(object: _138.CreditTypeSeqAmino): _138.CreditTypeSeq; + toAmino(message: _138.CreditTypeSeq): _138.CreditTypeSeqAmino; + fromAminoMsg(object: _138.CreditTypeSeqAminoMsg): _138.CreditTypeSeq; + fromProtoMsg(message: _138.CreditTypeSeqProtoMsg): _138.CreditTypeSeq; + toProto(message: _138.CreditTypeSeq): Uint8Array; + toProtoMsg(message: _138.CreditTypeSeq): _138.CreditTypeSeqProtoMsg; }; MsgCreateClass: { - encode(message: _136.MsgCreateClass, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCreateClass; - fromJSON(object: any): _136.MsgCreateClass; - toJSON(message: _136.MsgCreateClass): unknown; - fromPartial(object: Partial<_136.MsgCreateClass>): _136.MsgCreateClass; - fromAmino(object: _136.MsgCreateClassAmino): _136.MsgCreateClass; - toAmino(message: _136.MsgCreateClass): _136.MsgCreateClassAmino; - fromAminoMsg(object: _136.MsgCreateClassAminoMsg): _136.MsgCreateClass; - fromProtoMsg(message: _136.MsgCreateClassProtoMsg): _136.MsgCreateClass; - toProto(message: _136.MsgCreateClass): Uint8Array; - toProtoMsg(message: _136.MsgCreateClass): _136.MsgCreateClassProtoMsg; + typeUrl: string; + encode(message: _137.MsgCreateClass, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCreateClass; + fromJSON(object: any): _137.MsgCreateClass; + toJSON(message: _137.MsgCreateClass): unknown; + fromPartial(object: Partial<_137.MsgCreateClass>): _137.MsgCreateClass; + fromAmino(object: _137.MsgCreateClassAmino): _137.MsgCreateClass; + toAmino(message: _137.MsgCreateClass): _137.MsgCreateClassAmino; + fromAminoMsg(object: _137.MsgCreateClassAminoMsg): _137.MsgCreateClass; + fromProtoMsg(message: _137.MsgCreateClassProtoMsg): _137.MsgCreateClass; + toProto(message: _137.MsgCreateClass): Uint8Array; + toProtoMsg(message: _137.MsgCreateClass): _137.MsgCreateClassProtoMsg; }; MsgCreateClassResponse: { - encode(message: _136.MsgCreateClassResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCreateClassResponse; - fromJSON(object: any): _136.MsgCreateClassResponse; - toJSON(message: _136.MsgCreateClassResponse): unknown; - fromPartial(object: Partial<_136.MsgCreateClassResponse>): _136.MsgCreateClassResponse; - fromAmino(object: _136.MsgCreateClassResponseAmino): _136.MsgCreateClassResponse; - toAmino(message: _136.MsgCreateClassResponse): _136.MsgCreateClassResponseAmino; - fromAminoMsg(object: _136.MsgCreateClassResponseAminoMsg): _136.MsgCreateClassResponse; - fromProtoMsg(message: _136.MsgCreateClassResponseProtoMsg): _136.MsgCreateClassResponse; - toProto(message: _136.MsgCreateClassResponse): Uint8Array; - toProtoMsg(message: _136.MsgCreateClassResponse): _136.MsgCreateClassResponseProtoMsg; + typeUrl: string; + encode(message: _137.MsgCreateClassResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCreateClassResponse; + fromJSON(object: any): _137.MsgCreateClassResponse; + toJSON(message: _137.MsgCreateClassResponse): unknown; + fromPartial(object: Partial<_137.MsgCreateClassResponse>): _137.MsgCreateClassResponse; + fromAmino(object: _137.MsgCreateClassResponseAmino): _137.MsgCreateClassResponse; + toAmino(message: _137.MsgCreateClassResponse): _137.MsgCreateClassResponseAmino; + fromAminoMsg(object: _137.MsgCreateClassResponseAminoMsg): _137.MsgCreateClassResponse; + fromProtoMsg(message: _137.MsgCreateClassResponseProtoMsg): _137.MsgCreateClassResponse; + toProto(message: _137.MsgCreateClassResponse): Uint8Array; + toProtoMsg(message: _137.MsgCreateClassResponse): _137.MsgCreateClassResponseProtoMsg; }; MsgCreateBatch: { - encode(message: _136.MsgCreateBatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCreateBatch; - fromJSON(object: any): _136.MsgCreateBatch; - toJSON(message: _136.MsgCreateBatch): unknown; - fromPartial(object: Partial<_136.MsgCreateBatch>): _136.MsgCreateBatch; - fromAmino(object: _136.MsgCreateBatchAmino): _136.MsgCreateBatch; - toAmino(message: _136.MsgCreateBatch): _136.MsgCreateBatchAmino; - fromAminoMsg(object: _136.MsgCreateBatchAminoMsg): _136.MsgCreateBatch; - fromProtoMsg(message: _136.MsgCreateBatchProtoMsg): _136.MsgCreateBatch; - toProto(message: _136.MsgCreateBatch): Uint8Array; - toProtoMsg(message: _136.MsgCreateBatch): _136.MsgCreateBatchProtoMsg; + typeUrl: string; + encode(message: _137.MsgCreateBatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCreateBatch; + fromJSON(object: any): _137.MsgCreateBatch; + toJSON(message: _137.MsgCreateBatch): unknown; + fromPartial(object: Partial<_137.MsgCreateBatch>): _137.MsgCreateBatch; + fromAmino(object: _137.MsgCreateBatchAmino): _137.MsgCreateBatch; + toAmino(message: _137.MsgCreateBatch): _137.MsgCreateBatchAmino; + fromAminoMsg(object: _137.MsgCreateBatchAminoMsg): _137.MsgCreateBatch; + fromProtoMsg(message: _137.MsgCreateBatchProtoMsg): _137.MsgCreateBatch; + toProto(message: _137.MsgCreateBatch): Uint8Array; + toProtoMsg(message: _137.MsgCreateBatch): _137.MsgCreateBatchProtoMsg; }; MsgCreateBatch_BatchIssuance: { - encode(message: _136.MsgCreateBatch_BatchIssuance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCreateBatch_BatchIssuance; - fromJSON(object: any): _136.MsgCreateBatch_BatchIssuance; - toJSON(message: _136.MsgCreateBatch_BatchIssuance): unknown; - fromPartial(object: Partial<_136.MsgCreateBatch_BatchIssuance>): _136.MsgCreateBatch_BatchIssuance; - fromAmino(object: _136.MsgCreateBatch_BatchIssuanceAmino): _136.MsgCreateBatch_BatchIssuance; - toAmino(message: _136.MsgCreateBatch_BatchIssuance): _136.MsgCreateBatch_BatchIssuanceAmino; - fromAminoMsg(object: _136.MsgCreateBatch_BatchIssuanceAminoMsg): _136.MsgCreateBatch_BatchIssuance; - fromProtoMsg(message: _136.MsgCreateBatch_BatchIssuanceProtoMsg): _136.MsgCreateBatch_BatchIssuance; - toProto(message: _136.MsgCreateBatch_BatchIssuance): Uint8Array; - toProtoMsg(message: _136.MsgCreateBatch_BatchIssuance): _136.MsgCreateBatch_BatchIssuanceProtoMsg; + typeUrl: string; + encode(message: _137.MsgCreateBatch_BatchIssuance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCreateBatch_BatchIssuance; + fromJSON(object: any): _137.MsgCreateBatch_BatchIssuance; + toJSON(message: _137.MsgCreateBatch_BatchIssuance): unknown; + fromPartial(object: Partial<_137.MsgCreateBatch_BatchIssuance>): _137.MsgCreateBatch_BatchIssuance; + fromAmino(object: _137.MsgCreateBatch_BatchIssuanceAmino): _137.MsgCreateBatch_BatchIssuance; + toAmino(message: _137.MsgCreateBatch_BatchIssuance): _137.MsgCreateBatch_BatchIssuanceAmino; + fromAminoMsg(object: _137.MsgCreateBatch_BatchIssuanceAminoMsg): _137.MsgCreateBatch_BatchIssuance; + fromProtoMsg(message: _137.MsgCreateBatch_BatchIssuanceProtoMsg): _137.MsgCreateBatch_BatchIssuance; + toProto(message: _137.MsgCreateBatch_BatchIssuance): Uint8Array; + toProtoMsg(message: _137.MsgCreateBatch_BatchIssuance): _137.MsgCreateBatch_BatchIssuanceProtoMsg; }; MsgCreateBatchResponse: { - encode(message: _136.MsgCreateBatchResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCreateBatchResponse; - fromJSON(object: any): _136.MsgCreateBatchResponse; - toJSON(message: _136.MsgCreateBatchResponse): unknown; - fromPartial(object: Partial<_136.MsgCreateBatchResponse>): _136.MsgCreateBatchResponse; - fromAmino(object: _136.MsgCreateBatchResponseAmino): _136.MsgCreateBatchResponse; - toAmino(message: _136.MsgCreateBatchResponse): _136.MsgCreateBatchResponseAmino; - fromAminoMsg(object: _136.MsgCreateBatchResponseAminoMsg): _136.MsgCreateBatchResponse; - fromProtoMsg(message: _136.MsgCreateBatchResponseProtoMsg): _136.MsgCreateBatchResponse; - toProto(message: _136.MsgCreateBatchResponse): Uint8Array; - toProtoMsg(message: _136.MsgCreateBatchResponse): _136.MsgCreateBatchResponseProtoMsg; + typeUrl: string; + encode(message: _137.MsgCreateBatchResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCreateBatchResponse; + fromJSON(object: any): _137.MsgCreateBatchResponse; + toJSON(message: _137.MsgCreateBatchResponse): unknown; + fromPartial(object: Partial<_137.MsgCreateBatchResponse>): _137.MsgCreateBatchResponse; + fromAmino(object: _137.MsgCreateBatchResponseAmino): _137.MsgCreateBatchResponse; + toAmino(message: _137.MsgCreateBatchResponse): _137.MsgCreateBatchResponseAmino; + fromAminoMsg(object: _137.MsgCreateBatchResponseAminoMsg): _137.MsgCreateBatchResponse; + fromProtoMsg(message: _137.MsgCreateBatchResponseProtoMsg): _137.MsgCreateBatchResponse; + toProto(message: _137.MsgCreateBatchResponse): Uint8Array; + toProtoMsg(message: _137.MsgCreateBatchResponse): _137.MsgCreateBatchResponseProtoMsg; }; MsgSend: { - encode(message: _136.MsgSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgSend; - fromJSON(object: any): _136.MsgSend; - toJSON(message: _136.MsgSend): unknown; - fromPartial(object: Partial<_136.MsgSend>): _136.MsgSend; - fromAmino(object: _136.MsgSendAmino): _136.MsgSend; - toAmino(message: _136.MsgSend): _136.MsgSendAmino; - fromAminoMsg(object: _136.MsgSendAminoMsg): _136.MsgSend; - fromProtoMsg(message: _136.MsgSendProtoMsg): _136.MsgSend; - toProto(message: _136.MsgSend): Uint8Array; - toProtoMsg(message: _136.MsgSend): _136.MsgSendProtoMsg; + typeUrl: string; + encode(message: _137.MsgSend, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgSend; + fromJSON(object: any): _137.MsgSend; + toJSON(message: _137.MsgSend): unknown; + fromPartial(object: Partial<_137.MsgSend>): _137.MsgSend; + fromAmino(object: _137.MsgSendAmino): _137.MsgSend; + toAmino(message: _137.MsgSend): _137.MsgSendAmino; + fromAminoMsg(object: _137.MsgSendAminoMsg): _137.MsgSend; + fromProtoMsg(message: _137.MsgSendProtoMsg): _137.MsgSend; + toProto(message: _137.MsgSend): Uint8Array; + toProtoMsg(message: _137.MsgSend): _137.MsgSendProtoMsg; }; MsgSend_SendCredits: { - encode(message: _136.MsgSend_SendCredits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgSend_SendCredits; - fromJSON(object: any): _136.MsgSend_SendCredits; - toJSON(message: _136.MsgSend_SendCredits): unknown; - fromPartial(object: Partial<_136.MsgSend_SendCredits>): _136.MsgSend_SendCredits; - fromAmino(object: _136.MsgSend_SendCreditsAmino): _136.MsgSend_SendCredits; - toAmino(message: _136.MsgSend_SendCredits): _136.MsgSend_SendCreditsAmino; - fromAminoMsg(object: _136.MsgSend_SendCreditsAminoMsg): _136.MsgSend_SendCredits; - fromProtoMsg(message: _136.MsgSend_SendCreditsProtoMsg): _136.MsgSend_SendCredits; - toProto(message: _136.MsgSend_SendCredits): Uint8Array; - toProtoMsg(message: _136.MsgSend_SendCredits): _136.MsgSend_SendCreditsProtoMsg; + typeUrl: string; + encode(message: _137.MsgSend_SendCredits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgSend_SendCredits; + fromJSON(object: any): _137.MsgSend_SendCredits; + toJSON(message: _137.MsgSend_SendCredits): unknown; + fromPartial(object: Partial<_137.MsgSend_SendCredits>): _137.MsgSend_SendCredits; + fromAmino(object: _137.MsgSend_SendCreditsAmino): _137.MsgSend_SendCredits; + toAmino(message: _137.MsgSend_SendCredits): _137.MsgSend_SendCreditsAmino; + fromAminoMsg(object: _137.MsgSend_SendCreditsAminoMsg): _137.MsgSend_SendCredits; + fromProtoMsg(message: _137.MsgSend_SendCreditsProtoMsg): _137.MsgSend_SendCredits; + toProto(message: _137.MsgSend_SendCredits): Uint8Array; + toProtoMsg(message: _137.MsgSend_SendCredits): _137.MsgSend_SendCreditsProtoMsg; }; MsgSendResponse: { - encode(_: _136.MsgSendResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgSendResponse; - fromJSON(_: any): _136.MsgSendResponse; - toJSON(_: _136.MsgSendResponse): unknown; - fromPartial(_: Partial<_136.MsgSendResponse>): _136.MsgSendResponse; - fromAmino(_: _136.MsgSendResponseAmino): _136.MsgSendResponse; - toAmino(_: _136.MsgSendResponse): _136.MsgSendResponseAmino; - fromAminoMsg(object: _136.MsgSendResponseAminoMsg): _136.MsgSendResponse; - fromProtoMsg(message: _136.MsgSendResponseProtoMsg): _136.MsgSendResponse; - toProto(message: _136.MsgSendResponse): Uint8Array; - toProtoMsg(message: _136.MsgSendResponse): _136.MsgSendResponseProtoMsg; + typeUrl: string; + encode(_: _137.MsgSendResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgSendResponse; + fromJSON(_: any): _137.MsgSendResponse; + toJSON(_: _137.MsgSendResponse): unknown; + fromPartial(_: Partial<_137.MsgSendResponse>): _137.MsgSendResponse; + fromAmino(_: _137.MsgSendResponseAmino): _137.MsgSendResponse; + toAmino(_: _137.MsgSendResponse): _137.MsgSendResponseAmino; + fromAminoMsg(object: _137.MsgSendResponseAminoMsg): _137.MsgSendResponse; + fromProtoMsg(message: _137.MsgSendResponseProtoMsg): _137.MsgSendResponse; + toProto(message: _137.MsgSendResponse): Uint8Array; + toProtoMsg(message: _137.MsgSendResponse): _137.MsgSendResponseProtoMsg; }; MsgRetire: { - encode(message: _136.MsgRetire, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgRetire; - fromJSON(object: any): _136.MsgRetire; - toJSON(message: _136.MsgRetire): unknown; - fromPartial(object: Partial<_136.MsgRetire>): _136.MsgRetire; - fromAmino(object: _136.MsgRetireAmino): _136.MsgRetire; - toAmino(message: _136.MsgRetire): _136.MsgRetireAmino; - fromAminoMsg(object: _136.MsgRetireAminoMsg): _136.MsgRetire; - fromProtoMsg(message: _136.MsgRetireProtoMsg): _136.MsgRetire; - toProto(message: _136.MsgRetire): Uint8Array; - toProtoMsg(message: _136.MsgRetire): _136.MsgRetireProtoMsg; + typeUrl: string; + encode(message: _137.MsgRetire, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgRetire; + fromJSON(object: any): _137.MsgRetire; + toJSON(message: _137.MsgRetire): unknown; + fromPartial(object: Partial<_137.MsgRetire>): _137.MsgRetire; + fromAmino(object: _137.MsgRetireAmino): _137.MsgRetire; + toAmino(message: _137.MsgRetire): _137.MsgRetireAmino; + fromAminoMsg(object: _137.MsgRetireAminoMsg): _137.MsgRetire; + fromProtoMsg(message: _137.MsgRetireProtoMsg): _137.MsgRetire; + toProto(message: _137.MsgRetire): Uint8Array; + toProtoMsg(message: _137.MsgRetire): _137.MsgRetireProtoMsg; }; MsgRetire_RetireCredits: { - encode(message: _136.MsgRetire_RetireCredits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgRetire_RetireCredits; - fromJSON(object: any): _136.MsgRetire_RetireCredits; - toJSON(message: _136.MsgRetire_RetireCredits): unknown; - fromPartial(object: Partial<_136.MsgRetire_RetireCredits>): _136.MsgRetire_RetireCredits; - fromAmino(object: _136.MsgRetire_RetireCreditsAmino): _136.MsgRetire_RetireCredits; - toAmino(message: _136.MsgRetire_RetireCredits): _136.MsgRetire_RetireCreditsAmino; - fromAminoMsg(object: _136.MsgRetire_RetireCreditsAminoMsg): _136.MsgRetire_RetireCredits; - fromProtoMsg(message: _136.MsgRetire_RetireCreditsProtoMsg): _136.MsgRetire_RetireCredits; - toProto(message: _136.MsgRetire_RetireCredits): Uint8Array; - toProtoMsg(message: _136.MsgRetire_RetireCredits): _136.MsgRetire_RetireCreditsProtoMsg; + typeUrl: string; + encode(message: _137.MsgRetire_RetireCredits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgRetire_RetireCredits; + fromJSON(object: any): _137.MsgRetire_RetireCredits; + toJSON(message: _137.MsgRetire_RetireCredits): unknown; + fromPartial(object: Partial<_137.MsgRetire_RetireCredits>): _137.MsgRetire_RetireCredits; + fromAmino(object: _137.MsgRetire_RetireCreditsAmino): _137.MsgRetire_RetireCredits; + toAmino(message: _137.MsgRetire_RetireCredits): _137.MsgRetire_RetireCreditsAmino; + fromAminoMsg(object: _137.MsgRetire_RetireCreditsAminoMsg): _137.MsgRetire_RetireCredits; + fromProtoMsg(message: _137.MsgRetire_RetireCreditsProtoMsg): _137.MsgRetire_RetireCredits; + toProto(message: _137.MsgRetire_RetireCredits): Uint8Array; + toProtoMsg(message: _137.MsgRetire_RetireCredits): _137.MsgRetire_RetireCreditsProtoMsg; }; MsgRetireResponse: { - encode(_: _136.MsgRetireResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgRetireResponse; - fromJSON(_: any): _136.MsgRetireResponse; - toJSON(_: _136.MsgRetireResponse): unknown; - fromPartial(_: Partial<_136.MsgRetireResponse>): _136.MsgRetireResponse; - fromAmino(_: _136.MsgRetireResponseAmino): _136.MsgRetireResponse; - toAmino(_: _136.MsgRetireResponse): _136.MsgRetireResponseAmino; - fromAminoMsg(object: _136.MsgRetireResponseAminoMsg): _136.MsgRetireResponse; - fromProtoMsg(message: _136.MsgRetireResponseProtoMsg): _136.MsgRetireResponse; - toProto(message: _136.MsgRetireResponse): Uint8Array; - toProtoMsg(message: _136.MsgRetireResponse): _136.MsgRetireResponseProtoMsg; + typeUrl: string; + encode(_: _137.MsgRetireResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgRetireResponse; + fromJSON(_: any): _137.MsgRetireResponse; + toJSON(_: _137.MsgRetireResponse): unknown; + fromPartial(_: Partial<_137.MsgRetireResponse>): _137.MsgRetireResponse; + fromAmino(_: _137.MsgRetireResponseAmino): _137.MsgRetireResponse; + toAmino(_: _137.MsgRetireResponse): _137.MsgRetireResponseAmino; + fromAminoMsg(object: _137.MsgRetireResponseAminoMsg): _137.MsgRetireResponse; + fromProtoMsg(message: _137.MsgRetireResponseProtoMsg): _137.MsgRetireResponse; + toProto(message: _137.MsgRetireResponse): Uint8Array; + toProtoMsg(message: _137.MsgRetireResponse): _137.MsgRetireResponseProtoMsg; }; MsgCancel: { - encode(message: _136.MsgCancel, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCancel; - fromJSON(object: any): _136.MsgCancel; - toJSON(message: _136.MsgCancel): unknown; - fromPartial(object: Partial<_136.MsgCancel>): _136.MsgCancel; - fromAmino(object: _136.MsgCancelAmino): _136.MsgCancel; - toAmino(message: _136.MsgCancel): _136.MsgCancelAmino; - fromAminoMsg(object: _136.MsgCancelAminoMsg): _136.MsgCancel; - fromProtoMsg(message: _136.MsgCancelProtoMsg): _136.MsgCancel; - toProto(message: _136.MsgCancel): Uint8Array; - toProtoMsg(message: _136.MsgCancel): _136.MsgCancelProtoMsg; + typeUrl: string; + encode(message: _137.MsgCancel, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCancel; + fromJSON(object: any): _137.MsgCancel; + toJSON(message: _137.MsgCancel): unknown; + fromPartial(object: Partial<_137.MsgCancel>): _137.MsgCancel; + fromAmino(object: _137.MsgCancelAmino): _137.MsgCancel; + toAmino(message: _137.MsgCancel): _137.MsgCancelAmino; + fromAminoMsg(object: _137.MsgCancelAminoMsg): _137.MsgCancel; + fromProtoMsg(message: _137.MsgCancelProtoMsg): _137.MsgCancel; + toProto(message: _137.MsgCancel): Uint8Array; + toProtoMsg(message: _137.MsgCancel): _137.MsgCancelProtoMsg; }; MsgCancel_CancelCredits: { - encode(message: _136.MsgCancel_CancelCredits, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCancel_CancelCredits; - fromJSON(object: any): _136.MsgCancel_CancelCredits; - toJSON(message: _136.MsgCancel_CancelCredits): unknown; - fromPartial(object: Partial<_136.MsgCancel_CancelCredits>): _136.MsgCancel_CancelCredits; - fromAmino(object: _136.MsgCancel_CancelCreditsAmino): _136.MsgCancel_CancelCredits; - toAmino(message: _136.MsgCancel_CancelCredits): _136.MsgCancel_CancelCreditsAmino; - fromAminoMsg(object: _136.MsgCancel_CancelCreditsAminoMsg): _136.MsgCancel_CancelCredits; - fromProtoMsg(message: _136.MsgCancel_CancelCreditsProtoMsg): _136.MsgCancel_CancelCredits; - toProto(message: _136.MsgCancel_CancelCredits): Uint8Array; - toProtoMsg(message: _136.MsgCancel_CancelCredits): _136.MsgCancel_CancelCreditsProtoMsg; + typeUrl: string; + encode(message: _137.MsgCancel_CancelCredits, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCancel_CancelCredits; + fromJSON(object: any): _137.MsgCancel_CancelCredits; + toJSON(message: _137.MsgCancel_CancelCredits): unknown; + fromPartial(object: Partial<_137.MsgCancel_CancelCredits>): _137.MsgCancel_CancelCredits; + fromAmino(object: _137.MsgCancel_CancelCreditsAmino): _137.MsgCancel_CancelCredits; + toAmino(message: _137.MsgCancel_CancelCredits): _137.MsgCancel_CancelCreditsAmino; + fromAminoMsg(object: _137.MsgCancel_CancelCreditsAminoMsg): _137.MsgCancel_CancelCredits; + fromProtoMsg(message: _137.MsgCancel_CancelCreditsProtoMsg): _137.MsgCancel_CancelCredits; + toProto(message: _137.MsgCancel_CancelCredits): Uint8Array; + toProtoMsg(message: _137.MsgCancel_CancelCredits): _137.MsgCancel_CancelCreditsProtoMsg; }; MsgCancelResponse: { - encode(_: _136.MsgCancelResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgCancelResponse; - fromJSON(_: any): _136.MsgCancelResponse; - toJSON(_: _136.MsgCancelResponse): unknown; - fromPartial(_: Partial<_136.MsgCancelResponse>): _136.MsgCancelResponse; - fromAmino(_: _136.MsgCancelResponseAmino): _136.MsgCancelResponse; - toAmino(_: _136.MsgCancelResponse): _136.MsgCancelResponseAmino; - fromAminoMsg(object: _136.MsgCancelResponseAminoMsg): _136.MsgCancelResponse; - fromProtoMsg(message: _136.MsgCancelResponseProtoMsg): _136.MsgCancelResponse; - toProto(message: _136.MsgCancelResponse): Uint8Array; - toProtoMsg(message: _136.MsgCancelResponse): _136.MsgCancelResponseProtoMsg; + typeUrl: string; + encode(_: _137.MsgCancelResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgCancelResponse; + fromJSON(_: any): _137.MsgCancelResponse; + toJSON(_: _137.MsgCancelResponse): unknown; + fromPartial(_: Partial<_137.MsgCancelResponse>): _137.MsgCancelResponse; + fromAmino(_: _137.MsgCancelResponseAmino): _137.MsgCancelResponse; + toAmino(_: _137.MsgCancelResponse): _137.MsgCancelResponseAmino; + fromAminoMsg(object: _137.MsgCancelResponseAminoMsg): _137.MsgCancelResponse; + fromProtoMsg(message: _137.MsgCancelResponseProtoMsg): _137.MsgCancelResponse; + toProto(message: _137.MsgCancelResponse): Uint8Array; + toProtoMsg(message: _137.MsgCancelResponse): _137.MsgCancelResponseProtoMsg; }; MsgUpdateClassAdmin: { - encode(message: _136.MsgUpdateClassAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgUpdateClassAdmin; - fromJSON(object: any): _136.MsgUpdateClassAdmin; - toJSON(message: _136.MsgUpdateClassAdmin): unknown; - fromPartial(object: Partial<_136.MsgUpdateClassAdmin>): _136.MsgUpdateClassAdmin; - fromAmino(object: _136.MsgUpdateClassAdminAmino): _136.MsgUpdateClassAdmin; - toAmino(message: _136.MsgUpdateClassAdmin): _136.MsgUpdateClassAdminAmino; - fromAminoMsg(object: _136.MsgUpdateClassAdminAminoMsg): _136.MsgUpdateClassAdmin; - fromProtoMsg(message: _136.MsgUpdateClassAdminProtoMsg): _136.MsgUpdateClassAdmin; - toProto(message: _136.MsgUpdateClassAdmin): Uint8Array; - toProtoMsg(message: _136.MsgUpdateClassAdmin): _136.MsgUpdateClassAdminProtoMsg; + typeUrl: string; + encode(message: _137.MsgUpdateClassAdmin, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgUpdateClassAdmin; + fromJSON(object: any): _137.MsgUpdateClassAdmin; + toJSON(message: _137.MsgUpdateClassAdmin): unknown; + fromPartial(object: Partial<_137.MsgUpdateClassAdmin>): _137.MsgUpdateClassAdmin; + fromAmino(object: _137.MsgUpdateClassAdminAmino): _137.MsgUpdateClassAdmin; + toAmino(message: _137.MsgUpdateClassAdmin): _137.MsgUpdateClassAdminAmino; + fromAminoMsg(object: _137.MsgUpdateClassAdminAminoMsg): _137.MsgUpdateClassAdmin; + fromProtoMsg(message: _137.MsgUpdateClassAdminProtoMsg): _137.MsgUpdateClassAdmin; + toProto(message: _137.MsgUpdateClassAdmin): Uint8Array; + toProtoMsg(message: _137.MsgUpdateClassAdmin): _137.MsgUpdateClassAdminProtoMsg; }; MsgUpdateClassAdminResponse: { - encode(_: _136.MsgUpdateClassAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgUpdateClassAdminResponse; - fromJSON(_: any): _136.MsgUpdateClassAdminResponse; - toJSON(_: _136.MsgUpdateClassAdminResponse): unknown; - fromPartial(_: Partial<_136.MsgUpdateClassAdminResponse>): _136.MsgUpdateClassAdminResponse; - fromAmino(_: _136.MsgUpdateClassAdminResponseAmino): _136.MsgUpdateClassAdminResponse; - toAmino(_: _136.MsgUpdateClassAdminResponse): _136.MsgUpdateClassAdminResponseAmino; - fromAminoMsg(object: _136.MsgUpdateClassAdminResponseAminoMsg): _136.MsgUpdateClassAdminResponse; - fromProtoMsg(message: _136.MsgUpdateClassAdminResponseProtoMsg): _136.MsgUpdateClassAdminResponse; - toProto(message: _136.MsgUpdateClassAdminResponse): Uint8Array; - toProtoMsg(message: _136.MsgUpdateClassAdminResponse): _136.MsgUpdateClassAdminResponseProtoMsg; + typeUrl: string; + encode(_: _137.MsgUpdateClassAdminResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgUpdateClassAdminResponse; + fromJSON(_: any): _137.MsgUpdateClassAdminResponse; + toJSON(_: _137.MsgUpdateClassAdminResponse): unknown; + fromPartial(_: Partial<_137.MsgUpdateClassAdminResponse>): _137.MsgUpdateClassAdminResponse; + fromAmino(_: _137.MsgUpdateClassAdminResponseAmino): _137.MsgUpdateClassAdminResponse; + toAmino(_: _137.MsgUpdateClassAdminResponse): _137.MsgUpdateClassAdminResponseAmino; + fromAminoMsg(object: _137.MsgUpdateClassAdminResponseAminoMsg): _137.MsgUpdateClassAdminResponse; + fromProtoMsg(message: _137.MsgUpdateClassAdminResponseProtoMsg): _137.MsgUpdateClassAdminResponse; + toProto(message: _137.MsgUpdateClassAdminResponse): Uint8Array; + toProtoMsg(message: _137.MsgUpdateClassAdminResponse): _137.MsgUpdateClassAdminResponseProtoMsg; }; MsgUpdateClassIssuers: { - encode(message: _136.MsgUpdateClassIssuers, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgUpdateClassIssuers; - fromJSON(object: any): _136.MsgUpdateClassIssuers; - toJSON(message: _136.MsgUpdateClassIssuers): unknown; - fromPartial(object: Partial<_136.MsgUpdateClassIssuers>): _136.MsgUpdateClassIssuers; - fromAmino(object: _136.MsgUpdateClassIssuersAmino): _136.MsgUpdateClassIssuers; - toAmino(message: _136.MsgUpdateClassIssuers): _136.MsgUpdateClassIssuersAmino; - fromAminoMsg(object: _136.MsgUpdateClassIssuersAminoMsg): _136.MsgUpdateClassIssuers; - fromProtoMsg(message: _136.MsgUpdateClassIssuersProtoMsg): _136.MsgUpdateClassIssuers; - toProto(message: _136.MsgUpdateClassIssuers): Uint8Array; - toProtoMsg(message: _136.MsgUpdateClassIssuers): _136.MsgUpdateClassIssuersProtoMsg; + typeUrl: string; + encode(message: _137.MsgUpdateClassIssuers, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgUpdateClassIssuers; + fromJSON(object: any): _137.MsgUpdateClassIssuers; + toJSON(message: _137.MsgUpdateClassIssuers): unknown; + fromPartial(object: Partial<_137.MsgUpdateClassIssuers>): _137.MsgUpdateClassIssuers; + fromAmino(object: _137.MsgUpdateClassIssuersAmino): _137.MsgUpdateClassIssuers; + toAmino(message: _137.MsgUpdateClassIssuers): _137.MsgUpdateClassIssuersAmino; + fromAminoMsg(object: _137.MsgUpdateClassIssuersAminoMsg): _137.MsgUpdateClassIssuers; + fromProtoMsg(message: _137.MsgUpdateClassIssuersProtoMsg): _137.MsgUpdateClassIssuers; + toProto(message: _137.MsgUpdateClassIssuers): Uint8Array; + toProtoMsg(message: _137.MsgUpdateClassIssuers): _137.MsgUpdateClassIssuersProtoMsg; }; MsgUpdateClassIssuersResponse: { - encode(_: _136.MsgUpdateClassIssuersResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgUpdateClassIssuersResponse; - fromJSON(_: any): _136.MsgUpdateClassIssuersResponse; - toJSON(_: _136.MsgUpdateClassIssuersResponse): unknown; - fromPartial(_: Partial<_136.MsgUpdateClassIssuersResponse>): _136.MsgUpdateClassIssuersResponse; - fromAmino(_: _136.MsgUpdateClassIssuersResponseAmino): _136.MsgUpdateClassIssuersResponse; - toAmino(_: _136.MsgUpdateClassIssuersResponse): _136.MsgUpdateClassIssuersResponseAmino; - fromAminoMsg(object: _136.MsgUpdateClassIssuersResponseAminoMsg): _136.MsgUpdateClassIssuersResponse; - fromProtoMsg(message: _136.MsgUpdateClassIssuersResponseProtoMsg): _136.MsgUpdateClassIssuersResponse; - toProto(message: _136.MsgUpdateClassIssuersResponse): Uint8Array; - toProtoMsg(message: _136.MsgUpdateClassIssuersResponse): _136.MsgUpdateClassIssuersResponseProtoMsg; + typeUrl: string; + encode(_: _137.MsgUpdateClassIssuersResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgUpdateClassIssuersResponse; + fromJSON(_: any): _137.MsgUpdateClassIssuersResponse; + toJSON(_: _137.MsgUpdateClassIssuersResponse): unknown; + fromPartial(_: Partial<_137.MsgUpdateClassIssuersResponse>): _137.MsgUpdateClassIssuersResponse; + fromAmino(_: _137.MsgUpdateClassIssuersResponseAmino): _137.MsgUpdateClassIssuersResponse; + toAmino(_: _137.MsgUpdateClassIssuersResponse): _137.MsgUpdateClassIssuersResponseAmino; + fromAminoMsg(object: _137.MsgUpdateClassIssuersResponseAminoMsg): _137.MsgUpdateClassIssuersResponse; + fromProtoMsg(message: _137.MsgUpdateClassIssuersResponseProtoMsg): _137.MsgUpdateClassIssuersResponse; + toProto(message: _137.MsgUpdateClassIssuersResponse): Uint8Array; + toProtoMsg(message: _137.MsgUpdateClassIssuersResponse): _137.MsgUpdateClassIssuersResponseProtoMsg; }; MsgUpdateClassMetadata: { - encode(message: _136.MsgUpdateClassMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgUpdateClassMetadata; - fromJSON(object: any): _136.MsgUpdateClassMetadata; - toJSON(message: _136.MsgUpdateClassMetadata): unknown; - fromPartial(object: Partial<_136.MsgUpdateClassMetadata>): _136.MsgUpdateClassMetadata; - fromAmino(object: _136.MsgUpdateClassMetadataAmino): _136.MsgUpdateClassMetadata; - toAmino(message: _136.MsgUpdateClassMetadata): _136.MsgUpdateClassMetadataAmino; - fromAminoMsg(object: _136.MsgUpdateClassMetadataAminoMsg): _136.MsgUpdateClassMetadata; - fromProtoMsg(message: _136.MsgUpdateClassMetadataProtoMsg): _136.MsgUpdateClassMetadata; - toProto(message: _136.MsgUpdateClassMetadata): Uint8Array; - toProtoMsg(message: _136.MsgUpdateClassMetadata): _136.MsgUpdateClassMetadataProtoMsg; + typeUrl: string; + encode(message: _137.MsgUpdateClassMetadata, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgUpdateClassMetadata; + fromJSON(object: any): _137.MsgUpdateClassMetadata; + toJSON(message: _137.MsgUpdateClassMetadata): unknown; + fromPartial(object: Partial<_137.MsgUpdateClassMetadata>): _137.MsgUpdateClassMetadata; + fromAmino(object: _137.MsgUpdateClassMetadataAmino): _137.MsgUpdateClassMetadata; + toAmino(message: _137.MsgUpdateClassMetadata): _137.MsgUpdateClassMetadataAmino; + fromAminoMsg(object: _137.MsgUpdateClassMetadataAminoMsg): _137.MsgUpdateClassMetadata; + fromProtoMsg(message: _137.MsgUpdateClassMetadataProtoMsg): _137.MsgUpdateClassMetadata; + toProto(message: _137.MsgUpdateClassMetadata): Uint8Array; + toProtoMsg(message: _137.MsgUpdateClassMetadata): _137.MsgUpdateClassMetadataProtoMsg; }; MsgUpdateClassMetadataResponse: { - encode(_: _136.MsgUpdateClassMetadataResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _136.MsgUpdateClassMetadataResponse; - fromJSON(_: any): _136.MsgUpdateClassMetadataResponse; - toJSON(_: _136.MsgUpdateClassMetadataResponse): unknown; - fromPartial(_: Partial<_136.MsgUpdateClassMetadataResponse>): _136.MsgUpdateClassMetadataResponse; - fromAmino(_: _136.MsgUpdateClassMetadataResponseAmino): _136.MsgUpdateClassMetadataResponse; - toAmino(_: _136.MsgUpdateClassMetadataResponse): _136.MsgUpdateClassMetadataResponseAmino; - fromAminoMsg(object: _136.MsgUpdateClassMetadataResponseAminoMsg): _136.MsgUpdateClassMetadataResponse; - fromProtoMsg(message: _136.MsgUpdateClassMetadataResponseProtoMsg): _136.MsgUpdateClassMetadataResponse; - toProto(message: _136.MsgUpdateClassMetadataResponse): Uint8Array; - toProtoMsg(message: _136.MsgUpdateClassMetadataResponse): _136.MsgUpdateClassMetadataResponseProtoMsg; + typeUrl: string; + encode(_: _137.MsgUpdateClassMetadataResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _137.MsgUpdateClassMetadataResponse; + fromJSON(_: any): _137.MsgUpdateClassMetadataResponse; + toJSON(_: _137.MsgUpdateClassMetadataResponse): unknown; + fromPartial(_: Partial<_137.MsgUpdateClassMetadataResponse>): _137.MsgUpdateClassMetadataResponse; + fromAmino(_: _137.MsgUpdateClassMetadataResponseAmino): _137.MsgUpdateClassMetadataResponse; + toAmino(_: _137.MsgUpdateClassMetadataResponse): _137.MsgUpdateClassMetadataResponseAmino; + fromAminoMsg(object: _137.MsgUpdateClassMetadataResponseAminoMsg): _137.MsgUpdateClassMetadataResponse; + fromProtoMsg(message: _137.MsgUpdateClassMetadataResponseProtoMsg): _137.MsgUpdateClassMetadataResponse; + toProto(message: _137.MsgUpdateClassMetadataResponse): Uint8Array; + toProtoMsg(message: _137.MsgUpdateClassMetadataResponse): _137.MsgUpdateClassMetadataResponseProtoMsg; }; QueryParamsRequest: { - encode(_: _135.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryParamsRequest; - fromJSON(_: any): _135.QueryParamsRequest; - toJSON(_: _135.QueryParamsRequest): unknown; - fromPartial(_: Partial<_135.QueryParamsRequest>): _135.QueryParamsRequest; - fromAmino(_: _135.QueryParamsRequestAmino): _135.QueryParamsRequest; - toAmino(_: _135.QueryParamsRequest): _135.QueryParamsRequestAmino; - fromAminoMsg(object: _135.QueryParamsRequestAminoMsg): _135.QueryParamsRequest; - fromProtoMsg(message: _135.QueryParamsRequestProtoMsg): _135.QueryParamsRequest; - toProto(message: _135.QueryParamsRequest): Uint8Array; - toProtoMsg(message: _135.QueryParamsRequest): _135.QueryParamsRequestProtoMsg; + typeUrl: string; + encode(_: _136.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryParamsRequest; + fromJSON(_: any): _136.QueryParamsRequest; + toJSON(_: _136.QueryParamsRequest): unknown; + fromPartial(_: Partial<_136.QueryParamsRequest>): _136.QueryParamsRequest; + fromAmino(_: _136.QueryParamsRequestAmino): _136.QueryParamsRequest; + toAmino(_: _136.QueryParamsRequest): _136.QueryParamsRequestAmino; + fromAminoMsg(object: _136.QueryParamsRequestAminoMsg): _136.QueryParamsRequest; + fromProtoMsg(message: _136.QueryParamsRequestProtoMsg): _136.QueryParamsRequest; + toProto(message: _136.QueryParamsRequest): Uint8Array; + toProtoMsg(message: _136.QueryParamsRequest): _136.QueryParamsRequestProtoMsg; }; QueryParamsResponse: { - encode(message: _135.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryParamsResponse; - fromJSON(object: any): _135.QueryParamsResponse; - toJSON(message: _135.QueryParamsResponse): unknown; - fromPartial(object: Partial<_135.QueryParamsResponse>): _135.QueryParamsResponse; - fromAmino(object: _135.QueryParamsResponseAmino): _135.QueryParamsResponse; - toAmino(message: _135.QueryParamsResponse): _135.QueryParamsResponseAmino; - fromAminoMsg(object: _135.QueryParamsResponseAminoMsg): _135.QueryParamsResponse; - fromProtoMsg(message: _135.QueryParamsResponseProtoMsg): _135.QueryParamsResponse; - toProto(message: _135.QueryParamsResponse): Uint8Array; - toProtoMsg(message: _135.QueryParamsResponse): _135.QueryParamsResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryParamsResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryParamsResponse; + fromJSON(object: any): _136.QueryParamsResponse; + toJSON(message: _136.QueryParamsResponse): unknown; + fromPartial(object: Partial<_136.QueryParamsResponse>): _136.QueryParamsResponse; + fromAmino(object: _136.QueryParamsResponseAmino): _136.QueryParamsResponse; + toAmino(message: _136.QueryParamsResponse): _136.QueryParamsResponseAmino; + fromAminoMsg(object: _136.QueryParamsResponseAminoMsg): _136.QueryParamsResponse; + fromProtoMsg(message: _136.QueryParamsResponseProtoMsg): _136.QueryParamsResponse; + toProto(message: _136.QueryParamsResponse): Uint8Array; + toProtoMsg(message: _136.QueryParamsResponse): _136.QueryParamsResponseProtoMsg; }; QueryClassesRequest: { - encode(message: _135.QueryClassesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryClassesRequest; - fromJSON(object: any): _135.QueryClassesRequest; - toJSON(message: _135.QueryClassesRequest): unknown; - fromPartial(object: Partial<_135.QueryClassesRequest>): _135.QueryClassesRequest; - fromAmino(object: _135.QueryClassesRequestAmino): _135.QueryClassesRequest; - toAmino(message: _135.QueryClassesRequest): _135.QueryClassesRequestAmino; - fromAminoMsg(object: _135.QueryClassesRequestAminoMsg): _135.QueryClassesRequest; - fromProtoMsg(message: _135.QueryClassesRequestProtoMsg): _135.QueryClassesRequest; - toProto(message: _135.QueryClassesRequest): Uint8Array; - toProtoMsg(message: _135.QueryClassesRequest): _135.QueryClassesRequestProtoMsg; + typeUrl: string; + encode(message: _136.QueryClassesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryClassesRequest; + fromJSON(object: any): _136.QueryClassesRequest; + toJSON(message: _136.QueryClassesRequest): unknown; + fromPartial(object: Partial<_136.QueryClassesRequest>): _136.QueryClassesRequest; + fromAmino(object: _136.QueryClassesRequestAmino): _136.QueryClassesRequest; + toAmino(message: _136.QueryClassesRequest): _136.QueryClassesRequestAmino; + fromAminoMsg(object: _136.QueryClassesRequestAminoMsg): _136.QueryClassesRequest; + fromProtoMsg(message: _136.QueryClassesRequestProtoMsg): _136.QueryClassesRequest; + toProto(message: _136.QueryClassesRequest): Uint8Array; + toProtoMsg(message: _136.QueryClassesRequest): _136.QueryClassesRequestProtoMsg; }; QueryClassesResponse: { - encode(message: _135.QueryClassesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryClassesResponse; - fromJSON(object: any): _135.QueryClassesResponse; - toJSON(message: _135.QueryClassesResponse): unknown; - fromPartial(object: Partial<_135.QueryClassesResponse>): _135.QueryClassesResponse; - fromAmino(object: _135.QueryClassesResponseAmino): _135.QueryClassesResponse; - toAmino(message: _135.QueryClassesResponse): _135.QueryClassesResponseAmino; - fromAminoMsg(object: _135.QueryClassesResponseAminoMsg): _135.QueryClassesResponse; - fromProtoMsg(message: _135.QueryClassesResponseProtoMsg): _135.QueryClassesResponse; - toProto(message: _135.QueryClassesResponse): Uint8Array; - toProtoMsg(message: _135.QueryClassesResponse): _135.QueryClassesResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryClassesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryClassesResponse; + fromJSON(object: any): _136.QueryClassesResponse; + toJSON(message: _136.QueryClassesResponse): unknown; + fromPartial(object: Partial<_136.QueryClassesResponse>): _136.QueryClassesResponse; + fromAmino(object: _136.QueryClassesResponseAmino): _136.QueryClassesResponse; + toAmino(message: _136.QueryClassesResponse): _136.QueryClassesResponseAmino; + fromAminoMsg(object: _136.QueryClassesResponseAminoMsg): _136.QueryClassesResponse; + fromProtoMsg(message: _136.QueryClassesResponseProtoMsg): _136.QueryClassesResponse; + toProto(message: _136.QueryClassesResponse): Uint8Array; + toProtoMsg(message: _136.QueryClassesResponse): _136.QueryClassesResponseProtoMsg; }; QueryClassInfoRequest: { - encode(message: _135.QueryClassInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryClassInfoRequest; - fromJSON(object: any): _135.QueryClassInfoRequest; - toJSON(message: _135.QueryClassInfoRequest): unknown; - fromPartial(object: Partial<_135.QueryClassInfoRequest>): _135.QueryClassInfoRequest; - fromAmino(object: _135.QueryClassInfoRequestAmino): _135.QueryClassInfoRequest; - toAmino(message: _135.QueryClassInfoRequest): _135.QueryClassInfoRequestAmino; - fromAminoMsg(object: _135.QueryClassInfoRequestAminoMsg): _135.QueryClassInfoRequest; - fromProtoMsg(message: _135.QueryClassInfoRequestProtoMsg): _135.QueryClassInfoRequest; - toProto(message: _135.QueryClassInfoRequest): Uint8Array; - toProtoMsg(message: _135.QueryClassInfoRequest): _135.QueryClassInfoRequestProtoMsg; + typeUrl: string; + encode(message: _136.QueryClassInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryClassInfoRequest; + fromJSON(object: any): _136.QueryClassInfoRequest; + toJSON(message: _136.QueryClassInfoRequest): unknown; + fromPartial(object: Partial<_136.QueryClassInfoRequest>): _136.QueryClassInfoRequest; + fromAmino(object: _136.QueryClassInfoRequestAmino): _136.QueryClassInfoRequest; + toAmino(message: _136.QueryClassInfoRequest): _136.QueryClassInfoRequestAmino; + fromAminoMsg(object: _136.QueryClassInfoRequestAminoMsg): _136.QueryClassInfoRequest; + fromProtoMsg(message: _136.QueryClassInfoRequestProtoMsg): _136.QueryClassInfoRequest; + toProto(message: _136.QueryClassInfoRequest): Uint8Array; + toProtoMsg(message: _136.QueryClassInfoRequest): _136.QueryClassInfoRequestProtoMsg; }; QueryClassInfoResponse: { - encode(message: _135.QueryClassInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryClassInfoResponse; - fromJSON(object: any): _135.QueryClassInfoResponse; - toJSON(message: _135.QueryClassInfoResponse): unknown; - fromPartial(object: Partial<_135.QueryClassInfoResponse>): _135.QueryClassInfoResponse; - fromAmino(object: _135.QueryClassInfoResponseAmino): _135.QueryClassInfoResponse; - toAmino(message: _135.QueryClassInfoResponse): _135.QueryClassInfoResponseAmino; - fromAminoMsg(object: _135.QueryClassInfoResponseAminoMsg): _135.QueryClassInfoResponse; - fromProtoMsg(message: _135.QueryClassInfoResponseProtoMsg): _135.QueryClassInfoResponse; - toProto(message: _135.QueryClassInfoResponse): Uint8Array; - toProtoMsg(message: _135.QueryClassInfoResponse): _135.QueryClassInfoResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryClassInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryClassInfoResponse; + fromJSON(object: any): _136.QueryClassInfoResponse; + toJSON(message: _136.QueryClassInfoResponse): unknown; + fromPartial(object: Partial<_136.QueryClassInfoResponse>): _136.QueryClassInfoResponse; + fromAmino(object: _136.QueryClassInfoResponseAmino): _136.QueryClassInfoResponse; + toAmino(message: _136.QueryClassInfoResponse): _136.QueryClassInfoResponseAmino; + fromAminoMsg(object: _136.QueryClassInfoResponseAminoMsg): _136.QueryClassInfoResponse; + fromProtoMsg(message: _136.QueryClassInfoResponseProtoMsg): _136.QueryClassInfoResponse; + toProto(message: _136.QueryClassInfoResponse): Uint8Array; + toProtoMsg(message: _136.QueryClassInfoResponse): _136.QueryClassInfoResponseProtoMsg; }; QueryBatchesRequest: { - encode(message: _135.QueryBatchesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryBatchesRequest; - fromJSON(object: any): _135.QueryBatchesRequest; - toJSON(message: _135.QueryBatchesRequest): unknown; - fromPartial(object: Partial<_135.QueryBatchesRequest>): _135.QueryBatchesRequest; - fromAmino(object: _135.QueryBatchesRequestAmino): _135.QueryBatchesRequest; - toAmino(message: _135.QueryBatchesRequest): _135.QueryBatchesRequestAmino; - fromAminoMsg(object: _135.QueryBatchesRequestAminoMsg): _135.QueryBatchesRequest; - fromProtoMsg(message: _135.QueryBatchesRequestProtoMsg): _135.QueryBatchesRequest; - toProto(message: _135.QueryBatchesRequest): Uint8Array; - toProtoMsg(message: _135.QueryBatchesRequest): _135.QueryBatchesRequestProtoMsg; + typeUrl: string; + encode(message: _136.QueryBatchesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryBatchesRequest; + fromJSON(object: any): _136.QueryBatchesRequest; + toJSON(message: _136.QueryBatchesRequest): unknown; + fromPartial(object: Partial<_136.QueryBatchesRequest>): _136.QueryBatchesRequest; + fromAmino(object: _136.QueryBatchesRequestAmino): _136.QueryBatchesRequest; + toAmino(message: _136.QueryBatchesRequest): _136.QueryBatchesRequestAmino; + fromAminoMsg(object: _136.QueryBatchesRequestAminoMsg): _136.QueryBatchesRequest; + fromProtoMsg(message: _136.QueryBatchesRequestProtoMsg): _136.QueryBatchesRequest; + toProto(message: _136.QueryBatchesRequest): Uint8Array; + toProtoMsg(message: _136.QueryBatchesRequest): _136.QueryBatchesRequestProtoMsg; }; QueryBatchesResponse: { - encode(message: _135.QueryBatchesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryBatchesResponse; - fromJSON(object: any): _135.QueryBatchesResponse; - toJSON(message: _135.QueryBatchesResponse): unknown; - fromPartial(object: Partial<_135.QueryBatchesResponse>): _135.QueryBatchesResponse; - fromAmino(object: _135.QueryBatchesResponseAmino): _135.QueryBatchesResponse; - toAmino(message: _135.QueryBatchesResponse): _135.QueryBatchesResponseAmino; - fromAminoMsg(object: _135.QueryBatchesResponseAminoMsg): _135.QueryBatchesResponse; - fromProtoMsg(message: _135.QueryBatchesResponseProtoMsg): _135.QueryBatchesResponse; - toProto(message: _135.QueryBatchesResponse): Uint8Array; - toProtoMsg(message: _135.QueryBatchesResponse): _135.QueryBatchesResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryBatchesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryBatchesResponse; + fromJSON(object: any): _136.QueryBatchesResponse; + toJSON(message: _136.QueryBatchesResponse): unknown; + fromPartial(object: Partial<_136.QueryBatchesResponse>): _136.QueryBatchesResponse; + fromAmino(object: _136.QueryBatchesResponseAmino): _136.QueryBatchesResponse; + toAmino(message: _136.QueryBatchesResponse): _136.QueryBatchesResponseAmino; + fromAminoMsg(object: _136.QueryBatchesResponseAminoMsg): _136.QueryBatchesResponse; + fromProtoMsg(message: _136.QueryBatchesResponseProtoMsg): _136.QueryBatchesResponse; + toProto(message: _136.QueryBatchesResponse): Uint8Array; + toProtoMsg(message: _136.QueryBatchesResponse): _136.QueryBatchesResponseProtoMsg; }; QueryBatchInfoRequest: { - encode(message: _135.QueryBatchInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryBatchInfoRequest; - fromJSON(object: any): _135.QueryBatchInfoRequest; - toJSON(message: _135.QueryBatchInfoRequest): unknown; - fromPartial(object: Partial<_135.QueryBatchInfoRequest>): _135.QueryBatchInfoRequest; - fromAmino(object: _135.QueryBatchInfoRequestAmino): _135.QueryBatchInfoRequest; - toAmino(message: _135.QueryBatchInfoRequest): _135.QueryBatchInfoRequestAmino; - fromAminoMsg(object: _135.QueryBatchInfoRequestAminoMsg): _135.QueryBatchInfoRequest; - fromProtoMsg(message: _135.QueryBatchInfoRequestProtoMsg): _135.QueryBatchInfoRequest; - toProto(message: _135.QueryBatchInfoRequest): Uint8Array; - toProtoMsg(message: _135.QueryBatchInfoRequest): _135.QueryBatchInfoRequestProtoMsg; + typeUrl: string; + encode(message: _136.QueryBatchInfoRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryBatchInfoRequest; + fromJSON(object: any): _136.QueryBatchInfoRequest; + toJSON(message: _136.QueryBatchInfoRequest): unknown; + fromPartial(object: Partial<_136.QueryBatchInfoRequest>): _136.QueryBatchInfoRequest; + fromAmino(object: _136.QueryBatchInfoRequestAmino): _136.QueryBatchInfoRequest; + toAmino(message: _136.QueryBatchInfoRequest): _136.QueryBatchInfoRequestAmino; + fromAminoMsg(object: _136.QueryBatchInfoRequestAminoMsg): _136.QueryBatchInfoRequest; + fromProtoMsg(message: _136.QueryBatchInfoRequestProtoMsg): _136.QueryBatchInfoRequest; + toProto(message: _136.QueryBatchInfoRequest): Uint8Array; + toProtoMsg(message: _136.QueryBatchInfoRequest): _136.QueryBatchInfoRequestProtoMsg; }; QueryBatchInfoResponse: { - encode(message: _135.QueryBatchInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryBatchInfoResponse; - fromJSON(object: any): _135.QueryBatchInfoResponse; - toJSON(message: _135.QueryBatchInfoResponse): unknown; - fromPartial(object: Partial<_135.QueryBatchInfoResponse>): _135.QueryBatchInfoResponse; - fromAmino(object: _135.QueryBatchInfoResponseAmino): _135.QueryBatchInfoResponse; - toAmino(message: _135.QueryBatchInfoResponse): _135.QueryBatchInfoResponseAmino; - fromAminoMsg(object: _135.QueryBatchInfoResponseAminoMsg): _135.QueryBatchInfoResponse; - fromProtoMsg(message: _135.QueryBatchInfoResponseProtoMsg): _135.QueryBatchInfoResponse; - toProto(message: _135.QueryBatchInfoResponse): Uint8Array; - toProtoMsg(message: _135.QueryBatchInfoResponse): _135.QueryBatchInfoResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryBatchInfoResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryBatchInfoResponse; + fromJSON(object: any): _136.QueryBatchInfoResponse; + toJSON(message: _136.QueryBatchInfoResponse): unknown; + fromPartial(object: Partial<_136.QueryBatchInfoResponse>): _136.QueryBatchInfoResponse; + fromAmino(object: _136.QueryBatchInfoResponseAmino): _136.QueryBatchInfoResponse; + toAmino(message: _136.QueryBatchInfoResponse): _136.QueryBatchInfoResponseAmino; + fromAminoMsg(object: _136.QueryBatchInfoResponseAminoMsg): _136.QueryBatchInfoResponse; + fromProtoMsg(message: _136.QueryBatchInfoResponseProtoMsg): _136.QueryBatchInfoResponse; + toProto(message: _136.QueryBatchInfoResponse): Uint8Array; + toProtoMsg(message: _136.QueryBatchInfoResponse): _136.QueryBatchInfoResponseProtoMsg; }; QueryBalanceRequest: { - encode(message: _135.QueryBalanceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryBalanceRequest; - fromJSON(object: any): _135.QueryBalanceRequest; - toJSON(message: _135.QueryBalanceRequest): unknown; - fromPartial(object: Partial<_135.QueryBalanceRequest>): _135.QueryBalanceRequest; - fromAmino(object: _135.QueryBalanceRequestAmino): _135.QueryBalanceRequest; - toAmino(message: _135.QueryBalanceRequest): _135.QueryBalanceRequestAmino; - fromAminoMsg(object: _135.QueryBalanceRequestAminoMsg): _135.QueryBalanceRequest; - fromProtoMsg(message: _135.QueryBalanceRequestProtoMsg): _135.QueryBalanceRequest; - toProto(message: _135.QueryBalanceRequest): Uint8Array; - toProtoMsg(message: _135.QueryBalanceRequest): _135.QueryBalanceRequestProtoMsg; + typeUrl: string; + encode(message: _136.QueryBalanceRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryBalanceRequest; + fromJSON(object: any): _136.QueryBalanceRequest; + toJSON(message: _136.QueryBalanceRequest): unknown; + fromPartial(object: Partial<_136.QueryBalanceRequest>): _136.QueryBalanceRequest; + fromAmino(object: _136.QueryBalanceRequestAmino): _136.QueryBalanceRequest; + toAmino(message: _136.QueryBalanceRequest): _136.QueryBalanceRequestAmino; + fromAminoMsg(object: _136.QueryBalanceRequestAminoMsg): _136.QueryBalanceRequest; + fromProtoMsg(message: _136.QueryBalanceRequestProtoMsg): _136.QueryBalanceRequest; + toProto(message: _136.QueryBalanceRequest): Uint8Array; + toProtoMsg(message: _136.QueryBalanceRequest): _136.QueryBalanceRequestProtoMsg; }; QueryBalanceResponse: { - encode(message: _135.QueryBalanceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryBalanceResponse; - fromJSON(object: any): _135.QueryBalanceResponse; - toJSON(message: _135.QueryBalanceResponse): unknown; - fromPartial(object: Partial<_135.QueryBalanceResponse>): _135.QueryBalanceResponse; - fromAmino(object: _135.QueryBalanceResponseAmino): _135.QueryBalanceResponse; - toAmino(message: _135.QueryBalanceResponse): _135.QueryBalanceResponseAmino; - fromAminoMsg(object: _135.QueryBalanceResponseAminoMsg): _135.QueryBalanceResponse; - fromProtoMsg(message: _135.QueryBalanceResponseProtoMsg): _135.QueryBalanceResponse; - toProto(message: _135.QueryBalanceResponse): Uint8Array; - toProtoMsg(message: _135.QueryBalanceResponse): _135.QueryBalanceResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryBalanceResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryBalanceResponse; + fromJSON(object: any): _136.QueryBalanceResponse; + toJSON(message: _136.QueryBalanceResponse): unknown; + fromPartial(object: Partial<_136.QueryBalanceResponse>): _136.QueryBalanceResponse; + fromAmino(object: _136.QueryBalanceResponseAmino): _136.QueryBalanceResponse; + toAmino(message: _136.QueryBalanceResponse): _136.QueryBalanceResponseAmino; + fromAminoMsg(object: _136.QueryBalanceResponseAminoMsg): _136.QueryBalanceResponse; + fromProtoMsg(message: _136.QueryBalanceResponseProtoMsg): _136.QueryBalanceResponse; + toProto(message: _136.QueryBalanceResponse): Uint8Array; + toProtoMsg(message: _136.QueryBalanceResponse): _136.QueryBalanceResponseProtoMsg; }; QuerySupplyRequest: { - encode(message: _135.QuerySupplyRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QuerySupplyRequest; - fromJSON(object: any): _135.QuerySupplyRequest; - toJSON(message: _135.QuerySupplyRequest): unknown; - fromPartial(object: Partial<_135.QuerySupplyRequest>): _135.QuerySupplyRequest; - fromAmino(object: _135.QuerySupplyRequestAmino): _135.QuerySupplyRequest; - toAmino(message: _135.QuerySupplyRequest): _135.QuerySupplyRequestAmino; - fromAminoMsg(object: _135.QuerySupplyRequestAminoMsg): _135.QuerySupplyRequest; - fromProtoMsg(message: _135.QuerySupplyRequestProtoMsg): _135.QuerySupplyRequest; - toProto(message: _135.QuerySupplyRequest): Uint8Array; - toProtoMsg(message: _135.QuerySupplyRequest): _135.QuerySupplyRequestProtoMsg; + typeUrl: string; + encode(message: _136.QuerySupplyRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QuerySupplyRequest; + fromJSON(object: any): _136.QuerySupplyRequest; + toJSON(message: _136.QuerySupplyRequest): unknown; + fromPartial(object: Partial<_136.QuerySupplyRequest>): _136.QuerySupplyRequest; + fromAmino(object: _136.QuerySupplyRequestAmino): _136.QuerySupplyRequest; + toAmino(message: _136.QuerySupplyRequest): _136.QuerySupplyRequestAmino; + fromAminoMsg(object: _136.QuerySupplyRequestAminoMsg): _136.QuerySupplyRequest; + fromProtoMsg(message: _136.QuerySupplyRequestProtoMsg): _136.QuerySupplyRequest; + toProto(message: _136.QuerySupplyRequest): Uint8Array; + toProtoMsg(message: _136.QuerySupplyRequest): _136.QuerySupplyRequestProtoMsg; }; QuerySupplyResponse: { - encode(message: _135.QuerySupplyResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QuerySupplyResponse; - fromJSON(object: any): _135.QuerySupplyResponse; - toJSON(message: _135.QuerySupplyResponse): unknown; - fromPartial(object: Partial<_135.QuerySupplyResponse>): _135.QuerySupplyResponse; - fromAmino(object: _135.QuerySupplyResponseAmino): _135.QuerySupplyResponse; - toAmino(message: _135.QuerySupplyResponse): _135.QuerySupplyResponseAmino; - fromAminoMsg(object: _135.QuerySupplyResponseAminoMsg): _135.QuerySupplyResponse; - fromProtoMsg(message: _135.QuerySupplyResponseProtoMsg): _135.QuerySupplyResponse; - toProto(message: _135.QuerySupplyResponse): Uint8Array; - toProtoMsg(message: _135.QuerySupplyResponse): _135.QuerySupplyResponseProtoMsg; + typeUrl: string; + encode(message: _136.QuerySupplyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QuerySupplyResponse; + fromJSON(object: any): _136.QuerySupplyResponse; + toJSON(message: _136.QuerySupplyResponse): unknown; + fromPartial(object: Partial<_136.QuerySupplyResponse>): _136.QuerySupplyResponse; + fromAmino(object: _136.QuerySupplyResponseAmino): _136.QuerySupplyResponse; + toAmino(message: _136.QuerySupplyResponse): _136.QuerySupplyResponseAmino; + fromAminoMsg(object: _136.QuerySupplyResponseAminoMsg): _136.QuerySupplyResponse; + fromProtoMsg(message: _136.QuerySupplyResponseProtoMsg): _136.QuerySupplyResponse; + toProto(message: _136.QuerySupplyResponse): Uint8Array; + toProtoMsg(message: _136.QuerySupplyResponse): _136.QuerySupplyResponseProtoMsg; }; QueryCreditTypesRequest: { - encode(_: _135.QueryCreditTypesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryCreditTypesRequest; - fromJSON(_: any): _135.QueryCreditTypesRequest; - toJSON(_: _135.QueryCreditTypesRequest): unknown; - fromPartial(_: Partial<_135.QueryCreditTypesRequest>): _135.QueryCreditTypesRequest; - fromAmino(_: _135.QueryCreditTypesRequestAmino): _135.QueryCreditTypesRequest; - toAmino(_: _135.QueryCreditTypesRequest): _135.QueryCreditTypesRequestAmino; - fromAminoMsg(object: _135.QueryCreditTypesRequestAminoMsg): _135.QueryCreditTypesRequest; - fromProtoMsg(message: _135.QueryCreditTypesRequestProtoMsg): _135.QueryCreditTypesRequest; - toProto(message: _135.QueryCreditTypesRequest): Uint8Array; - toProtoMsg(message: _135.QueryCreditTypesRequest): _135.QueryCreditTypesRequestProtoMsg; + typeUrl: string; + encode(_: _136.QueryCreditTypesRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryCreditTypesRequest; + fromJSON(_: any): _136.QueryCreditTypesRequest; + toJSON(_: _136.QueryCreditTypesRequest): unknown; + fromPartial(_: Partial<_136.QueryCreditTypesRequest>): _136.QueryCreditTypesRequest; + fromAmino(_: _136.QueryCreditTypesRequestAmino): _136.QueryCreditTypesRequest; + toAmino(_: _136.QueryCreditTypesRequest): _136.QueryCreditTypesRequestAmino; + fromAminoMsg(object: _136.QueryCreditTypesRequestAminoMsg): _136.QueryCreditTypesRequest; + fromProtoMsg(message: _136.QueryCreditTypesRequestProtoMsg): _136.QueryCreditTypesRequest; + toProto(message: _136.QueryCreditTypesRequest): Uint8Array; + toProtoMsg(message: _136.QueryCreditTypesRequest): _136.QueryCreditTypesRequestProtoMsg; }; QueryCreditTypesResponse: { - encode(message: _135.QueryCreditTypesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _135.QueryCreditTypesResponse; - fromJSON(object: any): _135.QueryCreditTypesResponse; - toJSON(message: _135.QueryCreditTypesResponse): unknown; - fromPartial(object: Partial<_135.QueryCreditTypesResponse>): _135.QueryCreditTypesResponse; - fromAmino(object: _135.QueryCreditTypesResponseAmino): _135.QueryCreditTypesResponse; - toAmino(message: _135.QueryCreditTypesResponse): _135.QueryCreditTypesResponseAmino; - fromAminoMsg(object: _135.QueryCreditTypesResponseAminoMsg): _135.QueryCreditTypesResponse; - fromProtoMsg(message: _135.QueryCreditTypesResponseProtoMsg): _135.QueryCreditTypesResponse; - toProto(message: _135.QueryCreditTypesResponse): Uint8Array; - toProtoMsg(message: _135.QueryCreditTypesResponse): _135.QueryCreditTypesResponseProtoMsg; + typeUrl: string; + encode(message: _136.QueryCreditTypesResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _136.QueryCreditTypesResponse; + fromJSON(object: any): _136.QueryCreditTypesResponse; + toJSON(message: _136.QueryCreditTypesResponse): unknown; + fromPartial(object: Partial<_136.QueryCreditTypesResponse>): _136.QueryCreditTypesResponse; + fromAmino(object: _136.QueryCreditTypesResponseAmino): _136.QueryCreditTypesResponse; + toAmino(message: _136.QueryCreditTypesResponse): _136.QueryCreditTypesResponseAmino; + fromAminoMsg(object: _136.QueryCreditTypesResponseAminoMsg): _136.QueryCreditTypesResponse; + fromProtoMsg(message: _136.QueryCreditTypesResponseProtoMsg): _136.QueryCreditTypesResponse; + toProto(message: _136.QueryCreditTypesResponse): Uint8Array; + toProtoMsg(message: _136.QueryCreditTypesResponse): _136.QueryCreditTypesResponseProtoMsg; }; GenesisState: { - encode(message: _134.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _134.GenesisState; - fromJSON(object: any): _134.GenesisState; - toJSON(message: _134.GenesisState): unknown; - fromPartial(object: Partial<_134.GenesisState>): _134.GenesisState; - fromAmino(object: _134.GenesisStateAmino): _134.GenesisState; - toAmino(message: _134.GenesisState): _134.GenesisStateAmino; - fromAminoMsg(object: _134.GenesisStateAminoMsg): _134.GenesisState; - fromProtoMsg(message: _134.GenesisStateProtoMsg): _134.GenesisState; - toProto(message: _134.GenesisState): Uint8Array; - toProtoMsg(message: _134.GenesisState): _134.GenesisStateProtoMsg; + typeUrl: string; + encode(message: _135.GenesisState, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _135.GenesisState; + fromJSON(object: any): _135.GenesisState; + toJSON(message: _135.GenesisState): unknown; + fromPartial(object: Partial<_135.GenesisState>): _135.GenesisState; + fromAmino(object: _135.GenesisStateAmino): _135.GenesisState; + toAmino(message: _135.GenesisState): _135.GenesisStateAmino; + fromAminoMsg(object: _135.GenesisStateAminoMsg): _135.GenesisState; + fromProtoMsg(message: _135.GenesisStateProtoMsg): _135.GenesisState; + toProto(message: _135.GenesisState): Uint8Array; + toProtoMsg(message: _135.GenesisState): _135.GenesisStateProtoMsg; }; Balance: { - encode(message: _134.Balance, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _134.Balance; - fromJSON(object: any): _134.Balance; - toJSON(message: _134.Balance): unknown; - fromPartial(object: Partial<_134.Balance>): _134.Balance; - fromAmino(object: _134.BalanceAmino): _134.Balance; - toAmino(message: _134.Balance): _134.BalanceAmino; - fromAminoMsg(object: _134.BalanceAminoMsg): _134.Balance; - fromProtoMsg(message: _134.BalanceProtoMsg): _134.Balance; - toProto(message: _134.Balance): Uint8Array; - toProtoMsg(message: _134.Balance): _134.BalanceProtoMsg; + typeUrl: string; + encode(message: _135.Balance, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _135.Balance; + fromJSON(object: any): _135.Balance; + toJSON(message: _135.Balance): unknown; + fromPartial(object: Partial<_135.Balance>): _135.Balance; + fromAmino(object: _135.BalanceAmino): _135.Balance; + toAmino(message: _135.Balance): _135.BalanceAmino; + fromAminoMsg(object: _135.BalanceAminoMsg): _135.Balance; + fromProtoMsg(message: _135.BalanceProtoMsg): _135.Balance; + toProto(message: _135.Balance): Uint8Array; + toProtoMsg(message: _135.Balance): _135.BalanceProtoMsg; }; Supply: { - encode(message: _134.Supply, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _134.Supply; - fromJSON(object: any): _134.Supply; - toJSON(message: _134.Supply): unknown; - fromPartial(object: Partial<_134.Supply>): _134.Supply; - fromAmino(object: _134.SupplyAmino): _134.Supply; - toAmino(message: _134.Supply): _134.SupplyAmino; - fromAminoMsg(object: _134.SupplyAminoMsg): _134.Supply; - fromProtoMsg(message: _134.SupplyProtoMsg): _134.Supply; - toProto(message: _134.Supply): Uint8Array; - toProtoMsg(message: _134.Supply): _134.SupplyProtoMsg; + typeUrl: string; + encode(message: _135.Supply, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _135.Supply; + fromJSON(object: any): _135.Supply; + toJSON(message: _135.Supply): unknown; + fromPartial(object: Partial<_135.Supply>): _135.Supply; + fromAmino(object: _135.SupplyAmino): _135.Supply; + toAmino(message: _135.Supply): _135.SupplyAmino; + fromAminoMsg(object: _135.SupplyAminoMsg): _135.Supply; + fromProtoMsg(message: _135.SupplyProtoMsg): _135.Supply; + toProto(message: _135.Supply): Uint8Array; + toProtoMsg(message: _135.Supply): _135.SupplyProtoMsg; }; EventCreateClass: { - encode(message: _133.EventCreateClass, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _133.EventCreateClass; - fromJSON(object: any): _133.EventCreateClass; - toJSON(message: _133.EventCreateClass): unknown; - fromPartial(object: Partial<_133.EventCreateClass>): _133.EventCreateClass; - fromAmino(object: _133.EventCreateClassAmino): _133.EventCreateClass; - toAmino(message: _133.EventCreateClass): _133.EventCreateClassAmino; - fromAminoMsg(object: _133.EventCreateClassAminoMsg): _133.EventCreateClass; - fromProtoMsg(message: _133.EventCreateClassProtoMsg): _133.EventCreateClass; - toProto(message: _133.EventCreateClass): Uint8Array; - toProtoMsg(message: _133.EventCreateClass): _133.EventCreateClassProtoMsg; + typeUrl: string; + encode(message: _134.EventCreateClass, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _134.EventCreateClass; + fromJSON(object: any): _134.EventCreateClass; + toJSON(message: _134.EventCreateClass): unknown; + fromPartial(object: Partial<_134.EventCreateClass>): _134.EventCreateClass; + fromAmino(object: _134.EventCreateClassAmino): _134.EventCreateClass; + toAmino(message: _134.EventCreateClass): _134.EventCreateClassAmino; + fromAminoMsg(object: _134.EventCreateClassAminoMsg): _134.EventCreateClass; + fromProtoMsg(message: _134.EventCreateClassProtoMsg): _134.EventCreateClass; + toProto(message: _134.EventCreateClass): Uint8Array; + toProtoMsg(message: _134.EventCreateClass): _134.EventCreateClassProtoMsg; }; EventCreateBatch: { - encode(message: _133.EventCreateBatch, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _133.EventCreateBatch; - fromJSON(object: any): _133.EventCreateBatch; - toJSON(message: _133.EventCreateBatch): unknown; - fromPartial(object: Partial<_133.EventCreateBatch>): _133.EventCreateBatch; - fromAmino(object: _133.EventCreateBatchAmino): _133.EventCreateBatch; - toAmino(message: _133.EventCreateBatch): _133.EventCreateBatchAmino; - fromAminoMsg(object: _133.EventCreateBatchAminoMsg): _133.EventCreateBatch; - fromProtoMsg(message: _133.EventCreateBatchProtoMsg): _133.EventCreateBatch; - toProto(message: _133.EventCreateBatch): Uint8Array; - toProtoMsg(message: _133.EventCreateBatch): _133.EventCreateBatchProtoMsg; + typeUrl: string; + encode(message: _134.EventCreateBatch, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _134.EventCreateBatch; + fromJSON(object: any): _134.EventCreateBatch; + toJSON(message: _134.EventCreateBatch): unknown; + fromPartial(object: Partial<_134.EventCreateBatch>): _134.EventCreateBatch; + fromAmino(object: _134.EventCreateBatchAmino): _134.EventCreateBatch; + toAmino(message: _134.EventCreateBatch): _134.EventCreateBatchAmino; + fromAminoMsg(object: _134.EventCreateBatchAminoMsg): _134.EventCreateBatch; + fromProtoMsg(message: _134.EventCreateBatchProtoMsg): _134.EventCreateBatch; + toProto(message: _134.EventCreateBatch): Uint8Array; + toProtoMsg(message: _134.EventCreateBatch): _134.EventCreateBatchProtoMsg; }; EventReceive: { - encode(message: _133.EventReceive, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _133.EventReceive; - fromJSON(object: any): _133.EventReceive; - toJSON(message: _133.EventReceive): unknown; - fromPartial(object: Partial<_133.EventReceive>): _133.EventReceive; - fromAmino(object: _133.EventReceiveAmino): _133.EventReceive; - toAmino(message: _133.EventReceive): _133.EventReceiveAmino; - fromAminoMsg(object: _133.EventReceiveAminoMsg): _133.EventReceive; - fromProtoMsg(message: _133.EventReceiveProtoMsg): _133.EventReceive; - toProto(message: _133.EventReceive): Uint8Array; - toProtoMsg(message: _133.EventReceive): _133.EventReceiveProtoMsg; + typeUrl: string; + encode(message: _134.EventReceive, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _134.EventReceive; + fromJSON(object: any): _134.EventReceive; + toJSON(message: _134.EventReceive): unknown; + fromPartial(object: Partial<_134.EventReceive>): _134.EventReceive; + fromAmino(object: _134.EventReceiveAmino): _134.EventReceive; + toAmino(message: _134.EventReceive): _134.EventReceiveAmino; + fromAminoMsg(object: _134.EventReceiveAminoMsg): _134.EventReceive; + fromProtoMsg(message: _134.EventReceiveProtoMsg): _134.EventReceive; + toProto(message: _134.EventReceive): Uint8Array; + toProtoMsg(message: _134.EventReceive): _134.EventReceiveProtoMsg; }; EventRetire: { - encode(message: _133.EventRetire, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _133.EventRetire; - fromJSON(object: any): _133.EventRetire; - toJSON(message: _133.EventRetire): unknown; - fromPartial(object: Partial<_133.EventRetire>): _133.EventRetire; - fromAmino(object: _133.EventRetireAmino): _133.EventRetire; - toAmino(message: _133.EventRetire): _133.EventRetireAmino; - fromAminoMsg(object: _133.EventRetireAminoMsg): _133.EventRetire; - fromProtoMsg(message: _133.EventRetireProtoMsg): _133.EventRetire; - toProto(message: _133.EventRetire): Uint8Array; - toProtoMsg(message: _133.EventRetire): _133.EventRetireProtoMsg; + typeUrl: string; + encode(message: _134.EventRetire, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _134.EventRetire; + fromJSON(object: any): _134.EventRetire; + toJSON(message: _134.EventRetire): unknown; + fromPartial(object: Partial<_134.EventRetire>): _134.EventRetire; + fromAmino(object: _134.EventRetireAmino): _134.EventRetire; + toAmino(message: _134.EventRetire): _134.EventRetireAmino; + fromAminoMsg(object: _134.EventRetireAminoMsg): _134.EventRetire; + fromProtoMsg(message: _134.EventRetireProtoMsg): _134.EventRetire; + toProto(message: _134.EventRetire): Uint8Array; + toProtoMsg(message: _134.EventRetire): _134.EventRetireProtoMsg; }; EventCancel: { - encode(message: _133.EventCancel, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _133.EventCancel; - fromJSON(object: any): _133.EventCancel; - toJSON(message: _133.EventCancel): unknown; - fromPartial(object: Partial<_133.EventCancel>): _133.EventCancel; - fromAmino(object: _133.EventCancelAmino): _133.EventCancel; - toAmino(message: _133.EventCancel): _133.EventCancelAmino; - fromAminoMsg(object: _133.EventCancelAminoMsg): _133.EventCancel; - fromProtoMsg(message: _133.EventCancelProtoMsg): _133.EventCancel; - toProto(message: _133.EventCancel): Uint8Array; - toProtoMsg(message: _133.EventCancel): _133.EventCancelProtoMsg; + typeUrl: string; + encode(message: _134.EventCancel, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _134.EventCancel; + fromJSON(object: any): _134.EventCancel; + toJSON(message: _134.EventCancel): unknown; + fromPartial(object: Partial<_134.EventCancel>): _134.EventCancel; + fromAmino(object: _134.EventCancelAmino): _134.EventCancel; + toAmino(message: _134.EventCancel): _134.EventCancelAmino; + fromAminoMsg(object: _134.EventCancelAminoMsg): _134.EventCancel; + fromProtoMsg(message: _134.EventCancelProtoMsg): _134.EventCancel; + toProto(message: _134.EventCancel): Uint8Array; + toProtoMsg(message: _134.EventCancel): _134.EventCancelProtoMsg; }; }; } namespace intertx { const v1: { - MsgClientImpl: typeof _269.MsgClientImpl; - QueryClientImpl: typeof _263.QueryClientImpl; + MsgClientImpl: typeof _270.MsgClientImpl; + QueryClientImpl: typeof _264.QueryClientImpl; createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => { - interchainAccount(request: _138.QueryInterchainAccountRequest): Promise<_138.QueryInterchainAccountResponse>; + interchainAccount(request: _139.QueryInterchainAccountRequest): Promise<_139.QueryInterchainAccountResponse>; }; - LCDQueryClient: typeof _257.LCDQueryClient; + LCDQueryClient: typeof _258.LCDQueryClient; registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][]; load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void; MessageComposer: { encoded: { - registerAccount(value: _139.MsgRegisterAccount): { + registerAccount(value: _140.MsgRegisterAccount): { typeUrl: string; value: Uint8Array; }; - submitTx(value: _139.MsgSubmitTx): { + submitTx(value: _140.MsgSubmitTx): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { - registerAccount(value: _139.MsgRegisterAccount): { + registerAccount(value: _140.MsgRegisterAccount): { typeUrl: string; - value: _139.MsgRegisterAccount; + value: _140.MsgRegisterAccount; }; - submitTx(value: _139.MsgSubmitTx): { + submitTx(value: _140.MsgSubmitTx): { typeUrl: string; - value: _139.MsgSubmitTx; + value: _140.MsgSubmitTx; }; }; toJSON: { - registerAccount(value: _139.MsgRegisterAccount): { + registerAccount(value: _140.MsgRegisterAccount): { typeUrl: string; value: unknown; }; - submitTx(value: _139.MsgSubmitTx): { + submitTx(value: _140.MsgSubmitTx): { typeUrl: string; value: unknown; }; @@ -5600,113 +5915,119 @@ export declare namespace regen { fromJSON: { registerAccount(value: any): { typeUrl: string; - value: _139.MsgRegisterAccount; + value: _140.MsgRegisterAccount; }; submitTx(value: any): { typeUrl: string; - value: _139.MsgSubmitTx; + value: _140.MsgSubmitTx; }; }; fromPartial: { - registerAccount(value: _139.MsgRegisterAccount): { + registerAccount(value: _140.MsgRegisterAccount): { typeUrl: string; - value: _139.MsgRegisterAccount; + value: _140.MsgRegisterAccount; }; - submitTx(value: _139.MsgSubmitTx): { + submitTx(value: _140.MsgSubmitTx): { typeUrl: string; - value: _139.MsgSubmitTx; + value: _140.MsgSubmitTx; }; }; }; AminoConverter: { "/regen.intertx.v1.MsgRegisterAccount": { aminoType: string; - toAmino: (message: _139.MsgRegisterAccount) => _139.MsgRegisterAccountAmino; - fromAmino: (object: _139.MsgRegisterAccountAmino) => _139.MsgRegisterAccount; + toAmino: (message: _140.MsgRegisterAccount) => _140.MsgRegisterAccountAmino; + fromAmino: (object: _140.MsgRegisterAccountAmino) => _140.MsgRegisterAccount; }; "/regen.intertx.v1.MsgSubmitTx": { aminoType: string; - toAmino: (message: _139.MsgSubmitTx) => _139.MsgSubmitTxAmino; - fromAmino: (object: _139.MsgSubmitTxAmino) => _139.MsgSubmitTx; + toAmino: (message: _140.MsgSubmitTx) => _140.MsgSubmitTxAmino; + fromAmino: (object: _140.MsgSubmitTxAmino) => _140.MsgSubmitTx; }; }; MsgRegisterAccount: { - encode(message: _139.MsgRegisterAccount, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _139.MsgRegisterAccount; - fromJSON(object: any): _139.MsgRegisterAccount; - toJSON(message: _139.MsgRegisterAccount): unknown; - fromPartial(object: Partial<_139.MsgRegisterAccount>): _139.MsgRegisterAccount; - fromAmino(object: _139.MsgRegisterAccountAmino): _139.MsgRegisterAccount; - toAmino(message: _139.MsgRegisterAccount): _139.MsgRegisterAccountAmino; - fromAminoMsg(object: _139.MsgRegisterAccountAminoMsg): _139.MsgRegisterAccount; - fromProtoMsg(message: _139.MsgRegisterAccountProtoMsg): _139.MsgRegisterAccount; - toProto(message: _139.MsgRegisterAccount): Uint8Array; - toProtoMsg(message: _139.MsgRegisterAccount): _139.MsgRegisterAccountProtoMsg; + typeUrl: string; + encode(message: _140.MsgRegisterAccount, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _140.MsgRegisterAccount; + fromJSON(object: any): _140.MsgRegisterAccount; + toJSON(message: _140.MsgRegisterAccount): unknown; + fromPartial(object: Partial<_140.MsgRegisterAccount>): _140.MsgRegisterAccount; + fromAmino(object: _140.MsgRegisterAccountAmino): _140.MsgRegisterAccount; + toAmino(message: _140.MsgRegisterAccount): _140.MsgRegisterAccountAmino; + fromAminoMsg(object: _140.MsgRegisterAccountAminoMsg): _140.MsgRegisterAccount; + fromProtoMsg(message: _140.MsgRegisterAccountProtoMsg): _140.MsgRegisterAccount; + toProto(message: _140.MsgRegisterAccount): Uint8Array; + toProtoMsg(message: _140.MsgRegisterAccount): _140.MsgRegisterAccountProtoMsg; }; MsgRegisterAccountResponse: { - encode(_: _139.MsgRegisterAccountResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _139.MsgRegisterAccountResponse; - fromJSON(_: any): _139.MsgRegisterAccountResponse; - toJSON(_: _139.MsgRegisterAccountResponse): unknown; - fromPartial(_: Partial<_139.MsgRegisterAccountResponse>): _139.MsgRegisterAccountResponse; - fromAmino(_: _139.MsgRegisterAccountResponseAmino): _139.MsgRegisterAccountResponse; - toAmino(_: _139.MsgRegisterAccountResponse): _139.MsgRegisterAccountResponseAmino; - fromAminoMsg(object: _139.MsgRegisterAccountResponseAminoMsg): _139.MsgRegisterAccountResponse; - fromProtoMsg(message: _139.MsgRegisterAccountResponseProtoMsg): _139.MsgRegisterAccountResponse; - toProto(message: _139.MsgRegisterAccountResponse): Uint8Array; - toProtoMsg(message: _139.MsgRegisterAccountResponse): _139.MsgRegisterAccountResponseProtoMsg; + typeUrl: string; + encode(_: _140.MsgRegisterAccountResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _140.MsgRegisterAccountResponse; + fromJSON(_: any): _140.MsgRegisterAccountResponse; + toJSON(_: _140.MsgRegisterAccountResponse): unknown; + fromPartial(_: Partial<_140.MsgRegisterAccountResponse>): _140.MsgRegisterAccountResponse; + fromAmino(_: _140.MsgRegisterAccountResponseAmino): _140.MsgRegisterAccountResponse; + toAmino(_: _140.MsgRegisterAccountResponse): _140.MsgRegisterAccountResponseAmino; + fromAminoMsg(object: _140.MsgRegisterAccountResponseAminoMsg): _140.MsgRegisterAccountResponse; + fromProtoMsg(message: _140.MsgRegisterAccountResponseProtoMsg): _140.MsgRegisterAccountResponse; + toProto(message: _140.MsgRegisterAccountResponse): Uint8Array; + toProtoMsg(message: _140.MsgRegisterAccountResponse): _140.MsgRegisterAccountResponseProtoMsg; }; MsgSubmitTx: { - encode(message: _139.MsgSubmitTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _139.MsgSubmitTx; - fromJSON(object: any): _139.MsgSubmitTx; - toJSON(message: _139.MsgSubmitTx): unknown; - fromPartial(object: Partial<_139.MsgSubmitTx>): _139.MsgSubmitTx; - fromAmino(object: _139.MsgSubmitTxAmino): _139.MsgSubmitTx; - toAmino(message: _139.MsgSubmitTx): _139.MsgSubmitTxAmino; - fromAminoMsg(object: _139.MsgSubmitTxAminoMsg): _139.MsgSubmitTx; - fromProtoMsg(message: _139.MsgSubmitTxProtoMsg): _139.MsgSubmitTx; - toProto(message: _139.MsgSubmitTx): Uint8Array; - toProtoMsg(message: _139.MsgSubmitTx): _139.MsgSubmitTxProtoMsg; + typeUrl: string; + encode(message: _140.MsgSubmitTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _140.MsgSubmitTx; + fromJSON(object: any): _140.MsgSubmitTx; + toJSON(message: _140.MsgSubmitTx): unknown; + fromPartial(object: Partial<_140.MsgSubmitTx>): _140.MsgSubmitTx; + fromAmino(object: _140.MsgSubmitTxAmino): _140.MsgSubmitTx; + toAmino(message: _140.MsgSubmitTx): _140.MsgSubmitTxAmino; + fromAminoMsg(object: _140.MsgSubmitTxAminoMsg): _140.MsgSubmitTx; + fromProtoMsg(message: _140.MsgSubmitTxProtoMsg): _140.MsgSubmitTx; + toProto(message: _140.MsgSubmitTx): Uint8Array; + toProtoMsg(message: _140.MsgSubmitTx): _140.MsgSubmitTxProtoMsg; }; MsgSubmitTxResponse: { - encode(_: _139.MsgSubmitTxResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _139.MsgSubmitTxResponse; - fromJSON(_: any): _139.MsgSubmitTxResponse; - toJSON(_: _139.MsgSubmitTxResponse): unknown; - fromPartial(_: Partial<_139.MsgSubmitTxResponse>): _139.MsgSubmitTxResponse; - fromAmino(_: _139.MsgSubmitTxResponseAmino): _139.MsgSubmitTxResponse; - toAmino(_: _139.MsgSubmitTxResponse): _139.MsgSubmitTxResponseAmino; - fromAminoMsg(object: _139.MsgSubmitTxResponseAminoMsg): _139.MsgSubmitTxResponse; - fromProtoMsg(message: _139.MsgSubmitTxResponseProtoMsg): _139.MsgSubmitTxResponse; - toProto(message: _139.MsgSubmitTxResponse): Uint8Array; - toProtoMsg(message: _139.MsgSubmitTxResponse): _139.MsgSubmitTxResponseProtoMsg; + typeUrl: string; + encode(_: _140.MsgSubmitTxResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _140.MsgSubmitTxResponse; + fromJSON(_: any): _140.MsgSubmitTxResponse; + toJSON(_: _140.MsgSubmitTxResponse): unknown; + fromPartial(_: Partial<_140.MsgSubmitTxResponse>): _140.MsgSubmitTxResponse; + fromAmino(_: _140.MsgSubmitTxResponseAmino): _140.MsgSubmitTxResponse; + toAmino(_: _140.MsgSubmitTxResponse): _140.MsgSubmitTxResponseAmino; + fromAminoMsg(object: _140.MsgSubmitTxResponseAminoMsg): _140.MsgSubmitTxResponse; + fromProtoMsg(message: _140.MsgSubmitTxResponseProtoMsg): _140.MsgSubmitTxResponse; + toProto(message: _140.MsgSubmitTxResponse): Uint8Array; + toProtoMsg(message: _140.MsgSubmitTxResponse): _140.MsgSubmitTxResponseProtoMsg; }; QueryInterchainAccountRequest: { - encode(message: _138.QueryInterchainAccountRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _138.QueryInterchainAccountRequest; - fromJSON(object: any): _138.QueryInterchainAccountRequest; - toJSON(message: _138.QueryInterchainAccountRequest): unknown; - fromPartial(object: Partial<_138.QueryInterchainAccountRequest>): _138.QueryInterchainAccountRequest; - fromAmino(object: _138.QueryInterchainAccountRequestAmino): _138.QueryInterchainAccountRequest; - toAmino(message: _138.QueryInterchainAccountRequest): _138.QueryInterchainAccountRequestAmino; - fromAminoMsg(object: _138.QueryInterchainAccountRequestAminoMsg): _138.QueryInterchainAccountRequest; - fromProtoMsg(message: _138.QueryInterchainAccountRequestProtoMsg): _138.QueryInterchainAccountRequest; - toProto(message: _138.QueryInterchainAccountRequest): Uint8Array; - toProtoMsg(message: _138.QueryInterchainAccountRequest): _138.QueryInterchainAccountRequestProtoMsg; + typeUrl: string; + encode(message: _139.QueryInterchainAccountRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _139.QueryInterchainAccountRequest; + fromJSON(object: any): _139.QueryInterchainAccountRequest; + toJSON(message: _139.QueryInterchainAccountRequest): unknown; + fromPartial(object: Partial<_139.QueryInterchainAccountRequest>): _139.QueryInterchainAccountRequest; + fromAmino(object: _139.QueryInterchainAccountRequestAmino): _139.QueryInterchainAccountRequest; + toAmino(message: _139.QueryInterchainAccountRequest): _139.QueryInterchainAccountRequestAmino; + fromAminoMsg(object: _139.QueryInterchainAccountRequestAminoMsg): _139.QueryInterchainAccountRequest; + fromProtoMsg(message: _139.QueryInterchainAccountRequestProtoMsg): _139.QueryInterchainAccountRequest; + toProto(message: _139.QueryInterchainAccountRequest): Uint8Array; + toProtoMsg(message: _139.QueryInterchainAccountRequest): _139.QueryInterchainAccountRequestProtoMsg; }; QueryInterchainAccountResponse: { - encode(message: _138.QueryInterchainAccountResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _138.QueryInterchainAccountResponse; - fromJSON(object: any): _138.QueryInterchainAccountResponse; - toJSON(message: _138.QueryInterchainAccountResponse): unknown; - fromPartial(object: Partial<_138.QueryInterchainAccountResponse>): _138.QueryInterchainAccountResponse; - fromAmino(object: _138.QueryInterchainAccountResponseAmino): _138.QueryInterchainAccountResponse; - toAmino(message: _138.QueryInterchainAccountResponse): _138.QueryInterchainAccountResponseAmino; - fromAminoMsg(object: _138.QueryInterchainAccountResponseAminoMsg): _138.QueryInterchainAccountResponse; - fromProtoMsg(message: _138.QueryInterchainAccountResponseProtoMsg): _138.QueryInterchainAccountResponse; - toProto(message: _138.QueryInterchainAccountResponse): Uint8Array; - toProtoMsg(message: _138.QueryInterchainAccountResponse): _138.QueryInterchainAccountResponseProtoMsg; + typeUrl: string; + encode(message: _139.QueryInterchainAccountResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _139.QueryInterchainAccountResponse; + fromJSON(object: any): _139.QueryInterchainAccountResponse; + toJSON(message: _139.QueryInterchainAccountResponse): unknown; + fromPartial(object: Partial<_139.QueryInterchainAccountResponse>): _139.QueryInterchainAccountResponse; + fromAmino(object: _139.QueryInterchainAccountResponseAmino): _139.QueryInterchainAccountResponse; + toAmino(message: _139.QueryInterchainAccountResponse): _139.QueryInterchainAccountResponseAmino; + fromAminoMsg(object: _139.QueryInterchainAccountResponseAminoMsg): _139.QueryInterchainAccountResponse; + fromProtoMsg(message: _139.QueryInterchainAccountResponseProtoMsg): _139.QueryInterchainAccountResponse; + toProto(message: _139.QueryInterchainAccountResponse): Uint8Array; + toProtoMsg(message: _139.QueryInterchainAccountResponse): _139.QueryInterchainAccountResponseProtoMsg; }; }; } @@ -5758,20 +6079,20 @@ export declare namespace regen { }; regen: { data: { - v1: _264.MsgClientImpl; + v1: _265.MsgClientImpl; }; ecocredit: { basket: { - v1: _265.MsgClientImpl; + v1: _266.MsgClientImpl; }; marketplace: { - v1: _266.MsgClientImpl; + v1: _267.MsgClientImpl; }; - v1: _267.MsgClientImpl; - v1alpha1: _268.MsgClientImpl; + v1: _268.MsgClientImpl; + v1alpha1: _269.MsgClientImpl; }; intertx: { - v1: _269.MsgClientImpl; + v1: _270.MsgClientImpl; }; }; }>; @@ -5971,80 +6292,80 @@ export declare namespace regen { regen: { data: { v1: { - anchorByIRI(request: _113.QueryAnchorByIRIRequest): Promise<_113.QueryAnchorByIRIResponse>; - anchorByHash(request: _113.QueryAnchorByHashRequest): Promise<_113.QueryAnchorByHashResponse>; - attestationsByAttestor(request: _113.QueryAttestationsByAttestorRequest): Promise<_113.QueryAttestationsByAttestorResponse>; - attestationsByIRI(request: _113.QueryAttestationsByIRIRequest): Promise<_113.QueryAttestationsByIRIResponse>; - attestationsByHash(request: _113.QueryAttestationsByHashRequest): Promise<_113.QueryAttestationsByHashResponse>; - resolver(request: _113.QueryResolverRequest): Promise<_113.QueryResolverResponse>; - resolversByIRI(request: _113.QueryResolversByIRIRequest): Promise<_113.QueryResolversByIRIResponse>; - resolversByHash(request: _113.QueryResolversByHashRequest): Promise<_113.QueryResolversByHashResponse>; - resolversByURL(request: _113.QueryResolversByURLRequest): Promise<_113.QueryResolversByURLResponse>; - convertIRIToHash(request: _113.ConvertIRIToHashRequest): Promise<_113.ConvertIRIToHashResponse>; - convertHashToIRI(request: _113.ConvertHashToIRIRequest): Promise<_113.ConvertHashToIRIResponse>; + anchorByIRI(request: _114.QueryAnchorByIRIRequest): Promise<_114.QueryAnchorByIRIResponse>; + anchorByHash(request: _114.QueryAnchorByHashRequest): Promise<_114.QueryAnchorByHashResponse>; + attestationsByAttestor(request: _114.QueryAttestationsByAttestorRequest): Promise<_114.QueryAttestationsByAttestorResponse>; + attestationsByIRI(request: _114.QueryAttestationsByIRIRequest): Promise<_114.QueryAttestationsByIRIResponse>; + attestationsByHash(request: _114.QueryAttestationsByHashRequest): Promise<_114.QueryAttestationsByHashResponse>; + resolver(request: _114.QueryResolverRequest): Promise<_114.QueryResolverResponse>; + resolversByIRI(request: _114.QueryResolversByIRIRequest): Promise<_114.QueryResolversByIRIResponse>; + resolversByHash(request: _114.QueryResolversByHashRequest): Promise<_114.QueryResolversByHashResponse>; + resolversByURL(request: _114.QueryResolversByURLRequest): Promise<_114.QueryResolversByURLResponse>; + convertIRIToHash(request: _114.ConvertIRIToHashRequest): Promise<_114.ConvertIRIToHashResponse>; + convertHashToIRI(request: _114.ConvertHashToIRIRequest): Promise<_114.ConvertHashToIRIResponse>; }; }; ecocredit: { basket: { v1: { - basket(request: _118.QueryBasketRequest): Promise<_118.QueryBasketResponse>; - baskets(request?: _118.QueryBasketsRequest | undefined): Promise<_118.QueryBasketsResponse>; - basketBalances(request: _118.QueryBasketBalancesRequest): Promise<_118.QueryBasketBalancesResponse>; - basketBalance(request: _118.QueryBasketBalanceRequest): Promise<_118.QueryBasketBalanceResponse>; - basketFee(request?: _118.QueryBasketFeeRequest | undefined): Promise<_118.QueryBasketFeeResponse>; + basket(request: _119.QueryBasketRequest): Promise<_119.QueryBasketResponse>; + baskets(request?: _119.QueryBasketsRequest | undefined): Promise<_119.QueryBasketsResponse>; + basketBalances(request: _119.QueryBasketBalancesRequest): Promise<_119.QueryBasketBalancesResponse>; + basketBalance(request: _119.QueryBasketBalanceRequest): Promise<_119.QueryBasketBalanceResponse>; + basketFee(request?: _119.QueryBasketFeeRequest | undefined): Promise<_119.QueryBasketFeeResponse>; }; }; marketplace: { v1: { - sellOrder(request: _123.QuerySellOrderRequest): Promise<_123.QuerySellOrderResponse>; - sellOrders(request?: _123.QuerySellOrdersRequest | undefined): Promise<_123.QuerySellOrdersResponse>; - sellOrdersByBatch(request: _123.QuerySellOrdersByBatchRequest): Promise<_123.QuerySellOrdersByBatchResponse>; - sellOrdersBySeller(request: _123.QuerySellOrdersBySellerRequest): Promise<_123.QuerySellOrdersBySellerResponse>; - allowedDenoms(request?: _123.QueryAllowedDenomsRequest | undefined): Promise<_123.QueryAllowedDenomsResponse>; + sellOrder(request: _124.QuerySellOrderRequest): Promise<_124.QuerySellOrderResponse>; + sellOrders(request?: _124.QuerySellOrdersRequest | undefined): Promise<_124.QuerySellOrdersResponse>; + sellOrdersByBatch(request: _124.QuerySellOrdersByBatchRequest): Promise<_124.QuerySellOrdersByBatchResponse>; + sellOrdersBySeller(request: _124.QuerySellOrdersBySellerRequest): Promise<_124.QuerySellOrdersBySellerResponse>; + allowedDenoms(request?: _124.QueryAllowedDenomsRequest | undefined): Promise<_124.QueryAllowedDenomsResponse>; }; }; v1: { - classes(request?: _129.QueryClassesRequest | undefined): Promise<_129.QueryClassesResponse>; - classesByAdmin(request: _129.QueryClassesByAdminRequest): Promise<_129.QueryClassesByAdminResponse>; - class(request: _129.QueryClassRequest): Promise<_129.QueryClassResponse>; - classIssuers(request: _129.QueryClassIssuersRequest): Promise<_129.QueryClassIssuersResponse>; - projects(request?: _129.QueryProjectsRequest | undefined): Promise<_129.QueryProjectsResponse>; - projectsByClass(request: _129.QueryProjectsByClassRequest): Promise<_129.QueryProjectsByClassResponse>; - projectsByReferenceId(request: _129.QueryProjectsByReferenceIdRequest): Promise<_129.QueryProjectsByReferenceIdResponse>; - projectsByAdmin(request: _129.QueryProjectsByAdminRequest): Promise<_129.QueryProjectsByAdminResponse>; - project(request: _129.QueryProjectRequest): Promise<_129.QueryProjectResponse>; - batches(request?: _129.QueryBatchesRequest | undefined): Promise<_129.QueryBatchesResponse>; - batchesByIssuer(request: _129.QueryBatchesByIssuerRequest): Promise<_129.QueryBatchesByIssuerResponse>; - batchesByClass(request: _129.QueryBatchesByClassRequest): Promise<_129.QueryBatchesByClassResponse>; - batchesByProject(request: _129.QueryBatchesByProjectRequest): Promise<_129.QueryBatchesByProjectResponse>; - batch(request: _129.QueryBatchRequest): Promise<_129.QueryBatchResponse>; - balance(request: _129.QueryBalanceRequest): Promise<_129.QueryBalanceResponse>; - balances(request: _129.QueryBalancesRequest): Promise<_129.QueryBalancesResponse>; - balancesByBatch(request: _129.QueryBalancesByBatchRequest): Promise<_129.QueryBalancesByBatchResponse>; - allBalances(request?: _129.QueryAllBalancesRequest | undefined): Promise<_129.QueryAllBalancesResponse>; - supply(request: _129.QuerySupplyRequest): Promise<_129.QuerySupplyResponse>; - creditTypes(request?: _129.QueryCreditTypesRequest | undefined): Promise<_129.QueryCreditTypesResponse>; - params(request?: _129.QueryParamsRequest | undefined): Promise<_129.QueryParamsResponse>; - creditType(request: _129.QueryCreditTypeRequest): Promise<_129.QueryCreditTypeResponse>; - classCreatorAllowlist(request?: _129.QueryClassCreatorAllowlistRequest | undefined): Promise<_129.QueryClassCreatorAllowlistResponse>; - allowedClassCreators(request?: _129.QueryAllowedClassCreatorsRequest | undefined): Promise<_129.QueryAllowedClassCreatorsResponse>; - classFee(request?: _129.QueryClassFeeRequest | undefined): Promise<_129.QueryClassFeeResponse>; - allowedBridgeChains(request?: _129.QueryAllowedBridgeChainsRequest | undefined): Promise<_129.QueryAllowedBridgeChainsResponse>; + classes(request?: _130.QueryClassesRequest | undefined): Promise<_130.QueryClassesResponse>; + classesByAdmin(request: _130.QueryClassesByAdminRequest): Promise<_130.QueryClassesByAdminResponse>; + class(request: _130.QueryClassRequest): Promise<_130.QueryClassResponse>; + classIssuers(request: _130.QueryClassIssuersRequest): Promise<_130.QueryClassIssuersResponse>; + projects(request?: _130.QueryProjectsRequest | undefined): Promise<_130.QueryProjectsResponse>; + projectsByClass(request: _130.QueryProjectsByClassRequest): Promise<_130.QueryProjectsByClassResponse>; + projectsByReferenceId(request: _130.QueryProjectsByReferenceIdRequest): Promise<_130.QueryProjectsByReferenceIdResponse>; + projectsByAdmin(request: _130.QueryProjectsByAdminRequest): Promise<_130.QueryProjectsByAdminResponse>; + project(request: _130.QueryProjectRequest): Promise<_130.QueryProjectResponse>; + batches(request?: _130.QueryBatchesRequest | undefined): Promise<_130.QueryBatchesResponse>; + batchesByIssuer(request: _130.QueryBatchesByIssuerRequest): Promise<_130.QueryBatchesByIssuerResponse>; + batchesByClass(request: _130.QueryBatchesByClassRequest): Promise<_130.QueryBatchesByClassResponse>; + batchesByProject(request: _130.QueryBatchesByProjectRequest): Promise<_130.QueryBatchesByProjectResponse>; + batch(request: _130.QueryBatchRequest): Promise<_130.QueryBatchResponse>; + balance(request: _130.QueryBalanceRequest): Promise<_130.QueryBalanceResponse>; + balances(request: _130.QueryBalancesRequest): Promise<_130.QueryBalancesResponse>; + balancesByBatch(request: _130.QueryBalancesByBatchRequest): Promise<_130.QueryBalancesByBatchResponse>; + allBalances(request?: _130.QueryAllBalancesRequest | undefined): Promise<_130.QueryAllBalancesResponse>; + supply(request: _130.QuerySupplyRequest): Promise<_130.QuerySupplyResponse>; + creditTypes(request?: _130.QueryCreditTypesRequest | undefined): Promise<_130.QueryCreditTypesResponse>; + params(request?: _130.QueryParamsRequest | undefined): Promise<_130.QueryParamsResponse>; + creditType(request: _130.QueryCreditTypeRequest): Promise<_130.QueryCreditTypeResponse>; + classCreatorAllowlist(request?: _130.QueryClassCreatorAllowlistRequest | undefined): Promise<_130.QueryClassCreatorAllowlistResponse>; + allowedClassCreators(request?: _130.QueryAllowedClassCreatorsRequest | undefined): Promise<_130.QueryAllowedClassCreatorsResponse>; + classFee(request?: _130.QueryClassFeeRequest | undefined): Promise<_130.QueryClassFeeResponse>; + allowedBridgeChains(request?: _130.QueryAllowedBridgeChainsRequest | undefined): Promise<_130.QueryAllowedBridgeChainsResponse>; }; v1alpha1: { - classes(request?: _135.QueryClassesRequest | undefined): Promise<_135.QueryClassesResponse>; - classInfo(request: _135.QueryClassInfoRequest): Promise<_135.QueryClassInfoResponse>; - batches(request: _135.QueryBatchesRequest): Promise<_135.QueryBatchesResponse>; - batchInfo(request: _135.QueryBatchInfoRequest): Promise<_135.QueryBatchInfoResponse>; - balance(request: _135.QueryBalanceRequest): Promise<_135.QueryBalanceResponse>; - supply(request: _135.QuerySupplyRequest): Promise<_135.QuerySupplyResponse>; - creditTypes(request?: _135.QueryCreditTypesRequest | undefined): Promise<_135.QueryCreditTypesResponse>; - params(request?: _135.QueryParamsRequest | undefined): Promise<_135.QueryParamsResponse>; + classes(request?: _136.QueryClassesRequest | undefined): Promise<_136.QueryClassesResponse>; + classInfo(request: _136.QueryClassInfoRequest): Promise<_136.QueryClassInfoResponse>; + batches(request: _136.QueryBatchesRequest): Promise<_136.QueryBatchesResponse>; + batchInfo(request: _136.QueryBatchInfoRequest): Promise<_136.QueryBatchInfoResponse>; + balance(request: _136.QueryBalanceRequest): Promise<_136.QueryBalanceResponse>; + supply(request: _136.QuerySupplyRequest): Promise<_136.QuerySupplyResponse>; + creditTypes(request?: _136.QueryCreditTypesRequest | undefined): Promise<_136.QueryCreditTypesResponse>; + params(request?: _136.QueryParamsRequest | undefined): Promise<_136.QueryParamsResponse>; }; }; intertx: { v1: { - interchainAccount(request: _138.QueryInterchainAccountRequest): Promise<_138.QueryInterchainAccountResponse>; + interchainAccount(request: _139.QueryInterchainAccountRequest): Promise<_139.QueryInterchainAccountResponse>; }; }; }; @@ -6110,20 +6431,20 @@ export declare namespace regen { }; regen: { data: { - v1: _252.LCDQueryClient; + v1: _253.LCDQueryClient; }; ecocredit: { basket: { - v1: _253.LCDQueryClient; + v1: _254.LCDQueryClient; }; marketplace: { - v1: _254.LCDQueryClient; + v1: _255.LCDQueryClient; }; - v1: _255.LCDQueryClient; - v1alpha1: _256.LCDQueryClient; + v1: _256.LCDQueryClient; + v1alpha1: _257.LCDQueryClient; }; intertx: { - v1: _257.LCDQueryClient; + v1: _258.LCDQueryClient; }; }; }>; diff --git a/packages/api/types/codegen/regen/data/v1/events.d.ts b/packages/api/types/codegen/regen/data/v1/events.d.ts index bc07639..5efb902 100644 --- a/packages/api/types/codegen/regen/data/v1/events.d.ts +++ b/packages/api/types/codegen/regen/data/v1/events.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** EventAnchor is an event emitted when data is anchored on chain. */ export interface EventAnchor { /** iri is the IRI of the data anchored on chain. */ @@ -12,7 +11,7 @@ export interface EventAnchorProtoMsg { /** EventAnchor is an event emitted when data is anchored on chain. */ export interface EventAnchorAmino { /** iri is the IRI of the data anchored on chain. */ - iri: string; + iri?: string; } export interface EventAnchorAminoMsg { type: "/regen.data.v1.EventAnchor"; @@ -39,12 +38,12 @@ export interface EventAttestProtoMsg { /** EventAttest is an event emitted when data is attested to on chain. */ export interface EventAttestAmino { /** iri is the IRI of the data attested to. */ - iri: string; + iri?: string; /** * attestor is the address of the account that has attested to the veracity of * the data. */ - attestor: string; + attestor?: string; } export interface EventAttestAminoMsg { type: "/regen.data.v1.EventAttest"; @@ -58,7 +57,7 @@ export interface EventAttestSDKType { /** EventDefineResolver is an event emitted when a resolved is defined on chain. */ export interface EventDefineResolver { /** id is the ID of the defined resolver. */ - id: Long; + id: bigint; } export interface EventDefineResolverProtoMsg { typeUrl: "/regen.data.v1.EventDefineResolver"; @@ -67,7 +66,7 @@ export interface EventDefineResolverProtoMsg { /** EventDefineResolver is an event emitted when a resolved is defined on chain. */ export interface EventDefineResolverAmino { /** id is the ID of the defined resolver. */ - id: string; + id?: string; } export interface EventDefineResolverAminoMsg { type: "/regen.data.v1.EventDefineResolver"; @@ -75,7 +74,7 @@ export interface EventDefineResolverAminoMsg { } /** EventDefineResolver is an event emitted when a resolved is defined on chain. */ export interface EventDefineResolverSDKType { - id: Long; + id: bigint; } /** * EventRegisterResolver is an event emitted when data is registered to a @@ -83,7 +82,7 @@ export interface EventDefineResolverSDKType { */ export interface EventRegisterResolver { /** id is the ID of the resolver that the data was registered to. */ - id: Long; + id: bigint; /** iri is the IRI of the data that was registered. */ iri: string; } @@ -97,9 +96,9 @@ export interface EventRegisterResolverProtoMsg { */ export interface EventRegisterResolverAmino { /** id is the ID of the resolver that the data was registered to. */ - id: string; + id?: string; /** iri is the IRI of the data that was registered. */ - iri: string; + iri?: string; } export interface EventRegisterResolverAminoMsg { type: "/regen.data.v1.EventRegisterResolver"; @@ -110,12 +109,13 @@ export interface EventRegisterResolverAminoMsg { * resolver on chain. */ export interface EventRegisterResolverSDKType { - id: Long; + id: bigint; iri: string; } export declare const EventAnchor: { - encode(message: EventAnchor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventAnchor; + typeUrl: string; + encode(message: EventAnchor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventAnchor; fromJSON(object: any): EventAnchor; toJSON(message: EventAnchor): unknown; fromPartial(object: Partial): EventAnchor; @@ -127,8 +127,9 @@ export declare const EventAnchor: { toProtoMsg(message: EventAnchor): EventAnchorProtoMsg; }; export declare const EventAttest: { - encode(message: EventAttest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventAttest; + typeUrl: string; + encode(message: EventAttest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventAttest; fromJSON(object: any): EventAttest; toJSON(message: EventAttest): unknown; fromPartial(object: Partial): EventAttest; @@ -140,8 +141,9 @@ export declare const EventAttest: { toProtoMsg(message: EventAttest): EventAttestProtoMsg; }; export declare const EventDefineResolver: { - encode(message: EventDefineResolver, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventDefineResolver; + typeUrl: string; + encode(message: EventDefineResolver, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventDefineResolver; fromJSON(object: any): EventDefineResolver; toJSON(message: EventDefineResolver): unknown; fromPartial(object: Partial): EventDefineResolver; @@ -153,8 +155,9 @@ export declare const EventDefineResolver: { toProtoMsg(message: EventDefineResolver): EventDefineResolverProtoMsg; }; export declare const EventRegisterResolver: { - encode(message: EventRegisterResolver, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventRegisterResolver; + typeUrl: string; + encode(message: EventRegisterResolver, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventRegisterResolver; fromJSON(object: any): EventRegisterResolver; toJSON(message: EventRegisterResolver): unknown; fromPartial(object: Partial): EventRegisterResolver; diff --git a/packages/api/types/codegen/regen/data/v1/query.d.ts b/packages/api/types/codegen/regen/data/v1/query.d.ts index ff71bdd..bc017f0 100644 --- a/packages/api/types/codegen/regen/data/v1/query.d.ts +++ b/packages/api/types/codegen/regen/data/v1/query.d.ts @@ -1,8 +1,7 @@ import { ContentHash, ContentHashAmino, ContentHashSDKType } from "./types"; import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../cosmos/base/query/v1beta1/pagination"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryAnchorByIRIRequest is the Query/AnchorByIRI request type. */ export interface QueryAnchorByIRIRequest { /** iri is the IRI of the anchored data. */ @@ -15,7 +14,7 @@ export interface QueryAnchorByIRIRequestProtoMsg { /** QueryAnchorByIRIRequest is the Query/AnchorByIRI request type. */ export interface QueryAnchorByIRIRequestAmino { /** iri is the IRI of the anchored data. */ - iri: string; + iri?: string; } export interface QueryAnchorByIRIRequestAminoMsg { type: "/regen.data.v1.QueryAnchorByIRIRequest"; @@ -28,7 +27,7 @@ export interface QueryAnchorByIRIRequestSDKType { /** QueryAnchorByIRIResponse is the Query/AnchorByIRI response type. */ export interface QueryAnchorByIRIResponse { /** anchor is information about the data anchor. */ - anchor: AnchorInfo; + anchor?: AnchorInfo; } export interface QueryAnchorByIRIResponseProtoMsg { typeUrl: "/regen.data.v1.QueryAnchorByIRIResponse"; @@ -45,12 +44,12 @@ export interface QueryAnchorByIRIResponseAminoMsg { } /** QueryAnchorByIRIResponse is the Query/AnchorByIRI response type. */ export interface QueryAnchorByIRIResponseSDKType { - anchor: AnchorInfoSDKType; + anchor?: AnchorInfoSDKType; } /** QueryAnchorByHashRequest is the Query/AnchorByHash request type. */ export interface QueryAnchorByHashRequest { /** content_hash is the ContentHash of the anchored data. */ - contentHash: ContentHash; + contentHash?: ContentHash; } export interface QueryAnchorByHashRequestProtoMsg { typeUrl: "/regen.data.v1.QueryAnchorByHashRequest"; @@ -67,12 +66,12 @@ export interface QueryAnchorByHashRequestAminoMsg { } /** QueryAnchorByHashRequest is the Query/AnchorByHash request type. */ export interface QueryAnchorByHashRequestSDKType { - content_hash: ContentHashSDKType; + content_hash?: ContentHashSDKType; } /** QueryAnchorByHashResponse is the Query/AnchorByHash response type. */ export interface QueryAnchorByHashResponse { /** anchor is information about the data anchor. */ - anchor: AnchorInfo; + anchor?: AnchorInfo; } export interface QueryAnchorByHashResponseProtoMsg { typeUrl: "/regen.data.v1.QueryAnchorByHashResponse"; @@ -89,7 +88,7 @@ export interface QueryAnchorByHashResponseAminoMsg { } /** QueryAnchorByHashResponse is the Query/AnchorByHash response type. */ export interface QueryAnchorByHashResponseSDKType { - anchor: AnchorInfoSDKType; + anchor?: AnchorInfoSDKType; } /** * QueryAttestationsByAttestorRequest is the Query/AttestationsByAttestor @@ -99,7 +98,7 @@ export interface QueryAttestationsByAttestorRequest { /** attestor is the address of the attestor. */ attestor: string; /** pagination is the PageRequest to use for pagination. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAttestationsByAttestorRequestProtoMsg { typeUrl: "/regen.data.v1.QueryAttestationsByAttestorRequest"; @@ -111,7 +110,7 @@ export interface QueryAttestationsByAttestorRequestProtoMsg { */ export interface QueryAttestationsByAttestorRequestAmino { /** attestor is the address of the attestor. */ - attestor: string; + attestor?: string; /** pagination is the PageRequest to use for pagination. */ pagination?: PageRequestAmino; } @@ -125,7 +124,7 @@ export interface QueryAttestationsByAttestorRequestAminoMsg { */ export interface QueryAttestationsByAttestorRequestSDKType { attestor: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAttestationsByAttestorResponse is the Query/AttestationsByAttestor @@ -135,7 +134,7 @@ export interface QueryAttestationsByAttestorResponse { /** attestations are the attestations by the attestor. */ attestations: AttestationInfo[]; /** pagination is the pagination PageResponse. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAttestationsByAttestorResponseProtoMsg { typeUrl: "/regen.data.v1.QueryAttestationsByAttestorResponse"; @@ -147,7 +146,7 @@ export interface QueryAttestationsByAttestorResponseProtoMsg { */ export interface QueryAttestationsByAttestorResponseAmino { /** attestations are the attestations by the attestor. */ - attestations: AttestationInfoAmino[]; + attestations?: AttestationInfoAmino[]; /** pagination is the pagination PageResponse. */ pagination?: PageResponseAmino; } @@ -161,14 +160,14 @@ export interface QueryAttestationsByAttestorResponseAminoMsg { */ export interface QueryAttestationsByAttestorResponseSDKType { attestations: AttestationInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryAttestationsByIRIRequest is the Query/AttestationsByIRI request type. */ export interface QueryAttestationsByIRIRequest { /** iri is the IRI of the anchored data. */ iri: string; /** pagination is the PageRequest to use for pagination. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAttestationsByIRIRequestProtoMsg { typeUrl: "/regen.data.v1.QueryAttestationsByIRIRequest"; @@ -177,7 +176,7 @@ export interface QueryAttestationsByIRIRequestProtoMsg { /** QueryAttestationsByIRIRequest is the Query/AttestationsByIRI request type. */ export interface QueryAttestationsByIRIRequestAmino { /** iri is the IRI of the anchored data. */ - iri: string; + iri?: string; /** pagination is the PageRequest to use for pagination. */ pagination?: PageRequestAmino; } @@ -188,14 +187,14 @@ export interface QueryAttestationsByIRIRequestAminoMsg { /** QueryAttestationsByIRIRequest is the Query/AttestationsByIRI request type. */ export interface QueryAttestationsByIRIRequestSDKType { iri: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryAttestationsByIRIResponse is the Query/AttestationsByIRI response type. */ export interface QueryAttestationsByIRIResponse { /** attestations are the attestations that have been made to the anchored data. */ attestations: AttestationInfo[]; /** pagination is the pagination PageResponse. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAttestationsByIRIResponseProtoMsg { typeUrl: "/regen.data.v1.QueryAttestationsByIRIResponse"; @@ -204,7 +203,7 @@ export interface QueryAttestationsByIRIResponseProtoMsg { /** QueryAttestationsByIRIResponse is the Query/AttestationsByIRI response type. */ export interface QueryAttestationsByIRIResponseAmino { /** attestations are the attestations that have been made to the anchored data. */ - attestations: AttestationInfoAmino[]; + attestations?: AttestationInfoAmino[]; /** pagination is the pagination PageResponse. */ pagination?: PageResponseAmino; } @@ -215,14 +214,14 @@ export interface QueryAttestationsByIRIResponseAminoMsg { /** QueryAttestationsByIRIResponse is the Query/AttestationsByIRI response type. */ export interface QueryAttestationsByIRIResponseSDKType { attestations: AttestationInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryAttestationsByHashRequest is the Query/AttestationsByHash request type. */ export interface QueryAttestationsByHashRequest { /** content_hash is the ContentHash of the anchored data. */ - contentHash: ContentHash; + contentHash?: ContentHash; /** pagination is the PageRequest to use for pagination. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAttestationsByHashRequestProtoMsg { typeUrl: "/regen.data.v1.QueryAttestationsByHashRequest"; @@ -241,8 +240,8 @@ export interface QueryAttestationsByHashRequestAminoMsg { } /** QueryAttestationsByHashRequest is the Query/AttestationsByHash request type. */ export interface QueryAttestationsByHashRequestSDKType { - content_hash: ContentHashSDKType; - pagination: PageRequestSDKType; + content_hash?: ContentHashSDKType; + pagination?: PageRequestSDKType; } /** * QueryAttestationsByHashResponse is the Query/AttestationsByHash response @@ -252,7 +251,7 @@ export interface QueryAttestationsByHashResponse { /** attestations are the attestations that have been made to the anchored data. */ attestations: AttestationInfo[]; /** pagination is the pagination PageResponse. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAttestationsByHashResponseProtoMsg { typeUrl: "/regen.data.v1.QueryAttestationsByHashResponse"; @@ -264,7 +263,7 @@ export interface QueryAttestationsByHashResponseProtoMsg { */ export interface QueryAttestationsByHashResponseAmino { /** attestations are the attestations that have been made to the anchored data. */ - attestations: AttestationInfoAmino[]; + attestations?: AttestationInfoAmino[]; /** pagination is the pagination PageResponse. */ pagination?: PageResponseAmino; } @@ -278,12 +277,12 @@ export interface QueryAttestationsByHashResponseAminoMsg { */ export interface QueryAttestationsByHashResponseSDKType { attestations: AttestationInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryResolverRequest is the Query/Resolver request type. */ export interface QueryResolverRequest { /** id is the ID of the resolver. */ - id: Long; + id: bigint; } export interface QueryResolverRequestProtoMsg { typeUrl: "/regen.data.v1.QueryResolverRequest"; @@ -292,7 +291,7 @@ export interface QueryResolverRequestProtoMsg { /** QueryResolverRequest is the Query/Resolver request type. */ export interface QueryResolverRequestAmino { /** id is the ID of the resolver. */ - id: string; + id?: string; } export interface QueryResolverRequestAminoMsg { type: "/regen.data.v1.QueryResolverRequest"; @@ -300,12 +299,12 @@ export interface QueryResolverRequestAminoMsg { } /** QueryResolverRequest is the Query/Resolver request type. */ export interface QueryResolverRequestSDKType { - id: Long; + id: bigint; } /** QueryResolverResponse is the Query/Resolver response type. */ export interface QueryResolverResponse { /** resolver is information about the resolver. */ - resolver: ResolverInfo; + resolver?: ResolverInfo; } export interface QueryResolverResponseProtoMsg { typeUrl: "/regen.data.v1.QueryResolverResponse"; @@ -322,14 +321,14 @@ export interface QueryResolverResponseAminoMsg { } /** QueryResolverResponse is the Query/Resolver response type. */ export interface QueryResolverResponseSDKType { - resolver: ResolverInfoSDKType; + resolver?: ResolverInfoSDKType; } /** QueryResolversByIRIRequest is the Query/ResolversByIRI request type. */ export interface QueryResolversByIRIRequest { /** iri is the IRI of the anchored data. */ iri: string; /** pagination is the PageRequest to use for pagination. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryResolversByIRIRequestProtoMsg { typeUrl: "/regen.data.v1.QueryResolversByIRIRequest"; @@ -338,7 +337,7 @@ export interface QueryResolversByIRIRequestProtoMsg { /** QueryResolversByIRIRequest is the Query/ResolversByIRI request type. */ export interface QueryResolversByIRIRequestAmino { /** iri is the IRI of the anchored data. */ - iri: string; + iri?: string; /** pagination is the PageRequest to use for pagination. */ pagination?: PageRequestAmino; } @@ -349,14 +348,14 @@ export interface QueryResolversByIRIRequestAminoMsg { /** QueryResolversByIRIRequest is the Query/ResolversByIRI request type. */ export interface QueryResolversByIRIRequestSDKType { iri: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryResolversByIRIResponse is the Query/ResolversByIRI response type. */ export interface QueryResolversByIRIResponse { /** resolvers are the resolvers that have registered the anchored data. */ resolvers: ResolverInfo[]; /** pagination is the PageResponse to use for pagination. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryResolversByIRIResponseProtoMsg { typeUrl: "/regen.data.v1.QueryResolversByIRIResponse"; @@ -365,7 +364,7 @@ export interface QueryResolversByIRIResponseProtoMsg { /** QueryResolversByIRIResponse is the Query/ResolversByIRI response type. */ export interface QueryResolversByIRIResponseAmino { /** resolvers are the resolvers that have registered the anchored data. */ - resolvers: ResolverInfoAmino[]; + resolvers?: ResolverInfoAmino[]; /** pagination is the PageResponse to use for pagination. */ pagination?: PageResponseAmino; } @@ -376,14 +375,14 @@ export interface QueryResolversByIRIResponseAminoMsg { /** QueryResolversByIRIResponse is the Query/ResolversByIRI response type. */ export interface QueryResolversByIRIResponseSDKType { resolvers: ResolverInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryResolversByHashRequest is the Query/ResolversByHash request type. */ export interface QueryResolversByHashRequest { /** content_hash is the ContentHash of the anchored data. */ - contentHash: ContentHash; + contentHash?: ContentHash; /** pagination is the PageRequest to use for pagination. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryResolversByHashRequestProtoMsg { typeUrl: "/regen.data.v1.QueryResolversByHashRequest"; @@ -402,15 +401,15 @@ export interface QueryResolversByHashRequestAminoMsg { } /** QueryResolversByHashRequest is the Query/ResolversByHash request type. */ export interface QueryResolversByHashRequestSDKType { - content_hash: ContentHashSDKType; - pagination: PageRequestSDKType; + content_hash?: ContentHashSDKType; + pagination?: PageRequestSDKType; } /** QueryResolversByHashResponse is the Query/ResolversByHash response type. */ export interface QueryResolversByHashResponse { /** resolvers are the resolvers that have registered the data. */ resolvers: ResolverInfo[]; /** pagination is the PageResponse to use for pagination. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryResolversByHashResponseProtoMsg { typeUrl: "/regen.data.v1.QueryResolversByHashResponse"; @@ -419,7 +418,7 @@ export interface QueryResolversByHashResponseProtoMsg { /** QueryResolversByHashResponse is the Query/ResolversByHash response type. */ export interface QueryResolversByHashResponseAmino { /** resolvers are the resolvers that have registered the data. */ - resolvers: ResolverInfoAmino[]; + resolvers?: ResolverInfoAmino[]; /** pagination is the PageResponse to use for pagination. */ pagination?: PageResponseAmino; } @@ -430,14 +429,14 @@ export interface QueryResolversByHashResponseAminoMsg { /** QueryResolversByHashResponse is the Query/ResolversByHash response type. */ export interface QueryResolversByHashResponseSDKType { resolvers: ResolverInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryResolversByURLRequest is the Query/ResolversByURL request type. */ export interface QueryResolversByURLRequest { /** url is the URL of the resolver. */ url: string; /** pagination is the PageRequest to use for pagination. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryResolversByURLRequestProtoMsg { typeUrl: "/regen.data.v1.QueryResolversByURLRequest"; @@ -446,7 +445,7 @@ export interface QueryResolversByURLRequestProtoMsg { /** QueryResolversByURLRequest is the Query/ResolversByURL request type. */ export interface QueryResolversByURLRequestAmino { /** url is the URL of the resolver. */ - url: string; + url?: string; /** pagination is the PageRequest to use for pagination. */ pagination?: PageRequestAmino; } @@ -457,14 +456,14 @@ export interface QueryResolversByURLRequestAminoMsg { /** QueryResolversByURLRequest is the Query/ResolversByURL request type. */ export interface QueryResolversByURLRequestSDKType { url: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryResolversByURLResponse is the Query/ResolversByURL response type. */ export interface QueryResolversByURLResponse { /** resolvers are the resolvers that have a matching URL. */ resolvers: ResolverInfo[]; /** pagination is the PageResponse to use for pagination. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryResolversByURLResponseProtoMsg { typeUrl: "/regen.data.v1.QueryResolversByURLResponse"; @@ -473,7 +472,7 @@ export interface QueryResolversByURLResponseProtoMsg { /** QueryResolversByURLResponse is the Query/ResolversByURL response type. */ export interface QueryResolversByURLResponseAmino { /** resolvers are the resolvers that have a matching URL. */ - resolvers: ResolverInfoAmino[]; + resolvers?: ResolverInfoAmino[]; /** pagination is the PageResponse to use for pagination. */ pagination?: PageResponseAmino; } @@ -484,7 +483,7 @@ export interface QueryResolversByURLResponseAminoMsg { /** QueryResolversByURLResponse is the Query/ResolversByURL response type. */ export interface QueryResolversByURLResponseSDKType { resolvers: ResolverInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** ConvertIRIToHashRequest is the Query/ConvertIRIToHash request type. */ export interface ConvertIRIToHashRequest { @@ -498,7 +497,7 @@ export interface ConvertIRIToHashRequestProtoMsg { /** ConvertIRIToHashRequest is the Query/ConvertIRIToHash request type. */ export interface ConvertIRIToHashRequestAmino { /** iri is the IRI to convert to a ContentHash. */ - iri: string; + iri?: string; } export interface ConvertIRIToHashRequestAminoMsg { type: "/regen.data.v1.ConvertIRIToHashRequest"; @@ -511,7 +510,7 @@ export interface ConvertIRIToHashRequestSDKType { /** ConvertIRIToHashResponse is the Query/ConvertIRIToHash response type. */ export interface ConvertIRIToHashResponse { /** content_hash is the ContentHash converted from the IRI. */ - contentHash: ContentHash; + contentHash?: ContentHash; } export interface ConvertIRIToHashResponseProtoMsg { typeUrl: "/regen.data.v1.ConvertIRIToHashResponse"; @@ -528,12 +527,12 @@ export interface ConvertIRIToHashResponseAminoMsg { } /** ConvertIRIToHashResponse is the Query/ConvertIRIToHash response type. */ export interface ConvertIRIToHashResponseSDKType { - content_hash: ContentHashSDKType; + content_hash?: ContentHashSDKType; } /** ConvertHashToIRIRequest is the Query/ConvertHashToIRI request type. */ export interface ConvertHashToIRIRequest { /** content_hash is the ContentHash to convert to an IRI. */ - contentHash: ContentHash; + contentHash?: ContentHash; } export interface ConvertHashToIRIRequestProtoMsg { typeUrl: "/regen.data.v1.ConvertHashToIRIRequest"; @@ -550,7 +549,7 @@ export interface ConvertHashToIRIRequestAminoMsg { } /** ConvertHashToIRIRequest is the Query/ConvertHashToIRI request type. */ export interface ConvertHashToIRIRequestSDKType { - content_hash: ContentHashSDKType; + content_hash?: ContentHashSDKType; } /** ConvertHashToIRIResponse is the Query/ConvertHashToIRI response type. */ export interface ConvertHashToIRIResponse { @@ -564,7 +563,7 @@ export interface ConvertHashToIRIResponseProtoMsg { /** ConvertHashToIRIResponse is the Query/ConvertHashToIRI response type. */ export interface ConvertHashToIRIResponseAmino { /** iri is the IRI converted from the ContentHash. */ - iri: string; + iri?: string; } export interface ConvertHashToIRIResponseAminoMsg { type: "/regen.data.v1.ConvertHashToIRIResponse"; @@ -579,9 +578,9 @@ export interface AnchorInfo { /** iri is the IRI of the anchored data. */ iri: string; /** content_hash is the ContentHash of the anchored data. */ - contentHash: ContentHash; + contentHash?: ContentHash; /** timestamp is the time at which the data was anchored. */ - timestamp: Timestamp; + timestamp?: Timestamp; } export interface AnchorInfoProtoMsg { typeUrl: "/regen.data.v1.AnchorInfo"; @@ -590,11 +589,11 @@ export interface AnchorInfoProtoMsg { /** AnchorInfo is the information for a data anchor. */ export interface AnchorInfoAmino { /** iri is the IRI of the anchored data. */ - iri: string; + iri?: string; /** content_hash is the ContentHash of the anchored data. */ content_hash?: ContentHashAmino; /** timestamp is the time at which the data was anchored. */ - timestamp?: TimestampAmino; + timestamp?: string; } export interface AnchorInfoAminoMsg { type: "/regen.data.v1.AnchorInfo"; @@ -603,8 +602,8 @@ export interface AnchorInfoAminoMsg { /** AnchorInfo is the information for a data anchor. */ export interface AnchorInfoSDKType { iri: string; - content_hash: ContentHashSDKType; - timestamp: TimestampSDKType; + content_hash?: ContentHashSDKType; + timestamp?: TimestampSDKType; } /** AttestationInfo is the information for an attestation. */ export interface AttestationInfo { @@ -613,7 +612,7 @@ export interface AttestationInfo { /** attestor is the address of the account that attested to the anchored data. */ attestor: string; /** timestamp is the time at which the data was attested to. */ - timestamp: Timestamp; + timestamp?: Timestamp; } export interface AttestationInfoProtoMsg { typeUrl: "/regen.data.v1.AttestationInfo"; @@ -622,11 +621,11 @@ export interface AttestationInfoProtoMsg { /** AttestationInfo is the information for an attestation. */ export interface AttestationInfoAmino { /** iri is the IRI of the anchored data. */ - iri: string; + iri?: string; /** attestor is the address of the account that attested to the anchored data. */ - attestor: string; + attestor?: string; /** timestamp is the time at which the data was attested to. */ - timestamp?: TimestampAmino; + timestamp?: string; } export interface AttestationInfoAminoMsg { type: "/regen.data.v1.AttestationInfo"; @@ -636,12 +635,12 @@ export interface AttestationInfoAminoMsg { export interface AttestationInfoSDKType { iri: string; attestor: string; - timestamp: TimestampSDKType; + timestamp?: TimestampSDKType; } /** ResolverInfo is the information for a resolver. */ export interface ResolverInfo { /** id is the ID of the resolver. */ - id: Long; + id: bigint; /** url is the URL of the resolver. */ url: string; /** manager is the address of the account that manages the resolver. */ @@ -654,11 +653,11 @@ export interface ResolverInfoProtoMsg { /** ResolverInfo is the information for a resolver. */ export interface ResolverInfoAmino { /** id is the ID of the resolver. */ - id: string; + id?: string; /** url is the URL of the resolver. */ - url: string; + url?: string; /** manager is the address of the account that manages the resolver. */ - manager: string; + manager?: string; } export interface ResolverInfoAminoMsg { type: "/regen.data.v1.ResolverInfo"; @@ -666,13 +665,14 @@ export interface ResolverInfoAminoMsg { } /** ResolverInfo is the information for a resolver. */ export interface ResolverInfoSDKType { - id: Long; + id: bigint; url: string; manager: string; } export declare const QueryAnchorByIRIRequest: { - encode(message: QueryAnchorByIRIRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnchorByIRIRequest; + typeUrl: string; + encode(message: QueryAnchorByIRIRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAnchorByIRIRequest; fromJSON(object: any): QueryAnchorByIRIRequest; toJSON(message: QueryAnchorByIRIRequest): unknown; fromPartial(object: Partial): QueryAnchorByIRIRequest; @@ -684,8 +684,9 @@ export declare const QueryAnchorByIRIRequest: { toProtoMsg(message: QueryAnchorByIRIRequest): QueryAnchorByIRIRequestProtoMsg; }; export declare const QueryAnchorByIRIResponse: { - encode(message: QueryAnchorByIRIResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnchorByIRIResponse; + typeUrl: string; + encode(message: QueryAnchorByIRIResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAnchorByIRIResponse; fromJSON(object: any): QueryAnchorByIRIResponse; toJSON(message: QueryAnchorByIRIResponse): unknown; fromPartial(object: Partial): QueryAnchorByIRIResponse; @@ -697,8 +698,9 @@ export declare const QueryAnchorByIRIResponse: { toProtoMsg(message: QueryAnchorByIRIResponse): QueryAnchorByIRIResponseProtoMsg; }; export declare const QueryAnchorByHashRequest: { - encode(message: QueryAnchorByHashRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnchorByHashRequest; + typeUrl: string; + encode(message: QueryAnchorByHashRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAnchorByHashRequest; fromJSON(object: any): QueryAnchorByHashRequest; toJSON(message: QueryAnchorByHashRequest): unknown; fromPartial(object: Partial): QueryAnchorByHashRequest; @@ -710,8 +712,9 @@ export declare const QueryAnchorByHashRequest: { toProtoMsg(message: QueryAnchorByHashRequest): QueryAnchorByHashRequestProtoMsg; }; export declare const QueryAnchorByHashResponse: { - encode(message: QueryAnchorByHashResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnchorByHashResponse; + typeUrl: string; + encode(message: QueryAnchorByHashResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAnchorByHashResponse; fromJSON(object: any): QueryAnchorByHashResponse; toJSON(message: QueryAnchorByHashResponse): unknown; fromPartial(object: Partial): QueryAnchorByHashResponse; @@ -723,8 +726,9 @@ export declare const QueryAnchorByHashResponse: { toProtoMsg(message: QueryAnchorByHashResponse): QueryAnchorByHashResponseProtoMsg; }; export declare const QueryAttestationsByAttestorRequest: { - encode(message: QueryAttestationsByAttestorRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAttestationsByAttestorRequest; + typeUrl: string; + encode(message: QueryAttestationsByAttestorRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAttestationsByAttestorRequest; fromJSON(object: any): QueryAttestationsByAttestorRequest; toJSON(message: QueryAttestationsByAttestorRequest): unknown; fromPartial(object: Partial): QueryAttestationsByAttestorRequest; @@ -736,8 +740,9 @@ export declare const QueryAttestationsByAttestorRequest: { toProtoMsg(message: QueryAttestationsByAttestorRequest): QueryAttestationsByAttestorRequestProtoMsg; }; export declare const QueryAttestationsByAttestorResponse: { - encode(message: QueryAttestationsByAttestorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAttestationsByAttestorResponse; + typeUrl: string; + encode(message: QueryAttestationsByAttestorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAttestationsByAttestorResponse; fromJSON(object: any): QueryAttestationsByAttestorResponse; toJSON(message: QueryAttestationsByAttestorResponse): unknown; fromPartial(object: Partial): QueryAttestationsByAttestorResponse; @@ -749,8 +754,9 @@ export declare const QueryAttestationsByAttestorResponse: { toProtoMsg(message: QueryAttestationsByAttestorResponse): QueryAttestationsByAttestorResponseProtoMsg; }; export declare const QueryAttestationsByIRIRequest: { - encode(message: QueryAttestationsByIRIRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAttestationsByIRIRequest; + typeUrl: string; + encode(message: QueryAttestationsByIRIRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAttestationsByIRIRequest; fromJSON(object: any): QueryAttestationsByIRIRequest; toJSON(message: QueryAttestationsByIRIRequest): unknown; fromPartial(object: Partial): QueryAttestationsByIRIRequest; @@ -762,8 +768,9 @@ export declare const QueryAttestationsByIRIRequest: { toProtoMsg(message: QueryAttestationsByIRIRequest): QueryAttestationsByIRIRequestProtoMsg; }; export declare const QueryAttestationsByIRIResponse: { - encode(message: QueryAttestationsByIRIResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAttestationsByIRIResponse; + typeUrl: string; + encode(message: QueryAttestationsByIRIResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAttestationsByIRIResponse; fromJSON(object: any): QueryAttestationsByIRIResponse; toJSON(message: QueryAttestationsByIRIResponse): unknown; fromPartial(object: Partial): QueryAttestationsByIRIResponse; @@ -775,8 +782,9 @@ export declare const QueryAttestationsByIRIResponse: { toProtoMsg(message: QueryAttestationsByIRIResponse): QueryAttestationsByIRIResponseProtoMsg; }; export declare const QueryAttestationsByHashRequest: { - encode(message: QueryAttestationsByHashRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAttestationsByHashRequest; + typeUrl: string; + encode(message: QueryAttestationsByHashRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAttestationsByHashRequest; fromJSON(object: any): QueryAttestationsByHashRequest; toJSON(message: QueryAttestationsByHashRequest): unknown; fromPartial(object: Partial): QueryAttestationsByHashRequest; @@ -788,8 +796,9 @@ export declare const QueryAttestationsByHashRequest: { toProtoMsg(message: QueryAttestationsByHashRequest): QueryAttestationsByHashRequestProtoMsg; }; export declare const QueryAttestationsByHashResponse: { - encode(message: QueryAttestationsByHashResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAttestationsByHashResponse; + typeUrl: string; + encode(message: QueryAttestationsByHashResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAttestationsByHashResponse; fromJSON(object: any): QueryAttestationsByHashResponse; toJSON(message: QueryAttestationsByHashResponse): unknown; fromPartial(object: Partial): QueryAttestationsByHashResponse; @@ -801,8 +810,9 @@ export declare const QueryAttestationsByHashResponse: { toProtoMsg(message: QueryAttestationsByHashResponse): QueryAttestationsByHashResponseProtoMsg; }; export declare const QueryResolverRequest: { - encode(message: QueryResolverRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolverRequest; + typeUrl: string; + encode(message: QueryResolverRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolverRequest; fromJSON(object: any): QueryResolverRequest; toJSON(message: QueryResolverRequest): unknown; fromPartial(object: Partial): QueryResolverRequest; @@ -814,8 +824,9 @@ export declare const QueryResolverRequest: { toProtoMsg(message: QueryResolverRequest): QueryResolverRequestProtoMsg; }; export declare const QueryResolverResponse: { - encode(message: QueryResolverResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolverResponse; + typeUrl: string; + encode(message: QueryResolverResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolverResponse; fromJSON(object: any): QueryResolverResponse; toJSON(message: QueryResolverResponse): unknown; fromPartial(object: Partial): QueryResolverResponse; @@ -827,8 +838,9 @@ export declare const QueryResolverResponse: { toProtoMsg(message: QueryResolverResponse): QueryResolverResponseProtoMsg; }; export declare const QueryResolversByIRIRequest: { - encode(message: QueryResolversByIRIRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolversByIRIRequest; + typeUrl: string; + encode(message: QueryResolversByIRIRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolversByIRIRequest; fromJSON(object: any): QueryResolversByIRIRequest; toJSON(message: QueryResolversByIRIRequest): unknown; fromPartial(object: Partial): QueryResolversByIRIRequest; @@ -840,8 +852,9 @@ export declare const QueryResolversByIRIRequest: { toProtoMsg(message: QueryResolversByIRIRequest): QueryResolversByIRIRequestProtoMsg; }; export declare const QueryResolversByIRIResponse: { - encode(message: QueryResolversByIRIResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolversByIRIResponse; + typeUrl: string; + encode(message: QueryResolversByIRIResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolversByIRIResponse; fromJSON(object: any): QueryResolversByIRIResponse; toJSON(message: QueryResolversByIRIResponse): unknown; fromPartial(object: Partial): QueryResolversByIRIResponse; @@ -853,8 +866,9 @@ export declare const QueryResolversByIRIResponse: { toProtoMsg(message: QueryResolversByIRIResponse): QueryResolversByIRIResponseProtoMsg; }; export declare const QueryResolversByHashRequest: { - encode(message: QueryResolversByHashRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolversByHashRequest; + typeUrl: string; + encode(message: QueryResolversByHashRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolversByHashRequest; fromJSON(object: any): QueryResolversByHashRequest; toJSON(message: QueryResolversByHashRequest): unknown; fromPartial(object: Partial): QueryResolversByHashRequest; @@ -866,8 +880,9 @@ export declare const QueryResolversByHashRequest: { toProtoMsg(message: QueryResolversByHashRequest): QueryResolversByHashRequestProtoMsg; }; export declare const QueryResolversByHashResponse: { - encode(message: QueryResolversByHashResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolversByHashResponse; + typeUrl: string; + encode(message: QueryResolversByHashResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolversByHashResponse; fromJSON(object: any): QueryResolversByHashResponse; toJSON(message: QueryResolversByHashResponse): unknown; fromPartial(object: Partial): QueryResolversByHashResponse; @@ -879,8 +894,9 @@ export declare const QueryResolversByHashResponse: { toProtoMsg(message: QueryResolversByHashResponse): QueryResolversByHashResponseProtoMsg; }; export declare const QueryResolversByURLRequest: { - encode(message: QueryResolversByURLRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolversByURLRequest; + typeUrl: string; + encode(message: QueryResolversByURLRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolversByURLRequest; fromJSON(object: any): QueryResolversByURLRequest; toJSON(message: QueryResolversByURLRequest): unknown; fromPartial(object: Partial): QueryResolversByURLRequest; @@ -892,8 +908,9 @@ export declare const QueryResolversByURLRequest: { toProtoMsg(message: QueryResolversByURLRequest): QueryResolversByURLRequestProtoMsg; }; export declare const QueryResolversByURLResponse: { - encode(message: QueryResolversByURLResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryResolversByURLResponse; + typeUrl: string; + encode(message: QueryResolversByURLResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryResolversByURLResponse; fromJSON(object: any): QueryResolversByURLResponse; toJSON(message: QueryResolversByURLResponse): unknown; fromPartial(object: Partial): QueryResolversByURLResponse; @@ -905,8 +922,9 @@ export declare const QueryResolversByURLResponse: { toProtoMsg(message: QueryResolversByURLResponse): QueryResolversByURLResponseProtoMsg; }; export declare const ConvertIRIToHashRequest: { - encode(message: ConvertIRIToHashRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConvertIRIToHashRequest; + typeUrl: string; + encode(message: ConvertIRIToHashRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConvertIRIToHashRequest; fromJSON(object: any): ConvertIRIToHashRequest; toJSON(message: ConvertIRIToHashRequest): unknown; fromPartial(object: Partial): ConvertIRIToHashRequest; @@ -918,8 +936,9 @@ export declare const ConvertIRIToHashRequest: { toProtoMsg(message: ConvertIRIToHashRequest): ConvertIRIToHashRequestProtoMsg; }; export declare const ConvertIRIToHashResponse: { - encode(message: ConvertIRIToHashResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConvertIRIToHashResponse; + typeUrl: string; + encode(message: ConvertIRIToHashResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConvertIRIToHashResponse; fromJSON(object: any): ConvertIRIToHashResponse; toJSON(message: ConvertIRIToHashResponse): unknown; fromPartial(object: Partial): ConvertIRIToHashResponse; @@ -931,8 +950,9 @@ export declare const ConvertIRIToHashResponse: { toProtoMsg(message: ConvertIRIToHashResponse): ConvertIRIToHashResponseProtoMsg; }; export declare const ConvertHashToIRIRequest: { - encode(message: ConvertHashToIRIRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConvertHashToIRIRequest; + typeUrl: string; + encode(message: ConvertHashToIRIRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConvertHashToIRIRequest; fromJSON(object: any): ConvertHashToIRIRequest; toJSON(message: ConvertHashToIRIRequest): unknown; fromPartial(object: Partial): ConvertHashToIRIRequest; @@ -944,8 +964,9 @@ export declare const ConvertHashToIRIRequest: { toProtoMsg(message: ConvertHashToIRIRequest): ConvertHashToIRIRequestProtoMsg; }; export declare const ConvertHashToIRIResponse: { - encode(message: ConvertHashToIRIResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConvertHashToIRIResponse; + typeUrl: string; + encode(message: ConvertHashToIRIResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConvertHashToIRIResponse; fromJSON(object: any): ConvertHashToIRIResponse; toJSON(message: ConvertHashToIRIResponse): unknown; fromPartial(object: Partial): ConvertHashToIRIResponse; @@ -957,8 +978,9 @@ export declare const ConvertHashToIRIResponse: { toProtoMsg(message: ConvertHashToIRIResponse): ConvertHashToIRIResponseProtoMsg; }; export declare const AnchorInfo: { - encode(message: AnchorInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AnchorInfo; + typeUrl: string; + encode(message: AnchorInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AnchorInfo; fromJSON(object: any): AnchorInfo; toJSON(message: AnchorInfo): unknown; fromPartial(object: Partial): AnchorInfo; @@ -970,8 +992,9 @@ export declare const AnchorInfo: { toProtoMsg(message: AnchorInfo): AnchorInfoProtoMsg; }; export declare const AttestationInfo: { - encode(message: AttestationInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AttestationInfo; + typeUrl: string; + encode(message: AttestationInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AttestationInfo; fromJSON(object: any): AttestationInfo; toJSON(message: AttestationInfo): unknown; fromPartial(object: Partial): AttestationInfo; @@ -983,8 +1006,9 @@ export declare const AttestationInfo: { toProtoMsg(message: AttestationInfo): AttestationInfoProtoMsg; }; export declare const ResolverInfo: { - encode(message: ResolverInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResolverInfo; + typeUrl: string; + encode(message: ResolverInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResolverInfo; fromJSON(object: any): ResolverInfo; toJSON(message: ResolverInfo): unknown; fromPartial(object: Partial): ResolverInfo; diff --git a/packages/api/types/codegen/regen/data/v1/query.lcd.d.ts b/packages/api/types/codegen/regen/data/v1/query.lcd.d.ts index 9740017..22fbc40 100644 --- a/packages/api/types/codegen/regen/data/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/regen/data/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryAnchorByIRIRequest, QueryAnchorByIRIResponseSDKType, QueryAttestationsByAttestorRequest, QueryAttestationsByAttestorResponseSDKType, QueryAttestationsByIRIRequest, QueryAttestationsByIRIResponseSDKType, QueryResolverRequest, QueryResolverResponseSDKType, QueryResolversByIRIRequest, QueryResolversByIRIResponseSDKType, ConvertIRIToHashRequest, ConvertIRIToHashResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/regen/data/v1/state.d.ts b/packages/api/types/codegen/regen/data/v1/state.d.ts index 1337aed..0ecd57d 100644 --- a/packages/api/types/codegen/regen/data/v1/state.d.ts +++ b/packages/api/types/codegen/regen/data/v1/state.d.ts @@ -1,6 +1,5 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** DataID stores a compact data ID and its full IRI. */ export interface DataID { /** id is the compact automatically-generated data ID. */ @@ -15,9 +14,9 @@ export interface DataIDProtoMsg { /** DataID stores a compact data ID and its full IRI. */ export interface DataIDAmino { /** id is the compact automatically-generated data ID. */ - id: Uint8Array; + id?: string; /** iri is the IRI of the data which contains its full ContentHash. */ - iri: string; + iri?: string; } export interface DataIDAminoMsg { type: "/regen.data.v1.DataID"; @@ -36,7 +35,7 @@ export interface DataAnchor { * timestamp is the anchor timestamp for this object - the time at which * it was first known to the blockchain. */ - timestamp: Timestamp; + timestamp?: Timestamp; } export interface DataAnchorProtoMsg { typeUrl: "/regen.data.v1.DataAnchor"; @@ -45,12 +44,12 @@ export interface DataAnchorProtoMsg { /** DataAnchor stores the anchor timestamp for a data object. */ export interface DataAnchorAmino { /** id is the compact data ID. */ - id: Uint8Array; + id?: string; /** * timestamp is the anchor timestamp for this object - the time at which * it was first known to the blockchain. */ - timestamp?: TimestampAmino; + timestamp?: string; } export interface DataAnchorAminoMsg { type: "/regen.data.v1.DataAnchor"; @@ -59,7 +58,7 @@ export interface DataAnchorAminoMsg { /** DataAnchor stores the anchor timestamp for a data object. */ export interface DataAnchorSDKType { id: Uint8Array; - timestamp: TimestampSDKType; + timestamp?: TimestampSDKType; } /** DataAttestor is a join table for associating data IDs and attestors. */ export interface DataAttestor { @@ -68,7 +67,7 @@ export interface DataAttestor { /** attestor is the account address of the attestor. */ attestor: Uint8Array; /** timestamp is the time at which the attestor signed this data object. */ - timestamp: Timestamp; + timestamp?: Timestamp; } export interface DataAttestorProtoMsg { typeUrl: "/regen.data.v1.DataAttestor"; @@ -77,11 +76,11 @@ export interface DataAttestorProtoMsg { /** DataAttestor is a join table for associating data IDs and attestors. */ export interface DataAttestorAmino { /** id is the compact data ID. */ - id: Uint8Array; + id?: string; /** attestor is the account address of the attestor. */ - attestor: Uint8Array; + attestor?: string; /** timestamp is the time at which the attestor signed this data object. */ - timestamp?: TimestampAmino; + timestamp?: string; } export interface DataAttestorAminoMsg { type: "/regen.data.v1.DataAttestor"; @@ -91,12 +90,12 @@ export interface DataAttestorAminoMsg { export interface DataAttestorSDKType { id: Uint8Array; attestor: Uint8Array; - timestamp: TimestampSDKType; + timestamp?: TimestampSDKType; } /** Resolver describes a data resolver. */ export interface Resolver { /** id is the ID of the resolver. */ - id: Long; + id: bigint; /** url is the URL of the resolver. */ url: string; /** @@ -112,14 +111,14 @@ export interface ResolverProtoMsg { /** Resolver describes a data resolver. */ export interface ResolverAmino { /** id is the ID of the resolver. */ - id: string; + id?: string; /** url is the URL of the resolver. */ - url: string; + url?: string; /** * manager is the bytes address of the resolver manager who is allowed * to make calls to Msg/RegisterResolver for this resolver. */ - manager: Uint8Array; + manager?: string; } export interface ResolverAminoMsg { type: "/regen.data.v1.Resolver"; @@ -127,7 +126,7 @@ export interface ResolverAminoMsg { } /** Resolver describes a data resolver. */ export interface ResolverSDKType { - id: Long; + id: bigint; url: string; manager: Uint8Array; } @@ -139,7 +138,7 @@ export interface DataResolver { /** id is the compact data ID. */ id: Uint8Array; /** resolver_id is the ID of the resolver. */ - resolverId: Long; + resolverId: bigint; } export interface DataResolverProtoMsg { typeUrl: "/regen.data.v1.DataResolver"; @@ -151,9 +150,9 @@ export interface DataResolverProtoMsg { */ export interface DataResolverAmino { /** id is the compact data ID. */ - id: Uint8Array; + id?: string; /** resolver_id is the ID of the resolver. */ - resolver_id: string; + resolver_id?: string; } export interface DataResolverAminoMsg { type: "/regen.data.v1.DataResolver"; @@ -165,11 +164,12 @@ export interface DataResolverAminoMsg { */ export interface DataResolverSDKType { id: Uint8Array; - resolver_id: Long; + resolver_id: bigint; } export declare const DataID: { - encode(message: DataID, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DataID; + typeUrl: string; + encode(message: DataID, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DataID; fromJSON(object: any): DataID; toJSON(message: DataID): unknown; fromPartial(object: Partial): DataID; @@ -181,8 +181,9 @@ export declare const DataID: { toProtoMsg(message: DataID): DataIDProtoMsg; }; export declare const DataAnchor: { - encode(message: DataAnchor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DataAnchor; + typeUrl: string; + encode(message: DataAnchor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DataAnchor; fromJSON(object: any): DataAnchor; toJSON(message: DataAnchor): unknown; fromPartial(object: Partial): DataAnchor; @@ -194,8 +195,9 @@ export declare const DataAnchor: { toProtoMsg(message: DataAnchor): DataAnchorProtoMsg; }; export declare const DataAttestor: { - encode(message: DataAttestor, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DataAttestor; + typeUrl: string; + encode(message: DataAttestor, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DataAttestor; fromJSON(object: any): DataAttestor; toJSON(message: DataAttestor): unknown; fromPartial(object: Partial): DataAttestor; @@ -207,8 +209,9 @@ export declare const DataAttestor: { toProtoMsg(message: DataAttestor): DataAttestorProtoMsg; }; export declare const Resolver: { - encode(message: Resolver, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Resolver; + typeUrl: string; + encode(message: Resolver, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Resolver; fromJSON(object: any): Resolver; toJSON(message: Resolver): unknown; fromPartial(object: Partial): Resolver; @@ -220,8 +223,9 @@ export declare const Resolver: { toProtoMsg(message: Resolver): ResolverProtoMsg; }; export declare const DataResolver: { - encode(message: DataResolver, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DataResolver; + typeUrl: string; + encode(message: DataResolver, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DataResolver; fromJSON(object: any): DataResolver; toJSON(message: DataResolver): unknown; fromPartial(object: Partial): DataResolver; diff --git a/packages/api/types/codegen/regen/data/v1/types.d.ts b/packages/api/types/codegen/regen/data/v1/types.d.ts index 64e9ac6..fc0e4cd 100644 --- a/packages/api/types/codegen/regen/data/v1/types.d.ts +++ b/packages/api/types/codegen/regen/data/v1/types.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** DigestAlgorithm is the hash digest algorithm */ export declare enum DigestAlgorithm { /** DIGEST_ALGORITHM_UNSPECIFIED - unspecified and invalid */ @@ -88,13 +88,13 @@ export interface ContentHash { * the guarantee that the canonical hash will not change. The media type for * "raw" data is defined by the MediaType enum. */ - raw: ContentHash_Raw; + raw?: ContentHash_Raw; /** * Graph specifies graph data that conforms to the RDF data model. * The canonicalization algorithm used for an RDF graph is specified by * GraphCanonicalizationAlgorithm. */ - graph: ContentHash_Graph; + graph?: ContentHash_Graph; } export interface ContentHashProtoMsg { typeUrl: "/regen.data.v1.ContentHash"; @@ -125,8 +125,8 @@ export interface ContentHashAminoMsg { } /** ContentHash specifies a hash-based content identifier for a piece of data. */ export interface ContentHashSDKType { - raw: ContentHash_RawSDKType; - graph: ContentHash_GraphSDKType; + raw?: ContentHash_RawSDKType; + graph?: ContentHash_GraphSDKType; } /** Raw is the content hash type used for raw data. */ export interface ContentHash_Raw { @@ -150,11 +150,11 @@ export interface ContentHash_RawAmino { * hash represents the hash of the data based on the specified * digest_algorithm. */ - hash: Uint8Array; + hash?: string; /** digest_algorithm represents the hash digest algorithm. */ - digest_algorithm: DigestAlgorithm; + digest_algorithm?: DigestAlgorithm; /** media_type represents the media type for raw data. */ - media_type: RawMediaType; + media_type?: RawMediaType; } export interface ContentHash_RawAminoMsg { type: "/regen.data.v1.Raw"; @@ -193,16 +193,16 @@ export interface ContentHash_GraphAmino { * hash represents the hash of the data based on the specified * digest_algorithm. */ - hash: Uint8Array; + hash?: string; /** digest_algorithm represents the hash digest algorithm. */ - digest_algorithm: DigestAlgorithm; + digest_algorithm?: DigestAlgorithm; /** * graph_canonicalization_algorithm represents the RDF graph * canonicalization algorithm. */ - canonicalization_algorithm: GraphCanonicalizationAlgorithm; + canonicalization_algorithm?: GraphCanonicalizationAlgorithm; /** merkle_tree is the merkle tree type used for the graph hash, if any. */ - merkle_tree: GraphMerkleTree; + merkle_tree?: GraphMerkleTree; } export interface ContentHash_GraphAminoMsg { type: "/regen.data.v1.Graph"; @@ -227,7 +227,7 @@ export interface ContentHashesProtoMsg { /** ContentHashes contains list of content ContentHash. */ export interface ContentHashesAmino { /** data is a list of content hashes which the resolver claims to serve. */ - content_hashes: ContentHashAmino[]; + content_hashes?: ContentHashAmino[]; } export interface ContentHashesAminoMsg { type: "/regen.data.v1.ContentHashes"; @@ -238,8 +238,9 @@ export interface ContentHashesSDKType { content_hashes: ContentHashSDKType[]; } export declare const ContentHash: { - encode(message: ContentHash, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ContentHash; + typeUrl: string; + encode(message: ContentHash, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ContentHash; fromJSON(object: any): ContentHash; toJSON(message: ContentHash): unknown; fromPartial(object: Partial): ContentHash; @@ -251,8 +252,9 @@ export declare const ContentHash: { toProtoMsg(message: ContentHash): ContentHashProtoMsg; }; export declare const ContentHash_Raw: { - encode(message: ContentHash_Raw, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ContentHash_Raw; + typeUrl: string; + encode(message: ContentHash_Raw, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ContentHash_Raw; fromJSON(object: any): ContentHash_Raw; toJSON(message: ContentHash_Raw): unknown; fromPartial(object: Partial): ContentHash_Raw; @@ -264,8 +266,9 @@ export declare const ContentHash_Raw: { toProtoMsg(message: ContentHash_Raw): ContentHash_RawProtoMsg; }; export declare const ContentHash_Graph: { - encode(message: ContentHash_Graph, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ContentHash_Graph; + typeUrl: string; + encode(message: ContentHash_Graph, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ContentHash_Graph; fromJSON(object: any): ContentHash_Graph; toJSON(message: ContentHash_Graph): unknown; fromPartial(object: Partial): ContentHash_Graph; @@ -277,8 +280,9 @@ export declare const ContentHash_Graph: { toProtoMsg(message: ContentHash_Graph): ContentHash_GraphProtoMsg; }; export declare const ContentHashes: { - encode(message: ContentHashes, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ContentHashes; + typeUrl: string; + encode(message: ContentHashes, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ContentHashes; fromJSON(object: any): ContentHashes; toJSON(message: ContentHashes): unknown; fromPartial(object: Partial): ContentHashes; diff --git a/packages/api/types/codegen/regen/ecocredit/basket/v1/events.d.ts b/packages/api/types/codegen/regen/ecocredit/basket/v1/events.d.ts index 1856b17..47ef2ea 100644 --- a/packages/api/types/codegen/regen/ecocredit/basket/v1/events.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/basket/v1/events.d.ts @@ -1,5 +1,5 @@ import { BasketCredit, BasketCreditAmino, BasketCreditSDKType } from "./types"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** EventCreate is an event emitted when a basket is created. */ export interface EventCreate { /** basket_denom is the basket bank denom. */ @@ -21,7 +21,7 @@ export interface EventCreateProtoMsg { /** EventCreate is an event emitted when a basket is created. */ export interface EventCreateAmino { /** basket_denom is the basket bank denom. */ - basket_denom: string; + basket_denom?: string; /** * curator is the address of the basket curator who is able to change certain * basket settings. @@ -30,7 +30,7 @@ export interface EventCreateAmino { * removed in the next version. */ /** @deprecated */ - curator: string; + curator?: string; } export interface EventCreateAminoMsg { type: "/regen.ecocredit.basket.v1.EventCreate"; @@ -78,9 +78,9 @@ export interface EventPutProtoMsg { */ export interface EventPutAmino { /** owner is the owner of the credits put into the basket. */ - owner: string; + owner?: string; /** basket_denom is the basket bank denom that the credits were added to. */ - basket_denom: string; + basket_denom?: string; /** * credits are the credits that were added to the basket. * @@ -88,7 +88,7 @@ export interface EventPutAmino { * removed in the next version. */ /** @deprecated */ - credits: BasketCreditAmino[]; + credits?: BasketCreditAmino[]; /** * amount is the integer number of basket tokens converted from credits. * @@ -96,7 +96,7 @@ export interface EventPutAmino { * removed in the next version. */ /** @deprecated */ - amount: string; + amount?: string; } export interface EventPutAminoMsg { type: "/regen.ecocredit.basket.v1.EventPut"; @@ -150,9 +150,9 @@ export interface EventTakeProtoMsg { */ export interface EventTakeAmino { /** owner is the owner of the credits taken from the basket. */ - owner: string; + owner?: string; /** basket_denom is the basket bank denom that credits were taken from. */ - basket_denom: string; + basket_denom?: string; /** * credits are the credits that were taken from the basket. * @@ -160,7 +160,7 @@ export interface EventTakeAmino { * removed in the next version. */ /** @deprecated */ - credits: BasketCreditAmino[]; + credits?: BasketCreditAmino[]; /** * amount is the integer number of basket tokens converted to credits. * @@ -168,7 +168,7 @@ export interface EventTakeAmino { * removed in the next version. */ /** @deprecated */ - amount: string; + amount?: string; } export interface EventTakeAminoMsg { type: "/regen.ecocredit.basket.v1.EventTake"; @@ -206,7 +206,7 @@ export interface EventUpdateCuratorProtoMsg { */ export interface EventUpdateCuratorAmino { /** denom is the basket denom. */ - denom: string; + denom?: string; } export interface EventUpdateCuratorAminoMsg { type: "/regen.ecocredit.basket.v1.EventUpdateCurator"; @@ -242,7 +242,7 @@ export interface EventUpdateDateCriteriaProtoMsg { */ export interface EventUpdateDateCriteriaAmino { /** denom is the basket denom. */ - denom: string; + denom?: string; } export interface EventUpdateDateCriteriaAminoMsg { type: "/regen.ecocredit.basket.v1.EventUpdateDateCriteria"; @@ -258,8 +258,9 @@ export interface EventUpdateDateCriteriaSDKType { denom: string; } export declare const EventCreate: { - encode(message: EventCreate, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreate; + typeUrl: string; + encode(message: EventCreate, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreate; fromJSON(object: any): EventCreate; toJSON(message: EventCreate): unknown; fromPartial(object: Partial): EventCreate; @@ -271,8 +272,9 @@ export declare const EventCreate: { toProtoMsg(message: EventCreate): EventCreateProtoMsg; }; export declare const EventPut: { - encode(message: EventPut, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventPut; + typeUrl: string; + encode(message: EventPut, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventPut; fromJSON(object: any): EventPut; toJSON(message: EventPut): unknown; fromPartial(object: Partial): EventPut; @@ -284,8 +286,9 @@ export declare const EventPut: { toProtoMsg(message: EventPut): EventPutProtoMsg; }; export declare const EventTake: { - encode(message: EventTake, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventTake; + typeUrl: string; + encode(message: EventTake, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventTake; fromJSON(object: any): EventTake; toJSON(message: EventTake): unknown; fromPartial(object: Partial): EventTake; @@ -297,8 +300,9 @@ export declare const EventTake: { toProtoMsg(message: EventTake): EventTakeProtoMsg; }; export declare const EventUpdateCurator: { - encode(message: EventUpdateCurator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateCurator; + typeUrl: string; + encode(message: EventUpdateCurator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateCurator; fromJSON(object: any): EventUpdateCurator; toJSON(message: EventUpdateCurator): unknown; fromPartial(object: Partial): EventUpdateCurator; @@ -310,8 +314,9 @@ export declare const EventUpdateCurator: { toProtoMsg(message: EventUpdateCurator): EventUpdateCuratorProtoMsg; }; export declare const EventUpdateDateCriteria: { - encode(message: EventUpdateDateCriteria, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateDateCriteria; + typeUrl: string; + encode(message: EventUpdateDateCriteria, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateDateCriteria; fromJSON(object: any): EventUpdateDateCriteria; toJSON(message: EventUpdateDateCriteria): unknown; fromPartial(object: Partial): EventUpdateDateCriteria; diff --git a/packages/api/types/codegen/regen/ecocredit/basket/v1/query.d.ts b/packages/api/types/codegen/regen/ecocredit/basket/v1/query.d.ts index 49ace8a..a69aacf 100644 --- a/packages/api/types/codegen/regen/ecocredit/basket/v1/query.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/basket/v1/query.d.ts @@ -2,7 +2,7 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageRe import { Basket, BasketAmino, BasketSDKType, BasketBalance, BasketBalanceAmino, BasketBalanceSDKType } from "./state"; import { DateCriteria, DateCriteriaAmino, DateCriteriaSDKType } from "./types"; import { Coin, CoinAmino, CoinSDKType } from "../../../../cosmos/base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** QueryBasketRequest is the Query/Basket request type. */ export interface QueryBasketRequest { /** basket_denom represents the denom of the basket to query. */ @@ -15,7 +15,7 @@ export interface QueryBasketRequestProtoMsg { /** QueryBasketRequest is the Query/Basket request type. */ export interface QueryBasketRequestAmino { /** basket_denom represents the denom of the basket to query. */ - basket_denom: string; + basket_denom?: string; } export interface QueryBasketRequestAminoMsg { type: "/regen.ecocredit.basket.v1.QueryBasketRequest"; @@ -35,7 +35,7 @@ export interface QueryBasketResponse { * basket_info is available using BasketInfo. */ /** @deprecated */ - basket: Basket; + basket?: Basket; /** classes are the credit classes that can be deposited in the basket. */ classes: string[]; /** @@ -43,7 +43,7 @@ export interface QueryBasketResponse { * * Since Revision 1 */ - basketInfo: BasketInfo; + basketInfo?: BasketInfo; } export interface QueryBasketResponseProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.QueryBasketResponse"; @@ -61,7 +61,7 @@ export interface QueryBasketResponseAmino { /** @deprecated */ basket?: BasketAmino; /** classes are the credit classes that can be deposited in the basket. */ - classes: string[]; + classes?: string[]; /** * basket_info is the queried basket. * @@ -76,14 +76,14 @@ export interface QueryBasketResponseAminoMsg { /** QueryBasketResponse is the Query/Basket response type. */ export interface QueryBasketResponseSDKType { /** @deprecated */ - basket: BasketSDKType; + basket?: BasketSDKType; classes: string[]; - basket_info: BasketInfoSDKType; + basket_info?: BasketInfoSDKType; } /** QueryBasketsRequest is the Query/Baskets request type. */ export interface QueryBasketsRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBasketsRequestProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.QueryBasketsRequest"; @@ -100,7 +100,7 @@ export interface QueryBasketsRequestAminoMsg { } /** QueryBasketsRequest is the Query/Baskets request type. */ export interface QueryBasketsRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBasketsResponse is the Query/Baskets response type. */ export interface QueryBasketsResponse { @@ -114,7 +114,7 @@ export interface QueryBasketsResponse { /** @deprecated */ baskets: Basket[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; /** * baskets_info are the fetched baskets. * @@ -136,7 +136,7 @@ export interface QueryBasketsResponseAmino { * baskets_info is available using BasketInfo. */ /** @deprecated */ - baskets: BasketAmino[]; + baskets?: BasketAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; /** @@ -144,7 +144,7 @@ export interface QueryBasketsResponseAmino { * * Since Revision 1 */ - baskets_info: BasketInfoAmino[]; + baskets_info?: BasketInfoAmino[]; } export interface QueryBasketsResponseAminoMsg { type: "/regen.ecocredit.basket.v1.QueryBasketsResponse"; @@ -154,7 +154,7 @@ export interface QueryBasketsResponseAminoMsg { export interface QueryBasketsResponseSDKType { /** @deprecated */ baskets: BasketSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; baskets_info: BasketInfoSDKType[]; } /** QueryBasketBalancesRequest is the Query/BasketBalances request type. */ @@ -162,7 +162,7 @@ export interface QueryBasketBalancesRequest { /** basket_denom is the denom of the basket. */ basketDenom: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBasketBalancesRequestProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.QueryBasketBalancesRequest"; @@ -171,7 +171,7 @@ export interface QueryBasketBalancesRequestProtoMsg { /** QueryBasketBalancesRequest is the Query/BasketBalances request type. */ export interface QueryBasketBalancesRequestAmino { /** basket_denom is the denom of the basket. */ - basket_denom: string; + basket_denom?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -182,7 +182,7 @@ export interface QueryBasketBalancesRequestAminoMsg { /** QueryBasketBalancesRequest is the Query/BasketBalances request type. */ export interface QueryBasketBalancesRequestSDKType { basket_denom: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBasketBalancesResponse is the Query/BasketBalances response type. */ export interface QueryBasketBalancesResponse { @@ -196,7 +196,7 @@ export interface QueryBasketBalancesResponse { /** @deprecated */ balances: BasketBalance[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; /** * balances_info is a list of credit balances in the basket. * @@ -218,7 +218,7 @@ export interface QueryBasketBalancesResponseAmino { * version. In the meantime baskets_info is available using BasketBalanceInfo. */ /** @deprecated */ - balances: BasketBalanceAmino[]; + balances?: BasketBalanceAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; /** @@ -226,7 +226,7 @@ export interface QueryBasketBalancesResponseAmino { * * Since Revision 1 */ - balances_info: BasketBalanceInfoAmino[]; + balances_info?: BasketBalanceInfoAmino[]; } export interface QueryBasketBalancesResponseAminoMsg { type: "/regen.ecocredit.basket.v1.QueryBasketBalancesResponse"; @@ -236,7 +236,7 @@ export interface QueryBasketBalancesResponseAminoMsg { export interface QueryBasketBalancesResponseSDKType { /** @deprecated */ balances: BasketBalanceSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; balances_info: BasketBalanceInfoSDKType[]; } /** QueryBasketBalanceRequest is the Query/BasketBalance request type. */ @@ -253,9 +253,9 @@ export interface QueryBasketBalanceRequestProtoMsg { /** QueryBasketBalanceRequest is the Query/BasketBalance request type. */ export interface QueryBasketBalanceRequestAmino { /** basket_denom is the denom of the basket. */ - basket_denom: string; + basket_denom?: string; /** batch_denom is the denom of the credit batch. */ - batch_denom: string; + batch_denom?: string; } export interface QueryBasketBalanceRequestAminoMsg { type: "/regen.ecocredit.basket.v1.QueryBasketBalanceRequest"; @@ -278,7 +278,7 @@ export interface QueryBasketBalanceResponseProtoMsg { /** QueryBasketBalanceResponse is the Query/BasketBalance response type. */ export interface QueryBasketBalanceResponseAmino { /** balance is the amount of the queried credit batch in the basket. */ - balance: string; + balance?: string; } export interface QueryBasketBalanceResponseAminoMsg { type: "/regen.ecocredit.basket.v1.QueryBasketBalanceResponse"; @@ -309,7 +309,7 @@ export interface BasketInfo { */ creditTypeAbbrev: string; /** date_criteria is the date criteria for batches admitted to the basket. */ - dateCriteria: DateCriteria; + dateCriteria?: DateCriteria; /** exponent is the exponent for converting credits to/from basket tokens. */ exponent: number; /** @@ -325,32 +325,32 @@ export interface BasketInfoProtoMsg { /** BasketInfo is the human-readable basket information. */ export interface BasketInfoAmino { /** basket_denom is the basket bank denom. */ - basket_denom: string; + basket_denom?: string; /** * name is the unique name of the basket specified in MsgCreate. Basket * names must be unique across all credit types and choices of exponent * above and beyond the uniqueness constraint on basket_denom. */ - name: string; + name?: string; /** * disable_auto_retire indicates whether or not the credits will be retired * upon withdraw from the basket. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * credit_type_abbrev is the abbreviation of the credit type this basket is * able to hold. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; /** date_criteria is the date criteria for batches admitted to the basket. */ date_criteria?: DateCriteriaAmino; /** exponent is the exponent for converting credits to/from basket tokens. */ - exponent: number; + exponent?: number; /** * curator is the address of the basket curator who is able to change certain * basket settings. */ - curator: string; + curator?: string; } export interface BasketInfoAminoMsg { type: "/regen.ecocredit.basket.v1.BasketInfo"; @@ -362,7 +362,7 @@ export interface BasketInfoSDKType { name: string; disable_auto_retire: boolean; credit_type_abbrev: string; - date_criteria: DateCriteriaSDKType; + date_criteria?: DateCriteriaSDKType; exponent: number; curator: string; } @@ -380,9 +380,9 @@ export interface BasketBalanceInfoProtoMsg { /** BasketBalanceInfo is the human-readable basket balance information. */ export interface BasketBalanceInfoAmino { /** batch_denom is the denom of the credit batch */ - batch_denom: string; + batch_denom?: string; /** balance is the amount of ecocredits held in the basket */ - balance: string; + balance?: string; } export interface BasketBalanceInfoAminoMsg { type: "/regen.ecocredit.basket.v1.BasketBalanceInfo"; @@ -432,7 +432,7 @@ export interface QueryBasketFeeResponse { * fee is the basket creation fee. If not set, a basket creation fee is not * required. */ - fee: Coin; + fee?: Coin; } export interface QueryBasketFeeResponseProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.QueryBasketFeeResponse"; @@ -460,11 +460,12 @@ export interface QueryBasketFeeResponseAminoMsg { * Since Revision 2 */ export interface QueryBasketFeeResponseSDKType { - fee: CoinSDKType; + fee?: CoinSDKType; } export declare const QueryBasketRequest: { - encode(message: QueryBasketRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketRequest; + typeUrl: string; + encode(message: QueryBasketRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketRequest; fromJSON(object: any): QueryBasketRequest; toJSON(message: QueryBasketRequest): unknown; fromPartial(object: Partial): QueryBasketRequest; @@ -476,8 +477,9 @@ export declare const QueryBasketRequest: { toProtoMsg(message: QueryBasketRequest): QueryBasketRequestProtoMsg; }; export declare const QueryBasketResponse: { - encode(message: QueryBasketResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketResponse; + typeUrl: string; + encode(message: QueryBasketResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketResponse; fromJSON(object: any): QueryBasketResponse; toJSON(message: QueryBasketResponse): unknown; fromPartial(object: Partial): QueryBasketResponse; @@ -489,8 +491,9 @@ export declare const QueryBasketResponse: { toProtoMsg(message: QueryBasketResponse): QueryBasketResponseProtoMsg; }; export declare const QueryBasketsRequest: { - encode(message: QueryBasketsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketsRequest; + typeUrl: string; + encode(message: QueryBasketsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketsRequest; fromJSON(object: any): QueryBasketsRequest; toJSON(message: QueryBasketsRequest): unknown; fromPartial(object: Partial): QueryBasketsRequest; @@ -502,8 +505,9 @@ export declare const QueryBasketsRequest: { toProtoMsg(message: QueryBasketsRequest): QueryBasketsRequestProtoMsg; }; export declare const QueryBasketsResponse: { - encode(message: QueryBasketsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketsResponse; + typeUrl: string; + encode(message: QueryBasketsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketsResponse; fromJSON(object: any): QueryBasketsResponse; toJSON(message: QueryBasketsResponse): unknown; fromPartial(object: Partial): QueryBasketsResponse; @@ -515,8 +519,9 @@ export declare const QueryBasketsResponse: { toProtoMsg(message: QueryBasketsResponse): QueryBasketsResponseProtoMsg; }; export declare const QueryBasketBalancesRequest: { - encode(message: QueryBasketBalancesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketBalancesRequest; + typeUrl: string; + encode(message: QueryBasketBalancesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketBalancesRequest; fromJSON(object: any): QueryBasketBalancesRequest; toJSON(message: QueryBasketBalancesRequest): unknown; fromPartial(object: Partial): QueryBasketBalancesRequest; @@ -528,8 +533,9 @@ export declare const QueryBasketBalancesRequest: { toProtoMsg(message: QueryBasketBalancesRequest): QueryBasketBalancesRequestProtoMsg; }; export declare const QueryBasketBalancesResponse: { - encode(message: QueryBasketBalancesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketBalancesResponse; + typeUrl: string; + encode(message: QueryBasketBalancesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketBalancesResponse; fromJSON(object: any): QueryBasketBalancesResponse; toJSON(message: QueryBasketBalancesResponse): unknown; fromPartial(object: Partial): QueryBasketBalancesResponse; @@ -541,8 +547,9 @@ export declare const QueryBasketBalancesResponse: { toProtoMsg(message: QueryBasketBalancesResponse): QueryBasketBalancesResponseProtoMsg; }; export declare const QueryBasketBalanceRequest: { - encode(message: QueryBasketBalanceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketBalanceRequest; + typeUrl: string; + encode(message: QueryBasketBalanceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketBalanceRequest; fromJSON(object: any): QueryBasketBalanceRequest; toJSON(message: QueryBasketBalanceRequest): unknown; fromPartial(object: Partial): QueryBasketBalanceRequest; @@ -554,8 +561,9 @@ export declare const QueryBasketBalanceRequest: { toProtoMsg(message: QueryBasketBalanceRequest): QueryBasketBalanceRequestProtoMsg; }; export declare const QueryBasketBalanceResponse: { - encode(message: QueryBasketBalanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketBalanceResponse; + typeUrl: string; + encode(message: QueryBasketBalanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketBalanceResponse; fromJSON(object: any): QueryBasketBalanceResponse; toJSON(message: QueryBasketBalanceResponse): unknown; fromPartial(object: Partial): QueryBasketBalanceResponse; @@ -567,8 +575,9 @@ export declare const QueryBasketBalanceResponse: { toProtoMsg(message: QueryBasketBalanceResponse): QueryBasketBalanceResponseProtoMsg; }; export declare const BasketInfo: { - encode(message: BasketInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasketInfo; + typeUrl: string; + encode(message: BasketInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasketInfo; fromJSON(object: any): BasketInfo; toJSON(message: BasketInfo): unknown; fromPartial(object: Partial): BasketInfo; @@ -580,8 +589,9 @@ export declare const BasketInfo: { toProtoMsg(message: BasketInfo): BasketInfoProtoMsg; }; export declare const BasketBalanceInfo: { - encode(message: BasketBalanceInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasketBalanceInfo; + typeUrl: string; + encode(message: BasketBalanceInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasketBalanceInfo; fromJSON(object: any): BasketBalanceInfo; toJSON(message: BasketBalanceInfo): unknown; fromPartial(object: Partial): BasketBalanceInfo; @@ -593,8 +603,9 @@ export declare const BasketBalanceInfo: { toProtoMsg(message: BasketBalanceInfo): BasketBalanceInfoProtoMsg; }; export declare const QueryBasketFeeRequest: { - encode(_: QueryBasketFeeRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketFeeRequest; + typeUrl: string; + encode(_: QueryBasketFeeRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketFeeRequest; fromJSON(_: any): QueryBasketFeeRequest; toJSON(_: QueryBasketFeeRequest): unknown; fromPartial(_: Partial): QueryBasketFeeRequest; @@ -606,8 +617,9 @@ export declare const QueryBasketFeeRequest: { toProtoMsg(message: QueryBasketFeeRequest): QueryBasketFeeRequestProtoMsg; }; export declare const QueryBasketFeeResponse: { - encode(message: QueryBasketFeeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBasketFeeResponse; + typeUrl: string; + encode(message: QueryBasketFeeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBasketFeeResponse; fromJSON(object: any): QueryBasketFeeResponse; toJSON(message: QueryBasketFeeResponse): unknown; fromPartial(object: Partial): QueryBasketFeeResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/basket/v1/query.lcd.d.ts b/packages/api/types/codegen/regen/ecocredit/basket/v1/query.lcd.d.ts index fd3cea3..15ab387 100644 --- a/packages/api/types/codegen/regen/ecocredit/basket/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/basket/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryBasketRequest, QueryBasketResponseSDKType, QueryBasketsRequest, QueryBasketsResponseSDKType, QueryBasketBalancesRequest, QueryBasketBalancesResponseSDKType, QueryBasketBalanceRequest, QueryBasketBalanceResponseSDKType, QueryBasketFeeRequest, QueryBasketFeeResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/regen/ecocredit/basket/v1/state.d.ts b/packages/api/types/codegen/regen/ecocredit/basket/v1/state.d.ts index 50be16e..877060a 100644 --- a/packages/api/types/codegen/regen/ecocredit/basket/v1/state.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/basket/v1/state.d.ts @@ -1,15 +1,14 @@ import { DateCriteria, DateCriteriaAmino, DateCriteriaSDKType } from "./types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; import { Coin, CoinAmino, CoinSDKType } from "../../../../cosmos/base/v1beta1/coin"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** Basket represents a basket in state. */ export interface Basket { /** * id is the uint64 ID of the basket. It is used internally for reducing * storage space. */ - id: Long; + id: bigint; /** * basket_denom is the basket bank denom formed from name and credit type with * the format `eco..` where prefix is the @@ -45,7 +44,7 @@ export interface Basket { */ creditTypeAbbrev: string; /** date_criteria is the date criteria for batches admitted to the basket. */ - dateCriteria: DateCriteria; + dateCriteria?: DateCriteria; /** * Deprecated (Since Revision 1): This field is no longer used and will be * removed in the next version. The value of credit type precision is always @@ -72,7 +71,7 @@ export interface BasketAmino { * id is the uint64 ID of the basket. It is used internally for reducing * storage space. */ - id: string; + id?: string; /** * basket_denom is the basket bank denom formed from name and credit type with * the format `eco..` where prefix is the @@ -90,23 +89,23 @@ export interface BasketAmino { * 21 - z (zepto) * 24 - y (yocto) */ - basket_denom: string; + basket_denom?: string; /** * name is the unique name of the basket specified in MsgCreate. Basket * names must be unique across all credit types and choices of exponent * above and beyond the uniqueness constraint on basket_denom. */ - name: string; + name?: string; /** * disable_auto_retire indicates whether or not the credits will be retired * upon withdraw from the basket. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * credit_type_abbrev is the abbreviation of the credit type this basket is * able to hold. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; /** date_criteria is the date criteria for batches admitted to the basket. */ date_criteria?: DateCriteriaAmino; /** @@ -116,14 +115,14 @@ export interface BasketAmino { * field will be set to the value of credit type precision until removed. */ /** @deprecated */ - exponent: number; + exponent?: number; /** * curator is the address of the basket curator who is able to change certain * basket settings. * * Since Revision 1 */ - curator: Uint8Array; + curator?: string; } export interface BasketAminoMsg { type: "/regen.ecocredit.basket.v1.Basket"; @@ -131,12 +130,12 @@ export interface BasketAminoMsg { } /** Basket represents a basket in state. */ export interface BasketSDKType { - id: Long; + id: bigint; basket_denom: string; name: string; disable_auto_retire: boolean; credit_type_abbrev: string; - date_criteria: DateCriteriaSDKType; + date_criteria?: DateCriteriaSDKType; /** @deprecated */ exponent: number; curator: Uint8Array; @@ -144,7 +143,7 @@ export interface BasketSDKType { /** BasketClass describes a credit class that can be deposited in a basket. */ export interface BasketClass { /** basket_id is the ID of the basket */ - basketId: Long; + basketId: bigint; /** * class_id is the id of the credit class that is allowed to be deposited in * the basket @@ -158,12 +157,12 @@ export interface BasketClassProtoMsg { /** BasketClass describes a credit class that can be deposited in a basket. */ export interface BasketClassAmino { /** basket_id is the ID of the basket */ - basket_id: string; + basket_id?: string; /** * class_id is the id of the credit class that is allowed to be deposited in * the basket */ - class_id: string; + class_id?: string; } export interface BasketClassAminoMsg { type: "/regen.ecocredit.basket.v1.BasketClass"; @@ -171,13 +170,13 @@ export interface BasketClassAminoMsg { } /** BasketClass describes a credit class that can be deposited in a basket. */ export interface BasketClassSDKType { - basket_id: Long; + basket_id: bigint; class_id: string; } /** BasketBalance stores the amount of credits from a batch in a basket */ export interface BasketBalance { /** basket_id is the ID of the basket */ - basketId: Long; + basketId: bigint; /** batch_denom is the denom of the credit batch */ batchDenom: string; /** balance is the amount of ecocredits held in the basket */ @@ -186,7 +185,7 @@ export interface BasketBalance { * batch_start_date is the start date of the batch. This field is used * to create an index which is used to remove the oldest credits first. */ - batchStartDate: Timestamp; + batchStartDate?: Timestamp; } export interface BasketBalanceProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.BasketBalance"; @@ -195,16 +194,16 @@ export interface BasketBalanceProtoMsg { /** BasketBalance stores the amount of credits from a batch in a basket */ export interface BasketBalanceAmino { /** basket_id is the ID of the basket */ - basket_id: string; + basket_id?: string; /** batch_denom is the denom of the credit batch */ - batch_denom: string; + batch_denom?: string; /** balance is the amount of ecocredits held in the basket */ - balance: string; + balance?: string; /** * batch_start_date is the start date of the batch. This field is used * to create an index which is used to remove the oldest credits first. */ - batch_start_date?: TimestampAmino; + batch_start_date?: string; } export interface BasketBalanceAminoMsg { type: "/regen.ecocredit.basket.v1.BasketBalance"; @@ -212,10 +211,10 @@ export interface BasketBalanceAminoMsg { } /** BasketBalance stores the amount of credits from a batch in a basket */ export interface BasketBalanceSDKType { - basket_id: Long; + basket_id: bigint; batch_denom: string; balance: string; - batch_start_date: TimestampSDKType; + batch_start_date?: TimestampSDKType; } /** * BasketFee is the basket creation fee. If not set, a basket creation fee is @@ -228,7 +227,7 @@ export interface BasketFee { * fee is the basket creation fee. If not set, a basket creation fee is not * required. */ - fee: Coin; + fee?: Coin; } export interface BasketFeeProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.BasketFee"; @@ -258,11 +257,12 @@ export interface BasketFeeAminoMsg { * Since Revision 2 */ export interface BasketFeeSDKType { - fee: CoinSDKType; + fee?: CoinSDKType; } export declare const Basket: { - encode(message: Basket, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Basket; + typeUrl: string; + encode(message: Basket, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Basket; fromJSON(object: any): Basket; toJSON(message: Basket): unknown; fromPartial(object: Partial): Basket; @@ -274,8 +274,9 @@ export declare const Basket: { toProtoMsg(message: Basket): BasketProtoMsg; }; export declare const BasketClass: { - encode(message: BasketClass, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasketClass; + typeUrl: string; + encode(message: BasketClass, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasketClass; fromJSON(object: any): BasketClass; toJSON(message: BasketClass): unknown; fromPartial(object: Partial): BasketClass; @@ -287,8 +288,9 @@ export declare const BasketClass: { toProtoMsg(message: BasketClass): BasketClassProtoMsg; }; export declare const BasketBalance: { - encode(message: BasketBalance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasketBalance; + typeUrl: string; + encode(message: BasketBalance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasketBalance; fromJSON(object: any): BasketBalance; toJSON(message: BasketBalance): unknown; fromPartial(object: Partial): BasketBalance; @@ -300,8 +302,9 @@ export declare const BasketBalance: { toProtoMsg(message: BasketBalance): BasketBalanceProtoMsg; }; export declare const BasketFee: { - encode(message: BasketFee, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasketFee; + typeUrl: string; + encode(message: BasketFee, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasketFee; fromJSON(object: any): BasketFee; toJSON(message: BasketFee): unknown; fromPartial(object: Partial): BasketFee; diff --git a/packages/api/types/codegen/regen/ecocredit/basket/v1/tx.d.ts b/packages/api/types/codegen/regen/ecocredit/basket/v1/tx.d.ts index ab5ccbe..9833b69 100644 --- a/packages/api/types/codegen/regen/ecocredit/basket/v1/tx.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/basket/v1/tx.d.ts @@ -1,6 +1,6 @@ import { DateCriteria, DateCriteriaAmino, DateCriteriaSDKType, BasketCredit, BasketCreditAmino, BasketCreditSDKType } from "./types"; import { Coin, CoinAmino, CoinSDKType } from "../../../../cosmos/base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** MsgCreateBasket is the Msg/CreateBasket request type. */ export interface MsgCreate { /** @@ -50,7 +50,7 @@ export interface MsgCreate { * date_criteria is the date criteria for batches admitted to the basket. * At most, only one of the date criteria fields can be set. */ - dateCriteria: DateCriteria; + dateCriteria?: DateCriteria; /** * fee is the basket creation fee. A fee is not required if no fee exists * in the basket fee parameter. The fee must be greater than or equal to the @@ -75,7 +75,7 @@ export interface MsgCreateAmino { * curator is the address of the basket curator who is able to change certain * basket settings. */ - curator: string; + curator?: string; /** * name will be used to together with prefix to create a bank denom for this * basket token. It can be between 3-8 alphanumeric characters, with the @@ -85,12 +85,12 @@ export interface MsgCreateAmino { * `eco..` where prefix is the prefix of * a standard SI unit derived from credit type precision. */ - name: string; + name?: string; /** * description is a human-readable description of the basket denom that should * be at most 256 characters. */ - description: string; + description?: string; /** * Deprecated (Since Revision 1): This field is no longer used and will be * removed in the next version. The value of credit type precision is always @@ -98,7 +98,7 @@ export interface MsgCreateAmino { * bank denom metadata, and converting credits to/from basket tokens. */ /** @deprecated */ - exponent: number; + exponent?: number; /** * disable_auto_retire allows auto-retirement to be disabled. * The credits will be auto-retired if disable_auto_retire is @@ -106,14 +106,14 @@ export interface MsgCreateAmino { * address picking them from the basket, in which case they will remain * tradable. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * credit_type_abbrev is the abbreviation of the credit type this basket is * able to hold. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; /** allowed_classes are the credit classes allowed to be put in the basket */ - allowed_classes: string[]; + allowed_classes?: string[]; /** * date_criteria is the date criteria for batches admitted to the basket. * At most, only one of the date criteria fields can be set. @@ -131,7 +131,7 @@ export interface MsgCreateAmino { * This field will be updated to a single fee rather than a list of fees in * the next version to reflect these requirements. */ - fee: CoinAmino[]; + fee?: CoinAmino[]; } export interface MsgCreateAminoMsg { type: "regen.basket/MsgCreate"; @@ -147,7 +147,7 @@ export interface MsgCreateSDKType { disable_auto_retire: boolean; credit_type_abbrev: string; allowed_classes: string[]; - date_criteria: DateCriteriaSDKType; + date_criteria?: DateCriteriaSDKType; fee: CoinSDKType[]; } /** MsgCreateBasketResponse is the Msg/CreateBasket response type. */ @@ -162,7 +162,7 @@ export interface MsgCreateResponseProtoMsg { /** MsgCreateBasketResponse is the Msg/CreateBasket response type. */ export interface MsgCreateResponseAmino { /** basket_denom is the unique denomination ID of the newly created basket. */ - basket_denom: string; + basket_denom?: string; } export interface MsgCreateResponseAminoMsg { type: "/regen.ecocredit.basket.v1.MsgCreateResponse"; @@ -191,14 +191,14 @@ export interface MsgPutProtoMsg { /** MsgAddToBasket is the Msg/AddToBasket request type. */ export interface MsgPutAmino { /** owner is the owner of credits being put into the basket. */ - owner: string; + owner?: string; /** basket_denom is the basket denom to add credits to. */ - basket_denom: string; + basket_denom?: string; /** * credits are credits to add to the basket. If they do not match the basket's * admission criteria, the operation will fail. */ - credits: BasketCreditAmino[]; + credits?: BasketCreditAmino[]; } export interface MsgPutAminoMsg { type: "regen.basket/MsgPut"; @@ -222,7 +222,7 @@ export interface MsgPutResponseProtoMsg { /** MsgAddToBasketResponse is the Msg/AddToBasket response type. */ export interface MsgPutResponseAmino { /** amount_received is the integer amount of basket tokens received. */ - amount_received: string; + amount_received?: string; } export interface MsgPutResponseAminoMsg { type: "/regen.ecocredit.basket.v1.MsgPutResponse"; @@ -281,11 +281,11 @@ export interface MsgTakeProtoMsg { /** MsgTakeFromBasket is the Msg/TakeFromBasket request type. */ export interface MsgTakeAmino { /** owner is the owner of the basket tokens. */ - owner: string; + owner?: string; /** basket_denom is the basket bank denom to take credits from. */ - basket_denom: string; + basket_denom?: string; /** amount is the integer number of basket tokens to convert into credits. */ - amount: string; + amount?: string; /** * retirement_location is the optional retirement jurisdiction for the * credits which will be used only if retire_on_take is true. @@ -295,7 +295,7 @@ export interface MsgTakeAmino { * set and retirement_jurisdiction will be used if both are set. */ /** @deprecated */ - retirement_location: string; + retirement_location?: string; /** * retire_on_take is a boolean that dictates whether the ecocredits * received in exchange for the basket tokens will be received as @@ -303,14 +303,14 @@ export interface MsgTakeAmino { * false, retire_on_take MUST be set to true, and a retirement jurisdiction * must be provided. */ - retire_on_take: boolean; + retire_on_take?: boolean; /** * retirement_jurisdiction is the optional retirement jurisdiction for the * credits which will be used only if retire_on_take is true. * * Since Revision 1 */ - retirement_jurisdiction: string; + retirement_jurisdiction?: string; /** * retirement_reason is any arbitrary string that specifies the reason for * retiring credits. The reason will be included in EventRetire and is not @@ -318,7 +318,7 @@ export interface MsgTakeAmino { * * Since Revision 2 */ - retirement_reason: string; + retirement_reason?: string; } export interface MsgTakeAminoMsg { type: "regen.basket/MsgTake"; @@ -347,7 +347,7 @@ export interface MsgTakeResponseProtoMsg { /** MsgTakeFromBasketResponse is the Msg/TakeFromBasket response type. */ export interface MsgTakeResponseAmino { /** credits are the credits taken out of the basket. */ - credits: BasketCreditAmino[]; + credits?: BasketCreditAmino[]; } export interface MsgTakeResponseAminoMsg { type: "/regen.ecocredit.basket.v1.MsgTakeResponse"; @@ -369,7 +369,7 @@ export interface MsgUpdateBasketFee { * fee is the basket creation fee. If not set, the basket creation fee will be * removed and no fee will be required to create a basket. */ - fee: Coin; + fee?: Coin; } export interface MsgUpdateBasketFeeProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.MsgUpdateBasketFee"; @@ -382,7 +382,7 @@ export interface MsgUpdateBasketFeeProtoMsg { */ export interface MsgUpdateBasketFeeAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** * fee is the basket creation fee. If not set, the basket creation fee will be * removed and no fee will be required to create a basket. @@ -400,7 +400,7 @@ export interface MsgUpdateBasketFeeAminoMsg { */ export interface MsgUpdateBasketFeeSDKType { authority: string; - fee: CoinSDKType; + fee?: CoinSDKType; } /** * MsgUpdateBasketFeeResponse is the Msg/UpdateBasketFee response type. @@ -458,14 +458,14 @@ export interface MsgUpdateCuratorProtoMsg { */ export interface MsgUpdateCuratorAmino { /** curator is the address of the basket curator. */ - curator: string; + curator?: string; /** denom is the unique identifier of the basket. */ - denom: string; + denom?: string; /** * new_curator is the address of the account that will become the * new curator of the basket. */ - new_curator: string; + new_curator?: string; } export interface MsgUpdateCuratorAminoMsg { type: "regen.basket/MsgUpdateCurator"; @@ -524,7 +524,7 @@ export interface MsgUpdateDateCriteria { * new_date_criteria is the new date criteria for batches admitted to the * basket. At most, only one of the date criteria fields can be set. */ - newDateCriteria: DateCriteria; + newDateCriteria?: DateCriteria; } export interface MsgUpdateDateCriteriaProtoMsg { typeUrl: "/regen.ecocredit.basket.v1.MsgUpdateDateCriteria"; @@ -537,9 +537,9 @@ export interface MsgUpdateDateCriteriaProtoMsg { */ export interface MsgUpdateDateCriteriaAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** denom is the unique identifier of the basket. */ - denom: string; + denom?: string; /** * new_date_criteria is the new date criteria for batches admitted to the * basket. At most, only one of the date criteria fields can be set. @@ -558,7 +558,7 @@ export interface MsgUpdateDateCriteriaAminoMsg { export interface MsgUpdateDateCriteriaSDKType { authority: string; denom: string; - new_date_criteria: DateCriteriaSDKType; + new_date_criteria?: DateCriteriaSDKType; } /** * MsgUpdateDateCriteriaResponse is the Msg/UpdateDateCriteria response type. @@ -590,8 +590,9 @@ export interface MsgUpdateDateCriteriaResponseAminoMsg { export interface MsgUpdateDateCriteriaResponseSDKType { } export declare const MsgCreate: { - encode(message: MsgCreate, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreate; + typeUrl: string; + encode(message: MsgCreate, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreate; fromJSON(object: any): MsgCreate; toJSON(message: MsgCreate): unknown; fromPartial(object: Partial): MsgCreate; @@ -604,8 +605,9 @@ export declare const MsgCreate: { toProtoMsg(message: MsgCreate): MsgCreateProtoMsg; }; export declare const MsgCreateResponse: { - encode(message: MsgCreateResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateResponse; + typeUrl: string; + encode(message: MsgCreateResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateResponse; fromJSON(object: any): MsgCreateResponse; toJSON(message: MsgCreateResponse): unknown; fromPartial(object: Partial): MsgCreateResponse; @@ -617,8 +619,9 @@ export declare const MsgCreateResponse: { toProtoMsg(message: MsgCreateResponse): MsgCreateResponseProtoMsg; }; export declare const MsgPut: { - encode(message: MsgPut, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgPut; + typeUrl: string; + encode(message: MsgPut, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgPut; fromJSON(object: any): MsgPut; toJSON(message: MsgPut): unknown; fromPartial(object: Partial): MsgPut; @@ -631,8 +634,9 @@ export declare const MsgPut: { toProtoMsg(message: MsgPut): MsgPutProtoMsg; }; export declare const MsgPutResponse: { - encode(message: MsgPutResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgPutResponse; + typeUrl: string; + encode(message: MsgPutResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgPutResponse; fromJSON(object: any): MsgPutResponse; toJSON(message: MsgPutResponse): unknown; fromPartial(object: Partial): MsgPutResponse; @@ -644,8 +648,9 @@ export declare const MsgPutResponse: { toProtoMsg(message: MsgPutResponse): MsgPutResponseProtoMsg; }; export declare const MsgTake: { - encode(message: MsgTake, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgTake; + typeUrl: string; + encode(message: MsgTake, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgTake; fromJSON(object: any): MsgTake; toJSON(message: MsgTake): unknown; fromPartial(object: Partial): MsgTake; @@ -658,8 +663,9 @@ export declare const MsgTake: { toProtoMsg(message: MsgTake): MsgTakeProtoMsg; }; export declare const MsgTakeResponse: { - encode(message: MsgTakeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgTakeResponse; + typeUrl: string; + encode(message: MsgTakeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgTakeResponse; fromJSON(object: any): MsgTakeResponse; toJSON(message: MsgTakeResponse): unknown; fromPartial(object: Partial): MsgTakeResponse; @@ -671,8 +677,9 @@ export declare const MsgTakeResponse: { toProtoMsg(message: MsgTakeResponse): MsgTakeResponseProtoMsg; }; export declare const MsgUpdateBasketFee: { - encode(message: MsgUpdateBasketFee, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateBasketFee; + typeUrl: string; + encode(message: MsgUpdateBasketFee, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBasketFee; fromJSON(object: any): MsgUpdateBasketFee; toJSON(message: MsgUpdateBasketFee): unknown; fromPartial(object: Partial): MsgUpdateBasketFee; @@ -685,8 +692,9 @@ export declare const MsgUpdateBasketFee: { toProtoMsg(message: MsgUpdateBasketFee): MsgUpdateBasketFeeProtoMsg; }; export declare const MsgUpdateBasketFeeResponse: { - encode(_: MsgUpdateBasketFeeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateBasketFeeResponse; + typeUrl: string; + encode(_: MsgUpdateBasketFeeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBasketFeeResponse; fromJSON(_: any): MsgUpdateBasketFeeResponse; toJSON(_: MsgUpdateBasketFeeResponse): unknown; fromPartial(_: Partial): MsgUpdateBasketFeeResponse; @@ -698,8 +706,9 @@ export declare const MsgUpdateBasketFeeResponse: { toProtoMsg(message: MsgUpdateBasketFeeResponse): MsgUpdateBasketFeeResponseProtoMsg; }; export declare const MsgUpdateCurator: { - encode(message: MsgUpdateCurator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateCurator; + typeUrl: string; + encode(message: MsgUpdateCurator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateCurator; fromJSON(object: any): MsgUpdateCurator; toJSON(message: MsgUpdateCurator): unknown; fromPartial(object: Partial): MsgUpdateCurator; @@ -712,8 +721,9 @@ export declare const MsgUpdateCurator: { toProtoMsg(message: MsgUpdateCurator): MsgUpdateCuratorProtoMsg; }; export declare const MsgUpdateCuratorResponse: { - encode(_: MsgUpdateCuratorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateCuratorResponse; + typeUrl: string; + encode(_: MsgUpdateCuratorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateCuratorResponse; fromJSON(_: any): MsgUpdateCuratorResponse; toJSON(_: MsgUpdateCuratorResponse): unknown; fromPartial(_: Partial): MsgUpdateCuratorResponse; @@ -725,8 +735,9 @@ export declare const MsgUpdateCuratorResponse: { toProtoMsg(message: MsgUpdateCuratorResponse): MsgUpdateCuratorResponseProtoMsg; }; export declare const MsgUpdateDateCriteria: { - encode(message: MsgUpdateDateCriteria, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateDateCriteria; + typeUrl: string; + encode(message: MsgUpdateDateCriteria, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateDateCriteria; fromJSON(object: any): MsgUpdateDateCriteria; toJSON(message: MsgUpdateDateCriteria): unknown; fromPartial(object: Partial): MsgUpdateDateCriteria; @@ -739,8 +750,9 @@ export declare const MsgUpdateDateCriteria: { toProtoMsg(message: MsgUpdateDateCriteria): MsgUpdateDateCriteriaProtoMsg; }; export declare const MsgUpdateDateCriteriaResponse: { - encode(_: MsgUpdateDateCriteriaResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateDateCriteriaResponse; + typeUrl: string; + encode(_: MsgUpdateDateCriteriaResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateDateCriteriaResponse; fromJSON(_: any): MsgUpdateDateCriteriaResponse; toJSON(_: MsgUpdateDateCriteriaResponse): unknown; fromPartial(_: Partial): MsgUpdateDateCriteriaResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/basket/v1/types.d.ts b/packages/api/types/codegen/regen/ecocredit/basket/v1/types.d.ts index b605d29..d6f7a8c 100644 --- a/packages/api/types/codegen/regen/ecocredit/basket/v1/types.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/basket/v1/types.d.ts @@ -1,6 +1,6 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; import { Duration, DurationAmino, DurationSDKType } from "../../../../google/protobuf/duration"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** BasketCredit represents the information for a credit batch inside a basket. */ export interface BasketCredit { /** batch_denom is the unique ID of the credit batch. */ @@ -19,13 +19,13 @@ export interface BasketCreditProtoMsg { /** BasketCredit represents the information for a credit batch inside a basket. */ export interface BasketCreditAmino { /** batch_denom is the unique ID of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * amount is the number of credits being put into or taken out of the basket. * Decimal values are acceptable within the precision of the corresponding * credit type for this batch. */ - amount: string; + amount?: string; } export interface BasketCreditAminoMsg { type: "/regen.ecocredit.basket.v1.BasketCredit"; @@ -46,7 +46,7 @@ export interface DateCriteria { * allowed into the basket. At most only one of `start_date_window`, * `min_start_date`, and `years_in_the_past` can be set for a basket. */ - minStartDate: Timestamp; + minStartDate?: Timestamp; /** * start_date_window (optional) is a duration of time measured into the past * which sets a cutoff for batch start dates when adding new credits to the @@ -55,7 +55,7 @@ export interface DateCriteria { * basket. At most only one of `start_date_window`, `min_start_date`, and * `years_in_the_past` can be set for a basket. */ - startDateWindow: Duration; + startDateWindow?: Duration; /** * years_in_the_past (optional) is the number of years into the past which * sets a cutoff for the batch start dates when adding new credits to the @@ -82,7 +82,7 @@ export interface DateCriteriaAmino { * allowed into the basket. At most only one of `start_date_window`, * `min_start_date`, and `years_in_the_past` can be set for a basket. */ - min_start_date?: TimestampAmino; + min_start_date?: string; /** * start_date_window (optional) is a duration of time measured into the past * which sets a cutoff for batch start dates when adding new credits to the @@ -102,7 +102,7 @@ export interface DateCriteriaAmino { * * Since Revision 1 */ - years_in_the_past: number; + years_in_the_past?: number; } export interface DateCriteriaAminoMsg { type: "/regen.ecocredit.basket.v1.DateCriteria"; @@ -113,13 +113,14 @@ export interface DateCriteriaAminoMsg { * At most, only one of the values should be set. */ export interface DateCriteriaSDKType { - min_start_date: TimestampSDKType; - start_date_window: DurationSDKType; + min_start_date?: TimestampSDKType; + start_date_window?: DurationSDKType; years_in_the_past: number; } export declare const BasketCredit: { - encode(message: BasketCredit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BasketCredit; + typeUrl: string; + encode(message: BasketCredit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BasketCredit; fromJSON(object: any): BasketCredit; toJSON(message: BasketCredit): unknown; fromPartial(object: Partial): BasketCredit; @@ -131,8 +132,9 @@ export declare const BasketCredit: { toProtoMsg(message: BasketCredit): BasketCreditProtoMsg; }; export declare const DateCriteria: { - encode(message: DateCriteria, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DateCriteria; + typeUrl: string; + encode(message: DateCriteria, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DateCriteria; fromJSON(object: any): DateCriteria; toJSON(message: DateCriteria): unknown; fromPartial(object: Partial): DateCriteria; diff --git a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/events.d.ts b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/events.d.ts index d1de922..fbe2e6d 100644 --- a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/events.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/events.d.ts @@ -1,9 +1,8 @@ -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** EventSell is an event emitted when a sell order is created. */ export interface EventSell { /** sell_order_id is the unique identifier of the sell order that was created. */ - sellOrderId: Long; + sellOrderId: bigint; } export interface EventSellProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.EventSell"; @@ -12,7 +11,7 @@ export interface EventSellProtoMsg { /** EventSell is an event emitted when a sell order is created. */ export interface EventSellAmino { /** sell_order_id is the unique identifier of the sell order that was created. */ - sell_order_id: string; + sell_order_id?: string; } export interface EventSellAminoMsg { type: "/regen.ecocredit.marketplace.v1.EventSell"; @@ -20,7 +19,7 @@ export interface EventSellAminoMsg { } /** EventSell is an event emitted when a sell order is created. */ export interface EventSellSDKType { - sell_order_id: Long; + sell_order_id: bigint; } /** EventBuyDirect is an event emitted when a direct buy order is processed. */ export interface EventBuyDirect { @@ -28,7 +27,7 @@ export interface EventBuyDirect { * sell_order_id is the unique identifier of the sell order that credits were * purchased from. */ - sellOrderId: Long; + sellOrderId: bigint; } export interface EventBuyDirectProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.EventBuyDirect"; @@ -40,7 +39,7 @@ export interface EventBuyDirectAmino { * sell_order_id is the unique identifier of the sell order that credits were * purchased from. */ - sell_order_id: string; + sell_order_id?: string; } export interface EventBuyDirectAminoMsg { type: "/regen.ecocredit.marketplace.v1.EventBuyDirect"; @@ -48,12 +47,12 @@ export interface EventBuyDirectAminoMsg { } /** EventBuyDirect is an event emitted when a direct buy order is processed. */ export interface EventBuyDirectSDKType { - sell_order_id: Long; + sell_order_id: bigint; } /** EventUpdateSellOrder is an event emitted when a sell order is updated. */ export interface EventUpdateSellOrder { /** sell_order_id is the unique identifier of the sell order that was updated. */ - sellOrderId: Long; + sellOrderId: bigint; } export interface EventUpdateSellOrderProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.EventUpdateSellOrder"; @@ -62,7 +61,7 @@ export interface EventUpdateSellOrderProtoMsg { /** EventUpdateSellOrder is an event emitted when a sell order is updated. */ export interface EventUpdateSellOrderAmino { /** sell_order_id is the unique identifier of the sell order that was updated. */ - sell_order_id: string; + sell_order_id?: string; } export interface EventUpdateSellOrderAminoMsg { type: "/regen.ecocredit.marketplace.v1.EventUpdateSellOrder"; @@ -70,7 +69,7 @@ export interface EventUpdateSellOrderAminoMsg { } /** EventUpdateSellOrder is an event emitted when a sell order is updated. */ export interface EventUpdateSellOrderSDKType { - sell_order_id: Long; + sell_order_id: bigint; } /** EventCancelSellOrder is an event emitted when a sell order is cancelled. */ export interface EventCancelSellOrder { @@ -78,7 +77,7 @@ export interface EventCancelSellOrder { * sell_order_id is the unique identifier of the sell order that was * cancelled. */ - sellOrderId: Long; + sellOrderId: bigint; } export interface EventCancelSellOrderProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.EventCancelSellOrder"; @@ -90,7 +89,7 @@ export interface EventCancelSellOrderAmino { * sell_order_id is the unique identifier of the sell order that was * cancelled. */ - sell_order_id: string; + sell_order_id?: string; } export interface EventCancelSellOrderAminoMsg { type: "/regen.ecocredit.marketplace.v1.EventCancelSellOrder"; @@ -98,7 +97,7 @@ export interface EventCancelSellOrderAminoMsg { } /** EventCancelSellOrder is an event emitted when a sell order is cancelled. */ export interface EventCancelSellOrderSDKType { - sell_order_id: Long; + sell_order_id: bigint; } /** * EventAllowDenom is an event emitted when a new denom is added for use in the @@ -124,7 +123,7 @@ export interface EventAllowDenomAmino { * denom is the bank denom (e.g. ibc/GLKHDSG423SGS) added to the list of * allowed denoms for use in the marketplace. */ - denom: string; + denom?: string; } export interface EventAllowDenomAminoMsg { type: "/regen.ecocredit.marketplace.v1.EventAllowDenom"; @@ -165,7 +164,7 @@ export interface EventRemoveAllowedDenomAmino { * denom is the bank denom (e.g. ibc/GLKHDSG423SGS) removed from the list of * allowed denoms for use in the marketplace. */ - denom: string; + denom?: string; } export interface EventRemoveAllowedDenomAminoMsg { type: "/regen.ecocredit.marketplace.v1.EventRemoveAllowedDenom"; @@ -181,8 +180,9 @@ export interface EventRemoveAllowedDenomSDKType { denom: string; } export declare const EventSell: { - encode(message: EventSell, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventSell; + typeUrl: string; + encode(message: EventSell, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventSell; fromJSON(object: any): EventSell; toJSON(message: EventSell): unknown; fromPartial(object: Partial): EventSell; @@ -194,8 +194,9 @@ export declare const EventSell: { toProtoMsg(message: EventSell): EventSellProtoMsg; }; export declare const EventBuyDirect: { - encode(message: EventBuyDirect, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventBuyDirect; + typeUrl: string; + encode(message: EventBuyDirect, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventBuyDirect; fromJSON(object: any): EventBuyDirect; toJSON(message: EventBuyDirect): unknown; fromPartial(object: Partial): EventBuyDirect; @@ -207,8 +208,9 @@ export declare const EventBuyDirect: { toProtoMsg(message: EventBuyDirect): EventBuyDirectProtoMsg; }; export declare const EventUpdateSellOrder: { - encode(message: EventUpdateSellOrder, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateSellOrder; + typeUrl: string; + encode(message: EventUpdateSellOrder, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateSellOrder; fromJSON(object: any): EventUpdateSellOrder; toJSON(message: EventUpdateSellOrder): unknown; fromPartial(object: Partial): EventUpdateSellOrder; @@ -220,8 +222,9 @@ export declare const EventUpdateSellOrder: { toProtoMsg(message: EventUpdateSellOrder): EventUpdateSellOrderProtoMsg; }; export declare const EventCancelSellOrder: { - encode(message: EventCancelSellOrder, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCancelSellOrder; + typeUrl: string; + encode(message: EventCancelSellOrder, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCancelSellOrder; fromJSON(object: any): EventCancelSellOrder; toJSON(message: EventCancelSellOrder): unknown; fromPartial(object: Partial): EventCancelSellOrder; @@ -233,8 +236,9 @@ export declare const EventCancelSellOrder: { toProtoMsg(message: EventCancelSellOrder): EventCancelSellOrderProtoMsg; }; export declare const EventAllowDenom: { - encode(message: EventAllowDenom, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventAllowDenom; + typeUrl: string; + encode(message: EventAllowDenom, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventAllowDenom; fromJSON(object: any): EventAllowDenom; toJSON(message: EventAllowDenom): unknown; fromPartial(object: Partial): EventAllowDenom; @@ -246,8 +250,9 @@ export declare const EventAllowDenom: { toProtoMsg(message: EventAllowDenom): EventAllowDenomProtoMsg; }; export declare const EventRemoveAllowedDenom: { - encode(message: EventRemoveAllowedDenom, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventRemoveAllowedDenom; + typeUrl: string; + encode(message: EventRemoveAllowedDenom, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventRemoveAllowedDenom; fromJSON(object: any): EventRemoveAllowedDenom; toJSON(message: EventRemoveAllowedDenom): unknown; fromPartial(object: Partial): EventRemoveAllowedDenom; diff --git a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.d.ts b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.d.ts index 17ec7af..2ddfd5f 100644 --- a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.d.ts @@ -1,12 +1,11 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../../cosmos/base/query/v1beta1/pagination"; import { AllowedDenom, AllowedDenomAmino, AllowedDenomSDKType } from "./state"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** QuerySellOrderRequest is the Query/SellOrder request type. */ export interface QuerySellOrderRequest { /** sell_order_id is the id of the requested sell order. */ - sellOrderId: Long; + sellOrderId: bigint; } export interface QuerySellOrderRequestProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrderRequest"; @@ -15,7 +14,7 @@ export interface QuerySellOrderRequestProtoMsg { /** QuerySellOrderRequest is the Query/SellOrder request type. */ export interface QuerySellOrderRequestAmino { /** sell_order_id is the id of the requested sell order. */ - sell_order_id: string; + sell_order_id?: string; } export interface QuerySellOrderRequestAminoMsg { type: "/regen.ecocredit.marketplace.v1.QuerySellOrderRequest"; @@ -23,12 +22,12 @@ export interface QuerySellOrderRequestAminoMsg { } /** QuerySellOrderRequest is the Query/SellOrder request type. */ export interface QuerySellOrderRequestSDKType { - sell_order_id: Long; + sell_order_id: bigint; } /** QuerySellOrderResponse is the Query/SellOrder response type. */ export interface QuerySellOrderResponse { /** sell_order contains all information related to a sell order. */ - sellOrder: SellOrderInfo; + sellOrder?: SellOrderInfo; } export interface QuerySellOrderResponseProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrderResponse"; @@ -45,12 +44,12 @@ export interface QuerySellOrderResponseAminoMsg { } /** QuerySellOrderResponse is the Query/SellOrder response type. */ export interface QuerySellOrderResponseSDKType { - sell_order: SellOrderInfoSDKType; + sell_order?: SellOrderInfoSDKType; } /** QuerySellOrdersRequest is the Query/SellOrders request type. */ export interface QuerySellOrdersRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QuerySellOrdersRequestProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrdersRequest"; @@ -67,14 +66,14 @@ export interface QuerySellOrdersRequestAminoMsg { } /** QuerySellOrdersRequest is the Query/SellOrders request type. */ export interface QuerySellOrdersRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QuerySellOrdersResponse is the Query/SellOrders response type. */ export interface QuerySellOrdersResponse { /** sell_orders is a list of sell orders. */ sellOrders: SellOrderInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QuerySellOrdersResponseProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrdersResponse"; @@ -83,7 +82,7 @@ export interface QuerySellOrdersResponseProtoMsg { /** QuerySellOrdersResponse is the Query/SellOrders response type. */ export interface QuerySellOrdersResponseAmino { /** sell_orders is a list of sell orders. */ - sell_orders: SellOrderInfoAmino[]; + sell_orders?: SellOrderInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -94,7 +93,7 @@ export interface QuerySellOrdersResponseAminoMsg { /** QuerySellOrdersResponse is the Query/SellOrders response type. */ export interface QuerySellOrdersResponseSDKType { sell_orders: SellOrderInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QuerySellOrdersByBatchRequest is the Query/SellOrdersByBatch @@ -104,7 +103,7 @@ export interface QuerySellOrdersByBatchRequest { /** batch_denom is an ecocredit denom */ batchDenom: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QuerySellOrdersByBatchRequestProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrdersByBatchRequest"; @@ -116,7 +115,7 @@ export interface QuerySellOrdersByBatchRequestProtoMsg { */ export interface QuerySellOrdersByBatchRequestAmino { /** batch_denom is an ecocredit denom */ - batch_denom: string; + batch_denom?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -130,7 +129,7 @@ export interface QuerySellOrdersByBatchRequestAminoMsg { */ export interface QuerySellOrdersByBatchRequestSDKType { batch_denom: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QuerySellOrdersByBatchResponse is the Query/SellOrdersByBatch @@ -140,7 +139,7 @@ export interface QuerySellOrdersByBatchResponse { /** sell_orders is a list of sell orders. */ sellOrders: SellOrderInfo[]; /** pagination defines an optional pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QuerySellOrdersByBatchResponseProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrdersByBatchResponse"; @@ -152,7 +151,7 @@ export interface QuerySellOrdersByBatchResponseProtoMsg { */ export interface QuerySellOrdersByBatchResponseAmino { /** sell_orders is a list of sell orders. */ - sell_orders: SellOrderInfoAmino[]; + sell_orders?: SellOrderInfoAmino[]; /** pagination defines an optional pagination for the response. */ pagination?: PageResponseAmino; } @@ -166,7 +165,7 @@ export interface QuerySellOrdersByBatchResponseAminoMsg { */ export interface QuerySellOrdersByBatchResponseSDKType { sell_orders: SellOrderInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QuerySellOrdersBySellerRequest is the Query/SellOrdersBySeller request @@ -176,7 +175,7 @@ export interface QuerySellOrdersBySellerRequest { /** seller is the address of the account that is selling credits. */ seller: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QuerySellOrdersBySellerRequestProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrdersBySellerRequest"; @@ -188,7 +187,7 @@ export interface QuerySellOrdersBySellerRequestProtoMsg { */ export interface QuerySellOrdersBySellerRequestAmino { /** seller is the address of the account that is selling credits. */ - seller: string; + seller?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -202,7 +201,7 @@ export interface QuerySellOrdersBySellerRequestAminoMsg { */ export interface QuerySellOrdersBySellerRequestSDKType { seller: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QuerySellOrdersBySellerResponse is the Query/SellOrdersBySellerResponse @@ -212,7 +211,7 @@ export interface QuerySellOrdersBySellerResponse { /** sell_orders is a list of sell orders. */ sellOrders: SellOrderInfo[]; /** pagination defines an optional pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QuerySellOrdersBySellerResponseProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QuerySellOrdersBySellerResponse"; @@ -224,7 +223,7 @@ export interface QuerySellOrdersBySellerResponseProtoMsg { */ export interface QuerySellOrdersBySellerResponseAmino { /** sell_orders is a list of sell orders. */ - sell_orders: SellOrderInfoAmino[]; + sell_orders?: SellOrderInfoAmino[]; /** pagination defines an optional pagination for the response. */ pagination?: PageResponseAmino; } @@ -238,12 +237,12 @@ export interface QuerySellOrdersBySellerResponseAminoMsg { */ export interface QuerySellOrdersBySellerResponseSDKType { sell_orders: SellOrderInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryAllowedDenomsRequest is the Query/AllowedDenoms request type. */ export interface QueryAllowedDenomsRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllowedDenomsRequestProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QueryAllowedDenomsRequest"; @@ -260,7 +259,7 @@ export interface QueryAllowedDenomsRequestAminoMsg { } /** QueryAllowedDenomsRequest is the Query/AllowedDenoms request type. */ export interface QueryAllowedDenomsRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryAllowedDenomsResponse is the Query/AllowedDenoms response type. */ export interface QueryAllowedDenomsResponse { @@ -270,7 +269,7 @@ export interface QueryAllowedDenomsResponse { */ allowedDenoms: AllowedDenom[]; /** pagination defines an optional pagination for the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllowedDenomsResponseProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.QueryAllowedDenomsResponse"; @@ -282,7 +281,7 @@ export interface QueryAllowedDenomsResponseAmino { * allowed_denoms is a list of coin denoms allowed to use in the ask price of * sell orders. */ - allowed_denoms: AllowedDenomAmino[]; + allowed_denoms?: AllowedDenomAmino[]; /** pagination defines an optional pagination for the response. */ pagination?: PageResponseAmino; } @@ -293,12 +292,12 @@ export interface QueryAllowedDenomsResponseAminoMsg { /** QueryAllowedDenomsResponse is the Query/AllowedDenoms response type. */ export interface QueryAllowedDenomsResponseSDKType { allowed_denoms: AllowedDenomSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** SellOrderInfo is the human-readable sell order information. */ export interface SellOrderInfo { /** id is the unique ID of sell order. */ - id: Long; + id: bigint; /** seller is the address of the account that is selling credits. */ seller: string; /** batch_denom is denom of the credit batch being sold. */ @@ -323,7 +322,7 @@ export interface SellOrderInfo { * expiration is an optional timestamp when the sell order expires. When the * expiration time is reached, the sell order is removed from state. */ - expiration: Timestamp; + expiration?: Timestamp; } export interface SellOrderInfoProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.SellOrderInfo"; @@ -332,32 +331,32 @@ export interface SellOrderInfoProtoMsg { /** SellOrderInfo is the human-readable sell order information. */ export interface SellOrderInfoAmino { /** id is the unique ID of sell order. */ - id: string; + id?: string; /** seller is the address of the account that is selling credits. */ - seller: string; + seller?: string; /** batch_denom is denom of the credit batch being sold. */ - batch_denom: string; + batch_denom?: string; /** quantity is the decimal quantity of credits being sold. */ - quantity: string; + quantity?: string; /** ask_denom is the denom used in the ask price of the sell order. */ - ask_denom: string; + ask_denom?: string; /** * ask_amount is the amount that the seller is asking for each credit unit of * the batch. Each credit unit of the batch will be sold for at least the * ask_amount. */ - ask_amount: string; + ask_amount?: string; /** * disable_auto_retire disables auto-retirement of credits which allows a * buyer to disable auto-retirement in their buy order enabling them to * resell the credits to another buyer. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * expiration is an optional timestamp when the sell order expires. When the * expiration time is reached, the sell order is removed from state. */ - expiration?: TimestampAmino; + expiration?: string; } export interface SellOrderInfoAminoMsg { type: "/regen.ecocredit.marketplace.v1.SellOrderInfo"; @@ -365,18 +364,19 @@ export interface SellOrderInfoAminoMsg { } /** SellOrderInfo is the human-readable sell order information. */ export interface SellOrderInfoSDKType { - id: Long; + id: bigint; seller: string; batch_denom: string; quantity: string; ask_denom: string; ask_amount: string; disable_auto_retire: boolean; - expiration: TimestampSDKType; + expiration?: TimestampSDKType; } export declare const QuerySellOrderRequest: { - encode(message: QuerySellOrderRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrderRequest; + typeUrl: string; + encode(message: QuerySellOrderRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrderRequest; fromJSON(object: any): QuerySellOrderRequest; toJSON(message: QuerySellOrderRequest): unknown; fromPartial(object: Partial): QuerySellOrderRequest; @@ -388,8 +388,9 @@ export declare const QuerySellOrderRequest: { toProtoMsg(message: QuerySellOrderRequest): QuerySellOrderRequestProtoMsg; }; export declare const QuerySellOrderResponse: { - encode(message: QuerySellOrderResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrderResponse; + typeUrl: string; + encode(message: QuerySellOrderResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrderResponse; fromJSON(object: any): QuerySellOrderResponse; toJSON(message: QuerySellOrderResponse): unknown; fromPartial(object: Partial): QuerySellOrderResponse; @@ -401,8 +402,9 @@ export declare const QuerySellOrderResponse: { toProtoMsg(message: QuerySellOrderResponse): QuerySellOrderResponseProtoMsg; }; export declare const QuerySellOrdersRequest: { - encode(message: QuerySellOrdersRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrdersRequest; + typeUrl: string; + encode(message: QuerySellOrdersRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrdersRequest; fromJSON(object: any): QuerySellOrdersRequest; toJSON(message: QuerySellOrdersRequest): unknown; fromPartial(object: Partial): QuerySellOrdersRequest; @@ -414,8 +416,9 @@ export declare const QuerySellOrdersRequest: { toProtoMsg(message: QuerySellOrdersRequest): QuerySellOrdersRequestProtoMsg; }; export declare const QuerySellOrdersResponse: { - encode(message: QuerySellOrdersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrdersResponse; + typeUrl: string; + encode(message: QuerySellOrdersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrdersResponse; fromJSON(object: any): QuerySellOrdersResponse; toJSON(message: QuerySellOrdersResponse): unknown; fromPartial(object: Partial): QuerySellOrdersResponse; @@ -427,8 +430,9 @@ export declare const QuerySellOrdersResponse: { toProtoMsg(message: QuerySellOrdersResponse): QuerySellOrdersResponseProtoMsg; }; export declare const QuerySellOrdersByBatchRequest: { - encode(message: QuerySellOrdersByBatchRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrdersByBatchRequest; + typeUrl: string; + encode(message: QuerySellOrdersByBatchRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrdersByBatchRequest; fromJSON(object: any): QuerySellOrdersByBatchRequest; toJSON(message: QuerySellOrdersByBatchRequest): unknown; fromPartial(object: Partial): QuerySellOrdersByBatchRequest; @@ -440,8 +444,9 @@ export declare const QuerySellOrdersByBatchRequest: { toProtoMsg(message: QuerySellOrdersByBatchRequest): QuerySellOrdersByBatchRequestProtoMsg; }; export declare const QuerySellOrdersByBatchResponse: { - encode(message: QuerySellOrdersByBatchResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrdersByBatchResponse; + typeUrl: string; + encode(message: QuerySellOrdersByBatchResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrdersByBatchResponse; fromJSON(object: any): QuerySellOrdersByBatchResponse; toJSON(message: QuerySellOrdersByBatchResponse): unknown; fromPartial(object: Partial): QuerySellOrdersByBatchResponse; @@ -453,8 +458,9 @@ export declare const QuerySellOrdersByBatchResponse: { toProtoMsg(message: QuerySellOrdersByBatchResponse): QuerySellOrdersByBatchResponseProtoMsg; }; export declare const QuerySellOrdersBySellerRequest: { - encode(message: QuerySellOrdersBySellerRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrdersBySellerRequest; + typeUrl: string; + encode(message: QuerySellOrdersBySellerRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrdersBySellerRequest; fromJSON(object: any): QuerySellOrdersBySellerRequest; toJSON(message: QuerySellOrdersBySellerRequest): unknown; fromPartial(object: Partial): QuerySellOrdersBySellerRequest; @@ -466,8 +472,9 @@ export declare const QuerySellOrdersBySellerRequest: { toProtoMsg(message: QuerySellOrdersBySellerRequest): QuerySellOrdersBySellerRequestProtoMsg; }; export declare const QuerySellOrdersBySellerResponse: { - encode(message: QuerySellOrdersBySellerResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySellOrdersBySellerResponse; + typeUrl: string; + encode(message: QuerySellOrdersBySellerResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySellOrdersBySellerResponse; fromJSON(object: any): QuerySellOrdersBySellerResponse; toJSON(message: QuerySellOrdersBySellerResponse): unknown; fromPartial(object: Partial): QuerySellOrdersBySellerResponse; @@ -479,8 +486,9 @@ export declare const QuerySellOrdersBySellerResponse: { toProtoMsg(message: QuerySellOrdersBySellerResponse): QuerySellOrdersBySellerResponseProtoMsg; }; export declare const QueryAllowedDenomsRequest: { - encode(message: QueryAllowedDenomsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowedDenomsRequest; + typeUrl: string; + encode(message: QueryAllowedDenomsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowedDenomsRequest; fromJSON(object: any): QueryAllowedDenomsRequest; toJSON(message: QueryAllowedDenomsRequest): unknown; fromPartial(object: Partial): QueryAllowedDenomsRequest; @@ -492,8 +500,9 @@ export declare const QueryAllowedDenomsRequest: { toProtoMsg(message: QueryAllowedDenomsRequest): QueryAllowedDenomsRequestProtoMsg; }; export declare const QueryAllowedDenomsResponse: { - encode(message: QueryAllowedDenomsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowedDenomsResponse; + typeUrl: string; + encode(message: QueryAllowedDenomsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowedDenomsResponse; fromJSON(object: any): QueryAllowedDenomsResponse; toJSON(message: QueryAllowedDenomsResponse): unknown; fromPartial(object: Partial): QueryAllowedDenomsResponse; @@ -505,8 +514,9 @@ export declare const QueryAllowedDenomsResponse: { toProtoMsg(message: QueryAllowedDenomsResponse): QueryAllowedDenomsResponseProtoMsg; }; export declare const SellOrderInfo: { - encode(message: SellOrderInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SellOrderInfo; + typeUrl: string; + encode(message: SellOrderInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SellOrderInfo; fromJSON(object: any): SellOrderInfo; toJSON(message: SellOrderInfo): unknown; fromPartial(object: Partial): SellOrderInfo; diff --git a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.lcd.d.ts b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.lcd.d.ts index 7662f3c..ca3ff49 100644 --- a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QuerySellOrderRequest, QuerySellOrderResponseSDKType, QuerySellOrdersRequest, QuerySellOrdersResponseSDKType, QuerySellOrdersByBatchRequest, QuerySellOrdersByBatchResponseSDKType, QuerySellOrdersBySellerRequest, QuerySellOrdersBySellerResponseSDKType, QueryAllowedDenomsRequest, QueryAllowedDenomsResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/state.d.ts b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/state.d.ts index e7cd829..dc5a1be 100644 --- a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/state.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/state.d.ts @@ -1,24 +1,23 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** SellOrder represents the information for a sell order. */ export interface SellOrder { /** id is the unique ID of sell order. */ - id: Long; + id: bigint; /** seller is the address of the account that is selling credits. */ seller: Uint8Array; /** * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links a sell order to a credit batch. */ - batchKey: Long; + batchKey: bigint; /** quantity is the decimal quantity of credits being sold. */ quantity: string; /** * market_id is the market in which this sell order exists and specifies * the bank_denom that ask_amount corresponds to forming the ask_price. */ - marketId: Long; + marketId: bigint; /** * ask_amount is the integer amount (encoded as a string) that the seller is * asking for each credit unit of the batch. Each credit unit of the batch @@ -36,7 +35,7 @@ export interface SellOrder { * expiration is an optional timestamp when the sell order expires. When the * expiration time is reached, the sell order is removed from state. */ - expiration: Timestamp; + expiration?: Timestamp; /** * maker indicates that this is a maker order, meaning that when it hit * the order book, there were no matching buy orders. @@ -50,44 +49,44 @@ export interface SellOrderProtoMsg { /** SellOrder represents the information for a sell order. */ export interface SellOrderAmino { /** id is the unique ID of sell order. */ - id: string; + id?: string; /** seller is the address of the account that is selling credits. */ - seller: Uint8Array; + seller?: string; /** * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links a sell order to a credit batch. */ - batch_key: string; + batch_key?: string; /** quantity is the decimal quantity of credits being sold. */ - quantity: string; + quantity?: string; /** * market_id is the market in which this sell order exists and specifies * the bank_denom that ask_amount corresponds to forming the ask_price. */ - market_id: string; + market_id?: string; /** * ask_amount is the integer amount (encoded as a string) that the seller is * asking for each credit unit of the batch. Each credit unit of the batch * will be sold for at least the ask_amount. The ask_amount corresponds to the * Market.denom to form the ask price. */ - ask_amount: string; + ask_amount?: string; /** * disable_auto_retire disables auto-retirement of credits which allows a * buyer to disable auto-retirement in their buy order enabling them to * resell the credits to another buyer. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * expiration is an optional timestamp when the sell order expires. When the * expiration time is reached, the sell order is removed from state. */ - expiration?: TimestampAmino; + expiration?: string; /** * maker indicates that this is a maker order, meaning that when it hit * the order book, there were no matching buy orders. */ - maker: boolean; + maker?: boolean; } export interface SellOrderAminoMsg { type: "/regen.ecocredit.marketplace.v1.SellOrder"; @@ -95,14 +94,14 @@ export interface SellOrderAminoMsg { } /** SellOrder represents the information for a sell order. */ export interface SellOrderSDKType { - id: Long; + id: bigint; seller: Uint8Array; - batch_key: Long; + batch_key: bigint; quantity: string; - market_id: Long; + market_id: bigint; ask_amount: string; disable_auto_retire: boolean; - expiration: TimestampSDKType; + expiration?: TimestampSDKType; maker: boolean; } /** AllowedDenom represents the information for an allowed ask/bid denom. */ @@ -128,18 +127,18 @@ export interface AllowedDenomProtoMsg { /** AllowedDenom represents the information for an allowed ask/bid denom. */ export interface AllowedDenomAmino { /** denom is the bank denom to allow (ex. ibc/GLKHDSG423SGS) */ - bank_denom: string; + bank_denom?: string; /** * display_denom is the denom to display to the user and is informational. * Because the denom is likely an IBC denom, this should be chosen by * governance to represent the consensus trusted name of the denom. */ - display_denom: string; + display_denom?: string; /** * exponent is the exponent that relates the denom to the display_denom and is * informational */ - exponent: number; + exponent?: number; } export interface AllowedDenomAminoMsg { type: "/regen.ecocredit.marketplace.v1.AllowedDenom"; @@ -164,7 +163,7 @@ export interface AllowedDenomSDKType { */ export interface Market { /** id is the unique ID of the market. */ - id: Long; + id: bigint; /** credit_type_abbrev is the abbreviation of the credit type. */ creditTypeAbbrev: string; /** bank_denom is an allowed bank denom. */ @@ -215,11 +214,11 @@ export interface MarketProtoMsg { */ export interface MarketAmino { /** id is the unique ID of the market. */ - id: string; + id?: string; /** credit_type_abbrev is the abbreviation of the credit type. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; /** bank_denom is an allowed bank denom. */ - bank_denom: string; + bank_denom?: string; /** * precision_modifier is an optional modifier used to convert arbitrary * precision integer bank amounts to uint32 values used for sorting in the @@ -247,7 +246,7 @@ export interface MarketAmino { * will need to adjust precision_modifier to allow for higher prices in * exchange for less precision at the lower end. */ - precision_modifier: number; + precision_modifier?: number; } export interface MarketAminoMsg { type: "/regen.ecocredit.marketplace.v1.Market"; @@ -265,14 +264,15 @@ export interface MarketAminoMsg { * with care. */ export interface MarketSDKType { - id: Long; + id: bigint; credit_type_abbrev: string; bank_denom: string; precision_modifier: number; } export declare const SellOrder: { - encode(message: SellOrder, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SellOrder; + typeUrl: string; + encode(message: SellOrder, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SellOrder; fromJSON(object: any): SellOrder; toJSON(message: SellOrder): unknown; fromPartial(object: Partial): SellOrder; @@ -284,8 +284,9 @@ export declare const SellOrder: { toProtoMsg(message: SellOrder): SellOrderProtoMsg; }; export declare const AllowedDenom: { - encode(message: AllowedDenom, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AllowedDenom; + typeUrl: string; + encode(message: AllowedDenom, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AllowedDenom; fromJSON(object: any): AllowedDenom; toJSON(message: AllowedDenom): unknown; fromPartial(object: Partial): AllowedDenom; @@ -297,8 +298,9 @@ export declare const AllowedDenom: { toProtoMsg(message: AllowedDenom): AllowedDenomProtoMsg; }; export declare const Market: { - encode(message: Market, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Market; + typeUrl: string; + encode(message: Market, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Market; fromJSON(object: any): Market; toJSON(message: Market): unknown; fromPartial(object: Partial): Market; diff --git a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/tx.d.ts b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/tx.d.ts index 04c086e..9780ba8 100644 --- a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/tx.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/tx.d.ts @@ -1,7 +1,6 @@ import { Coin, CoinAmino, CoinSDKType } from "../../../../cosmos/base/v1beta1/coin"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** MsgSell is the Msg/Sell request type. */ export interface MsgSell { /** seller is the address of the account that is selling credits. */ @@ -16,9 +15,9 @@ export interface MsgSellProtoMsg { /** MsgSell is the Msg/Sell request type. */ export interface MsgSellAmino { /** seller is the address of the account that is selling credits. */ - seller: string; + seller?: string; /** orders are the sell orders being created. */ - orders: MsgSell_OrderAmino[]; + orders?: MsgSell_OrderAmino[]; } export interface MsgSellAminoMsg { type: "regen.marketplace/MsgSell"; @@ -46,7 +45,7 @@ export interface MsgSell_Order { * batch_denom. Each credit unit of the batch will be sold for at least the * ask_price or more. */ - askPrice: Coin; + askPrice?: Coin; /** * disable_auto_retire disables auto-retirement of credits which allows a * buyer to disable auto-retirement in their buy order enabling them to @@ -57,7 +56,7 @@ export interface MsgSell_Order { * expiration is an optional timestamp when the sell order expires. When the * expiration time is reached, the sell order is removed from state. */ - expiration: Timestamp; + expiration?: Timestamp; } export interface MsgSell_OrderProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.Order"; @@ -66,7 +65,7 @@ export interface MsgSell_OrderProtoMsg { /** Order is the content of a new sell order. */ export interface MsgSell_OrderAmino { /** batch_denom is the credit batch being sold. */ - batch_denom: string; + batch_denom?: string; /** * quantity is the quantity of credits being sold from this batch. If it is * less then the balance of credits the owner has available at the time this @@ -74,7 +73,7 @@ export interface MsgSell_OrderAmino { * owner's balance. However, if the balance of credits is less than this * quantity at the time the sell order is created, the operation will fail. */ - quantity: string; + quantity?: string; /** * ask_price is the price the seller is asking for each unit of the * batch_denom. Each credit unit of the batch will be sold for at least the @@ -86,12 +85,12 @@ export interface MsgSell_OrderAmino { * buyer to disable auto-retirement in their buy order enabling them to * resell the credits to another buyer. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * expiration is an optional timestamp when the sell order expires. When the * expiration time is reached, the sell order is removed from state. */ - expiration?: TimestampAmino; + expiration?: string; } export interface MsgSell_OrderAminoMsg { type: "/regen.ecocredit.marketplace.v1.Order"; @@ -101,14 +100,14 @@ export interface MsgSell_OrderAminoMsg { export interface MsgSell_OrderSDKType { batch_denom: string; quantity: string; - ask_price: CoinSDKType; + ask_price?: CoinSDKType; disable_auto_retire: boolean; - expiration: TimestampSDKType; + expiration?: TimestampSDKType; } /** MsgSellResponse is the Msg/Sell response type. */ export interface MsgSellResponse { /** sell_order_ids are the sell order IDs of the newly created sell orders. */ - sellOrderIds: Long[]; + sellOrderIds: bigint[]; } export interface MsgSellResponseProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.MsgSellResponse"; @@ -117,7 +116,7 @@ export interface MsgSellResponseProtoMsg { /** MsgSellResponse is the Msg/Sell response type. */ export interface MsgSellResponseAmino { /** sell_order_ids are the sell order IDs of the newly created sell orders. */ - sell_order_ids: string[]; + sell_order_ids?: string[]; } export interface MsgSellResponseAminoMsg { type: "/regen.ecocredit.marketplace.v1.MsgSellResponse"; @@ -125,7 +124,7 @@ export interface MsgSellResponseAminoMsg { } /** MsgSellResponse is the Msg/Sell response type. */ export interface MsgSellResponseSDKType { - sell_order_ids: Long[]; + sell_order_ids: bigint[]; } /** MsgUpdateSellOrders is the Msg/UpdateSellOrders request type. */ export interface MsgUpdateSellOrders { @@ -141,9 +140,9 @@ export interface MsgUpdateSellOrdersProtoMsg { /** MsgUpdateSellOrders is the Msg/UpdateSellOrders request type. */ export interface MsgUpdateSellOrdersAmino { /** seller is the address of the account that is selling credits. */ - seller: string; + seller?: string; /** updates are updates to existing sell orders. */ - updates: MsgUpdateSellOrders_UpdateAmino[]; + updates?: MsgUpdateSellOrders_UpdateAmino[]; } export interface MsgUpdateSellOrdersAminoMsg { type: "regen.marketplace/MsgUpdateSellOrders"; @@ -157,11 +156,11 @@ export interface MsgUpdateSellOrdersSDKType { /** Update is an update to an existing sell order. */ export interface MsgUpdateSellOrders_Update { /** sell_order_id is the ID of an existing sell order. */ - sellOrderId: Long; + sellOrderId: bigint; /** new_quantity is the updated quantity of credits available to sell. */ newQuantity: string; /** new_ask_price is the new ask price for this sell order */ - newAskPrice: Coin; + newAskPrice?: Coin; /** * disable_auto_retire updates the disable_auto_retire field in the sell * order. @@ -171,7 +170,7 @@ export interface MsgUpdateSellOrders_Update { * new_expiration is an optional timestamp when the sell order expires. When * the expiration time is reached, the sell order is removed from state. */ - newExpiration: Timestamp; + newExpiration?: Timestamp; } export interface MsgUpdateSellOrders_UpdateProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.Update"; @@ -180,21 +179,21 @@ export interface MsgUpdateSellOrders_UpdateProtoMsg { /** Update is an update to an existing sell order. */ export interface MsgUpdateSellOrders_UpdateAmino { /** sell_order_id is the ID of an existing sell order. */ - sell_order_id: string; + sell_order_id?: string; /** new_quantity is the updated quantity of credits available to sell. */ - new_quantity: string; + new_quantity?: string; /** new_ask_price is the new ask price for this sell order */ new_ask_price?: CoinAmino; /** * disable_auto_retire updates the disable_auto_retire field in the sell * order. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * new_expiration is an optional timestamp when the sell order expires. When * the expiration time is reached, the sell order is removed from state. */ - new_expiration?: TimestampAmino; + new_expiration?: string; } export interface MsgUpdateSellOrders_UpdateAminoMsg { type: "/regen.ecocredit.marketplace.v1.Update"; @@ -202,11 +201,11 @@ export interface MsgUpdateSellOrders_UpdateAminoMsg { } /** Update is an update to an existing sell order. */ export interface MsgUpdateSellOrders_UpdateSDKType { - sell_order_id: Long; + sell_order_id: bigint; new_quantity: string; - new_ask_price: CoinSDKType; + new_ask_price?: CoinSDKType; disable_auto_retire: boolean; - new_expiration: TimestampSDKType; + new_expiration?: TimestampSDKType; } /** MsgUpdateSellOrdersResponse is the Msg/UpdateSellOrders response type. */ export interface MsgUpdateSellOrdersResponse { @@ -233,7 +232,7 @@ export interface MsgCancelSellOrder { */ seller: string; /** sell_order_id is the id of the seller order to cancel. */ - sellOrderId: Long; + sellOrderId: bigint; } export interface MsgCancelSellOrderProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.MsgCancelSellOrder"; @@ -245,9 +244,9 @@ export interface MsgCancelSellOrderAmino { * seller is the address of the account that created the sell order and is * therefore authorized to cancel the sell order. */ - seller: string; + seller?: string; /** sell_order_id is the id of the seller order to cancel. */ - sell_order_id: string; + sell_order_id?: string; } export interface MsgCancelSellOrderAminoMsg { type: "regen.marketplace/MsgCancelSellOrder"; @@ -256,7 +255,7 @@ export interface MsgCancelSellOrderAminoMsg { /** MsgCancelSellOrder is the Msg/CancelSellOrder request type. */ export interface MsgCancelSellOrderSDKType { seller: string; - sell_order_id: Long; + sell_order_id: bigint; } /** MsgCancelSellOrder is the Msg/CancelSellOrder response type. */ export interface MsgCancelSellOrderResponse { @@ -289,9 +288,9 @@ export interface MsgBuyDirectProtoMsg { /** MsgBuyDirect is the Msg/BuyDirect request type. */ export interface MsgBuyDirectAmino { /** buyer is the address of the account that is buying credits. */ - buyer: string; + buyer?: string; /** orders is a list of orders for ecocredits. */ - orders: MsgBuyDirect_OrderAmino[]; + orders?: MsgBuyDirect_OrderAmino[]; } export interface MsgBuyDirectAminoMsg { type: "regen.marketplace/MsgBuyDirect"; @@ -308,11 +307,11 @@ export interface MsgBuyDirect_Order { * sell_order_id is the sell order ID against which the buyer is trying * to buy. */ - sellOrderId: Long; + sellOrderId: bigint; /** quantity is the quantity of credits to buy. */ quantity: string; /** bid_price is the price the buyer is willing to pay per credit. */ - bidPrice: Coin; + bidPrice?: Coin; /** * disable_auto_retire allows auto-retirement to be disabled. If it is set * to true the credits will not auto-retire and can be resold assuming that @@ -345,9 +344,9 @@ export interface MsgBuyDirect_OrderAmino { * sell_order_id is the sell order ID against which the buyer is trying * to buy. */ - sell_order_id: string; + sell_order_id?: string; /** quantity is the quantity of credits to buy. */ - quantity: string; + quantity?: string; /** bid_price is the price the buyer is willing to pay per credit. */ bid_price?: CoinAmino; /** @@ -357,12 +356,12 @@ export interface MsgBuyDirect_OrderAmino { * order hasn't disabled auto-retirement and the buy order tries to disable * it, that buy order will fail. */ - disable_auto_retire: boolean; + disable_auto_retire?: boolean; /** * retirement_jurisdiction is the optional retirement jurisdiction for the * credits which will be used only if disable_auto_retire is false. */ - retirement_jurisdiction: string; + retirement_jurisdiction?: string; /** * retirement_reason is any arbitrary string that specifies the reason for * retiring credits. The reason will be included in EventRetire and is not @@ -370,7 +369,7 @@ export interface MsgBuyDirect_OrderAmino { * * Since Revision 1 */ - retirement_reason: string; + retirement_reason?: string; } export interface MsgBuyDirect_OrderAminoMsg { type: "/regen.ecocredit.marketplace.v1.Order"; @@ -378,9 +377,9 @@ export interface MsgBuyDirect_OrderAminoMsg { } /** Order contains the information needed to purchase an ecocredit. */ export interface MsgBuyDirect_OrderSDKType { - sell_order_id: Long; + sell_order_id: bigint; quantity: string; - bid_price: CoinSDKType; + bid_price?: CoinSDKType; disable_auto_retire: boolean; retirement_jurisdiction: string; retirement_reason: string; @@ -435,20 +434,20 @@ export interface MsgAddAllowedDenomProtoMsg { */ export interface MsgAddAllowedDenomAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** denom is the bank denom to allow (ex. ibc/GLKHDSG423SGS) */ - bank_denom: string; + bank_denom?: string; /** * display_denom is the denom to display to the user and is informational. * Because the denom is likely an IBC denom, this should be chosen by * governance to represent the consensus trusted name of the denom. */ - display_denom: string; + display_denom?: string; /** * exponent is the exponent that relates the denom to the display_denom and is * informational */ - exponent: number; + exponent?: number; } export interface MsgAddAllowedDenomAminoMsg { type: "regen.marketplace/MsgAddAllowedDenom"; @@ -516,9 +515,9 @@ export interface MsgRemoveAllowedDenomProtoMsg { */ export interface MsgRemoveAllowedDenomAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** denom is the denom to remove (ex. ibc/GLKHDSG423SGS) */ - denom: string; + denom?: string; } export interface MsgRemoveAllowedDenomAminoMsg { type: "regen.marketplace/MsgRemoveAllowedDenom"; @@ -563,8 +562,9 @@ export interface MsgRemoveAllowedDenomResponseAminoMsg { export interface MsgRemoveAllowedDenomResponseSDKType { } export declare const MsgSell: { - encode(message: MsgSell, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSell; + typeUrl: string; + encode(message: MsgSell, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSell; fromJSON(object: any): MsgSell; toJSON(message: MsgSell): unknown; fromPartial(object: Partial): MsgSell; @@ -577,8 +577,9 @@ export declare const MsgSell: { toProtoMsg(message: MsgSell): MsgSellProtoMsg; }; export declare const MsgSell_Order: { - encode(message: MsgSell_Order, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSell_Order; + typeUrl: string; + encode(message: MsgSell_Order, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSell_Order; fromJSON(object: any): MsgSell_Order; toJSON(message: MsgSell_Order): unknown; fromPartial(object: Partial): MsgSell_Order; @@ -590,8 +591,9 @@ export declare const MsgSell_Order: { toProtoMsg(message: MsgSell_Order): MsgSell_OrderProtoMsg; }; export declare const MsgSellResponse: { - encode(message: MsgSellResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSellResponse; + typeUrl: string; + encode(message: MsgSellResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSellResponse; fromJSON(object: any): MsgSellResponse; toJSON(message: MsgSellResponse): unknown; fromPartial(object: Partial): MsgSellResponse; @@ -603,8 +605,9 @@ export declare const MsgSellResponse: { toProtoMsg(message: MsgSellResponse): MsgSellResponseProtoMsg; }; export declare const MsgUpdateSellOrders: { - encode(message: MsgUpdateSellOrders, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateSellOrders; + typeUrl: string; + encode(message: MsgUpdateSellOrders, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateSellOrders; fromJSON(object: any): MsgUpdateSellOrders; toJSON(message: MsgUpdateSellOrders): unknown; fromPartial(object: Partial): MsgUpdateSellOrders; @@ -617,8 +620,9 @@ export declare const MsgUpdateSellOrders: { toProtoMsg(message: MsgUpdateSellOrders): MsgUpdateSellOrdersProtoMsg; }; export declare const MsgUpdateSellOrders_Update: { - encode(message: MsgUpdateSellOrders_Update, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateSellOrders_Update; + typeUrl: string; + encode(message: MsgUpdateSellOrders_Update, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateSellOrders_Update; fromJSON(object: any): MsgUpdateSellOrders_Update; toJSON(message: MsgUpdateSellOrders_Update): unknown; fromPartial(object: Partial): MsgUpdateSellOrders_Update; @@ -630,8 +634,9 @@ export declare const MsgUpdateSellOrders_Update: { toProtoMsg(message: MsgUpdateSellOrders_Update): MsgUpdateSellOrders_UpdateProtoMsg; }; export declare const MsgUpdateSellOrdersResponse: { - encode(_: MsgUpdateSellOrdersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateSellOrdersResponse; + typeUrl: string; + encode(_: MsgUpdateSellOrdersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateSellOrdersResponse; fromJSON(_: any): MsgUpdateSellOrdersResponse; toJSON(_: MsgUpdateSellOrdersResponse): unknown; fromPartial(_: Partial): MsgUpdateSellOrdersResponse; @@ -643,8 +648,9 @@ export declare const MsgUpdateSellOrdersResponse: { toProtoMsg(message: MsgUpdateSellOrdersResponse): MsgUpdateSellOrdersResponseProtoMsg; }; export declare const MsgCancelSellOrder: { - encode(message: MsgCancelSellOrder, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelSellOrder; + typeUrl: string; + encode(message: MsgCancelSellOrder, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelSellOrder; fromJSON(object: any): MsgCancelSellOrder; toJSON(message: MsgCancelSellOrder): unknown; fromPartial(object: Partial): MsgCancelSellOrder; @@ -657,8 +663,9 @@ export declare const MsgCancelSellOrder: { toProtoMsg(message: MsgCancelSellOrder): MsgCancelSellOrderProtoMsg; }; export declare const MsgCancelSellOrderResponse: { - encode(_: MsgCancelSellOrderResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelSellOrderResponse; + typeUrl: string; + encode(_: MsgCancelSellOrderResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelSellOrderResponse; fromJSON(_: any): MsgCancelSellOrderResponse; toJSON(_: MsgCancelSellOrderResponse): unknown; fromPartial(_: Partial): MsgCancelSellOrderResponse; @@ -670,8 +677,9 @@ export declare const MsgCancelSellOrderResponse: { toProtoMsg(message: MsgCancelSellOrderResponse): MsgCancelSellOrderResponseProtoMsg; }; export declare const MsgBuyDirect: { - encode(message: MsgBuyDirect, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBuyDirect; + typeUrl: string; + encode(message: MsgBuyDirect, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBuyDirect; fromJSON(object: any): MsgBuyDirect; toJSON(message: MsgBuyDirect): unknown; fromPartial(object: Partial): MsgBuyDirect; @@ -684,8 +692,9 @@ export declare const MsgBuyDirect: { toProtoMsg(message: MsgBuyDirect): MsgBuyDirectProtoMsg; }; export declare const MsgBuyDirect_Order: { - encode(message: MsgBuyDirect_Order, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBuyDirect_Order; + typeUrl: string; + encode(message: MsgBuyDirect_Order, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBuyDirect_Order; fromJSON(object: any): MsgBuyDirect_Order; toJSON(message: MsgBuyDirect_Order): unknown; fromPartial(object: Partial): MsgBuyDirect_Order; @@ -697,8 +706,9 @@ export declare const MsgBuyDirect_Order: { toProtoMsg(message: MsgBuyDirect_Order): MsgBuyDirect_OrderProtoMsg; }; export declare const MsgBuyDirectResponse: { - encode(_: MsgBuyDirectResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBuyDirectResponse; + typeUrl: string; + encode(_: MsgBuyDirectResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBuyDirectResponse; fromJSON(_: any): MsgBuyDirectResponse; toJSON(_: MsgBuyDirectResponse): unknown; fromPartial(_: Partial): MsgBuyDirectResponse; @@ -710,8 +720,9 @@ export declare const MsgBuyDirectResponse: { toProtoMsg(message: MsgBuyDirectResponse): MsgBuyDirectResponseProtoMsg; }; export declare const MsgAddAllowedDenom: { - encode(message: MsgAddAllowedDenom, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddAllowedDenom; + typeUrl: string; + encode(message: MsgAddAllowedDenom, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddAllowedDenom; fromJSON(object: any): MsgAddAllowedDenom; toJSON(message: MsgAddAllowedDenom): unknown; fromPartial(object: Partial): MsgAddAllowedDenom; @@ -724,8 +735,9 @@ export declare const MsgAddAllowedDenom: { toProtoMsg(message: MsgAddAllowedDenom): MsgAddAllowedDenomProtoMsg; }; export declare const MsgAddAllowedDenomResponse: { - encode(_: MsgAddAllowedDenomResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddAllowedDenomResponse; + typeUrl: string; + encode(_: MsgAddAllowedDenomResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddAllowedDenomResponse; fromJSON(_: any): MsgAddAllowedDenomResponse; toJSON(_: MsgAddAllowedDenomResponse): unknown; fromPartial(_: Partial): MsgAddAllowedDenomResponse; @@ -737,8 +749,9 @@ export declare const MsgAddAllowedDenomResponse: { toProtoMsg(message: MsgAddAllowedDenomResponse): MsgAddAllowedDenomResponseProtoMsg; }; export declare const MsgRemoveAllowedDenom: { - encode(message: MsgRemoveAllowedDenom, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRemoveAllowedDenom; + typeUrl: string; + encode(message: MsgRemoveAllowedDenom, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveAllowedDenom; fromJSON(object: any): MsgRemoveAllowedDenom; toJSON(message: MsgRemoveAllowedDenom): unknown; fromPartial(object: Partial): MsgRemoveAllowedDenom; @@ -751,8 +764,9 @@ export declare const MsgRemoveAllowedDenom: { toProtoMsg(message: MsgRemoveAllowedDenom): MsgRemoveAllowedDenomProtoMsg; }; export declare const MsgRemoveAllowedDenomResponse: { - encode(_: MsgRemoveAllowedDenomResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRemoveAllowedDenomResponse; + typeUrl: string; + encode(_: MsgRemoveAllowedDenomResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveAllowedDenomResponse; fromJSON(_: any): MsgRemoveAllowedDenomResponse; toJSON(_: MsgRemoveAllowedDenomResponse): unknown; fromPartial(_: Partial): MsgRemoveAllowedDenomResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/types.d.ts b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/types.d.ts index 0a93284..47d813d 100644 --- a/packages/api/types/codegen/regen/ecocredit/marketplace/v1/types.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/marketplace/v1/types.d.ts @@ -1,5 +1,5 @@ import { AllowedDenom, AllowedDenomAmino, AllowedDenomSDKType } from "./state"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * AllowDenomProposal is a gov Content type for approving a denom for use in the * marketplace. @@ -16,7 +16,7 @@ export interface AllowDenomProposal { * denom contains coin denom information that will be added to the * list of allowed denoms for use in the marketplace. */ - denom: AllowedDenom; + denom?: AllowedDenom; } export interface AllowDenomProposalProtoMsg { typeUrl: "/regen.ecocredit.marketplace.v1.AllowDenomProposal"; @@ -31,9 +31,9 @@ export interface AllowDenomProposalProtoMsg { */ export interface AllowDenomProposalAmino { /** title is the title of the proposal. */ - title: string; + title?: string; /** description is the description of the proposal. */ - description: string; + description?: string; /** * denom contains coin denom information that will be added to the * list of allowed denoms for use in the marketplace. @@ -54,11 +54,12 @@ export interface AllowDenomProposalAminoMsg { export interface AllowDenomProposalSDKType { title: string; description: string; - denom: AllowedDenomSDKType; + denom?: AllowedDenomSDKType; } export declare const AllowDenomProposal: { - encode(message: AllowDenomProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AllowDenomProposal; + typeUrl: string; + encode(message: AllowDenomProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AllowDenomProposal; fromJSON(object: any): AllowDenomProposal; toJSON(message: AllowDenomProposal): unknown; fromPartial(object: Partial): AllowDenomProposal; diff --git a/packages/api/types/codegen/regen/ecocredit/orderbook/v1alpha1/memory.d.ts b/packages/api/types/codegen/regen/ecocredit/orderbook/v1alpha1/memory.d.ts index e87e1fb..ead43dc 100644 --- a/packages/api/types/codegen/regen/ecocredit/orderbook/v1alpha1/memory.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/orderbook/v1alpha1/memory.d.ts @@ -1,17 +1,16 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../../google/protobuf/timestamp"; -import { Long } from "../../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../../binary"; /** * BuyOrderSellOrderMatch defines the data the FIFO/price-time-priority matching * algorithm used to actually match buy and sell orders. */ export interface BuyOrderSellOrderMatch { /** market_id defines the market within which this match exists. */ - marketId: Long; + marketId: bigint; /** buy_order_id is the buy order ID. */ - buyOrderId: Long; + buyOrderId: bigint; /** sell_order_id is the sell order ID. */ - sellOrderId: Long; + sellOrderId: bigint; /** * bid_price_complement is the the complement (^ operator) of the bid price * encoded as a uint32 (which should have sufficient precision) - effectively @@ -35,23 +34,23 @@ export interface BuyOrderSellOrderMatchProtoMsg { */ export interface BuyOrderSellOrderMatchAmino { /** market_id defines the market within which this match exists. */ - market_id: string; + market_id?: string; /** buy_order_id is the buy order ID. */ - buy_order_id: string; + buy_order_id?: string; /** sell_order_id is the sell order ID. */ - sell_order_id: string; + sell_order_id?: string; /** * bid_price_complement is the the complement (^ operator) of the bid price * encoded as a uint32 (which should have sufficient precision) - effectively * ~price * 10^exponent (usually 10^6). The complement is used so that bids * can be sorted high to low. */ - bid_price_complement: number; + bid_price_complement?: number; /** * ask_price is the ask price encoded to a uint32. Ask prices are sorted low * to high. */ - ask_price: number; + ask_price?: number; } export interface BuyOrderSellOrderMatchAminoMsg { type: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderSellOrderMatch"; @@ -62,24 +61,24 @@ export interface BuyOrderSellOrderMatchAminoMsg { * algorithm used to actually match buy and sell orders. */ export interface BuyOrderSellOrderMatchSDKType { - market_id: Long; - buy_order_id: Long; - sell_order_id: Long; + market_id: bigint; + buy_order_id: bigint; + sell_order_id: bigint; bid_price_complement: number; ask_price: number; } /** BuyOrderClassSelector indexes a buy order with class selector. */ export interface BuyOrderClassSelector { /** buy_order_id is the buy order ID. */ - buyOrderId: Long; + buyOrderId: bigint; /** class_id is the class ID. */ - classId: Long; + classId: bigint; /** project_location is the project location in the selector's criteria. */ projectLocation: string; /** min_start_date is the minimum start date in the selector's criteria. */ - minStartDate: Timestamp; + minStartDate?: Timestamp; /** max_end_date is the maximum end date in the selector's criteria. */ - maxEndDate: Timestamp; + maxEndDate?: Timestamp; } export interface BuyOrderClassSelectorProtoMsg { typeUrl: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderClassSelector"; @@ -88,15 +87,15 @@ export interface BuyOrderClassSelectorProtoMsg { /** BuyOrderClassSelector indexes a buy order with class selector. */ export interface BuyOrderClassSelectorAmino { /** buy_order_id is the buy order ID. */ - buy_order_id: string; + buy_order_id?: string; /** class_id is the class ID. */ - class_id: string; + class_id?: string; /** project_location is the project location in the selector's criteria. */ - project_location: string; + project_location?: string; /** min_start_date is the minimum start date in the selector's criteria. */ - min_start_date?: TimestampAmino; + min_start_date?: string; /** max_end_date is the maximum end date in the selector's criteria. */ - max_end_date?: TimestampAmino; + max_end_date?: string; } export interface BuyOrderClassSelectorAminoMsg { type: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderClassSelector"; @@ -104,22 +103,22 @@ export interface BuyOrderClassSelectorAminoMsg { } /** BuyOrderClassSelector indexes a buy order with class selector. */ export interface BuyOrderClassSelectorSDKType { - buy_order_id: Long; - class_id: Long; + buy_order_id: bigint; + class_id: bigint; project_location: string; - min_start_date: TimestampSDKType; - max_end_date: TimestampSDKType; + min_start_date?: TimestampSDKType; + max_end_date?: TimestampSDKType; } /** BuyOrderProjectSelector indexes a buy order with project selector. */ export interface BuyOrderProjectSelector { /** buy_order_id is the buy order ID. */ - buyOrderId: Long; + buyOrderId: bigint; /** project_id is the project ID. */ - projectId: Long; + projectId: bigint; /** min_start_date is the minimum start date in the selector's criteria. */ - minStartDate: Timestamp; + minStartDate?: Timestamp; /** max_end_date is the maximum end date in the selector's criteria. */ - maxEndDate: Timestamp; + maxEndDate?: Timestamp; } export interface BuyOrderProjectSelectorProtoMsg { typeUrl: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderProjectSelector"; @@ -128,13 +127,13 @@ export interface BuyOrderProjectSelectorProtoMsg { /** BuyOrderProjectSelector indexes a buy order with project selector. */ export interface BuyOrderProjectSelectorAmino { /** buy_order_id is the buy order ID. */ - buy_order_id: string; + buy_order_id?: string; /** project_id is the project ID. */ - project_id: string; + project_id?: string; /** min_start_date is the minimum start date in the selector's criteria. */ - min_start_date?: TimestampAmino; + min_start_date?: string; /** max_end_date is the maximum end date in the selector's criteria. */ - max_end_date?: TimestampAmino; + max_end_date?: string; } export interface BuyOrderProjectSelectorAminoMsg { type: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderProjectSelector"; @@ -142,17 +141,17 @@ export interface BuyOrderProjectSelectorAminoMsg { } /** BuyOrderProjectSelector indexes a buy order with project selector. */ export interface BuyOrderProjectSelectorSDKType { - buy_order_id: Long; - project_id: Long; - min_start_date: TimestampSDKType; - max_end_date: TimestampSDKType; + buy_order_id: bigint; + project_id: bigint; + min_start_date?: TimestampSDKType; + max_end_date?: TimestampSDKType; } /** BuyOrderBatchSelector indexes a buy order with batch selector. */ export interface BuyOrderBatchSelector { /** buy_order_id is the buy order ID. */ - buyOrderId: Long; + buyOrderId: bigint; /** batch_id is the batch ID. */ - batchId: Long; + batchId: bigint; } export interface BuyOrderBatchSelectorProtoMsg { typeUrl: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderBatchSelector"; @@ -161,9 +160,9 @@ export interface BuyOrderBatchSelectorProtoMsg { /** BuyOrderBatchSelector indexes a buy order with batch selector. */ export interface BuyOrderBatchSelectorAmino { /** buy_order_id is the buy order ID. */ - buy_order_id: string; + buy_order_id?: string; /** batch_id is the batch ID. */ - batch_id: string; + batch_id?: string; } export interface BuyOrderBatchSelectorAminoMsg { type: "/regen.ecocredit.orderbook.v1alpha1.BuyOrderBatchSelector"; @@ -171,12 +170,13 @@ export interface BuyOrderBatchSelectorAminoMsg { } /** BuyOrderBatchSelector indexes a buy order with batch selector. */ export interface BuyOrderBatchSelectorSDKType { - buy_order_id: Long; - batch_id: Long; + buy_order_id: bigint; + batch_id: bigint; } export declare const BuyOrderSellOrderMatch: { - encode(message: BuyOrderSellOrderMatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BuyOrderSellOrderMatch; + typeUrl: string; + encode(message: BuyOrderSellOrderMatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BuyOrderSellOrderMatch; fromJSON(object: any): BuyOrderSellOrderMatch; toJSON(message: BuyOrderSellOrderMatch): unknown; fromPartial(object: Partial): BuyOrderSellOrderMatch; @@ -188,8 +188,9 @@ export declare const BuyOrderSellOrderMatch: { toProtoMsg(message: BuyOrderSellOrderMatch): BuyOrderSellOrderMatchProtoMsg; }; export declare const BuyOrderClassSelector: { - encode(message: BuyOrderClassSelector, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BuyOrderClassSelector; + typeUrl: string; + encode(message: BuyOrderClassSelector, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BuyOrderClassSelector; fromJSON(object: any): BuyOrderClassSelector; toJSON(message: BuyOrderClassSelector): unknown; fromPartial(object: Partial): BuyOrderClassSelector; @@ -201,8 +202,9 @@ export declare const BuyOrderClassSelector: { toProtoMsg(message: BuyOrderClassSelector): BuyOrderClassSelectorProtoMsg; }; export declare const BuyOrderProjectSelector: { - encode(message: BuyOrderProjectSelector, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BuyOrderProjectSelector; + typeUrl: string; + encode(message: BuyOrderProjectSelector, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BuyOrderProjectSelector; fromJSON(object: any): BuyOrderProjectSelector; toJSON(message: BuyOrderProjectSelector): unknown; fromPartial(object: Partial): BuyOrderProjectSelector; @@ -214,8 +216,9 @@ export declare const BuyOrderProjectSelector: { toProtoMsg(message: BuyOrderProjectSelector): BuyOrderProjectSelectorProtoMsg; }; export declare const BuyOrderBatchSelector: { - encode(message: BuyOrderBatchSelector, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BuyOrderBatchSelector; + typeUrl: string; + encode(message: BuyOrderBatchSelector, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BuyOrderBatchSelector; fromJSON(object: any): BuyOrderBatchSelector; toJSON(message: BuyOrderBatchSelector): unknown; fromPartial(object: Partial): BuyOrderBatchSelector; diff --git a/packages/api/types/codegen/regen/ecocredit/v1/events.d.ts b/packages/api/types/codegen/regen/ecocredit/v1/events.d.ts index 72a204b..4bb6a87 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1/events.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1/events.d.ts @@ -1,5 +1,5 @@ import { OriginTx, OriginTxAmino, OriginTxSDKType } from "./types"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** EventCreateClass is an event emitted when a credit class is created. */ export interface EventCreateClass { /** class_id is the unique identifier of the credit class. */ @@ -12,7 +12,7 @@ export interface EventCreateClassProtoMsg { /** EventCreateClass is an event emitted when a credit class is created. */ export interface EventCreateClassAmino { /** class_id is the unique identifier of the credit class. */ - class_id: string; + class_id?: string; } export interface EventCreateClassAminoMsg { type: "/regen.ecocredit.v1.EventCreateClass"; @@ -34,7 +34,7 @@ export interface EventCreateProjectProtoMsg { /** EventCreateProject is an event emitted when a project is created. */ export interface EventCreateProjectAmino { /** project_id is the unique identifier of the project. */ - project_id: string; + project_id?: string; } export interface EventCreateProjectAminoMsg { type: "/regen.ecocredit.v1.EventCreateProject"; @@ -52,7 +52,7 @@ export interface EventCreateBatch { * origin_tx is the transaction from another chain or registry that triggered * the creation of the credit batch. */ - originTx: OriginTx; + originTx?: OriginTx; } export interface EventCreateBatchProtoMsg { typeUrl: "/regen.ecocredit.v1.EventCreateBatch"; @@ -61,7 +61,7 @@ export interface EventCreateBatchProtoMsg { /** EventCreateBatch is an event emitted when a credit batch is created. */ export interface EventCreateBatchAmino { /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * origin_tx is the transaction from another chain or registry that triggered * the creation of the credit batch. @@ -75,7 +75,7 @@ export interface EventCreateBatchAminoMsg { /** EventCreateBatch is an event emitted when a credit batch is created. */ export interface EventCreateBatchSDKType { batch_denom: string; - origin_tx: OriginTxSDKType; + origin_tx?: OriginTxSDKType; } /** * EventMint is an event emitted when credits are minted either when creating a @@ -105,11 +105,11 @@ export interface EventMintAmino { * batch_denom is the unique identifier of the credit batch within which the * credits were minted. */ - batch_denom: string; + batch_denom?: string; /** tradable_amount is the amount of tradable credits minted. */ - tradable_amount: string; + tradable_amount?: string; /** retired_amount is the amount of retired credits minted. */ - retired_amount: string; + retired_amount?: string; } export interface EventMintAminoMsg { type: "/regen.ecocredit.v1.EventMint"; @@ -138,7 +138,7 @@ export interface EventMintBatchCredits { * origin_tx is the transaction from another chain or registry that triggered * the minting of credits within the credit batch. */ - originTx: OriginTx; + originTx?: OriginTx; } export interface EventMintBatchCreditsProtoMsg { typeUrl: "/regen.ecocredit.v1.EventMintBatchCredits"; @@ -153,7 +153,7 @@ export interface EventMintBatchCreditsAmino { * batch_denom is the unique identifier of the credit batch within which the * credits were minted. */ - batch_denom: string; + batch_denom?: string; /** * origin_tx is the transaction from another chain or registry that triggered * the minting of credits within the credit batch. @@ -170,7 +170,7 @@ export interface EventMintBatchCreditsAminoMsg { */ export interface EventMintBatchCreditsSDKType { batch_denom: string; - origin_tx: OriginTxSDKType; + origin_tx?: OriginTxSDKType; } /** * EventTransfer is an event emitted when credits are transferred from one @@ -213,20 +213,20 @@ export interface EventTransferAmino { * case that the credits were transferred from a module, this will be the * module address (i.e. either the ecocredit module or basket submodule). */ - sender: string; + sender?: string; /** * recipient is the recipient of the credits. In the case that the credits * were transferred to a base account, this will be the account address. In * the case that the credits were transferred to a module, this will be the * module address (i.e. either the ecocredit module or basket submodule). */ - recipient: string; + recipient?: string; /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** tradable_amount is the decimal number of tradable credits received. */ - tradable_amount: string; + tradable_amount?: string; /** retired_amount is the decimal number of retired credits received. */ - retired_amount: string; + retired_amount?: string; } export interface EventTransferAminoMsg { type: "/regen.ecocredit.v1.EventTransfer"; @@ -297,14 +297,14 @@ export interface EventRetireAmino { * retired upon taking from a basket using basket.Msg/Take, or retired upon * purchase using marketplace.Msg/BuyDirect. */ - owner: string; + owner?: string; /** * batch_denom is the unique identifier of the credit batch within which the * credits were retired. */ - batch_denom: string; + batch_denom?: string; /** amount is the decimal number of credits that have been retired. */ - amount: string; + amount?: string; /** * jurisdiction is the jurisdiction of the beneficiary or buyer of the retired * credits. It is a string of the form @@ -312,14 +312,14 @@ export interface EventRetireAmino { * fields conforming to ISO 3166-2, and postal-code being up to 64 * alphanumeric characters. */ - jurisdiction: string; + jurisdiction?: string; /** * reason is any arbitrary string that specifies the reason for retiring * credits. * * Since Revision 2 */ - reason: string; + reason?: string; } export interface EventRetireAminoMsg { type: "/regen.ecocredit.v1.EventRetire"; @@ -366,16 +366,16 @@ export interface EventCancelProtoMsg { */ export interface EventCancelAmino { /** owner is the address of the account that cancelled the credits. */ - owner: string; + owner?: string; /** * batch_denom is the unique identifier of the credit batch within which the * credits were cancelled. */ - batch_denom: string; + batch_denom?: string; /** amount is the decimal number of credits that have been cancelled. */ - amount: string; + amount?: string; /** reason is the reason the credits were cancelled. */ - reason: string; + reason?: string; } export interface EventCancelAminoMsg { type: "/regen.ecocredit.v1.EventCancel"; @@ -410,7 +410,7 @@ export interface EventUpdateClassAdminProtoMsg { */ export interface EventUpdateClassAdminAmino { /** class_id is the unique identifier of the class that was updated. */ - class_id: string; + class_id?: string; } export interface EventUpdateClassAdminAminoMsg { type: "/regen.ecocredit.v1.EventUpdateClassAdmin"; @@ -441,7 +441,7 @@ export interface EventUpdateClassIssuersProtoMsg { */ export interface EventUpdateClassIssuersAmino { /** class_id is the unique identifier of the class that was updated. */ - class_id: string; + class_id?: string; } export interface EventUpdateClassIssuersAminoMsg { type: "/regen.ecocredit.v1.EventUpdateClassIssuers"; @@ -472,7 +472,7 @@ export interface EventUpdateClassMetadataProtoMsg { */ export interface EventUpdateClassMetadataAmino { /** class_id is the unique identifier of the class that was updated. */ - class_id: string; + class_id?: string; } export interface EventUpdateClassMetadataAminoMsg { type: "/regen.ecocredit.v1.EventUpdateClassMetadata"; @@ -497,7 +497,7 @@ export interface EventUpdateProjectAdminProtoMsg { /** EventUpdateProjectAdmin is emitted when the project admin is changed. */ export interface EventUpdateProjectAdminAmino { /** project_id is the unique identifier of the project that was updated. */ - project_id: string; + project_id?: string; } export interface EventUpdateProjectAdminAminoMsg { type: "/regen.ecocredit.v1.EventUpdateProjectAdmin"; @@ -519,7 +519,7 @@ export interface EventUpdateProjectMetadataProtoMsg { /** EventUpdateProjectMetadata is emitted when the project metadata is changed. */ export interface EventUpdateProjectMetadataAmino { /** project_id is the unique identifier of the project that was updated. */ - project_id: string; + project_id?: string; } export interface EventUpdateProjectMetadataAminoMsg { type: "/regen.ecocredit.v1.EventUpdateProjectMetadata"; @@ -551,7 +551,7 @@ export interface EventUpdateBatchMetadataProtoMsg { */ export interface EventUpdateBatchMetadataAmino { /** batch_denom is the unique identifier of the batch that was updated. */ - batch_denom: string; + batch_denom?: string; } export interface EventUpdateBatchMetadataAminoMsg { type: "/regen.ecocredit.v1.EventUpdateBatchMetadata"; @@ -578,7 +578,7 @@ export interface EventSealBatchProtoMsg { /** EventSealBatch is emitted when a batch is sealed. */ export interface EventSealBatchAmino { /** batch_denom is the denom of the batch that was sealed. */ - batch_denom: string; + batch_denom?: string; } export interface EventSealBatchAminoMsg { type: "/regen.ecocredit.v1.EventSealBatch"; @@ -600,7 +600,7 @@ export interface EventAddCreditTypeProtoMsg { /** EventAddCreditType is emitted when governance approves a new credit type. */ export interface EventAddCreditTypeAmino { /** abbreviation is the abbreviation of the credit type. */ - abbreviation: string; + abbreviation?: string; } export interface EventAddCreditTypeAminoMsg { type: "/regen.ecocredit.v1.EventAddCreditType"; @@ -640,25 +640,25 @@ export interface EventBridgeProtoMsg { /** EventBridge is emitted when credits are bridged to another chain. */ export interface EventBridgeAmino { /** target is the target chain. */ - target: string; + target?: string; /** recipient is the recipient address. */ - recipient: string; + recipient?: string; /** contract is the contract address. */ - contract: string; + contract?: string; /** amount is the amount of credits. */ - amount: string; + amount?: string; /** * owner is the owner address. * * Since Revision 1 */ - owner: string; + owner?: string; /** * batch_denom is the credit batch denom. * * Since Revision 3 */ - batch_denom: string; + batch_denom?: string; } export interface EventBridgeAminoMsg { type: "/regen.ecocredit.v1.EventBridge"; @@ -697,7 +697,7 @@ export interface EventBridgeReceive { * * Since Revision 3 */ - originTx: OriginTx; + originTx?: OriginTx; } export interface EventBridgeReceiveProtoMsg { typeUrl: "/regen.ecocredit.v1.EventBridgeReceive"; @@ -709,18 +709,18 @@ export interface EventBridgeReceiveAmino { * project_id is the unique identifier of the project that was either created * or the existing project within which the credit batch exists. */ - project_id: string; + project_id?: string; /** * batch_denom is the unique identifier of the credit batch either created * or within which the credits were dynamically minted. */ - batch_denom: string; + batch_denom?: string; /** * amount is the amount of credits. * * Since Revision 3 */ - amount: string; + amount?: string; /** * origin_tx is the transaction from another chain or registry that triggered * the minting of credits within the credit batch. @@ -738,11 +738,12 @@ export interface EventBridgeReceiveSDKType { project_id: string; batch_denom: string; amount: string; - origin_tx: OriginTxSDKType; + origin_tx?: OriginTxSDKType; } export declare const EventCreateClass: { - encode(message: EventCreateClass, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateClass; + typeUrl: string; + encode(message: EventCreateClass, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateClass; fromJSON(object: any): EventCreateClass; toJSON(message: EventCreateClass): unknown; fromPartial(object: Partial): EventCreateClass; @@ -754,8 +755,9 @@ export declare const EventCreateClass: { toProtoMsg(message: EventCreateClass): EventCreateClassProtoMsg; }; export declare const EventCreateProject: { - encode(message: EventCreateProject, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateProject; + typeUrl: string; + encode(message: EventCreateProject, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateProject; fromJSON(object: any): EventCreateProject; toJSON(message: EventCreateProject): unknown; fromPartial(object: Partial): EventCreateProject; @@ -767,8 +769,9 @@ export declare const EventCreateProject: { toProtoMsg(message: EventCreateProject): EventCreateProjectProtoMsg; }; export declare const EventCreateBatch: { - encode(message: EventCreateBatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateBatch; + typeUrl: string; + encode(message: EventCreateBatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateBatch; fromJSON(object: any): EventCreateBatch; toJSON(message: EventCreateBatch): unknown; fromPartial(object: Partial): EventCreateBatch; @@ -780,8 +783,9 @@ export declare const EventCreateBatch: { toProtoMsg(message: EventCreateBatch): EventCreateBatchProtoMsg; }; export declare const EventMint: { - encode(message: EventMint, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventMint; + typeUrl: string; + encode(message: EventMint, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventMint; fromJSON(object: any): EventMint; toJSON(message: EventMint): unknown; fromPartial(object: Partial): EventMint; @@ -793,8 +797,9 @@ export declare const EventMint: { toProtoMsg(message: EventMint): EventMintProtoMsg; }; export declare const EventMintBatchCredits: { - encode(message: EventMintBatchCredits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventMintBatchCredits; + typeUrl: string; + encode(message: EventMintBatchCredits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventMintBatchCredits; fromJSON(object: any): EventMintBatchCredits; toJSON(message: EventMintBatchCredits): unknown; fromPartial(object: Partial): EventMintBatchCredits; @@ -806,8 +811,9 @@ export declare const EventMintBatchCredits: { toProtoMsg(message: EventMintBatchCredits): EventMintBatchCreditsProtoMsg; }; export declare const EventTransfer: { - encode(message: EventTransfer, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventTransfer; + typeUrl: string; + encode(message: EventTransfer, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventTransfer; fromJSON(object: any): EventTransfer; toJSON(message: EventTransfer): unknown; fromPartial(object: Partial): EventTransfer; @@ -819,8 +825,9 @@ export declare const EventTransfer: { toProtoMsg(message: EventTransfer): EventTransferProtoMsg; }; export declare const EventRetire: { - encode(message: EventRetire, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventRetire; + typeUrl: string; + encode(message: EventRetire, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventRetire; fromJSON(object: any): EventRetire; toJSON(message: EventRetire): unknown; fromPartial(object: Partial): EventRetire; @@ -832,8 +839,9 @@ export declare const EventRetire: { toProtoMsg(message: EventRetire): EventRetireProtoMsg; }; export declare const EventCancel: { - encode(message: EventCancel, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCancel; + typeUrl: string; + encode(message: EventCancel, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCancel; fromJSON(object: any): EventCancel; toJSON(message: EventCancel): unknown; fromPartial(object: Partial): EventCancel; @@ -845,8 +853,9 @@ export declare const EventCancel: { toProtoMsg(message: EventCancel): EventCancelProtoMsg; }; export declare const EventUpdateClassAdmin: { - encode(message: EventUpdateClassAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateClassAdmin; + typeUrl: string; + encode(message: EventUpdateClassAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateClassAdmin; fromJSON(object: any): EventUpdateClassAdmin; toJSON(message: EventUpdateClassAdmin): unknown; fromPartial(object: Partial): EventUpdateClassAdmin; @@ -858,8 +867,9 @@ export declare const EventUpdateClassAdmin: { toProtoMsg(message: EventUpdateClassAdmin): EventUpdateClassAdminProtoMsg; }; export declare const EventUpdateClassIssuers: { - encode(message: EventUpdateClassIssuers, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateClassIssuers; + typeUrl: string; + encode(message: EventUpdateClassIssuers, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateClassIssuers; fromJSON(object: any): EventUpdateClassIssuers; toJSON(message: EventUpdateClassIssuers): unknown; fromPartial(object: Partial): EventUpdateClassIssuers; @@ -871,8 +881,9 @@ export declare const EventUpdateClassIssuers: { toProtoMsg(message: EventUpdateClassIssuers): EventUpdateClassIssuersProtoMsg; }; export declare const EventUpdateClassMetadata: { - encode(message: EventUpdateClassMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateClassMetadata; + typeUrl: string; + encode(message: EventUpdateClassMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateClassMetadata; fromJSON(object: any): EventUpdateClassMetadata; toJSON(message: EventUpdateClassMetadata): unknown; fromPartial(object: Partial): EventUpdateClassMetadata; @@ -884,8 +895,9 @@ export declare const EventUpdateClassMetadata: { toProtoMsg(message: EventUpdateClassMetadata): EventUpdateClassMetadataProtoMsg; }; export declare const EventUpdateProjectAdmin: { - encode(message: EventUpdateProjectAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateProjectAdmin; + typeUrl: string; + encode(message: EventUpdateProjectAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateProjectAdmin; fromJSON(object: any): EventUpdateProjectAdmin; toJSON(message: EventUpdateProjectAdmin): unknown; fromPartial(object: Partial): EventUpdateProjectAdmin; @@ -897,8 +909,9 @@ export declare const EventUpdateProjectAdmin: { toProtoMsg(message: EventUpdateProjectAdmin): EventUpdateProjectAdminProtoMsg; }; export declare const EventUpdateProjectMetadata: { - encode(message: EventUpdateProjectMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateProjectMetadata; + typeUrl: string; + encode(message: EventUpdateProjectMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateProjectMetadata; fromJSON(object: any): EventUpdateProjectMetadata; toJSON(message: EventUpdateProjectMetadata): unknown; fromPartial(object: Partial): EventUpdateProjectMetadata; @@ -910,8 +923,9 @@ export declare const EventUpdateProjectMetadata: { toProtoMsg(message: EventUpdateProjectMetadata): EventUpdateProjectMetadataProtoMsg; }; export declare const EventUpdateBatchMetadata: { - encode(message: EventUpdateBatchMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventUpdateBatchMetadata; + typeUrl: string; + encode(message: EventUpdateBatchMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventUpdateBatchMetadata; fromJSON(object: any): EventUpdateBatchMetadata; toJSON(message: EventUpdateBatchMetadata): unknown; fromPartial(object: Partial): EventUpdateBatchMetadata; @@ -923,8 +937,9 @@ export declare const EventUpdateBatchMetadata: { toProtoMsg(message: EventUpdateBatchMetadata): EventUpdateBatchMetadataProtoMsg; }; export declare const EventSealBatch: { - encode(message: EventSealBatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventSealBatch; + typeUrl: string; + encode(message: EventSealBatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventSealBatch; fromJSON(object: any): EventSealBatch; toJSON(message: EventSealBatch): unknown; fromPartial(object: Partial): EventSealBatch; @@ -936,8 +951,9 @@ export declare const EventSealBatch: { toProtoMsg(message: EventSealBatch): EventSealBatchProtoMsg; }; export declare const EventAddCreditType: { - encode(message: EventAddCreditType, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventAddCreditType; + typeUrl: string; + encode(message: EventAddCreditType, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventAddCreditType; fromJSON(object: any): EventAddCreditType; toJSON(message: EventAddCreditType): unknown; fromPartial(object: Partial): EventAddCreditType; @@ -949,8 +965,9 @@ export declare const EventAddCreditType: { toProtoMsg(message: EventAddCreditType): EventAddCreditTypeProtoMsg; }; export declare const EventBridge: { - encode(message: EventBridge, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventBridge; + typeUrl: string; + encode(message: EventBridge, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventBridge; fromJSON(object: any): EventBridge; toJSON(message: EventBridge): unknown; fromPartial(object: Partial): EventBridge; @@ -962,8 +979,9 @@ export declare const EventBridge: { toProtoMsg(message: EventBridge): EventBridgeProtoMsg; }; export declare const EventBridgeReceive: { - encode(message: EventBridgeReceive, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventBridgeReceive; + typeUrl: string; + encode(message: EventBridgeReceive, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventBridgeReceive; fromJSON(object: any): EventBridgeReceive; toJSON(message: EventBridgeReceive): unknown; fromPartial(object: Partial): EventBridgeReceive; diff --git a/packages/api/types/codegen/regen/ecocredit/v1/query.d.ts b/packages/api/types/codegen/regen/ecocredit/v1/query.d.ts index dd42545..8b78a5b 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1/query.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1/query.d.ts @@ -1,13 +1,13 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../cosmos/base/query/v1beta1/pagination"; import { CreditType, CreditTypeAmino, CreditTypeSDKType } from "./state"; import { Params, ParamsAmino, ParamsSDKType } from "./types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryClassesRequest is the Query/Classes request type. */ export interface QueryClassesRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryClassesRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassesRequest"; @@ -24,14 +24,14 @@ export interface QueryClassesRequestAminoMsg { } /** QueryClassesRequest is the Query/Classes request type. */ export interface QueryClassesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryClassesResponse is the Query/Classes response type. */ export interface QueryClassesResponse { /** classes are the fetched credit classes. */ classes: ClassInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryClassesResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassesResponse"; @@ -40,7 +40,7 @@ export interface QueryClassesResponseProtoMsg { /** QueryClassesResponse is the Query/Classes response type. */ export interface QueryClassesResponseAmino { /** classes are the fetched credit classes. */ - classes: ClassInfoAmino[]; + classes?: ClassInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -51,14 +51,14 @@ export interface QueryClassesResponseAminoMsg { /** QueryClassesResponse is the Query/Classes response type. */ export interface QueryClassesResponseSDKType { classes: ClassInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryClassesByAdminRequest is the Query/ClassesByAdmin request type. */ export interface QueryClassesByAdminRequest { /** admin is the address of the admin of the class. */ admin: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryClassesByAdminRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassesByAdminRequest"; @@ -67,7 +67,7 @@ export interface QueryClassesByAdminRequestProtoMsg { /** QueryClassesByAdminRequest is the Query/ClassesByAdmin request type. */ export interface QueryClassesByAdminRequestAmino { /** admin is the address of the admin of the class. */ - admin: string; + admin?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -78,14 +78,14 @@ export interface QueryClassesByAdminRequestAminoMsg { /** QueryClassesByAdminRequest is the Query/ClassesByAdmin request type. */ export interface QueryClassesByAdminRequestSDKType { admin: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryClassesByAdminResponse is the Query/ClassesByAdmin response type. */ export interface QueryClassesByAdminResponse { /** classes are the fetched credit classes. */ classes: ClassInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryClassesByAdminResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassesByAdminResponse"; @@ -94,7 +94,7 @@ export interface QueryClassesByAdminResponseProtoMsg { /** QueryClassesByAdminResponse is the Query/ClassesByAdmin response type. */ export interface QueryClassesByAdminResponseAmino { /** classes are the fetched credit classes. */ - classes: ClassInfoAmino[]; + classes?: ClassInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -105,7 +105,7 @@ export interface QueryClassesByAdminResponseAminoMsg { /** QueryClassesByAdminResponse is the Query/ClassesByAdmin response type. */ export interface QueryClassesByAdminResponseSDKType { classes: ClassInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryClassRequest is the Query/Class request type. */ export interface QueryClassRequest { @@ -119,7 +119,7 @@ export interface QueryClassRequestProtoMsg { /** QueryClassRequest is the Query/Class request type. */ export interface QueryClassRequestAmino { /** class_id is the unique identifier of the credit class to query. */ - class_id: string; + class_id?: string; } export interface QueryClassRequestAminoMsg { type: "/regen.ecocredit.v1.QueryClassRequest"; @@ -132,7 +132,7 @@ export interface QueryClassRequestSDKType { /** QueryClassResponse is the Query/Class request type. */ export interface QueryClassResponse { /** class is the fetched credit class. */ - class: ClassInfo; + class?: ClassInfo; } export interface QueryClassResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassResponse"; @@ -149,14 +149,14 @@ export interface QueryClassResponseAminoMsg { } /** QueryClassResponse is the Query/Class request type. */ export interface QueryClassResponseSDKType { - class: ClassInfoSDKType; + class?: ClassInfoSDKType; } /** QueryClassIssuersRequest is the Query/ClassIssuers request type. */ export interface QueryClassIssuersRequest { /** class_id is the unique identifier of the credit class to query. */ classId: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryClassIssuersRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassIssuersRequest"; @@ -165,7 +165,7 @@ export interface QueryClassIssuersRequestProtoMsg { /** QueryClassIssuersRequest is the Query/ClassIssuers request type. */ export interface QueryClassIssuersRequestAmino { /** class_id is the unique identifier of the credit class to query. */ - class_id: string; + class_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -176,14 +176,14 @@ export interface QueryClassIssuersRequestAminoMsg { /** QueryClassIssuersRequest is the Query/ClassIssuers request type. */ export interface QueryClassIssuersRequestSDKType { class_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryClassIssuersRequest is the Query/ClassIssuers response type. */ export interface QueryClassIssuersResponse { /** issuers is a list of issuers for the credit class */ issuers: string[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryClassIssuersResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassIssuersResponse"; @@ -192,7 +192,7 @@ export interface QueryClassIssuersResponseProtoMsg { /** QueryClassIssuersRequest is the Query/ClassIssuers response type. */ export interface QueryClassIssuersResponseAmino { /** issuers is a list of issuers for the credit class */ - issuers: string[]; + issuers?: string[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -203,12 +203,12 @@ export interface QueryClassIssuersResponseAminoMsg { /** QueryClassIssuersRequest is the Query/ClassIssuers response type. */ export interface QueryClassIssuersResponseSDKType { issuers: string[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryProjectsRequest is the Query/Projects request type. */ export interface QueryProjectsRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProjectsRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsRequest"; @@ -225,14 +225,14 @@ export interface QueryProjectsRequestAminoMsg { } /** QueryProjectsRequest is the Query/Projects request type. */ export interface QueryProjectsRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryProjectsResponse is the Query/Projects response type. */ export interface QueryProjectsResponse { /** projects are the fetched projects. */ projects: ProjectInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProjectsResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsResponse"; @@ -241,7 +241,7 @@ export interface QueryProjectsResponseProtoMsg { /** QueryProjectsResponse is the Query/Projects response type. */ export interface QueryProjectsResponseAmino { /** projects are the fetched projects. */ - projects: ProjectInfoAmino[]; + projects?: ProjectInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -252,14 +252,14 @@ export interface QueryProjectsResponseAminoMsg { /** QueryProjectsResponse is the Query/Projects response type. */ export interface QueryProjectsResponseSDKType { projects: ProjectInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryProjectsByClassRequest is the Query/ProjectsByClass request type. */ export interface QueryProjectsByClassRequest { /** class_id is the unique identifier of the credit class to query. */ classId: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProjectsByClassRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsByClassRequest"; @@ -268,7 +268,7 @@ export interface QueryProjectsByClassRequestProtoMsg { /** QueryProjectsByClassRequest is the Query/ProjectsByClass request type. */ export interface QueryProjectsByClassRequestAmino { /** class_id is the unique identifier of the credit class to query. */ - class_id: string; + class_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -279,14 +279,14 @@ export interface QueryProjectsByClassRequestAminoMsg { /** QueryProjectsByClassRequest is the Query/ProjectsByClass request type. */ export interface QueryProjectsByClassRequestSDKType { class_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryProjectsByClassResponse is the Query/ProjectsByClass response type. */ export interface QueryProjectsByClassResponse { /** projects are the fetched projects. */ projects: ProjectInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProjectsByClassResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsByClassResponse"; @@ -295,7 +295,7 @@ export interface QueryProjectsByClassResponseProtoMsg { /** QueryProjectsByClassResponse is the Query/ProjectsByClass response type. */ export interface QueryProjectsByClassResponseAmino { /** projects are the fetched projects. */ - projects: ProjectInfoAmino[]; + projects?: ProjectInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -306,7 +306,7 @@ export interface QueryProjectsByClassResponseAminoMsg { /** QueryProjectsByClassResponse is the Query/ProjectsByClass response type. */ export interface QueryProjectsByClassResponseSDKType { projects: ProjectInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryProjectsByReferenceIdRequest is the Query/ProjectsByReferenceId request @@ -316,7 +316,7 @@ export interface QueryProjectsByReferenceIdRequest { /** reference_id is the project reference id. */ referenceId: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProjectsByReferenceIdRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsByReferenceIdRequest"; @@ -328,7 +328,7 @@ export interface QueryProjectsByReferenceIdRequestProtoMsg { */ export interface QueryProjectsByReferenceIdRequestAmino { /** reference_id is the project reference id. */ - reference_id: string; + reference_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -342,7 +342,7 @@ export interface QueryProjectsByReferenceIdRequestAminoMsg { */ export interface QueryProjectsByReferenceIdRequestSDKType { reference_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryProjectsByReferenceIdResponse is the Query/ProjectsByReferenceId @@ -352,7 +352,7 @@ export interface QueryProjectsByReferenceIdResponse { /** projects are the fetched projects. */ projects: ProjectInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProjectsByReferenceIdResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsByReferenceIdResponse"; @@ -364,7 +364,7 @@ export interface QueryProjectsByReferenceIdResponseProtoMsg { */ export interface QueryProjectsByReferenceIdResponseAmino { /** projects are the fetched projects. */ - projects: ProjectInfoAmino[]; + projects?: ProjectInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -378,14 +378,14 @@ export interface QueryProjectsByReferenceIdResponseAminoMsg { */ export interface QueryProjectsByReferenceIdResponseSDKType { projects: ProjectInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryProjectsByAdminRequest is the Query/ProjectByAdmin request type. */ export interface QueryProjectsByAdminRequest { /** admin is the account address of project admin. */ admin: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryProjectsByAdminRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsByAdminRequest"; @@ -394,7 +394,7 @@ export interface QueryProjectsByAdminRequestProtoMsg { /** QueryProjectsByAdminRequest is the Query/ProjectByAdmin request type. */ export interface QueryProjectsByAdminRequestAmino { /** admin is the account address of project admin. */ - admin: string; + admin?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -405,14 +405,14 @@ export interface QueryProjectsByAdminRequestAminoMsg { /** QueryProjectsByAdminRequest is the Query/ProjectByAdmin request type. */ export interface QueryProjectsByAdminRequestSDKType { admin: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryProjectsByAdminResponse is the Query/ProjectByAdmin response type. */ export interface QueryProjectsByAdminResponse { /** projects are the fetched projects. */ projects: ProjectInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryProjectsByAdminResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectsByAdminResponse"; @@ -421,7 +421,7 @@ export interface QueryProjectsByAdminResponseProtoMsg { /** QueryProjectsByAdminResponse is the Query/ProjectByAdmin response type. */ export interface QueryProjectsByAdminResponseAmino { /** projects are the fetched projects. */ - projects: ProjectInfoAmino[]; + projects?: ProjectInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -432,7 +432,7 @@ export interface QueryProjectsByAdminResponseAminoMsg { /** QueryProjectsByAdminResponse is the Query/ProjectByAdmin response type. */ export interface QueryProjectsByAdminResponseSDKType { projects: ProjectInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryProjectRequest is the Query/Project request type. */ export interface QueryProjectRequest { @@ -446,7 +446,7 @@ export interface QueryProjectRequestProtoMsg { /** QueryProjectRequest is the Query/Project request type. */ export interface QueryProjectRequestAmino { /** project_id is the unique identifier of the project to query. */ - project_id: string; + project_id?: string; } export interface QueryProjectRequestAminoMsg { type: "/regen.ecocredit.v1.QueryProjectRequest"; @@ -459,7 +459,7 @@ export interface QueryProjectRequestSDKType { /** QueryProjectResponse is the Query/Project response type. */ export interface QueryProjectResponse { /** project is the fetched project. */ - project: ProjectInfo; + project?: ProjectInfo; } export interface QueryProjectResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryProjectResponse"; @@ -476,12 +476,12 @@ export interface QueryProjectResponseAminoMsg { } /** QueryProjectResponse is the Query/Project response type. */ export interface QueryProjectResponseSDKType { - project: ProjectInfoSDKType; + project?: ProjectInfoSDKType; } /** QueryBatchesRequest is the Query/Batches request type. */ export interface QueryBatchesRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBatchesRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesRequest"; @@ -498,14 +498,14 @@ export interface QueryBatchesRequestAminoMsg { } /** QueryBatchesRequest is the Query/Batches request type. */ export interface QueryBatchesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBatchesResponse is the Query/Batches response type. */ export interface QueryBatchesResponse { /** batches are the fetched credit batches. */ batches: BatchInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBatchesResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesResponse"; @@ -514,7 +514,7 @@ export interface QueryBatchesResponseProtoMsg { /** QueryBatchesResponse is the Query/Batches response type. */ export interface QueryBatchesResponseAmino { /** batches are the fetched credit batches. */ - batches: BatchInfoAmino[]; + batches?: BatchInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -525,14 +525,14 @@ export interface QueryBatchesResponseAminoMsg { /** QueryBatchesResponse is the Query/Batches response type. */ export interface QueryBatchesResponseSDKType { batches: BatchInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryBatchesByIssuerRequest is the Query/BatchesByIssuer request type. */ export interface QueryBatchesByIssuerRequest { /** issuer is the address that issued the batch */ issuer: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBatchesByIssuerRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesByIssuerRequest"; @@ -541,7 +541,7 @@ export interface QueryBatchesByIssuerRequestProtoMsg { /** QueryBatchesByIssuerRequest is the Query/BatchesByIssuer request type. */ export interface QueryBatchesByIssuerRequestAmino { /** issuer is the address that issued the batch */ - issuer: string; + issuer?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -552,14 +552,14 @@ export interface QueryBatchesByIssuerRequestAminoMsg { /** QueryBatchesByIssuerRequest is the Query/BatchesByIssuer request type. */ export interface QueryBatchesByIssuerRequestSDKType { issuer: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBatchesByIssuerResponse is the Query/BatchesByIssuer response type. */ export interface QueryBatchesByIssuerResponse { /** batches are the fetched credit batches. */ batches: BatchInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBatchesByIssuerResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesByIssuerResponse"; @@ -568,7 +568,7 @@ export interface QueryBatchesByIssuerResponseProtoMsg { /** QueryBatchesByIssuerResponse is the Query/BatchesByIssuer response type. */ export interface QueryBatchesByIssuerResponseAmino { /** batches are the fetched credit batches. */ - batches: BatchInfoAmino[]; + batches?: BatchInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -579,14 +579,14 @@ export interface QueryBatchesByIssuerResponseAminoMsg { /** QueryBatchesByIssuerResponse is the Query/BatchesByIssuer response type. */ export interface QueryBatchesByIssuerResponseSDKType { batches: BatchInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryBatchesByClassRequest is the Query/BatchesByClass request type. */ export interface QueryBatchesByClassRequest { /** class_id is the unique identifier of the credit class to query. */ classId: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBatchesByClassRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesByClassRequest"; @@ -595,7 +595,7 @@ export interface QueryBatchesByClassRequestProtoMsg { /** QueryBatchesByClassRequest is the Query/BatchesByClass request type. */ export interface QueryBatchesByClassRequestAmino { /** class_id is the unique identifier of the credit class to query. */ - class_id: string; + class_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -606,14 +606,14 @@ export interface QueryBatchesByClassRequestAminoMsg { /** QueryBatchesByClassRequest is the Query/BatchesByClass request type. */ export interface QueryBatchesByClassRequestSDKType { class_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBatchesByProjectRequest is the Query/BatchesByProject request type. */ export interface QueryBatchesByProjectRequest { /** project_id is the unique identifier of the project to query. */ projectId: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBatchesByProjectRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesByProjectRequest"; @@ -622,7 +622,7 @@ export interface QueryBatchesByProjectRequestProtoMsg { /** QueryBatchesByProjectRequest is the Query/BatchesByProject request type. */ export interface QueryBatchesByProjectRequestAmino { /** project_id is the unique identifier of the project to query. */ - project_id: string; + project_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -633,14 +633,14 @@ export interface QueryBatchesByProjectRequestAminoMsg { /** QueryBatchesByProjectRequest is the Query/BatchesByProject request type. */ export interface QueryBatchesByProjectRequestSDKType { project_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBatchesByProjectResponse is the Query/BatchesByProject response type. */ export interface QueryBatchesByProjectResponse { /** batches are the fetched credit batches. */ batches: BatchInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBatchesByProjectResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesByProjectResponse"; @@ -649,7 +649,7 @@ export interface QueryBatchesByProjectResponseProtoMsg { /** QueryBatchesByProjectResponse is the Query/BatchesByProject response type. */ export interface QueryBatchesByProjectResponseAmino { /** batches are the fetched credit batches. */ - batches: BatchInfoAmino[]; + batches?: BatchInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -660,14 +660,14 @@ export interface QueryBatchesByProjectResponseAminoMsg { /** QueryBatchesByProjectResponse is the Query/BatchesByProject response type. */ export interface QueryBatchesByProjectResponseSDKType { batches: BatchInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryBatchesByClassResponse is the Query/BatchesByClass response type. */ export interface QueryBatchesByClassResponse { /** batches are the fetched credit batches. */ batches: BatchInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBatchesByClassResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchesByClassResponse"; @@ -676,7 +676,7 @@ export interface QueryBatchesByClassResponseProtoMsg { /** QueryBatchesByClassResponse is the Query/BatchesByClass response type. */ export interface QueryBatchesByClassResponseAmino { /** batches are the fetched credit batches. */ - batches: BatchInfoAmino[]; + batches?: BatchInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -687,7 +687,7 @@ export interface QueryBatchesByClassResponseAminoMsg { /** QueryBatchesByClassResponse is the Query/BatchesByClass response type. */ export interface QueryBatchesByClassResponseSDKType { batches: BatchInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryBatchRequest is the Query/Batch request type. */ export interface QueryBatchRequest { @@ -701,7 +701,7 @@ export interface QueryBatchRequestProtoMsg { /** QueryBatchRequest is the Query/Batch request type. */ export interface QueryBatchRequestAmino { /** batch_denom is the unique identifier of the credit batch to query. */ - batch_denom: string; + batch_denom?: string; } export interface QueryBatchRequestAminoMsg { type: "/regen.ecocredit.v1.QueryBatchRequest"; @@ -714,7 +714,7 @@ export interface QueryBatchRequestSDKType { /** QueryBatchResponse is the Query/Batch response type. */ export interface QueryBatchResponse { /** batch is the fetched credit batch. */ - batch: BatchInfo; + batch?: BatchInfo; } export interface QueryBatchResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBatchResponse"; @@ -731,7 +731,7 @@ export interface QueryBatchResponseAminoMsg { } /** QueryBatchResponse is the Query/Batch response type. */ export interface QueryBatchResponseSDKType { - batch: BatchInfoSDKType; + batch?: BatchInfoSDKType; } /** QueryBalanceRequest is the Query/Balance request type. */ export interface QueryBalanceRequest { @@ -747,9 +747,9 @@ export interface QueryBalanceRequestProtoMsg { /** QueryBalanceRequest is the Query/Balance request type. */ export interface QueryBalanceRequestAmino { /** address is the address of the account whose balance is being queried. */ - address: string; + address?: string; /** batch_denom is the unique identifier of the credit batch to query. */ - batch_denom: string; + batch_denom?: string; } export interface QueryBalanceRequestAminoMsg { type: "/regen.ecocredit.v1.QueryBalanceRequest"; @@ -763,7 +763,7 @@ export interface QueryBalanceRequestSDKType { /** QueryBalanceResponse is the Query/Balance response type. */ export interface QueryBalanceResponse { /** balance is the balance of the given account. */ - balance: BatchBalanceInfo; + balance?: BatchBalanceInfo; } export interface QueryBalanceResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBalanceResponse"; @@ -780,14 +780,14 @@ export interface QueryBalanceResponseAminoMsg { } /** QueryBalanceResponse is the Query/Balance response type. */ export interface QueryBalanceResponseSDKType { - balance: BatchBalanceInfoSDKType; + balance?: BatchBalanceInfoSDKType; } /** QueryBalancesRequest is the Query/Balances request type. */ export interface QueryBalancesRequest { /** address is the address of the account whose balance is being queried. */ address: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBalancesRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBalancesRequest"; @@ -796,7 +796,7 @@ export interface QueryBalancesRequestProtoMsg { /** QueryBalancesRequest is the Query/Balances request type. */ export interface QueryBalancesRequestAmino { /** address is the address of the account whose balance is being queried. */ - address: string; + address?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -807,7 +807,7 @@ export interface QueryBalancesRequestAminoMsg { /** QueryBalancesRequest is the Query/Balances request type. */ export interface QueryBalancesRequestSDKType { address: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBalancesResponse is the Query/Balances response type. */ export interface QueryBalancesResponse { @@ -817,7 +817,7 @@ export interface QueryBalancesResponse { */ balances: BatchBalanceInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBalancesResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBalancesResponse"; @@ -829,7 +829,7 @@ export interface QueryBalancesResponseAmino { * balances are a list of balances from different credit batches that the * account holds. */ - balances: BatchBalanceInfoAmino[]; + balances?: BatchBalanceInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -840,7 +840,7 @@ export interface QueryBalancesResponseAminoMsg { /** QueryBalancesResponse is the Query/Balances response type. */ export interface QueryBalancesResponseSDKType { balances: BatchBalanceInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryBalancesByBatchRequest is the Query/BalancesByBatch request type. @@ -851,7 +851,7 @@ export interface QueryBalancesByBatchRequest { /** batch_denom is the denom of the batch to query by. */ batchDenom: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBalancesByBatchRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBalancesByBatchRequest"; @@ -864,7 +864,7 @@ export interface QueryBalancesByBatchRequestProtoMsg { */ export interface QueryBalancesByBatchRequestAmino { /** batch_denom is the denom of the batch to query by. */ - batch_denom: string; + batch_denom?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -879,7 +879,7 @@ export interface QueryBalancesByBatchRequestAminoMsg { */ export interface QueryBalancesByBatchRequestSDKType { batch_denom: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryBalancesByBatchResponse is the Query/BalancesByBatch response type. @@ -893,7 +893,7 @@ export interface QueryBalancesByBatchResponse { */ balances: BatchBalanceInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBalancesByBatchResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryBalancesByBatchResponse"; @@ -909,7 +909,7 @@ export interface QueryBalancesByBatchResponseAmino { * balances are a list of balances from different credit batches that the * account holds. */ - balances: BatchBalanceInfoAmino[]; + balances?: BatchBalanceInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -924,7 +924,7 @@ export interface QueryBalancesByBatchResponseAminoMsg { */ export interface QueryBalancesByBatchResponseSDKType { balances: BatchBalanceInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryAllBalancesRequest is the Query/AllBalances request type. @@ -933,7 +933,7 @@ export interface QueryBalancesByBatchResponseSDKType { */ export interface QueryAllBalancesRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllBalancesRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryAllBalancesRequest"; @@ -958,7 +958,7 @@ export interface QueryAllBalancesRequestAminoMsg { * Since Revision 2 */ export interface QueryAllBalancesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAllBalancesResponse is the Query/AllBalances response type. @@ -972,7 +972,7 @@ export interface QueryAllBalancesResponse { */ balances: BatchBalanceInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllBalancesResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryAllBalancesResponse"; @@ -988,7 +988,7 @@ export interface QueryAllBalancesResponseAmino { * balances are a list of balances from different credit batches that the * account holds. */ - balances: BatchBalanceInfoAmino[]; + balances?: BatchBalanceInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -1003,7 +1003,7 @@ export interface QueryAllBalancesResponseAminoMsg { */ export interface QueryAllBalancesResponseSDKType { balances: BatchBalanceInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QuerySupplyRequest is the Query/Supply request type. */ export interface QuerySupplyRequest { @@ -1017,7 +1017,7 @@ export interface QuerySupplyRequestProtoMsg { /** QuerySupplyRequest is the Query/Supply request type. */ export interface QuerySupplyRequestAmino { /** batch_denom is the unique identifier of the credit batch to query. */ - batch_denom: string; + batch_denom?: string; } export interface QuerySupplyRequestAminoMsg { type: "/regen.ecocredit.v1.QuerySupplyRequest"; @@ -1055,17 +1055,17 @@ export interface QuerySupplyResponseAmino { * tradable_amount is the decimal number of tradable credits in the batch * supply. */ - tradable_amount: string; + tradable_amount?: string; /** * retired_amount is the decimal number of retired credits in the batch * supply. */ - retired_amount: string; + retired_amount?: string; /** * cancelled_amount is the decimal number of cancelled credits in the batch * supply. */ - cancelled_amount: string; + cancelled_amount?: string; } export interface QuerySupplyResponseAminoMsg { type: "/regen.ecocredit.v1.QuerySupplyResponse"; @@ -1106,7 +1106,7 @@ export interface QueryCreditTypesResponseProtoMsg { /** QueryCreditTypesRequest is the Query/Credit_Types response type */ export interface QueryCreditTypesResponseAmino { /** credit_types are the fetched credit types. */ - credit_types: CreditTypeAmino[]; + credit_types?: CreditTypeAmino[]; } export interface QueryCreditTypesResponseAminoMsg { type: "/regen.ecocredit.v1.QueryCreditTypesResponse"; @@ -1136,7 +1136,7 @@ export interface QueryParamsRequestSDKType { /** QueryParamsResponse is the Query/Params response type. */ export interface QueryParamsResponse { /** params defines the parameters of the ecocredit module. */ - params: Params; + params?: Params; } export interface QueryParamsResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryParamsResponse"; @@ -1153,7 +1153,7 @@ export interface QueryParamsResponseAminoMsg { } /** QueryParamsResponse is the Query/Params response type. */ export interface QueryParamsResponseSDKType { - params: ParamsSDKType; + params?: ParamsSDKType; } /** QueryCreditTypeRequest is the Query/CreditType request type */ export interface QueryCreditTypeRequest { @@ -1167,7 +1167,7 @@ export interface QueryCreditTypeRequestProtoMsg { /** QueryCreditTypeRequest is the Query/CreditType request type */ export interface QueryCreditTypeRequestAmino { /** abbreviation is the abbreviation of the credit type. */ - abbreviation: string; + abbreviation?: string; } export interface QueryCreditTypeRequestAminoMsg { type: "/regen.ecocredit.v1.QueryCreditTypeRequest"; @@ -1180,7 +1180,7 @@ export interface QueryCreditTypeRequestSDKType { /** QueryCreditTypeResponse is the Query/CreditType response type */ export interface QueryCreditTypeResponse { /** credit_type is the fetched credit type. */ - creditType: CreditType; + creditType?: CreditType; } export interface QueryCreditTypeResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryCreditTypeResponse"; @@ -1197,7 +1197,7 @@ export interface QueryCreditTypeResponseAminoMsg { } /** QueryCreditTypeResponse is the Query/CreditType response type */ export interface QueryCreditTypeResponseSDKType { - credit_type: CreditTypeSDKType; + credit_type?: CreditTypeSDKType; } /** ClassInfo is the human-readable credit class information. */ export interface ClassInfo { @@ -1220,16 +1220,16 @@ export interface ClassInfoProtoMsg { /** ClassInfo is the human-readable credit class information. */ export interface ClassInfoAmino { /** id is the unique identifier of the credit class. */ - id: string; + id?: string; /** admin is the admin of the credit class. */ - admin: string; + admin?: string; /** metadata is the arbitrary metadata attached to the credit class. */ - metadata: string; + metadata?: string; /** * credit_type_abbrev is the abbreviation of the credit type within which this * credit class was created. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; } export interface ClassInfoAminoMsg { type: "/regen.ecocredit.v1.ClassInfo"; @@ -1270,23 +1270,23 @@ export interface ProjectInfoProtoMsg { /** ProjectInfo is the human-readable project information. */ export interface ProjectInfoAmino { /** id is the unique identifier of the project. */ - id: string; + id?: string; /** admin is the admin of the project. */ - admin: string; + admin?: string; /** * class_id is the unique identifier of the credit class within which the * project was created. */ - class_id: string; + class_id?: string; /** * jurisdiction is the jurisdiction of the project. Full documentation can be * found in MsgCreateProject.jurisdiction. */ - jurisdiction: string; + jurisdiction?: string; /** metadata is the arbitrary metadata attached to the project. */ - metadata: string; + metadata?: string; /** reference_id is any arbitrary string that can be use to reference project. */ - reference_id: string; + reference_id?: string; } export interface ProjectInfoAminoMsg { type: "/regen.ecocredit.v1.ProjectInfo"; @@ -1324,14 +1324,14 @@ export interface BatchInfo { * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - startDate: Timestamp; + startDate?: Timestamp; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - endDate: Timestamp; + endDate?: Timestamp; /** issuance_date is the timestamp when the credit batch was issued. */ - issuanceDate: Timestamp; + issuanceDate?: Timestamp; /** * open determines whether or not the credit batch is open, i.e. whether or * not new credits can be minted to the credit batch. @@ -1348,36 +1348,36 @@ export interface BatchInfoAmino { * issuer is the address that created the batch and the address authorized to * mint new credits to the credit batch if the credit batch is open. */ - issuer: string; + issuer?: string; /** * project_id is the unique identifier of the project within which this credit * batch was created. */ - project_id: string; + project_id?: string; /** * denom is the unique identifier of the credit batch formed from the project * name, batch sequence number and dates. */ - denom: string; + denom?: string; /** metadata is any arbitrary metadata attached to the credit batch. */ - metadata: string; + metadata?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date?: TimestampAmino; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date?: TimestampAmino; + end_date?: string; /** issuance_date is the timestamp when the credit batch was issued. */ - issuance_date?: TimestampAmino; + issuance_date?: string; /** * open determines whether or not the credit batch is open, i.e. whether or * not new credits can be minted to the credit batch. */ - open: boolean; + open?: boolean; } export interface BatchInfoAminoMsg { type: "/regen.ecocredit.v1.BatchInfo"; @@ -1389,9 +1389,9 @@ export interface BatchInfoSDKType { project_id: string; denom: string; metadata: string; - start_date: TimestampSDKType; - end_date: TimestampSDKType; - issuance_date: TimestampSDKType; + start_date?: TimestampSDKType; + end_date?: TimestampSDKType; + issuance_date?: TimestampSDKType; open: boolean; } /** BatchBalanceInfo is the human-readable batch balance information. */ @@ -1419,20 +1419,20 @@ export interface BatchBalanceInfoProtoMsg { /** BatchBalanceInfo is the human-readable batch balance information. */ export interface BatchBalanceInfoAmino { /** address is the address of the account that owns the credits. */ - address: string; + address?: string; /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** tradable_amount is the total number of tradable credits owned by address. */ - tradable_amount: string; + tradable_amount?: string; /** retired_amount is the total number of retired credits owned by address. */ - retired_amount: string; + retired_amount?: string; /** * escrowed_amount is the total number of escrowed credits owned by address * and held in escrow by the marketplace. Credits are held in escrow when a * sell order is created and taken out of escrow when the sell order is either * cancelled, updated with a reduced quantity, or processed. */ - escrowed_amount: string; + escrowed_amount?: string; } export interface BatchBalanceInfoAminoMsg { type: "/regen.ecocredit.v1.BatchBalanceInfo"; @@ -1506,7 +1506,7 @@ export interface QueryClassCreatorAllowlistResponseAmino { * enabled determines whether or not the allowlist for creating credit classes * is enabled. */ - enabled: boolean; + enabled?: boolean; } export interface QueryClassCreatorAllowlistResponseAminoMsg { type: "/regen.ecocredit.v1.QueryClassCreatorAllowlistResponse"; @@ -1529,7 +1529,7 @@ export interface QueryClassCreatorAllowlistResponseSDKType { */ export interface QueryAllowedClassCreatorsRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryAllowedClassCreatorsRequestProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryAllowedClassCreatorsRequest"; @@ -1556,7 +1556,7 @@ export interface QueryAllowedClassCreatorsRequestAminoMsg { * Since Revision 2 */ export interface QueryAllowedClassCreatorsRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** * QueryAllowedClassCreatorsResponse is the Query/AllowedClassCreators response @@ -1568,7 +1568,7 @@ export interface QueryAllowedClassCreatorsResponse { /** class_creators is the list of allowed credit class creators. */ classCreators: string[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryAllowedClassCreatorsResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryAllowedClassCreatorsResponse"; @@ -1582,7 +1582,7 @@ export interface QueryAllowedClassCreatorsResponseProtoMsg { */ export interface QueryAllowedClassCreatorsResponseAmino { /** class_creators is the list of allowed credit class creators. */ - class_creators: string[]; + class_creators?: string[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -1598,7 +1598,7 @@ export interface QueryAllowedClassCreatorsResponseAminoMsg { */ export interface QueryAllowedClassCreatorsResponseSDKType { class_creators: string[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** * QueryClassFeeRequest is the Query/ClassFee request type. @@ -1639,7 +1639,7 @@ export interface QueryClassFeeResponse { * fee is the credit class creation fee. If not set, a credit class creation * fee is not required. */ - fee: Coin; + fee?: Coin; } export interface QueryClassFeeResponseProtoMsg { typeUrl: "/regen.ecocredit.v1.QueryClassFeeResponse"; @@ -1667,7 +1667,7 @@ export interface QueryClassFeeResponseAminoMsg { * Since Revision 2 */ export interface QueryClassFeeResponseSDKType { - fee: CoinSDKType; + fee?: CoinSDKType; } /** * QueryAllowedBridgeChainsRequest is the Query/AllowedBridgeChains request @@ -1729,7 +1729,7 @@ export interface QueryAllowedBridgeChainsResponseAmino { * allowed_bridge_chains is a list of chains that are allowed to be used in * bridge operations. */ - allowed_bridge_chains: string[]; + allowed_bridge_chains?: string[]; } export interface QueryAllowedBridgeChainsResponseAminoMsg { type: "/regen.ecocredit.v1.QueryAllowedBridgeChainsResponse"; @@ -1745,8 +1745,9 @@ export interface QueryAllowedBridgeChainsResponseSDKType { allowed_bridge_chains: string[]; } export declare const QueryClassesRequest: { - encode(message: QueryClassesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesRequest; + typeUrl: string; + encode(message: QueryClassesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesRequest; fromJSON(object: any): QueryClassesRequest; toJSON(message: QueryClassesRequest): unknown; fromPartial(object: Partial): QueryClassesRequest; @@ -1758,8 +1759,9 @@ export declare const QueryClassesRequest: { toProtoMsg(message: QueryClassesRequest): QueryClassesRequestProtoMsg; }; export declare const QueryClassesResponse: { - encode(message: QueryClassesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesResponse; + typeUrl: string; + encode(message: QueryClassesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesResponse; fromJSON(object: any): QueryClassesResponse; toJSON(message: QueryClassesResponse): unknown; fromPartial(object: Partial): QueryClassesResponse; @@ -1771,8 +1773,9 @@ export declare const QueryClassesResponse: { toProtoMsg(message: QueryClassesResponse): QueryClassesResponseProtoMsg; }; export declare const QueryClassesByAdminRequest: { - encode(message: QueryClassesByAdminRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesByAdminRequest; + typeUrl: string; + encode(message: QueryClassesByAdminRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesByAdminRequest; fromJSON(object: any): QueryClassesByAdminRequest; toJSON(message: QueryClassesByAdminRequest): unknown; fromPartial(object: Partial): QueryClassesByAdminRequest; @@ -1784,8 +1787,9 @@ export declare const QueryClassesByAdminRequest: { toProtoMsg(message: QueryClassesByAdminRequest): QueryClassesByAdminRequestProtoMsg; }; export declare const QueryClassesByAdminResponse: { - encode(message: QueryClassesByAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesByAdminResponse; + typeUrl: string; + encode(message: QueryClassesByAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesByAdminResponse; fromJSON(object: any): QueryClassesByAdminResponse; toJSON(message: QueryClassesByAdminResponse): unknown; fromPartial(object: Partial): QueryClassesByAdminResponse; @@ -1797,8 +1801,9 @@ export declare const QueryClassesByAdminResponse: { toProtoMsg(message: QueryClassesByAdminResponse): QueryClassesByAdminResponseProtoMsg; }; export declare const QueryClassRequest: { - encode(message: QueryClassRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassRequest; + typeUrl: string; + encode(message: QueryClassRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassRequest; fromJSON(object: any): QueryClassRequest; toJSON(message: QueryClassRequest): unknown; fromPartial(object: Partial): QueryClassRequest; @@ -1810,8 +1815,9 @@ export declare const QueryClassRequest: { toProtoMsg(message: QueryClassRequest): QueryClassRequestProtoMsg; }; export declare const QueryClassResponse: { - encode(message: QueryClassResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassResponse; + typeUrl: string; + encode(message: QueryClassResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassResponse; fromJSON(object: any): QueryClassResponse; toJSON(message: QueryClassResponse): unknown; fromPartial(object: Partial): QueryClassResponse; @@ -1823,8 +1829,9 @@ export declare const QueryClassResponse: { toProtoMsg(message: QueryClassResponse): QueryClassResponseProtoMsg; }; export declare const QueryClassIssuersRequest: { - encode(message: QueryClassIssuersRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassIssuersRequest; + typeUrl: string; + encode(message: QueryClassIssuersRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassIssuersRequest; fromJSON(object: any): QueryClassIssuersRequest; toJSON(message: QueryClassIssuersRequest): unknown; fromPartial(object: Partial): QueryClassIssuersRequest; @@ -1836,8 +1843,9 @@ export declare const QueryClassIssuersRequest: { toProtoMsg(message: QueryClassIssuersRequest): QueryClassIssuersRequestProtoMsg; }; export declare const QueryClassIssuersResponse: { - encode(message: QueryClassIssuersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassIssuersResponse; + typeUrl: string; + encode(message: QueryClassIssuersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassIssuersResponse; fromJSON(object: any): QueryClassIssuersResponse; toJSON(message: QueryClassIssuersResponse): unknown; fromPartial(object: Partial): QueryClassIssuersResponse; @@ -1849,8 +1857,9 @@ export declare const QueryClassIssuersResponse: { toProtoMsg(message: QueryClassIssuersResponse): QueryClassIssuersResponseProtoMsg; }; export declare const QueryProjectsRequest: { - encode(message: QueryProjectsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsRequest; + typeUrl: string; + encode(message: QueryProjectsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsRequest; fromJSON(object: any): QueryProjectsRequest; toJSON(message: QueryProjectsRequest): unknown; fromPartial(object: Partial): QueryProjectsRequest; @@ -1862,8 +1871,9 @@ export declare const QueryProjectsRequest: { toProtoMsg(message: QueryProjectsRequest): QueryProjectsRequestProtoMsg; }; export declare const QueryProjectsResponse: { - encode(message: QueryProjectsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsResponse; + typeUrl: string; + encode(message: QueryProjectsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsResponse; fromJSON(object: any): QueryProjectsResponse; toJSON(message: QueryProjectsResponse): unknown; fromPartial(object: Partial): QueryProjectsResponse; @@ -1875,8 +1885,9 @@ export declare const QueryProjectsResponse: { toProtoMsg(message: QueryProjectsResponse): QueryProjectsResponseProtoMsg; }; export declare const QueryProjectsByClassRequest: { - encode(message: QueryProjectsByClassRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsByClassRequest; + typeUrl: string; + encode(message: QueryProjectsByClassRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsByClassRequest; fromJSON(object: any): QueryProjectsByClassRequest; toJSON(message: QueryProjectsByClassRequest): unknown; fromPartial(object: Partial): QueryProjectsByClassRequest; @@ -1888,8 +1899,9 @@ export declare const QueryProjectsByClassRequest: { toProtoMsg(message: QueryProjectsByClassRequest): QueryProjectsByClassRequestProtoMsg; }; export declare const QueryProjectsByClassResponse: { - encode(message: QueryProjectsByClassResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsByClassResponse; + typeUrl: string; + encode(message: QueryProjectsByClassResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsByClassResponse; fromJSON(object: any): QueryProjectsByClassResponse; toJSON(message: QueryProjectsByClassResponse): unknown; fromPartial(object: Partial): QueryProjectsByClassResponse; @@ -1901,8 +1913,9 @@ export declare const QueryProjectsByClassResponse: { toProtoMsg(message: QueryProjectsByClassResponse): QueryProjectsByClassResponseProtoMsg; }; export declare const QueryProjectsByReferenceIdRequest: { - encode(message: QueryProjectsByReferenceIdRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsByReferenceIdRequest; + typeUrl: string; + encode(message: QueryProjectsByReferenceIdRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsByReferenceIdRequest; fromJSON(object: any): QueryProjectsByReferenceIdRequest; toJSON(message: QueryProjectsByReferenceIdRequest): unknown; fromPartial(object: Partial): QueryProjectsByReferenceIdRequest; @@ -1914,8 +1927,9 @@ export declare const QueryProjectsByReferenceIdRequest: { toProtoMsg(message: QueryProjectsByReferenceIdRequest): QueryProjectsByReferenceIdRequestProtoMsg; }; export declare const QueryProjectsByReferenceIdResponse: { - encode(message: QueryProjectsByReferenceIdResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsByReferenceIdResponse; + typeUrl: string; + encode(message: QueryProjectsByReferenceIdResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsByReferenceIdResponse; fromJSON(object: any): QueryProjectsByReferenceIdResponse; toJSON(message: QueryProjectsByReferenceIdResponse): unknown; fromPartial(object: Partial): QueryProjectsByReferenceIdResponse; @@ -1927,8 +1941,9 @@ export declare const QueryProjectsByReferenceIdResponse: { toProtoMsg(message: QueryProjectsByReferenceIdResponse): QueryProjectsByReferenceIdResponseProtoMsg; }; export declare const QueryProjectsByAdminRequest: { - encode(message: QueryProjectsByAdminRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsByAdminRequest; + typeUrl: string; + encode(message: QueryProjectsByAdminRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsByAdminRequest; fromJSON(object: any): QueryProjectsByAdminRequest; toJSON(message: QueryProjectsByAdminRequest): unknown; fromPartial(object: Partial): QueryProjectsByAdminRequest; @@ -1940,8 +1955,9 @@ export declare const QueryProjectsByAdminRequest: { toProtoMsg(message: QueryProjectsByAdminRequest): QueryProjectsByAdminRequestProtoMsg; }; export declare const QueryProjectsByAdminResponse: { - encode(message: QueryProjectsByAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectsByAdminResponse; + typeUrl: string; + encode(message: QueryProjectsByAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectsByAdminResponse; fromJSON(object: any): QueryProjectsByAdminResponse; toJSON(message: QueryProjectsByAdminResponse): unknown; fromPartial(object: Partial): QueryProjectsByAdminResponse; @@ -1953,8 +1969,9 @@ export declare const QueryProjectsByAdminResponse: { toProtoMsg(message: QueryProjectsByAdminResponse): QueryProjectsByAdminResponseProtoMsg; }; export declare const QueryProjectRequest: { - encode(message: QueryProjectRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectRequest; + typeUrl: string; + encode(message: QueryProjectRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectRequest; fromJSON(object: any): QueryProjectRequest; toJSON(message: QueryProjectRequest): unknown; fromPartial(object: Partial): QueryProjectRequest; @@ -1966,8 +1983,9 @@ export declare const QueryProjectRequest: { toProtoMsg(message: QueryProjectRequest): QueryProjectRequestProtoMsg; }; export declare const QueryProjectResponse: { - encode(message: QueryProjectResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryProjectResponse; + typeUrl: string; + encode(message: QueryProjectResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryProjectResponse; fromJSON(object: any): QueryProjectResponse; toJSON(message: QueryProjectResponse): unknown; fromPartial(object: Partial): QueryProjectResponse; @@ -1979,8 +1997,9 @@ export declare const QueryProjectResponse: { toProtoMsg(message: QueryProjectResponse): QueryProjectResponseProtoMsg; }; export declare const QueryBatchesRequest: { - encode(message: QueryBatchesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesRequest; + typeUrl: string; + encode(message: QueryBatchesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesRequest; fromJSON(object: any): QueryBatchesRequest; toJSON(message: QueryBatchesRequest): unknown; fromPartial(object: Partial): QueryBatchesRequest; @@ -1992,8 +2011,9 @@ export declare const QueryBatchesRequest: { toProtoMsg(message: QueryBatchesRequest): QueryBatchesRequestProtoMsg; }; export declare const QueryBatchesResponse: { - encode(message: QueryBatchesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesResponse; + typeUrl: string; + encode(message: QueryBatchesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesResponse; fromJSON(object: any): QueryBatchesResponse; toJSON(message: QueryBatchesResponse): unknown; fromPartial(object: Partial): QueryBatchesResponse; @@ -2005,8 +2025,9 @@ export declare const QueryBatchesResponse: { toProtoMsg(message: QueryBatchesResponse): QueryBatchesResponseProtoMsg; }; export declare const QueryBatchesByIssuerRequest: { - encode(message: QueryBatchesByIssuerRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesByIssuerRequest; + typeUrl: string; + encode(message: QueryBatchesByIssuerRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesByIssuerRequest; fromJSON(object: any): QueryBatchesByIssuerRequest; toJSON(message: QueryBatchesByIssuerRequest): unknown; fromPartial(object: Partial): QueryBatchesByIssuerRequest; @@ -2018,8 +2039,9 @@ export declare const QueryBatchesByIssuerRequest: { toProtoMsg(message: QueryBatchesByIssuerRequest): QueryBatchesByIssuerRequestProtoMsg; }; export declare const QueryBatchesByIssuerResponse: { - encode(message: QueryBatchesByIssuerResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesByIssuerResponse; + typeUrl: string; + encode(message: QueryBatchesByIssuerResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesByIssuerResponse; fromJSON(object: any): QueryBatchesByIssuerResponse; toJSON(message: QueryBatchesByIssuerResponse): unknown; fromPartial(object: Partial): QueryBatchesByIssuerResponse; @@ -2031,8 +2053,9 @@ export declare const QueryBatchesByIssuerResponse: { toProtoMsg(message: QueryBatchesByIssuerResponse): QueryBatchesByIssuerResponseProtoMsg; }; export declare const QueryBatchesByClassRequest: { - encode(message: QueryBatchesByClassRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesByClassRequest; + typeUrl: string; + encode(message: QueryBatchesByClassRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesByClassRequest; fromJSON(object: any): QueryBatchesByClassRequest; toJSON(message: QueryBatchesByClassRequest): unknown; fromPartial(object: Partial): QueryBatchesByClassRequest; @@ -2044,8 +2067,9 @@ export declare const QueryBatchesByClassRequest: { toProtoMsg(message: QueryBatchesByClassRequest): QueryBatchesByClassRequestProtoMsg; }; export declare const QueryBatchesByProjectRequest: { - encode(message: QueryBatchesByProjectRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesByProjectRequest; + typeUrl: string; + encode(message: QueryBatchesByProjectRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesByProjectRequest; fromJSON(object: any): QueryBatchesByProjectRequest; toJSON(message: QueryBatchesByProjectRequest): unknown; fromPartial(object: Partial): QueryBatchesByProjectRequest; @@ -2057,8 +2081,9 @@ export declare const QueryBatchesByProjectRequest: { toProtoMsg(message: QueryBatchesByProjectRequest): QueryBatchesByProjectRequestProtoMsg; }; export declare const QueryBatchesByProjectResponse: { - encode(message: QueryBatchesByProjectResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesByProjectResponse; + typeUrl: string; + encode(message: QueryBatchesByProjectResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesByProjectResponse; fromJSON(object: any): QueryBatchesByProjectResponse; toJSON(message: QueryBatchesByProjectResponse): unknown; fromPartial(object: Partial): QueryBatchesByProjectResponse; @@ -2070,8 +2095,9 @@ export declare const QueryBatchesByProjectResponse: { toProtoMsg(message: QueryBatchesByProjectResponse): QueryBatchesByProjectResponseProtoMsg; }; export declare const QueryBatchesByClassResponse: { - encode(message: QueryBatchesByClassResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesByClassResponse; + typeUrl: string; + encode(message: QueryBatchesByClassResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesByClassResponse; fromJSON(object: any): QueryBatchesByClassResponse; toJSON(message: QueryBatchesByClassResponse): unknown; fromPartial(object: Partial): QueryBatchesByClassResponse; @@ -2083,8 +2109,9 @@ export declare const QueryBatchesByClassResponse: { toProtoMsg(message: QueryBatchesByClassResponse): QueryBatchesByClassResponseProtoMsg; }; export declare const QueryBatchRequest: { - encode(message: QueryBatchRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchRequest; + typeUrl: string; + encode(message: QueryBatchRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchRequest; fromJSON(object: any): QueryBatchRequest; toJSON(message: QueryBatchRequest): unknown; fromPartial(object: Partial): QueryBatchRequest; @@ -2096,8 +2123,9 @@ export declare const QueryBatchRequest: { toProtoMsg(message: QueryBatchRequest): QueryBatchRequestProtoMsg; }; export declare const QueryBatchResponse: { - encode(message: QueryBatchResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchResponse; + typeUrl: string; + encode(message: QueryBatchResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchResponse; fromJSON(object: any): QueryBatchResponse; toJSON(message: QueryBatchResponse): unknown; fromPartial(object: Partial): QueryBatchResponse; @@ -2109,8 +2137,9 @@ export declare const QueryBatchResponse: { toProtoMsg(message: QueryBatchResponse): QueryBatchResponseProtoMsg; }; export declare const QueryBalanceRequest: { - encode(message: QueryBalanceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceRequest; + typeUrl: string; + encode(message: QueryBalanceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceRequest; fromJSON(object: any): QueryBalanceRequest; toJSON(message: QueryBalanceRequest): unknown; fromPartial(object: Partial): QueryBalanceRequest; @@ -2122,8 +2151,9 @@ export declare const QueryBalanceRequest: { toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg; }; export declare const QueryBalanceResponse: { - encode(message: QueryBalanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceResponse; + typeUrl: string; + encode(message: QueryBalanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceResponse; fromJSON(object: any): QueryBalanceResponse; toJSON(message: QueryBalanceResponse): unknown; fromPartial(object: Partial): QueryBalanceResponse; @@ -2135,8 +2165,9 @@ export declare const QueryBalanceResponse: { toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg; }; export declare const QueryBalancesRequest: { - encode(message: QueryBalancesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalancesRequest; + typeUrl: string; + encode(message: QueryBalancesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalancesRequest; fromJSON(object: any): QueryBalancesRequest; toJSON(message: QueryBalancesRequest): unknown; fromPartial(object: Partial): QueryBalancesRequest; @@ -2148,8 +2179,9 @@ export declare const QueryBalancesRequest: { toProtoMsg(message: QueryBalancesRequest): QueryBalancesRequestProtoMsg; }; export declare const QueryBalancesResponse: { - encode(message: QueryBalancesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalancesResponse; + typeUrl: string; + encode(message: QueryBalancesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalancesResponse; fromJSON(object: any): QueryBalancesResponse; toJSON(message: QueryBalancesResponse): unknown; fromPartial(object: Partial): QueryBalancesResponse; @@ -2161,8 +2193,9 @@ export declare const QueryBalancesResponse: { toProtoMsg(message: QueryBalancesResponse): QueryBalancesResponseProtoMsg; }; export declare const QueryBalancesByBatchRequest: { - encode(message: QueryBalancesByBatchRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalancesByBatchRequest; + typeUrl: string; + encode(message: QueryBalancesByBatchRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalancesByBatchRequest; fromJSON(object: any): QueryBalancesByBatchRequest; toJSON(message: QueryBalancesByBatchRequest): unknown; fromPartial(object: Partial): QueryBalancesByBatchRequest; @@ -2174,8 +2207,9 @@ export declare const QueryBalancesByBatchRequest: { toProtoMsg(message: QueryBalancesByBatchRequest): QueryBalancesByBatchRequestProtoMsg; }; export declare const QueryBalancesByBatchResponse: { - encode(message: QueryBalancesByBatchResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalancesByBatchResponse; + typeUrl: string; + encode(message: QueryBalancesByBatchResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalancesByBatchResponse; fromJSON(object: any): QueryBalancesByBatchResponse; toJSON(message: QueryBalancesByBatchResponse): unknown; fromPartial(object: Partial): QueryBalancesByBatchResponse; @@ -2187,8 +2221,9 @@ export declare const QueryBalancesByBatchResponse: { toProtoMsg(message: QueryBalancesByBatchResponse): QueryBalancesByBatchResponseProtoMsg; }; export declare const QueryAllBalancesRequest: { - encode(message: QueryAllBalancesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllBalancesRequest; + typeUrl: string; + encode(message: QueryAllBalancesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllBalancesRequest; fromJSON(object: any): QueryAllBalancesRequest; toJSON(message: QueryAllBalancesRequest): unknown; fromPartial(object: Partial): QueryAllBalancesRequest; @@ -2200,8 +2235,9 @@ export declare const QueryAllBalancesRequest: { toProtoMsg(message: QueryAllBalancesRequest): QueryAllBalancesRequestProtoMsg; }; export declare const QueryAllBalancesResponse: { - encode(message: QueryAllBalancesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllBalancesResponse; + typeUrl: string; + encode(message: QueryAllBalancesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllBalancesResponse; fromJSON(object: any): QueryAllBalancesResponse; toJSON(message: QueryAllBalancesResponse): unknown; fromPartial(object: Partial): QueryAllBalancesResponse; @@ -2213,8 +2249,9 @@ export declare const QueryAllBalancesResponse: { toProtoMsg(message: QueryAllBalancesResponse): QueryAllBalancesResponseProtoMsg; }; export declare const QuerySupplyRequest: { - encode(message: QuerySupplyRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyRequest; + typeUrl: string; + encode(message: QuerySupplyRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyRequest; fromJSON(object: any): QuerySupplyRequest; toJSON(message: QuerySupplyRequest): unknown; fromPartial(object: Partial): QuerySupplyRequest; @@ -2226,8 +2263,9 @@ export declare const QuerySupplyRequest: { toProtoMsg(message: QuerySupplyRequest): QuerySupplyRequestProtoMsg; }; export declare const QuerySupplyResponse: { - encode(message: QuerySupplyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyResponse; + typeUrl: string; + encode(message: QuerySupplyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyResponse; fromJSON(object: any): QuerySupplyResponse; toJSON(message: QuerySupplyResponse): unknown; fromPartial(object: Partial): QuerySupplyResponse; @@ -2239,8 +2277,9 @@ export declare const QuerySupplyResponse: { toProtoMsg(message: QuerySupplyResponse): QuerySupplyResponseProtoMsg; }; export declare const QueryCreditTypesRequest: { - encode(_: QueryCreditTypesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCreditTypesRequest; + typeUrl: string; + encode(_: QueryCreditTypesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCreditTypesRequest; fromJSON(_: any): QueryCreditTypesRequest; toJSON(_: QueryCreditTypesRequest): unknown; fromPartial(_: Partial): QueryCreditTypesRequest; @@ -2252,8 +2291,9 @@ export declare const QueryCreditTypesRequest: { toProtoMsg(message: QueryCreditTypesRequest): QueryCreditTypesRequestProtoMsg; }; export declare const QueryCreditTypesResponse: { - encode(message: QueryCreditTypesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCreditTypesResponse; + typeUrl: string; + encode(message: QueryCreditTypesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCreditTypesResponse; fromJSON(object: any): QueryCreditTypesResponse; toJSON(message: QueryCreditTypesResponse): unknown; fromPartial(object: Partial): QueryCreditTypesResponse; @@ -2265,8 +2305,9 @@ export declare const QueryCreditTypesResponse: { toProtoMsg(message: QueryCreditTypesResponse): QueryCreditTypesResponseProtoMsg; }; export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -2278,8 +2319,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -2291,8 +2333,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryCreditTypeRequest: { - encode(message: QueryCreditTypeRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCreditTypeRequest; + typeUrl: string; + encode(message: QueryCreditTypeRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCreditTypeRequest; fromJSON(object: any): QueryCreditTypeRequest; toJSON(message: QueryCreditTypeRequest): unknown; fromPartial(object: Partial): QueryCreditTypeRequest; @@ -2304,8 +2347,9 @@ export declare const QueryCreditTypeRequest: { toProtoMsg(message: QueryCreditTypeRequest): QueryCreditTypeRequestProtoMsg; }; export declare const QueryCreditTypeResponse: { - encode(message: QueryCreditTypeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCreditTypeResponse; + typeUrl: string; + encode(message: QueryCreditTypeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCreditTypeResponse; fromJSON(object: any): QueryCreditTypeResponse; toJSON(message: QueryCreditTypeResponse): unknown; fromPartial(object: Partial): QueryCreditTypeResponse; @@ -2317,8 +2361,9 @@ export declare const QueryCreditTypeResponse: { toProtoMsg(message: QueryCreditTypeResponse): QueryCreditTypeResponseProtoMsg; }; export declare const ClassInfo: { - encode(message: ClassInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClassInfo; + typeUrl: string; + encode(message: ClassInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClassInfo; fromJSON(object: any): ClassInfo; toJSON(message: ClassInfo): unknown; fromPartial(object: Partial): ClassInfo; @@ -2330,8 +2375,9 @@ export declare const ClassInfo: { toProtoMsg(message: ClassInfo): ClassInfoProtoMsg; }; export declare const ProjectInfo: { - encode(message: ProjectInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProjectInfo; + typeUrl: string; + encode(message: ProjectInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProjectInfo; fromJSON(object: any): ProjectInfo; toJSON(message: ProjectInfo): unknown; fromPartial(object: Partial): ProjectInfo; @@ -2343,8 +2389,9 @@ export declare const ProjectInfo: { toProtoMsg(message: ProjectInfo): ProjectInfoProtoMsg; }; export declare const BatchInfo: { - encode(message: BatchInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchInfo; + typeUrl: string; + encode(message: BatchInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchInfo; fromJSON(object: any): BatchInfo; toJSON(message: BatchInfo): unknown; fromPartial(object: Partial): BatchInfo; @@ -2356,8 +2403,9 @@ export declare const BatchInfo: { toProtoMsg(message: BatchInfo): BatchInfoProtoMsg; }; export declare const BatchBalanceInfo: { - encode(message: BatchBalanceInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchBalanceInfo; + typeUrl: string; + encode(message: BatchBalanceInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchBalanceInfo; fromJSON(object: any): BatchBalanceInfo; toJSON(message: BatchBalanceInfo): unknown; fromPartial(object: Partial): BatchBalanceInfo; @@ -2369,8 +2417,9 @@ export declare const BatchBalanceInfo: { toProtoMsg(message: BatchBalanceInfo): BatchBalanceInfoProtoMsg; }; export declare const QueryClassCreatorAllowlistRequest: { - encode(_: QueryClassCreatorAllowlistRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassCreatorAllowlistRequest; + typeUrl: string; + encode(_: QueryClassCreatorAllowlistRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassCreatorAllowlistRequest; fromJSON(_: any): QueryClassCreatorAllowlistRequest; toJSON(_: QueryClassCreatorAllowlistRequest): unknown; fromPartial(_: Partial): QueryClassCreatorAllowlistRequest; @@ -2382,8 +2431,9 @@ export declare const QueryClassCreatorAllowlistRequest: { toProtoMsg(message: QueryClassCreatorAllowlistRequest): QueryClassCreatorAllowlistRequestProtoMsg; }; export declare const QueryClassCreatorAllowlistResponse: { - encode(message: QueryClassCreatorAllowlistResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassCreatorAllowlistResponse; + typeUrl: string; + encode(message: QueryClassCreatorAllowlistResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassCreatorAllowlistResponse; fromJSON(object: any): QueryClassCreatorAllowlistResponse; toJSON(message: QueryClassCreatorAllowlistResponse): unknown; fromPartial(object: Partial): QueryClassCreatorAllowlistResponse; @@ -2395,8 +2445,9 @@ export declare const QueryClassCreatorAllowlistResponse: { toProtoMsg(message: QueryClassCreatorAllowlistResponse): QueryClassCreatorAllowlistResponseProtoMsg; }; export declare const QueryAllowedClassCreatorsRequest: { - encode(message: QueryAllowedClassCreatorsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowedClassCreatorsRequest; + typeUrl: string; + encode(message: QueryAllowedClassCreatorsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowedClassCreatorsRequest; fromJSON(object: any): QueryAllowedClassCreatorsRequest; toJSON(message: QueryAllowedClassCreatorsRequest): unknown; fromPartial(object: Partial): QueryAllowedClassCreatorsRequest; @@ -2408,8 +2459,9 @@ export declare const QueryAllowedClassCreatorsRequest: { toProtoMsg(message: QueryAllowedClassCreatorsRequest): QueryAllowedClassCreatorsRequestProtoMsg; }; export declare const QueryAllowedClassCreatorsResponse: { - encode(message: QueryAllowedClassCreatorsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowedClassCreatorsResponse; + typeUrl: string; + encode(message: QueryAllowedClassCreatorsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowedClassCreatorsResponse; fromJSON(object: any): QueryAllowedClassCreatorsResponse; toJSON(message: QueryAllowedClassCreatorsResponse): unknown; fromPartial(object: Partial): QueryAllowedClassCreatorsResponse; @@ -2421,8 +2473,9 @@ export declare const QueryAllowedClassCreatorsResponse: { toProtoMsg(message: QueryAllowedClassCreatorsResponse): QueryAllowedClassCreatorsResponseProtoMsg; }; export declare const QueryClassFeeRequest: { - encode(_: QueryClassFeeRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassFeeRequest; + typeUrl: string; + encode(_: QueryClassFeeRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassFeeRequest; fromJSON(_: any): QueryClassFeeRequest; toJSON(_: QueryClassFeeRequest): unknown; fromPartial(_: Partial): QueryClassFeeRequest; @@ -2434,8 +2487,9 @@ export declare const QueryClassFeeRequest: { toProtoMsg(message: QueryClassFeeRequest): QueryClassFeeRequestProtoMsg; }; export declare const QueryClassFeeResponse: { - encode(message: QueryClassFeeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassFeeResponse; + typeUrl: string; + encode(message: QueryClassFeeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassFeeResponse; fromJSON(object: any): QueryClassFeeResponse; toJSON(message: QueryClassFeeResponse): unknown; fromPartial(object: Partial): QueryClassFeeResponse; @@ -2447,8 +2501,9 @@ export declare const QueryClassFeeResponse: { toProtoMsg(message: QueryClassFeeResponse): QueryClassFeeResponseProtoMsg; }; export declare const QueryAllowedBridgeChainsRequest: { - encode(_: QueryAllowedBridgeChainsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowedBridgeChainsRequest; + typeUrl: string; + encode(_: QueryAllowedBridgeChainsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowedBridgeChainsRequest; fromJSON(_: any): QueryAllowedBridgeChainsRequest; toJSON(_: QueryAllowedBridgeChainsRequest): unknown; fromPartial(_: Partial): QueryAllowedBridgeChainsRequest; @@ -2460,8 +2515,9 @@ export declare const QueryAllowedBridgeChainsRequest: { toProtoMsg(message: QueryAllowedBridgeChainsRequest): QueryAllowedBridgeChainsRequestProtoMsg; }; export declare const QueryAllowedBridgeChainsResponse: { - encode(message: QueryAllowedBridgeChainsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryAllowedBridgeChainsResponse; + typeUrl: string; + encode(message: QueryAllowedBridgeChainsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryAllowedBridgeChainsResponse; fromJSON(object: any): QueryAllowedBridgeChainsResponse; toJSON(message: QueryAllowedBridgeChainsResponse): unknown; fromPartial(object: Partial): QueryAllowedBridgeChainsResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/v1/query.lcd.d.ts b/packages/api/types/codegen/regen/ecocredit/v1/query.lcd.d.ts index 0be78b4..022714c 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryClassesRequest, QueryClassesResponseSDKType, QueryClassesByAdminRequest, QueryClassesByAdminResponseSDKType, QueryClassRequest, QueryClassResponseSDKType, QueryClassIssuersRequest, QueryClassIssuersResponseSDKType, QueryProjectsRequest, QueryProjectsResponseSDKType, QueryProjectsByClassRequest, QueryProjectsByClassResponseSDKType, QueryProjectsByReferenceIdRequest, QueryProjectsByReferenceIdResponseSDKType, QueryProjectsByAdminRequest, QueryProjectsByAdminResponseSDKType, QueryProjectRequest, QueryProjectResponseSDKType, QueryBatchesRequest, QueryBatchesResponseSDKType, QueryBatchesByIssuerRequest, QueryBatchesByIssuerResponseSDKType, QueryBatchesByClassRequest, QueryBatchesByClassResponseSDKType, QueryBatchesByProjectRequest, QueryBatchesByProjectResponseSDKType, QueryBatchRequest, QueryBatchResponseSDKType, QueryBalanceRequest, QueryBalanceResponseSDKType, QueryBalancesRequest, QueryBalancesResponseSDKType, QueryBalancesByBatchRequest, QueryBalancesByBatchResponseSDKType, QueryAllBalancesRequest, QueryAllBalancesResponseSDKType, QuerySupplyRequest, QuerySupplyResponseSDKType, QueryCreditTypesRequest, QueryCreditTypesResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType, QueryCreditTypeRequest, QueryCreditTypeResponseSDKType, QueryClassCreatorAllowlistRequest, QueryClassCreatorAllowlistResponseSDKType, QueryAllowedClassCreatorsRequest, QueryAllowedClassCreatorsResponseSDKType, QueryClassFeeRequest, QueryClassFeeResponseSDKType, QueryAllowedBridgeChainsRequest, QueryAllowedBridgeChainsResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/regen/ecocredit/v1/state.d.ts b/packages/api/types/codegen/regen/ecocredit/v1/state.d.ts index 35928d7..7c3922d 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1/state.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1/state.d.ts @@ -1,7 +1,6 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * CreditType defines the measurement unit/precision of a certain credit type * (e.g. carbon, biodiversity...) @@ -32,13 +31,13 @@ export interface CreditTypeAmino { * abbreviation is a 1-3 character uppercase abbreviation of the CreditType * name, used in batch denominations within the CreditType. It must be unique. */ - abbreviation: string; + abbreviation?: string; /** name is the name of the credit type (e.g. carbon, biodiversity). */ - name: string; + name?: string; /** unit is the measurement unit of the credit type (e.g. kg, ton). */ - unit: string; + unit?: string; /** precision is the decimal precision of the credit type. */ - precision: number; + precision?: number; } export interface CreditTypeAminoMsg { type: "/regen.ecocredit.v1.CreditType"; @@ -60,7 +59,7 @@ export interface Class { * key is the table row identifier of the credit class used internally for * efficient lookups. This identifier is auto-incrementing. */ - key: Long; + key: bigint; /** * id is the unique identifier of the credit class auto-generated from the * credit type abbreviation and the credit class sequence number. @@ -83,18 +82,18 @@ export interface ClassAmino { * key is the table row identifier of the credit class used internally for * efficient lookups. This identifier is auto-incrementing. */ - key: string; + key?: string; /** * id is the unique identifier of the credit class auto-generated from the * credit type abbreviation and the credit class sequence number. */ - id: string; + id?: string; /** admin is the admin of the credit class. */ - admin: Uint8Array; + admin?: string; /** metadata is any arbitrary metadata to attached to the credit class. */ - metadata: string; + metadata?: string; /** credit_type_abbrev is the abbreviation of the credit type. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; } export interface ClassAminoMsg { type: "/regen.ecocredit.v1.Class"; @@ -102,7 +101,7 @@ export interface ClassAminoMsg { } /** Class represents the high-level on-chain information for a credit class. */ export interface ClassSDKType { - key: Long; + key: bigint; id: string; admin: Uint8Array; metadata: string; @@ -117,7 +116,7 @@ export interface ClassIssuer { * class_key is the table row identifier of the credit class used internally * for efficient lookups. This links a class issuer to a credit class. */ - classKey: Long; + classKey: bigint; /** issuer is the approved issuer of the credit class. */ issuer: Uint8Array; } @@ -134,9 +133,9 @@ export interface ClassIssuerAmino { * class_key is the table row identifier of the credit class used internally * for efficient lookups. This links a class issuer to a credit class. */ - class_key: string; + class_key?: string; /** issuer is the approved issuer of the credit class. */ - issuer: Uint8Array; + issuer?: string; } export interface ClassIssuerAminoMsg { type: "/regen.ecocredit.v1.ClassIssuer"; @@ -147,7 +146,7 @@ export interface ClassIssuerAminoMsg { * issuers */ export interface ClassIssuerSDKType { - class_key: Long; + class_key: bigint; issuer: Uint8Array; } /** Project represents the high-level on-chain information for a project. */ @@ -156,7 +155,7 @@ export interface Project { * key is the table row identifier of the project used internally for * efficient lookups. This identifier is auto-incrementing. */ - key: Long; + key: bigint; /** * id is the unique identifier of the project either auto-generated from the * credit class id and project sequence number or provided upon creation. @@ -168,7 +167,7 @@ export interface Project { * class_key is the table row identifier of the credit class used internally * for efficient lookups. This links a project to a credit class. */ - classKey: Long; + classKey: bigint; /** * jurisdiction is the jurisdiction of the project. * Full documentation can be found in MsgCreateProject.jurisdiction. @@ -189,28 +188,28 @@ export interface ProjectAmino { * key is the table row identifier of the project used internally for * efficient lookups. This identifier is auto-incrementing. */ - key: string; + key?: string; /** * id is the unique identifier of the project either auto-generated from the * credit class id and project sequence number or provided upon creation. */ - id: string; + id?: string; /** admin is the admin of the project. */ - admin: Uint8Array; + admin?: string; /** * class_key is the table row identifier of the credit class used internally * for efficient lookups. This links a project to a credit class. */ - class_key: string; + class_key?: string; /** * jurisdiction is the jurisdiction of the project. * Full documentation can be found in MsgCreateProject.jurisdiction. */ - jurisdiction: string; + jurisdiction?: string; /** metadata is any arbitrary metadata attached to the project. */ - metadata: string; + metadata?: string; /** reference_id is any arbitrary string used to reference the project. */ - reference_id: string; + reference_id?: string; } export interface ProjectAminoMsg { type: "/regen.ecocredit.v1.Project"; @@ -218,10 +217,10 @@ export interface ProjectAminoMsg { } /** Project represents the high-level on-chain information for a project. */ export interface ProjectSDKType { - key: Long; + key: bigint; id: string; admin: Uint8Array; - class_key: Long; + class_key: bigint; jurisdiction: string; metadata: string; reference_id: string; @@ -232,7 +231,7 @@ export interface Batch { * key is the table row identifier of the credit batch used internally for * efficient lookups. This identifier is auto-incrementing. */ - key: Long; + key: bigint; /** * issuer is the address that created the batch and which is * authorized to mint more credits if open=true. @@ -242,7 +241,7 @@ export interface Batch { * project_key is the table row identifier of the credit class used internally * for efficient lookups. This links a credit batch to a project. */ - projectKey: Long; + projectKey: bigint; /** * denom is the unique identifier of the credit batch formed from the * project id, the batch sequence number, and the start and end date of the @@ -255,14 +254,14 @@ export interface Batch { * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - startDate: Timestamp; + startDate?: Timestamp; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - endDate: Timestamp; + endDate?: Timestamp; /** issuance_date is the timestamp when the credit batch was issued. */ - issuanceDate: Timestamp; + issuanceDate?: Timestamp; /** * open tells if it's possible to mint new credits in the future. * Once `open` is set to false, it can't be toggled any more. @@ -279,42 +278,42 @@ export interface BatchAmino { * key is the table row identifier of the credit batch used internally for * efficient lookups. This identifier is auto-incrementing. */ - key: string; + key?: string; /** * issuer is the address that created the batch and which is * authorized to mint more credits if open=true. */ - issuer: Uint8Array; + issuer?: string; /** * project_key is the table row identifier of the credit class used internally * for efficient lookups. This links a credit batch to a project. */ - project_key: string; + project_key?: string; /** * denom is the unique identifier of the credit batch formed from the * project id, the batch sequence number, and the start and end date of the * credit batch. */ - denom: string; + denom?: string; /** metadata is any arbitrary metadata attached to the credit batch. */ - metadata: string; + metadata?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date?: TimestampAmino; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date?: TimestampAmino; + end_date?: string; /** issuance_date is the timestamp when the credit batch was issued. */ - issuance_date?: TimestampAmino; + issuance_date?: string; /** * open tells if it's possible to mint new credits in the future. * Once `open` is set to false, it can't be toggled any more. */ - open: boolean; + open?: boolean; } export interface BatchAminoMsg { type: "/regen.ecocredit.v1.Batch"; @@ -322,14 +321,14 @@ export interface BatchAminoMsg { } /** Batch represents the high-level on-chain information for a credit batch. */ export interface BatchSDKType { - key: Long; + key: bigint; issuer: Uint8Array; - project_key: Long; + project_key: bigint; denom: string; metadata: string; - start_date: TimestampSDKType; - end_date: TimestampSDKType; - issuance_date: TimestampSDKType; + start_date?: TimestampSDKType; + end_date?: TimestampSDKType; + issuance_date?: TimestampSDKType; open: boolean; } /** @@ -346,7 +345,7 @@ export interface ClassSequence { * next_sequence is the next sequence number for a credit class within the * credit type. The sequence number is used to generate a class id. */ - nextSequence: Long; + nextSequence: bigint; } export interface ClassSequenceProtoMsg { typeUrl: "/regen.ecocredit.v1.ClassSequence"; @@ -361,12 +360,12 @@ export interface ClassSequenceAmino { * credit_type_abbrev is the credit type abbreviation. This links a class * sequence to a credit type. */ - credit_type_abbrev: string; + credit_type_abbrev?: string; /** * next_sequence is the next sequence number for a credit class within the * credit type. The sequence number is used to generate a class id. */ - next_sequence: string; + next_sequence?: string; } export interface ClassSequenceAminoMsg { type: "/regen.ecocredit.v1.ClassSequence"; @@ -378,7 +377,7 @@ export interface ClassSequenceAminoMsg { */ export interface ClassSequenceSDKType { credit_type_abbrev: string; - next_sequence: Long; + next_sequence: bigint; } /** * ProjectSequence stores and increments the sequence number for projects within @@ -389,12 +388,12 @@ export interface ProjectSequence { * class_key is the table row identifier of the credit class used internally * for efficient lookups. This links a project sequence to a credit class. */ - classKey: Long; + classKey: bigint; /** * next_sequence is the next sequence number for a project within the credit * class. The sequence number is used to generate a project id. */ - nextSequence: Long; + nextSequence: bigint; } export interface ProjectSequenceProtoMsg { typeUrl: "/regen.ecocredit.v1.ProjectSequence"; @@ -409,12 +408,12 @@ export interface ProjectSequenceAmino { * class_key is the table row identifier of the credit class used internally * for efficient lookups. This links a project sequence to a credit class. */ - class_key: string; + class_key?: string; /** * next_sequence is the next sequence number for a project within the credit * class. The sequence number is used to generate a project id. */ - next_sequence: string; + next_sequence?: string; } export interface ProjectSequenceAminoMsg { type: "/regen.ecocredit.v1.ProjectSequence"; @@ -425,8 +424,8 @@ export interface ProjectSequenceAminoMsg { * a credit class. */ export interface ProjectSequenceSDKType { - class_key: Long; - next_sequence: Long; + class_key: bigint; + next_sequence: bigint; } /** * BatchSequence stores and increments the sequence number for credit batches @@ -437,12 +436,12 @@ export interface BatchSequence { * project_key is the table row identifier of the project used internally for * efficient lookups. This links a batch sequence to a project. */ - projectKey: Long; + projectKey: bigint; /** * next_sequence is the next sequence number for a credit batch within the * project. The sequence number is used to generate a batch denom. */ - nextSequence: Long; + nextSequence: bigint; } export interface BatchSequenceProtoMsg { typeUrl: "/regen.ecocredit.v1.BatchSequence"; @@ -457,12 +456,12 @@ export interface BatchSequenceAmino { * project_key is the table row identifier of the project used internally for * efficient lookups. This links a batch sequence to a project. */ - project_key: string; + project_key?: string; /** * next_sequence is the next sequence number for a credit batch within the * project. The sequence number is used to generate a batch denom. */ - next_sequence: string; + next_sequence?: string; } export interface BatchSequenceAminoMsg { type: "/regen.ecocredit.v1.BatchSequence"; @@ -473,8 +472,8 @@ export interface BatchSequenceAminoMsg { * within a project. */ export interface BatchSequenceSDKType { - project_key: Long; - next_sequence: Long; + project_key: bigint; + next_sequence: bigint; } /** BatchBalance stores each accounts credit balance. */ export interface BatchBalance { @@ -482,7 +481,7 @@ export interface BatchBalance { * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links a batch balance to a credit batch. */ - batchKey: Long; + batchKey: bigint; /** address is the address of the account that owns the credits. */ address: Uint8Array; /** tradable_amount is the total number of tradable credits owned by address. */ @@ -507,20 +506,20 @@ export interface BatchBalanceAmino { * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links a batch balance to a credit batch. */ - batch_key: string; + batch_key?: string; /** address is the address of the account that owns the credits. */ - address: Uint8Array; + address?: string; /** tradable_amount is the total number of tradable credits owned by address. */ - tradable_amount: string; + tradable_amount?: string; /** retired_amount is the total number of retired credits owned by address. */ - retired_amount: string; + retired_amount?: string; /** * escrowed_amount is the total number of escrowed credits owned by address * and held in escrow by the marketplace. Credits are held in escrow when a * sell order is created and taken out of escrow when the sell order is either * cancelled, updated with a reduced quantity, or processed. */ - escrowed_amount: string; + escrowed_amount?: string; } export interface BatchBalanceAminoMsg { type: "/regen.ecocredit.v1.BatchBalance"; @@ -528,7 +527,7 @@ export interface BatchBalanceAminoMsg { } /** BatchBalance stores each accounts credit balance. */ export interface BatchBalanceSDKType { - batch_key: Long; + batch_key: bigint; address: Uint8Array; tradable_amount: string; retired_amount: string; @@ -540,7 +539,7 @@ export interface BatchSupply { * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links a batch supply to a credit batch. */ - batchKey: Long; + batchKey: bigint; /** * tradable_amount is the total number of tradable credits in the credit * batch. Tradable credits may be retired in which case they will be removed @@ -574,7 +573,7 @@ export interface BatchSupplyAmino { * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links a batch supply to a credit batch. */ - batch_key: string; + batch_key?: string; /** * tradable_amount is the total number of tradable credits in the credit * batch. Tradable credits may be retired in which case they will be removed @@ -583,20 +582,20 @@ export interface BatchSupplyAmino { * and tracked in cancelled_amount. The sum of the tradable, retired, and * cancelled amounts will always equal the original credit issuance amount. */ - tradable_amount: string; + tradable_amount?: string; /** * retired_amount is the total amount of credits that have been retired in the * credit batch. The sum of the tradable, retired, and cancelled amounts will * always equal the original credit issuance amount. */ - retired_amount: string; + retired_amount?: string; /** * cancelled_amount is the number of credits in the batch that have been * cancelled, effectively undoing the issuance. The sum of the tradable, * retired, and cancelled amounts will always equal the original credit * issuance amount. */ - cancelled_amount: string; + cancelled_amount?: string; } export interface BatchSupplyAminoMsg { type: "/regen.ecocredit.v1.BatchSupply"; @@ -604,7 +603,7 @@ export interface BatchSupplyAminoMsg { } /** BatchSupply stores the supply of credits for a credit batch. */ export interface BatchSupplySDKType { - batch_key: Long; + batch_key: bigint; tradable_amount: string; retired_amount: string; cancelled_amount: string; @@ -623,7 +622,7 @@ export interface OriginTxIndex { * to prevent malicious credit class issuers from blocking bridge operations * taking place within another credit class. */ - classKey: Long; + classKey: bigint; /** * id is the transaction ID of an originating transaction or operation * based on a type (i.e. transaction ID, serial number). @@ -653,17 +652,17 @@ export interface OriginTxIndexAmino { * to prevent malicious credit class issuers from blocking bridge operations * taking place within another credit class. */ - class_key: string; + class_key?: string; /** * id is the transaction ID of an originating transaction or operation * based on a type (i.e. transaction ID, serial number). */ - id: string; + id?: string; /** * source is the source chain or registry of the transaction originating * the mint process (e.g. polygon, ethereum, verra). */ - source: string; + source?: string; } export interface OriginTxIndexAminoMsg { type: "/regen.ecocredit.v1.OriginTxIndex"; @@ -677,7 +676,7 @@ export interface OriginTxIndexAminoMsg { * bridge operations taking place within another credit class. */ export interface OriginTxIndexSDKType { - class_key: Long; + class_key: bigint; id: string; source: string; } @@ -692,14 +691,14 @@ export interface BatchContract { * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links an external contract to a credit batch. */ - batchKey: Long; + batchKey: bigint; /** * class_key is the table row identifier of the credit class within which the * credit batch exists. A contract is unique within the scope of a credit * class to prevent malicious credit class issuers from blocking bridge * operations taking place within another credit class. */ - classKey: Long; + classKey: bigint; /** * contract is the address of the contract on the source chain that was * executed when creating the transaction. This address will be used when @@ -722,20 +721,20 @@ export interface BatchContractAmino { * batch_key is the table row identifier of the credit batch used internally * for efficient lookups. This links an external contract to a credit batch. */ - batch_key: string; + batch_key?: string; /** * class_key is the table row identifier of the credit class within which the * credit batch exists. A contract is unique within the scope of a credit * class to prevent malicious credit class issuers from blocking bridge * operations taking place within another credit class. */ - class_key: string; + class_key?: string; /** * contract is the address of the contract on the source chain that was * executed when creating the transaction. This address will be used when * sending credits back to the source chain. */ - contract: string; + contract?: string; } export interface BatchContractAminoMsg { type: "/regen.ecocredit.v1.BatchContract"; @@ -748,8 +747,8 @@ export interface BatchContractAminoMsg { * have been bridged will always be bridged back to the original contract. */ export interface BatchContractSDKType { - batch_key: Long; - class_key: Long; + batch_key: bigint; + class_key: bigint; contract: string; } /** @@ -778,7 +777,7 @@ export interface ClassCreatorAllowlistProtoMsg { */ export interface ClassCreatorAllowlistAmino { /** enabled is whether or not the allow list is enabled. */ - enabled: boolean; + enabled?: boolean; } export interface ClassCreatorAllowlistAminoMsg { type: "/regen.ecocredit.v1.ClassCreatorAllowlist"; @@ -817,7 +816,7 @@ export interface AllowedClassCreatorProtoMsg { */ export interface AllowedClassCreatorAmino { /** address is the address that is allowed to create credit classes */ - address: Uint8Array; + address?: string; } export interface AllowedClassCreatorAminoMsg { type: "/regen.ecocredit.v1.AllowedClassCreator"; @@ -843,7 +842,7 @@ export interface ClassFee { * fee is the credit class creation fee. If not set, a credit class creation * fee is not required. */ - fee: Coin; + fee?: Coin; } export interface ClassFeeProtoMsg { typeUrl: "/regen.ecocredit.v1.ClassFee"; @@ -873,7 +872,7 @@ export interface ClassFeeAminoMsg { * Since Revision 2 */ export interface ClassFeeSDKType { - fee: CoinSDKType; + fee?: CoinSDKType; } /** * AllowedBridgeChain is a list of chains that are allowed to be used in @@ -901,7 +900,7 @@ export interface AllowedBridgeChainProtoMsg { */ export interface AllowedBridgeChainAmino { /** chain_name is the name of the chain allowed to bridge ecocredits to. */ - chain_name: string; + chain_name?: string; } export interface AllowedBridgeChainAminoMsg { type: "/regen.ecocredit.v1.AllowedBridgeChain"; @@ -919,8 +918,9 @@ export interface AllowedBridgeChainSDKType { chain_name: string; } export declare const CreditType: { - encode(message: CreditType, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CreditType; + typeUrl: string; + encode(message: CreditType, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CreditType; fromJSON(object: any): CreditType; toJSON(message: CreditType): unknown; fromPartial(object: Partial): CreditType; @@ -932,8 +932,9 @@ export declare const CreditType: { toProtoMsg(message: CreditType): CreditTypeProtoMsg; }; export declare const Class: { - encode(message: Class, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Class; + typeUrl: string; + encode(message: Class, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Class; fromJSON(object: any): Class; toJSON(message: Class): unknown; fromPartial(object: Partial): Class; @@ -945,8 +946,9 @@ export declare const Class: { toProtoMsg(message: Class): ClassProtoMsg; }; export declare const ClassIssuer: { - encode(message: ClassIssuer, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClassIssuer; + typeUrl: string; + encode(message: ClassIssuer, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClassIssuer; fromJSON(object: any): ClassIssuer; toJSON(message: ClassIssuer): unknown; fromPartial(object: Partial): ClassIssuer; @@ -958,8 +960,9 @@ export declare const ClassIssuer: { toProtoMsg(message: ClassIssuer): ClassIssuerProtoMsg; }; export declare const Project: { - encode(message: Project, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Project; + typeUrl: string; + encode(message: Project, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Project; fromJSON(object: any): Project; toJSON(message: Project): unknown; fromPartial(object: Partial): Project; @@ -971,8 +974,9 @@ export declare const Project: { toProtoMsg(message: Project): ProjectProtoMsg; }; export declare const Batch: { - encode(message: Batch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Batch; + typeUrl: string; + encode(message: Batch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Batch; fromJSON(object: any): Batch; toJSON(message: Batch): unknown; fromPartial(object: Partial): Batch; @@ -984,8 +988,9 @@ export declare const Batch: { toProtoMsg(message: Batch): BatchProtoMsg; }; export declare const ClassSequence: { - encode(message: ClassSequence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClassSequence; + typeUrl: string; + encode(message: ClassSequence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClassSequence; fromJSON(object: any): ClassSequence; toJSON(message: ClassSequence): unknown; fromPartial(object: Partial): ClassSequence; @@ -997,8 +1002,9 @@ export declare const ClassSequence: { toProtoMsg(message: ClassSequence): ClassSequenceProtoMsg; }; export declare const ProjectSequence: { - encode(message: ProjectSequence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProjectSequence; + typeUrl: string; + encode(message: ProjectSequence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProjectSequence; fromJSON(object: any): ProjectSequence; toJSON(message: ProjectSequence): unknown; fromPartial(object: Partial): ProjectSequence; @@ -1010,8 +1016,9 @@ export declare const ProjectSequence: { toProtoMsg(message: ProjectSequence): ProjectSequenceProtoMsg; }; export declare const BatchSequence: { - encode(message: BatchSequence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchSequence; + typeUrl: string; + encode(message: BatchSequence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchSequence; fromJSON(object: any): BatchSequence; toJSON(message: BatchSequence): unknown; fromPartial(object: Partial): BatchSequence; @@ -1023,8 +1030,9 @@ export declare const BatchSequence: { toProtoMsg(message: BatchSequence): BatchSequenceProtoMsg; }; export declare const BatchBalance: { - encode(message: BatchBalance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchBalance; + typeUrl: string; + encode(message: BatchBalance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchBalance; fromJSON(object: any): BatchBalance; toJSON(message: BatchBalance): unknown; fromPartial(object: Partial): BatchBalance; @@ -1036,8 +1044,9 @@ export declare const BatchBalance: { toProtoMsg(message: BatchBalance): BatchBalanceProtoMsg; }; export declare const BatchSupply: { - encode(message: BatchSupply, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchSupply; + typeUrl: string; + encode(message: BatchSupply, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchSupply; fromJSON(object: any): BatchSupply; toJSON(message: BatchSupply): unknown; fromPartial(object: Partial): BatchSupply; @@ -1049,8 +1058,9 @@ export declare const BatchSupply: { toProtoMsg(message: BatchSupply): BatchSupplyProtoMsg; }; export declare const OriginTxIndex: { - encode(message: OriginTxIndex, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): OriginTxIndex; + typeUrl: string; + encode(message: OriginTxIndex, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): OriginTxIndex; fromJSON(object: any): OriginTxIndex; toJSON(message: OriginTxIndex): unknown; fromPartial(object: Partial): OriginTxIndex; @@ -1062,8 +1072,9 @@ export declare const OriginTxIndex: { toProtoMsg(message: OriginTxIndex): OriginTxIndexProtoMsg; }; export declare const BatchContract: { - encode(message: BatchContract, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchContract; + typeUrl: string; + encode(message: BatchContract, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchContract; fromJSON(object: any): BatchContract; toJSON(message: BatchContract): unknown; fromPartial(object: Partial): BatchContract; @@ -1075,8 +1086,9 @@ export declare const BatchContract: { toProtoMsg(message: BatchContract): BatchContractProtoMsg; }; export declare const ClassCreatorAllowlist: { - encode(message: ClassCreatorAllowlist, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClassCreatorAllowlist; + typeUrl: string; + encode(message: ClassCreatorAllowlist, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClassCreatorAllowlist; fromJSON(object: any): ClassCreatorAllowlist; toJSON(message: ClassCreatorAllowlist): unknown; fromPartial(object: Partial): ClassCreatorAllowlist; @@ -1088,8 +1100,9 @@ export declare const ClassCreatorAllowlist: { toProtoMsg(message: ClassCreatorAllowlist): ClassCreatorAllowlistProtoMsg; }; export declare const AllowedClassCreator: { - encode(message: AllowedClassCreator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AllowedClassCreator; + typeUrl: string; + encode(message: AllowedClassCreator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AllowedClassCreator; fromJSON(object: any): AllowedClassCreator; toJSON(message: AllowedClassCreator): unknown; fromPartial(object: Partial): AllowedClassCreator; @@ -1101,8 +1114,9 @@ export declare const AllowedClassCreator: { toProtoMsg(message: AllowedClassCreator): AllowedClassCreatorProtoMsg; }; export declare const ClassFee: { - encode(message: ClassFee, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClassFee; + typeUrl: string; + encode(message: ClassFee, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClassFee; fromJSON(object: any): ClassFee; toJSON(message: ClassFee): unknown; fromPartial(object: Partial): ClassFee; @@ -1114,8 +1128,9 @@ export declare const ClassFee: { toProtoMsg(message: ClassFee): ClassFeeProtoMsg; }; export declare const AllowedBridgeChain: { - encode(message: AllowedBridgeChain, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AllowedBridgeChain; + typeUrl: string; + encode(message: AllowedBridgeChain, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AllowedBridgeChain; fromJSON(object: any): AllowedBridgeChain; toJSON(message: AllowedBridgeChain): unknown; fromPartial(object: Partial): AllowedBridgeChain; diff --git a/packages/api/types/codegen/regen/ecocredit/v1/tx.d.ts b/packages/api/types/codegen/regen/ecocredit/v1/tx.d.ts index eaf84eb..804f91b 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1/tx.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1/tx.d.ts @@ -1,8 +1,8 @@ import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; import { BatchIssuance, BatchIssuanceAmino, BatchIssuanceSDKType, OriginTx, OriginTxAmino, OriginTxSDKType, Credits, CreditsAmino, CreditsSDKType } from "./types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { CreditType, CreditTypeAmino, CreditTypeSDKType } from "./state"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * MsgAddCreditType is the Msg/AddCreditType request type. * @@ -12,7 +12,7 @@ export interface MsgAddCreditType { /** authority is the address of the governance account. */ authority: string; /** credit_type defines a credit type to add to the credit types parameter. */ - creditType: CreditType; + creditType?: CreditType; } export interface MsgAddCreditTypeProtoMsg { typeUrl: "/regen.ecocredit.v1.MsgAddCreditType"; @@ -25,7 +25,7 @@ export interface MsgAddCreditTypeProtoMsg { */ export interface MsgAddCreditTypeAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** credit_type defines a credit type to add to the credit types parameter. */ credit_type?: CreditTypeAmino; } @@ -40,7 +40,7 @@ export interface MsgAddCreditTypeAminoMsg { */ export interface MsgAddCreditTypeSDKType { authority: string; - credit_type: CreditTypeSDKType; + credit_type?: CreditTypeSDKType; } /** * MsgAddCreditTypeResponse is the Msg/AddCreditType response type. @@ -101,7 +101,7 @@ export interface MsgCreateClass { * creation fee parameter is set. The provided fee can be greater than the * parameter, but only the amount in the parameter will be charged. */ - fee: Coin; + fee?: Coin; } export interface MsgCreateClassProtoMsg { typeUrl: "/regen.ecocredit.v1.MsgCreateClass"; @@ -116,22 +116,22 @@ export interface MsgCreateClassAmino { * the list of approved issuers. If Params.allowlist_enabled is set to true, * this address must be included in Params.allowed_class_creators. */ - admin: string; + admin?: string; /** * issuers are the addresses of the accounts that will have permissions within * the credit class to create projects and issue credits. */ - issuers: string[]; + issuers?: string[]; /** * metadata is any arbitrary string with a maximum length of 256 characters * that includes or references metadata to attach to the credit class. */ - metadata: string; + metadata?: string; /** * credit_type_abbrev is the abbreviation of the credit type under which the * credit class will be created (e.g. "C", "BIO"). */ - credit_type_abbrev: string; + credit_type_abbrev?: string; /** * fee is the credit class creation fee. An equal fee is required if the class * creation fee parameter is set. The provided fee can be greater than the @@ -149,7 +149,7 @@ export interface MsgCreateClassSDKType { issuers: string[]; metadata: string; credit_type_abbrev: string; - fee: CoinSDKType; + fee?: CoinSDKType; } /** MsgCreateClassResponse is the Msg/CreateClass response type. */ export interface MsgCreateClassResponse { @@ -163,7 +163,7 @@ export interface MsgCreateClassResponseProtoMsg { /** MsgCreateClassResponse is the Msg/CreateClass response type. */ export interface MsgCreateClassResponseAmino { /** class_id is the unique identifier of the credit class. */ - class_id: string; + class_id?: string; } export interface MsgCreateClassResponseAminoMsg { type: "/regen.ecocredit.v1.MsgCreateClassResponse"; @@ -222,17 +222,17 @@ export interface MsgCreateProjectAmino { * created. The admin will have permissions to update the project including * the ability to reassign the admin role to another account. */ - admin: string; + admin?: string; /** * class_id is the unique identifier of the credit class under which the * project will be created. */ - class_id: string; + class_id?: string; /** * metadata is any arbitrary string with a maximum length of 256 characters * that includes or references metadata to attach to the project. */ - metadata: string; + metadata?: string; /** * jurisdiction is the jurisdiction of the project. A jurisdiction has with * the format: [-[ ]] @@ -242,12 +242,12 @@ export interface MsgCreateProjectAmino { * sub-national-code and postal-code are optional and can be added for * increased precision. */ - jurisdiction: string; + jurisdiction?: string; /** * reference_id is any arbitrary string used to reference the project with a * maximum length of 32 characters. */ - reference_id: string; + reference_id?: string; } export interface MsgCreateProjectAminoMsg { type: "regen/MsgCreateProject"; @@ -273,7 +273,7 @@ export interface MsgCreateProjectResponseProtoMsg { /** MsgCreateProjectResponse is the Msg/CreateProject response type. */ export interface MsgCreateProjectResponseAmino { /** project_id is the unique identifier of the project. */ - project_id: string; + project_id?: string; } export interface MsgCreateProjectResponseAminoMsg { type: "/regen.ecocredit.v1.MsgCreateProjectResponse"; @@ -310,12 +310,12 @@ export interface MsgCreateBatch { * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - startDate: Timestamp; + startDate?: Timestamp; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - endDate: Timestamp; + endDate?: Timestamp; /** * open determines whether or not the credits can be dynamically minted to the * credit batch following the creation of the credit batch. This field should @@ -329,7 +329,7 @@ export interface MsgCreateBatch { * issuing credits and should only be set when bridging assets from another * chain or registry as a result of a bridge operation. */ - originTx: OriginTx; + originTx?: OriginTx; } export interface MsgCreateBatchProtoMsg { typeUrl: "/regen.ecocredit.v1.MsgCreateBatch"; @@ -341,40 +341,40 @@ export interface MsgCreateBatchAmino { * issuer is the address of the account issuing the credits and must be an * approved issuer within the credit class of the project. */ - issuer: string; + issuer?: string; /** * project_id is the unique identifier of the project under which the credit * batch will be created. */ - project_id: string; + project_id?: string; /** * issuance specifies the amount of tradable and retired credits that will be * issued to each recipient and the jurisdiction in which the credits will be * retired if credits are to be retired upon receipt. */ - issuance: BatchIssuanceAmino[]; + issuance?: BatchIssuanceAmino[]; /** * metadata is any arbitrary string with a maximum length of 256 characters * that includes or references metadata to attach to the credit batch. */ - metadata: string; + metadata?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date?: TimestampAmino; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date?: TimestampAmino; + end_date?: string; /** * open determines whether or not the credits can be dynamically minted to the * credit batch following the creation of the credit batch. This field should * only be set to true when bridging credits from another chain or registry as * a result of a bridge operation and is not intended for native issuance. */ - open: boolean; + open?: boolean; /** * origin_tx is the transaction from another chain or registry that triggered * the creation of the credit batch. This field can be ignored when natively @@ -393,10 +393,10 @@ export interface MsgCreateBatchSDKType { project_id: string; issuance: BatchIssuanceSDKType[]; metadata: string; - start_date: TimestampSDKType; - end_date: TimestampSDKType; + start_date?: TimestampSDKType; + end_date?: TimestampSDKType; open: boolean; - origin_tx: OriginTxSDKType; + origin_tx?: OriginTxSDKType; } /** MsgCreateBatchResponse is the Msg/CreateBatch response type. */ export interface MsgCreateBatchResponse { @@ -410,7 +410,7 @@ export interface MsgCreateBatchResponseProtoMsg { /** MsgCreateBatchResponse is the Msg/CreateBatch response type. */ export interface MsgCreateBatchResponseAmino { /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; } export interface MsgCreateBatchResponseAminoMsg { type: "/regen.ecocredit.v1.MsgCreateBatchResponse"; @@ -439,7 +439,7 @@ export interface MsgMintBatchCredits { * origin_tx is the transaction from another chain or registry that triggered * the minting of credits. */ - originTx: OriginTx; + originTx?: OriginTx; } export interface MsgMintBatchCreditsProtoMsg { typeUrl: "/regen.ecocredit.v1.MsgMintBatchCredits"; @@ -451,15 +451,15 @@ export interface MsgMintBatchCreditsAmino { * issuer is the address of the account minting the credits and must be the * same issuer who created the credit batch. */ - issuer: string; + issuer?: string; /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * issuance specifies the amount of tradable and retired credits that will be * issued to each recipient and the jurisdiction in which the credits will be * retired if credits are to be retired upon receipt. */ - issuance: BatchIssuanceAmino[]; + issuance?: BatchIssuanceAmino[]; /** * origin_tx is the transaction from another chain or registry that triggered * the minting of credits. @@ -475,7 +475,7 @@ export interface MsgMintBatchCreditsSDKType { issuer: string; batch_denom: string; issuance: BatchIssuanceSDKType[]; - origin_tx: OriginTxSDKType; + origin_tx?: OriginTxSDKType; } /** MsgMintBatchCreditsResponse is the Msg/MintBatchCredits response type. */ export interface MsgMintBatchCreditsResponse { @@ -514,9 +514,9 @@ export interface MsgSealBatchAmino { * issuer is the address of the account that created the credit batch and the * only account with permissions to seal the credit batch. */ - issuer: string; + issuer?: string; /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; } export interface MsgSealBatchAminoMsg { type: "regen/MsgSealBatch"; @@ -560,11 +560,11 @@ export interface MsgSendProtoMsg { /** MsgSend is the Msg/Send request type. */ export interface MsgSendAmino { /** sender is the address of the account sending credits. */ - sender: string; + sender?: string; /** recipient is the address of the account receiving credits. */ - recipient: string; + recipient?: string; /** credits are the credits being sent to the recipient. */ - credits: MsgSend_SendCreditsAmino[]; + credits?: MsgSend_SendCreditsAmino[]; } export interface MsgSendAminoMsg { type: "regen/MsgSend"; @@ -626,19 +626,19 @@ export interface MsgSend_SendCreditsProtoMsg { */ export interface MsgSend_SendCreditsAmino { /** batch_denom is the unique identifier of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * tradable_amount is the amount of credits in this transfer that can be * traded by the recipient. The number of decimal places must be less than * or equal to the credit type precision. */ - tradable_amount: string; + tradable_amount?: string; /** * retired_amount is the amount of credits in this transfer that are retired * upon receipt. The number of decimal places must be less than or equal to * the credit type precision. */ - retired_amount: string; + retired_amount?: string; /** * retirement_jurisdiction is the jurisdiction of the recipient and is only * required if retired_amount is positive. A jurisdiction has the format: @@ -648,7 +648,7 @@ export interface MsgSend_SendCreditsAmino { * country-code is required, while the sub-national-code and postal-code are * optional and can be added for increased precision. */ - retirement_jurisdiction: string; + retirement_jurisdiction?: string; /** * retirement_reason is any arbitrary string that specifies the reason for * retiring credits. This field is only required if retired_amount is @@ -656,7 +656,7 @@ export interface MsgSend_SendCreditsAmino { * * Since Revision 2 */ - retirement_reason: string; + retirement_reason?: string; } export interface MsgSend_SendCreditsAminoMsg { type: "/regen.ecocredit.v1.SendCredits"; @@ -722,9 +722,9 @@ export interface MsgRetireProtoMsg { /** MsgRetire is the Msg/Retire request type. */ export interface MsgRetireAmino { /** owner is the address of the account that owns the credits being retired. */ - owner: string; + owner?: string; /** credits specifies a credit batch and the number of credits being retired. */ - credits: CreditsAmino[]; + credits?: CreditsAmino[]; /** * jurisdiction is the jurisdiction of the credit owner. A jurisdiction has * the format: [-[ ]] @@ -734,14 +734,14 @@ export interface MsgRetireAmino { * sub-national-code and postal-code are optional and can be added for * increased precision. */ - jurisdiction: string; + jurisdiction?: string; /** * reason is any arbitrary string that specifies the reason for retiring * credits. * * Since Revision 2 */ - reason: string; + reason?: string; } export interface MsgRetireAminoMsg { type: "regen/MsgRetire"; @@ -790,14 +790,14 @@ export interface MsgCancelProtoMsg { /** MsgCancel is the Msg/Cancel request type. */ export interface MsgCancelAmino { /** owner is the address of the account that owns the credits being cancelled. */ - owner: string; + owner?: string; /** credits specifies a credit batch and the number of credits being cancelled. */ - credits: CreditsAmino[]; + credits?: CreditsAmino[]; /** * reason is any arbitrary string that specifies the reason for cancelling * credits. */ - reason: string; + reason?: string; } export interface MsgCancelAminoMsg { type: "regen/MsgCancel"; @@ -851,14 +851,14 @@ export interface MsgUpdateClassAdminAmino { * admin is the address of the account that is currently the admin of the * credit class. */ - admin: string; + admin?: string; /** class_id is the unique identifier of the credit class. */ - class_id: string; + class_id?: string; /** * new_admin is the address of the account that will become the new admin of * the credit class. */ - new_admin: string; + new_admin?: string; } export interface MsgUpdateClassAdminAminoMsg { type: "regen/MsgUpdateClassAdmin"; @@ -911,19 +911,19 @@ export interface MsgUpdateClassIssuersProtoMsg { /** MsgUpdateClassIssuers is the Msg/UpdateClassIssuers request type. */ export interface MsgUpdateClassIssuersAmino { /** admin is the address of the account that is the admin of the credit class. */ - admin: string; + admin?: string; /** class_id is the unique identifier of the credit class. */ - class_id: string; + class_id?: string; /** * add_issuers are the addresses of the accounts that will be added to the * list of approved credit class issuers. */ - add_issuers: string[]; + add_issuers?: string[]; /** * remove_issuers are the addresses of the accounts that will be removed from * the list of approved credit class issuers. */ - remove_issuers: string[]; + remove_issuers?: string[]; } export interface MsgUpdateClassIssuersAminoMsg { type: "regen/MsgUpdateClassIssuers"; @@ -973,15 +973,15 @@ export interface MsgUpdateClassMetadataProtoMsg { /** MsgUpdateClassMetadata is the Msg/UpdateClassMetadata request type. */ export interface MsgUpdateClassMetadataAmino { /** admin is the address of the account that is the admin of the credit class. */ - admin: string; + admin?: string; /** class_id is the unique identifier of the credit class. */ - class_id: string; + class_id?: string; /** * new_metadata is new metadata that will replace the existing metadata. It * can be any arbitrary string with a maximum length of 256 characters that * includes or references the metadata to attach to the credit class. */ - new_metadata: string; + new_metadata?: string; } export interface MsgUpdateClassMetadataAminoMsg { type: "regen/MsgUpdateClassMetadata"; @@ -1035,14 +1035,14 @@ export interface MsgUpdateProjectAdminAmino { * admin is the address of the account that is the currently the admin of the * project. */ - admin: string; + admin?: string; /** project_id is the unique identifier of the project. */ - project_id: string; + project_id?: string; /** * new_admin is the address of the account that will become the new admin of * the project. */ - new_admin: string; + new_admin?: string; } export interface MsgUpdateProjectAdminAminoMsg { type: "regen/MsgUpdateProjectAdmin"; @@ -1091,15 +1091,15 @@ export interface MsgUpdateProjectMetadataProtoMsg { /** MsgUpdateProjectMetadata is the Msg/UpdateProjectMetadata request type. */ export interface MsgUpdateProjectMetadataAmino { /** admin is the address of the account that is the admin of the project. */ - admin: string; + admin?: string; /** project_id is the unique identifier of the project. */ - project_id: string; + project_id?: string; /** * new_metadata is new metadata that will replace the existing metadata. It * can be any arbitrary string with a maximum length of 256 characters that * includes or references the metadata to attach to the project. */ - new_metadata: string; + new_metadata?: string; } export interface MsgUpdateProjectMetadataAminoMsg { type: "regen/MsgUpdateProjectMetadata"; @@ -1155,13 +1155,13 @@ export interface MsgBridgeProtoMsg { /** MsgBridge is the Msg/Bridge request type. */ export interface MsgBridgeAmino { /** owner is the address of the account that owns the credits being bridged. */ - owner: string; + owner?: string; /** target is the name of the target chain or registry. */ - target: string; + target?: string; /** recipient is the address of the account receiving the bridged credits. */ - recipient: string; + recipient?: string; /** credits specifies a credit batch and the number of credits being bridged. */ - credits: CreditsAmino[]; + credits?: CreditsAmino[]; } export interface MsgBridgeAminoMsg { type: "regen/MsgBridge"; @@ -1202,15 +1202,15 @@ export interface MsgUpdateBatchMetadataProtoMsg { */ export interface MsgUpdateBatchMetadataAmino { /** issuer is the address of the account that is the issuer of the batch. */ - issuer: string; + issuer?: string; /** batch_denom is the unique identifier of the batch. */ - batch_denom: string; + batch_denom?: string; /** * new_metadata is new metadata that will replace the existing metadata. It * can be any arbitrary string with a maximum length of 256 characters that * includes or references the metadata to attach to the batch. */ - new_metadata: string; + new_metadata?: string; } export interface MsgUpdateBatchMetadataAminoMsg { type: "regen/MsgUpdateBatchMetadata"; @@ -1285,14 +1285,14 @@ export interface MsgBridgeReceive { */ classId: string; /** project defines the project information for the bridged credits. */ - project: MsgBridgeReceive_Project; + project?: MsgBridgeReceive_Project; /** batch defines the credit batch information for the bridged credits. */ - batch: MsgBridgeReceive_Batch; + batch?: MsgBridgeReceive_Batch; /** * origin_tx is a reference to a transaction which caused the transfer from * another chain or registry. */ - originTx: OriginTx; + originTx?: OriginTx; } export interface MsgBridgeReceiveProtoMsg { typeUrl: "/regen.ecocredit.v1.MsgBridgeReceive"; @@ -1301,12 +1301,12 @@ export interface MsgBridgeReceiveProtoMsg { /** MsgBridgeReceive is the Msg/BridgeReceive request type. */ export interface MsgBridgeReceiveAmino { /** issuer is the account address of the service bridging the credits. */ - issuer: string; + issuer?: string; /** * class_id is the unique identifier of the credit class within which the * project and credit batch already exist or will be created. */ - class_id: string; + class_id?: string; /** project defines the project information for the bridged credits. */ project?: MsgBridgeReceive_ProjectAmino; /** batch defines the credit batch information for the bridged credits. */ @@ -1325,9 +1325,9 @@ export interface MsgBridgeReceiveAminoMsg { export interface MsgBridgeReceiveSDKType { issuer: string; class_id: string; - project: MsgBridgeReceive_ProjectSDKType; - batch: MsgBridgeReceive_BatchSDKType; - origin_tx: OriginTxSDKType; + project?: MsgBridgeReceive_ProjectSDKType; + batch?: MsgBridgeReceive_BatchSDKType; + origin_tx?: OriginTxSDKType; } /** * Batch defines the credit batch information for the bridged credits. This @@ -1343,12 +1343,12 @@ export interface MsgBridgeReceive_Batch { * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - startDate: Timestamp; + startDate?: Timestamp; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - endDate: Timestamp; + endDate?: Timestamp; /** metadata is the metadata for the credit batch. */ metadata: string; } @@ -1363,21 +1363,21 @@ export interface MsgBridgeReceive_BatchProtoMsg { */ export interface MsgBridgeReceive_BatchAmino { /** recipient is the recipient of the bridged credits. */ - recipient: string; + recipient?: string; /** amount is the amount of credits being bridged. */ - amount: string; + amount?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date?: TimestampAmino; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date?: TimestampAmino; + end_date?: string; /** metadata is the metadata for the credit batch. */ - metadata: string; + metadata?: string; } export interface MsgBridgeReceive_BatchAminoMsg { type: "/regen.ecocredit.v1.Batch"; @@ -1391,8 +1391,8 @@ export interface MsgBridgeReceive_BatchAminoMsg { export interface MsgBridgeReceive_BatchSDKType { recipient: string; amount: string; - start_date: TimestampSDKType; - end_date: TimestampSDKType; + start_date?: TimestampSDKType; + end_date?: TimestampSDKType; metadata: string; } /** @@ -1419,11 +1419,11 @@ export interface MsgBridgeReceive_ProjectProtoMsg { */ export interface MsgBridgeReceive_ProjectAmino { /** reference_id is the reference id of the project. */ - reference_id: string; + reference_id?: string; /** jurisdiction is the project jurisdiction. */ - jurisdiction: string; + jurisdiction?: string; /** metadata is the metadata for the project. */ - metadata: string; + metadata?: string; } export interface MsgBridgeReceive_ProjectAminoMsg { type: "/regen.ecocredit.v1.Project"; @@ -1462,12 +1462,12 @@ export interface MsgBridgeReceiveResponseAmino { * batch_denom is the unique identifier of the credit batch either created * or within which the credits were dynamically minted. */ - batch_denom: string; + batch_denom?: string; /** * project_id is the unique identifier of the project that was either created * or the existing project within which the credit batch exists. */ - project_id: string; + project_id?: string; } export interface MsgBridgeReceiveResponseAminoMsg { type: "/regen.ecocredit.v1.MsgBridgeReceiveResponse"; @@ -1500,9 +1500,9 @@ export interface MsgAddClassCreatorProtoMsg { */ export interface MsgAddClassCreatorAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** creator is the address to add to the class creator list. */ - creator: string; + creator?: string; } export interface MsgAddClassCreatorAminoMsg { type: "regen/MsgAddClassCreator"; @@ -1570,9 +1570,9 @@ export interface MsgSetClassCreatorAllowlistProtoMsg { */ export interface MsgSetClassCreatorAllowlistAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** enabled defines the boolean value to set the allowlist on or off. */ - enabled: boolean; + enabled?: boolean; } export interface MsgSetClassCreatorAllowlistAminoMsg { type: "regen/MsgSetClassCreatorAllowlist"; @@ -1642,9 +1642,9 @@ export interface MsgRemoveClassCreatorProtoMsg { */ export interface MsgRemoveClassCreatorAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** creator is the address to remove from the class creator list. */ - creator: string; + creator?: string; } export interface MsgRemoveClassCreatorAminoMsg { type: "regen/MsgRemoveClassCreator"; @@ -1700,7 +1700,7 @@ export interface MsgUpdateClassFee { * fee is the credit class creation fee. If not set, the credit class creation * fee will be removed and no fee will be required to create a credit class. */ - fee: Coin; + fee?: Coin; } export interface MsgUpdateClassFeeProtoMsg { typeUrl: "/regen.ecocredit.v1.MsgUpdateClassFee"; @@ -1713,7 +1713,7 @@ export interface MsgUpdateClassFeeProtoMsg { */ export interface MsgUpdateClassFeeAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** * fee is the credit class creation fee. If not set, the credit class creation * fee will be removed and no fee will be required to create a credit class. @@ -1731,7 +1731,7 @@ export interface MsgUpdateClassFeeAminoMsg { */ export interface MsgUpdateClassFeeSDKType { authority: string; - fee: CoinSDKType; + fee?: CoinSDKType; } /** * MsgUpdateClassFeeResponse is the Msg/UpdateClassFee response type. @@ -1787,12 +1787,12 @@ export interface MsgAddAllowedBridgeChainProtoMsg { */ export interface MsgAddAllowedBridgeChainAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** * chain_name is the name of the chain to allow bridging of ecocredits to * (i.e. polygon, ethereum, celo). */ - chain_name: string; + chain_name?: string; } export interface MsgAddAllowedBridgeChainAminoMsg { type: "regen/MsgAddAllowedBridgeChain"; @@ -1864,12 +1864,12 @@ export interface MsgRemoveAllowedBridgeChainProtoMsg { */ export interface MsgRemoveAllowedBridgeChainAmino { /** authority is the address of the governance account. */ - authority: string; + authority?: string; /** * chain_name is the name of the chain to remove from the list of allowed * chains to bridge ecocredits to (i.e. polygon, ethereum, celo). */ - chain_name: string; + chain_name?: string; } export interface MsgRemoveAllowedBridgeChainAminoMsg { type: "regen/MsgRemoveAllowedBridgeChain"; @@ -1917,8 +1917,9 @@ export interface MsgRemoveAllowedBridgeChainResponseAminoMsg { export interface MsgRemoveAllowedBridgeChainResponseSDKType { } export declare const MsgAddCreditType: { - encode(message: MsgAddCreditType, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddCreditType; + typeUrl: string; + encode(message: MsgAddCreditType, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddCreditType; fromJSON(object: any): MsgAddCreditType; toJSON(message: MsgAddCreditType): unknown; fromPartial(object: Partial): MsgAddCreditType; @@ -1931,8 +1932,9 @@ export declare const MsgAddCreditType: { toProtoMsg(message: MsgAddCreditType): MsgAddCreditTypeProtoMsg; }; export declare const MsgAddCreditTypeResponse: { - encode(_: MsgAddCreditTypeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddCreditTypeResponse; + typeUrl: string; + encode(_: MsgAddCreditTypeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddCreditTypeResponse; fromJSON(_: any): MsgAddCreditTypeResponse; toJSON(_: MsgAddCreditTypeResponse): unknown; fromPartial(_: Partial): MsgAddCreditTypeResponse; @@ -1944,8 +1946,9 @@ export declare const MsgAddCreditTypeResponse: { toProtoMsg(message: MsgAddCreditTypeResponse): MsgAddCreditTypeResponseProtoMsg; }; export declare const MsgCreateClass: { - encode(message: MsgCreateClass, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateClass; + typeUrl: string; + encode(message: MsgCreateClass, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateClass; fromJSON(object: any): MsgCreateClass; toJSON(message: MsgCreateClass): unknown; fromPartial(object: Partial): MsgCreateClass; @@ -1958,8 +1961,9 @@ export declare const MsgCreateClass: { toProtoMsg(message: MsgCreateClass): MsgCreateClassProtoMsg; }; export declare const MsgCreateClassResponse: { - encode(message: MsgCreateClassResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateClassResponse; + typeUrl: string; + encode(message: MsgCreateClassResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateClassResponse; fromJSON(object: any): MsgCreateClassResponse; toJSON(message: MsgCreateClassResponse): unknown; fromPartial(object: Partial): MsgCreateClassResponse; @@ -1971,8 +1975,9 @@ export declare const MsgCreateClassResponse: { toProtoMsg(message: MsgCreateClassResponse): MsgCreateClassResponseProtoMsg; }; export declare const MsgCreateProject: { - encode(message: MsgCreateProject, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateProject; + typeUrl: string; + encode(message: MsgCreateProject, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateProject; fromJSON(object: any): MsgCreateProject; toJSON(message: MsgCreateProject): unknown; fromPartial(object: Partial): MsgCreateProject; @@ -1985,8 +1990,9 @@ export declare const MsgCreateProject: { toProtoMsg(message: MsgCreateProject): MsgCreateProjectProtoMsg; }; export declare const MsgCreateProjectResponse: { - encode(message: MsgCreateProjectResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateProjectResponse; + typeUrl: string; + encode(message: MsgCreateProjectResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateProjectResponse; fromJSON(object: any): MsgCreateProjectResponse; toJSON(message: MsgCreateProjectResponse): unknown; fromPartial(object: Partial): MsgCreateProjectResponse; @@ -1998,8 +2004,9 @@ export declare const MsgCreateProjectResponse: { toProtoMsg(message: MsgCreateProjectResponse): MsgCreateProjectResponseProtoMsg; }; export declare const MsgCreateBatch: { - encode(message: MsgCreateBatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateBatch; + typeUrl: string; + encode(message: MsgCreateBatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateBatch; fromJSON(object: any): MsgCreateBatch; toJSON(message: MsgCreateBatch): unknown; fromPartial(object: Partial): MsgCreateBatch; @@ -2012,8 +2019,9 @@ export declare const MsgCreateBatch: { toProtoMsg(message: MsgCreateBatch): MsgCreateBatchProtoMsg; }; export declare const MsgCreateBatchResponse: { - encode(message: MsgCreateBatchResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateBatchResponse; + typeUrl: string; + encode(message: MsgCreateBatchResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateBatchResponse; fromJSON(object: any): MsgCreateBatchResponse; toJSON(message: MsgCreateBatchResponse): unknown; fromPartial(object: Partial): MsgCreateBatchResponse; @@ -2025,8 +2033,9 @@ export declare const MsgCreateBatchResponse: { toProtoMsg(message: MsgCreateBatchResponse): MsgCreateBatchResponseProtoMsg; }; export declare const MsgMintBatchCredits: { - encode(message: MsgMintBatchCredits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgMintBatchCredits; + typeUrl: string; + encode(message: MsgMintBatchCredits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgMintBatchCredits; fromJSON(object: any): MsgMintBatchCredits; toJSON(message: MsgMintBatchCredits): unknown; fromPartial(object: Partial): MsgMintBatchCredits; @@ -2039,8 +2048,9 @@ export declare const MsgMintBatchCredits: { toProtoMsg(message: MsgMintBatchCredits): MsgMintBatchCreditsProtoMsg; }; export declare const MsgMintBatchCreditsResponse: { - encode(_: MsgMintBatchCreditsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgMintBatchCreditsResponse; + typeUrl: string; + encode(_: MsgMintBatchCreditsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgMintBatchCreditsResponse; fromJSON(_: any): MsgMintBatchCreditsResponse; toJSON(_: MsgMintBatchCreditsResponse): unknown; fromPartial(_: Partial): MsgMintBatchCreditsResponse; @@ -2052,8 +2062,9 @@ export declare const MsgMintBatchCreditsResponse: { toProtoMsg(message: MsgMintBatchCreditsResponse): MsgMintBatchCreditsResponseProtoMsg; }; export declare const MsgSealBatch: { - encode(message: MsgSealBatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSealBatch; + typeUrl: string; + encode(message: MsgSealBatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSealBatch; fromJSON(object: any): MsgSealBatch; toJSON(message: MsgSealBatch): unknown; fromPartial(object: Partial): MsgSealBatch; @@ -2066,8 +2077,9 @@ export declare const MsgSealBatch: { toProtoMsg(message: MsgSealBatch): MsgSealBatchProtoMsg; }; export declare const MsgSealBatchResponse: { - encode(_: MsgSealBatchResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSealBatchResponse; + typeUrl: string; + encode(_: MsgSealBatchResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSealBatchResponse; fromJSON(_: any): MsgSealBatchResponse; toJSON(_: MsgSealBatchResponse): unknown; fromPartial(_: Partial): MsgSealBatchResponse; @@ -2079,8 +2091,9 @@ export declare const MsgSealBatchResponse: { toProtoMsg(message: MsgSealBatchResponse): MsgSealBatchResponseProtoMsg; }; export declare const MsgSend: { - encode(message: MsgSend, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSend; + typeUrl: string; + encode(message: MsgSend, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSend; fromJSON(object: any): MsgSend; toJSON(message: MsgSend): unknown; fromPartial(object: Partial): MsgSend; @@ -2093,8 +2106,9 @@ export declare const MsgSend: { toProtoMsg(message: MsgSend): MsgSendProtoMsg; }; export declare const MsgSend_SendCredits: { - encode(message: MsgSend_SendCredits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSend_SendCredits; + typeUrl: string; + encode(message: MsgSend_SendCredits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSend_SendCredits; fromJSON(object: any): MsgSend_SendCredits; toJSON(message: MsgSend_SendCredits): unknown; fromPartial(object: Partial): MsgSend_SendCredits; @@ -2106,8 +2120,9 @@ export declare const MsgSend_SendCredits: { toProtoMsg(message: MsgSend_SendCredits): MsgSend_SendCreditsProtoMsg; }; export declare const MsgSendResponse: { - encode(_: MsgSendResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSendResponse; + typeUrl: string; + encode(_: MsgSendResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSendResponse; fromJSON(_: any): MsgSendResponse; toJSON(_: MsgSendResponse): unknown; fromPartial(_: Partial): MsgSendResponse; @@ -2119,8 +2134,9 @@ export declare const MsgSendResponse: { toProtoMsg(message: MsgSendResponse): MsgSendResponseProtoMsg; }; export declare const MsgRetire: { - encode(message: MsgRetire, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRetire; + typeUrl: string; + encode(message: MsgRetire, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRetire; fromJSON(object: any): MsgRetire; toJSON(message: MsgRetire): unknown; fromPartial(object: Partial): MsgRetire; @@ -2133,8 +2149,9 @@ export declare const MsgRetire: { toProtoMsg(message: MsgRetire): MsgRetireProtoMsg; }; export declare const MsgRetireResponse: { - encode(_: MsgRetireResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRetireResponse; + typeUrl: string; + encode(_: MsgRetireResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRetireResponse; fromJSON(_: any): MsgRetireResponse; toJSON(_: MsgRetireResponse): unknown; fromPartial(_: Partial): MsgRetireResponse; @@ -2146,8 +2163,9 @@ export declare const MsgRetireResponse: { toProtoMsg(message: MsgRetireResponse): MsgRetireResponseProtoMsg; }; export declare const MsgCancel: { - encode(message: MsgCancel, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancel; + typeUrl: string; + encode(message: MsgCancel, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancel; fromJSON(object: any): MsgCancel; toJSON(message: MsgCancel): unknown; fromPartial(object: Partial): MsgCancel; @@ -2160,8 +2178,9 @@ export declare const MsgCancel: { toProtoMsg(message: MsgCancel): MsgCancelProtoMsg; }; export declare const MsgCancelResponse: { - encode(_: MsgCancelResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelResponse; + typeUrl: string; + encode(_: MsgCancelResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelResponse; fromJSON(_: any): MsgCancelResponse; toJSON(_: MsgCancelResponse): unknown; fromPartial(_: Partial): MsgCancelResponse; @@ -2173,8 +2192,9 @@ export declare const MsgCancelResponse: { toProtoMsg(message: MsgCancelResponse): MsgCancelResponseProtoMsg; }; export declare const MsgUpdateClassAdmin: { - encode(message: MsgUpdateClassAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassAdmin; + typeUrl: string; + encode(message: MsgUpdateClassAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassAdmin; fromJSON(object: any): MsgUpdateClassAdmin; toJSON(message: MsgUpdateClassAdmin): unknown; fromPartial(object: Partial): MsgUpdateClassAdmin; @@ -2187,8 +2207,9 @@ export declare const MsgUpdateClassAdmin: { toProtoMsg(message: MsgUpdateClassAdmin): MsgUpdateClassAdminProtoMsg; }; export declare const MsgUpdateClassAdminResponse: { - encode(_: MsgUpdateClassAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassAdminResponse; + typeUrl: string; + encode(_: MsgUpdateClassAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassAdminResponse; fromJSON(_: any): MsgUpdateClassAdminResponse; toJSON(_: MsgUpdateClassAdminResponse): unknown; fromPartial(_: Partial): MsgUpdateClassAdminResponse; @@ -2200,8 +2221,9 @@ export declare const MsgUpdateClassAdminResponse: { toProtoMsg(message: MsgUpdateClassAdminResponse): MsgUpdateClassAdminResponseProtoMsg; }; export declare const MsgUpdateClassIssuers: { - encode(message: MsgUpdateClassIssuers, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassIssuers; + typeUrl: string; + encode(message: MsgUpdateClassIssuers, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassIssuers; fromJSON(object: any): MsgUpdateClassIssuers; toJSON(message: MsgUpdateClassIssuers): unknown; fromPartial(object: Partial): MsgUpdateClassIssuers; @@ -2214,8 +2236,9 @@ export declare const MsgUpdateClassIssuers: { toProtoMsg(message: MsgUpdateClassIssuers): MsgUpdateClassIssuersProtoMsg; }; export declare const MsgUpdateClassIssuersResponse: { - encode(_: MsgUpdateClassIssuersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassIssuersResponse; + typeUrl: string; + encode(_: MsgUpdateClassIssuersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassIssuersResponse; fromJSON(_: any): MsgUpdateClassIssuersResponse; toJSON(_: MsgUpdateClassIssuersResponse): unknown; fromPartial(_: Partial): MsgUpdateClassIssuersResponse; @@ -2227,8 +2250,9 @@ export declare const MsgUpdateClassIssuersResponse: { toProtoMsg(message: MsgUpdateClassIssuersResponse): MsgUpdateClassIssuersResponseProtoMsg; }; export declare const MsgUpdateClassMetadata: { - encode(message: MsgUpdateClassMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassMetadata; + typeUrl: string; + encode(message: MsgUpdateClassMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassMetadata; fromJSON(object: any): MsgUpdateClassMetadata; toJSON(message: MsgUpdateClassMetadata): unknown; fromPartial(object: Partial): MsgUpdateClassMetadata; @@ -2241,8 +2265,9 @@ export declare const MsgUpdateClassMetadata: { toProtoMsg(message: MsgUpdateClassMetadata): MsgUpdateClassMetadataProtoMsg; }; export declare const MsgUpdateClassMetadataResponse: { - encode(_: MsgUpdateClassMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassMetadataResponse; + typeUrl: string; + encode(_: MsgUpdateClassMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassMetadataResponse; fromJSON(_: any): MsgUpdateClassMetadataResponse; toJSON(_: MsgUpdateClassMetadataResponse): unknown; fromPartial(_: Partial): MsgUpdateClassMetadataResponse; @@ -2254,8 +2279,9 @@ export declare const MsgUpdateClassMetadataResponse: { toProtoMsg(message: MsgUpdateClassMetadataResponse): MsgUpdateClassMetadataResponseProtoMsg; }; export declare const MsgUpdateProjectAdmin: { - encode(message: MsgUpdateProjectAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateProjectAdmin; + typeUrl: string; + encode(message: MsgUpdateProjectAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateProjectAdmin; fromJSON(object: any): MsgUpdateProjectAdmin; toJSON(message: MsgUpdateProjectAdmin): unknown; fromPartial(object: Partial): MsgUpdateProjectAdmin; @@ -2268,8 +2294,9 @@ export declare const MsgUpdateProjectAdmin: { toProtoMsg(message: MsgUpdateProjectAdmin): MsgUpdateProjectAdminProtoMsg; }; export declare const MsgUpdateProjectAdminResponse: { - encode(_: MsgUpdateProjectAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateProjectAdminResponse; + typeUrl: string; + encode(_: MsgUpdateProjectAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateProjectAdminResponse; fromJSON(_: any): MsgUpdateProjectAdminResponse; toJSON(_: MsgUpdateProjectAdminResponse): unknown; fromPartial(_: Partial): MsgUpdateProjectAdminResponse; @@ -2281,8 +2308,9 @@ export declare const MsgUpdateProjectAdminResponse: { toProtoMsg(message: MsgUpdateProjectAdminResponse): MsgUpdateProjectAdminResponseProtoMsg; }; export declare const MsgUpdateProjectMetadata: { - encode(message: MsgUpdateProjectMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateProjectMetadata; + typeUrl: string; + encode(message: MsgUpdateProjectMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateProjectMetadata; fromJSON(object: any): MsgUpdateProjectMetadata; toJSON(message: MsgUpdateProjectMetadata): unknown; fromPartial(object: Partial): MsgUpdateProjectMetadata; @@ -2295,8 +2323,9 @@ export declare const MsgUpdateProjectMetadata: { toProtoMsg(message: MsgUpdateProjectMetadata): MsgUpdateProjectMetadataProtoMsg; }; export declare const MsgUpdateProjectMetadataResponse: { - encode(_: MsgUpdateProjectMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateProjectMetadataResponse; + typeUrl: string; + encode(_: MsgUpdateProjectMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateProjectMetadataResponse; fromJSON(_: any): MsgUpdateProjectMetadataResponse; toJSON(_: MsgUpdateProjectMetadataResponse): unknown; fromPartial(_: Partial): MsgUpdateProjectMetadataResponse; @@ -2308,8 +2337,9 @@ export declare const MsgUpdateProjectMetadataResponse: { toProtoMsg(message: MsgUpdateProjectMetadataResponse): MsgUpdateProjectMetadataResponseProtoMsg; }; export declare const MsgBridge: { - encode(message: MsgBridge, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBridge; + typeUrl: string; + encode(message: MsgBridge, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBridge; fromJSON(object: any): MsgBridge; toJSON(message: MsgBridge): unknown; fromPartial(object: Partial): MsgBridge; @@ -2322,8 +2352,9 @@ export declare const MsgBridge: { toProtoMsg(message: MsgBridge): MsgBridgeProtoMsg; }; export declare const MsgUpdateBatchMetadata: { - encode(message: MsgUpdateBatchMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateBatchMetadata; + typeUrl: string; + encode(message: MsgUpdateBatchMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBatchMetadata; fromJSON(object: any): MsgUpdateBatchMetadata; toJSON(message: MsgUpdateBatchMetadata): unknown; fromPartial(object: Partial): MsgUpdateBatchMetadata; @@ -2336,8 +2367,9 @@ export declare const MsgUpdateBatchMetadata: { toProtoMsg(message: MsgUpdateBatchMetadata): MsgUpdateBatchMetadataProtoMsg; }; export declare const MsgUpdateBatchMetadataResponse: { - encode(_: MsgUpdateBatchMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateBatchMetadataResponse; + typeUrl: string; + encode(_: MsgUpdateBatchMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBatchMetadataResponse; fromJSON(_: any): MsgUpdateBatchMetadataResponse; toJSON(_: MsgUpdateBatchMetadataResponse): unknown; fromPartial(_: Partial): MsgUpdateBatchMetadataResponse; @@ -2349,8 +2381,9 @@ export declare const MsgUpdateBatchMetadataResponse: { toProtoMsg(message: MsgUpdateBatchMetadataResponse): MsgUpdateBatchMetadataResponseProtoMsg; }; export declare const MsgBridgeResponse: { - encode(_: MsgBridgeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBridgeResponse; + typeUrl: string; + encode(_: MsgBridgeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBridgeResponse; fromJSON(_: any): MsgBridgeResponse; toJSON(_: MsgBridgeResponse): unknown; fromPartial(_: Partial): MsgBridgeResponse; @@ -2362,8 +2395,9 @@ export declare const MsgBridgeResponse: { toProtoMsg(message: MsgBridgeResponse): MsgBridgeResponseProtoMsg; }; export declare const MsgBridgeReceive: { - encode(message: MsgBridgeReceive, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBridgeReceive; + typeUrl: string; + encode(message: MsgBridgeReceive, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBridgeReceive; fromJSON(object: any): MsgBridgeReceive; toJSON(message: MsgBridgeReceive): unknown; fromPartial(object: Partial): MsgBridgeReceive; @@ -2376,8 +2410,9 @@ export declare const MsgBridgeReceive: { toProtoMsg(message: MsgBridgeReceive): MsgBridgeReceiveProtoMsg; }; export declare const MsgBridgeReceive_Batch: { - encode(message: MsgBridgeReceive_Batch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBridgeReceive_Batch; + typeUrl: string; + encode(message: MsgBridgeReceive_Batch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBridgeReceive_Batch; fromJSON(object: any): MsgBridgeReceive_Batch; toJSON(message: MsgBridgeReceive_Batch): unknown; fromPartial(object: Partial): MsgBridgeReceive_Batch; @@ -2389,8 +2424,9 @@ export declare const MsgBridgeReceive_Batch: { toProtoMsg(message: MsgBridgeReceive_Batch): MsgBridgeReceive_BatchProtoMsg; }; export declare const MsgBridgeReceive_Project: { - encode(message: MsgBridgeReceive_Project, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBridgeReceive_Project; + typeUrl: string; + encode(message: MsgBridgeReceive_Project, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBridgeReceive_Project; fromJSON(object: any): MsgBridgeReceive_Project; toJSON(message: MsgBridgeReceive_Project): unknown; fromPartial(object: Partial): MsgBridgeReceive_Project; @@ -2402,8 +2438,9 @@ export declare const MsgBridgeReceive_Project: { toProtoMsg(message: MsgBridgeReceive_Project): MsgBridgeReceive_ProjectProtoMsg; }; export declare const MsgBridgeReceiveResponse: { - encode(message: MsgBridgeReceiveResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgBridgeReceiveResponse; + typeUrl: string; + encode(message: MsgBridgeReceiveResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgBridgeReceiveResponse; fromJSON(object: any): MsgBridgeReceiveResponse; toJSON(message: MsgBridgeReceiveResponse): unknown; fromPartial(object: Partial): MsgBridgeReceiveResponse; @@ -2415,8 +2452,9 @@ export declare const MsgBridgeReceiveResponse: { toProtoMsg(message: MsgBridgeReceiveResponse): MsgBridgeReceiveResponseProtoMsg; }; export declare const MsgAddClassCreator: { - encode(message: MsgAddClassCreator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddClassCreator; + typeUrl: string; + encode(message: MsgAddClassCreator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddClassCreator; fromJSON(object: any): MsgAddClassCreator; toJSON(message: MsgAddClassCreator): unknown; fromPartial(object: Partial): MsgAddClassCreator; @@ -2429,8 +2467,9 @@ export declare const MsgAddClassCreator: { toProtoMsg(message: MsgAddClassCreator): MsgAddClassCreatorProtoMsg; }; export declare const MsgAddClassCreatorResponse: { - encode(_: MsgAddClassCreatorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddClassCreatorResponse; + typeUrl: string; + encode(_: MsgAddClassCreatorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddClassCreatorResponse; fromJSON(_: any): MsgAddClassCreatorResponse; toJSON(_: MsgAddClassCreatorResponse): unknown; fromPartial(_: Partial): MsgAddClassCreatorResponse; @@ -2442,8 +2481,9 @@ export declare const MsgAddClassCreatorResponse: { toProtoMsg(message: MsgAddClassCreatorResponse): MsgAddClassCreatorResponseProtoMsg; }; export declare const MsgSetClassCreatorAllowlist: { - encode(message: MsgSetClassCreatorAllowlist, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSetClassCreatorAllowlist; + typeUrl: string; + encode(message: MsgSetClassCreatorAllowlist, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSetClassCreatorAllowlist; fromJSON(object: any): MsgSetClassCreatorAllowlist; toJSON(message: MsgSetClassCreatorAllowlist): unknown; fromPartial(object: Partial): MsgSetClassCreatorAllowlist; @@ -2456,8 +2496,9 @@ export declare const MsgSetClassCreatorAllowlist: { toProtoMsg(message: MsgSetClassCreatorAllowlist): MsgSetClassCreatorAllowlistProtoMsg; }; export declare const MsgSetClassCreatorAllowlistResponse: { - encode(_: MsgSetClassCreatorAllowlistResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSetClassCreatorAllowlistResponse; + typeUrl: string; + encode(_: MsgSetClassCreatorAllowlistResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSetClassCreatorAllowlistResponse; fromJSON(_: any): MsgSetClassCreatorAllowlistResponse; toJSON(_: MsgSetClassCreatorAllowlistResponse): unknown; fromPartial(_: Partial): MsgSetClassCreatorAllowlistResponse; @@ -2469,8 +2510,9 @@ export declare const MsgSetClassCreatorAllowlistResponse: { toProtoMsg(message: MsgSetClassCreatorAllowlistResponse): MsgSetClassCreatorAllowlistResponseProtoMsg; }; export declare const MsgRemoveClassCreator: { - encode(message: MsgRemoveClassCreator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRemoveClassCreator; + typeUrl: string; + encode(message: MsgRemoveClassCreator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveClassCreator; fromJSON(object: any): MsgRemoveClassCreator; toJSON(message: MsgRemoveClassCreator): unknown; fromPartial(object: Partial): MsgRemoveClassCreator; @@ -2483,8 +2525,9 @@ export declare const MsgRemoveClassCreator: { toProtoMsg(message: MsgRemoveClassCreator): MsgRemoveClassCreatorProtoMsg; }; export declare const MsgRemoveClassCreatorResponse: { - encode(_: MsgRemoveClassCreatorResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRemoveClassCreatorResponse; + typeUrl: string; + encode(_: MsgRemoveClassCreatorResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveClassCreatorResponse; fromJSON(_: any): MsgRemoveClassCreatorResponse; toJSON(_: MsgRemoveClassCreatorResponse): unknown; fromPartial(_: Partial): MsgRemoveClassCreatorResponse; @@ -2496,8 +2539,9 @@ export declare const MsgRemoveClassCreatorResponse: { toProtoMsg(message: MsgRemoveClassCreatorResponse): MsgRemoveClassCreatorResponseProtoMsg; }; export declare const MsgUpdateClassFee: { - encode(message: MsgUpdateClassFee, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassFee; + typeUrl: string; + encode(message: MsgUpdateClassFee, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassFee; fromJSON(object: any): MsgUpdateClassFee; toJSON(message: MsgUpdateClassFee): unknown; fromPartial(object: Partial): MsgUpdateClassFee; @@ -2510,8 +2554,9 @@ export declare const MsgUpdateClassFee: { toProtoMsg(message: MsgUpdateClassFee): MsgUpdateClassFeeProtoMsg; }; export declare const MsgUpdateClassFeeResponse: { - encode(_: MsgUpdateClassFeeResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassFeeResponse; + typeUrl: string; + encode(_: MsgUpdateClassFeeResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassFeeResponse; fromJSON(_: any): MsgUpdateClassFeeResponse; toJSON(_: MsgUpdateClassFeeResponse): unknown; fromPartial(_: Partial): MsgUpdateClassFeeResponse; @@ -2523,8 +2568,9 @@ export declare const MsgUpdateClassFeeResponse: { toProtoMsg(message: MsgUpdateClassFeeResponse): MsgUpdateClassFeeResponseProtoMsg; }; export declare const MsgAddAllowedBridgeChain: { - encode(message: MsgAddAllowedBridgeChain, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddAllowedBridgeChain; + typeUrl: string; + encode(message: MsgAddAllowedBridgeChain, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddAllowedBridgeChain; fromJSON(object: any): MsgAddAllowedBridgeChain; toJSON(message: MsgAddAllowedBridgeChain): unknown; fromPartial(object: Partial): MsgAddAllowedBridgeChain; @@ -2537,8 +2583,9 @@ export declare const MsgAddAllowedBridgeChain: { toProtoMsg(message: MsgAddAllowedBridgeChain): MsgAddAllowedBridgeChainProtoMsg; }; export declare const MsgAddAllowedBridgeChainResponse: { - encode(_: MsgAddAllowedBridgeChainResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgAddAllowedBridgeChainResponse; + typeUrl: string; + encode(_: MsgAddAllowedBridgeChainResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgAddAllowedBridgeChainResponse; fromJSON(_: any): MsgAddAllowedBridgeChainResponse; toJSON(_: MsgAddAllowedBridgeChainResponse): unknown; fromPartial(_: Partial): MsgAddAllowedBridgeChainResponse; @@ -2550,8 +2597,9 @@ export declare const MsgAddAllowedBridgeChainResponse: { toProtoMsg(message: MsgAddAllowedBridgeChainResponse): MsgAddAllowedBridgeChainResponseProtoMsg; }; export declare const MsgRemoveAllowedBridgeChain: { - encode(message: MsgRemoveAllowedBridgeChain, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRemoveAllowedBridgeChain; + typeUrl: string; + encode(message: MsgRemoveAllowedBridgeChain, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveAllowedBridgeChain; fromJSON(object: any): MsgRemoveAllowedBridgeChain; toJSON(message: MsgRemoveAllowedBridgeChain): unknown; fromPartial(object: Partial): MsgRemoveAllowedBridgeChain; @@ -2564,8 +2612,9 @@ export declare const MsgRemoveAllowedBridgeChain: { toProtoMsg(message: MsgRemoveAllowedBridgeChain): MsgRemoveAllowedBridgeChainProtoMsg; }; export declare const MsgRemoveAllowedBridgeChainResponse: { - encode(_: MsgRemoveAllowedBridgeChainResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRemoveAllowedBridgeChainResponse; + typeUrl: string; + encode(_: MsgRemoveAllowedBridgeChainResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveAllowedBridgeChainResponse; fromJSON(_: any): MsgRemoveAllowedBridgeChainResponse; toJSON(_: MsgRemoveAllowedBridgeChainResponse): unknown; fromPartial(_: Partial): MsgRemoveAllowedBridgeChainResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/v1/types.d.ts b/packages/api/types/codegen/regen/ecocredit/v1/types.d.ts index 2ec137d..e5b3d54 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1/types.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1/types.d.ts @@ -1,6 +1,6 @@ import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; import { CreditType, CreditTypeAmino, CreditTypeSDKType } from "./state"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * Params defines the updatable global parameters of the ecocredit module for * use with the x/params module. @@ -60,40 +60,40 @@ export interface ParamsAmino { * creating a credit class. Any fee listed is accepted and charged to the * credit class creator when creating a credit class. */ - credit_class_fee: CoinAmino[]; + credit_class_fee?: CoinAmino[]; /** * basket_fee is a list of basket creation fees accepted when creating a * basket. Any fee listed is accepted and charged to the basket creator when * creating a basket. */ - basket_fee: CoinAmino[]; + basket_fee?: CoinAmino[]; /** * allowed_class_creators is an allowlist defining the addresses with the * required permissions to create credit classes when allowlist_enabled is set * to true. If allowlist_enabled is set to false, this list has no effect. */ - allowed_class_creators: string[]; + allowed_class_creators?: string[]; /** * allowlist_enabled determines whether or not the allowlist for creating * credit classes is enabled. When set to true, only the addresses listed in * allowed_class_creators can create credit classes. When set to false, any * address can create credit classes. */ - allowlist_enabled: boolean; + allowlist_enabled?: boolean; /** * allowed_denoms is a list of bank denoms allowed to be used in the ask price * of sell orders. * * Since Revision 2 */ - allowed_denoms: AllowedDenomAmino[]; + allowed_denoms?: AllowedDenomAmino[]; /** * AllowedBridgeChains is a list of chain names that are allowed to be used in * bridge operations. * * Since Revision 2 */ - allowed_bridge_chains: string[]; + allowed_bridge_chains?: string[]; } export interface ParamsAminoMsg { type: "/regen.ecocredit.v1.Params"; @@ -125,9 +125,9 @@ export interface CreditsProtoMsg { /** Credits represents a simple structure for credits. */ export interface CreditsAmino { /** batch_denom is the denom of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** amount is the amount of credits. */ - amount: string; + amount?: string; } export interface CreditsAminoMsg { type: "/regen.ecocredit.v1.Credits"; @@ -181,19 +181,19 @@ export interface BatchIssuanceProtoMsg { /** BatchIssuance represents a simple structure for a credit batch issuance. */ export interface BatchIssuanceAmino { /** recipient is the address of the account receiving the issued credits. */ - recipient: string; + recipient?: string; /** * tradable_amount is the amount of credits that the recipient will receive in * a tradable state. The number of decimal places must be less than or equal * to the credit type precision. */ - tradable_amount: string; + tradable_amount?: string; /** * retired_amount is the amount of credits that the recipient will receive in * a retired state. The number of decimal places must be less than or equal to * the credit type precision. */ - retired_amount: string; + retired_amount?: string; /** * retirement_jurisdiction is the jurisdiction of the recipient and is only * required if retired_amount is positive. A jurisdiction has the following @@ -204,7 +204,7 @@ export interface BatchIssuanceAmino { * sub-national-code and postal-code are optional and can be added for * increased precision. */ - retirement_jurisdiction: string; + retirement_jurisdiction?: string; /** * retirement_reason is any arbitrary string that specifies the reason for * retiring credits. The reason will be included in EventRetire and is not @@ -212,7 +212,7 @@ export interface BatchIssuanceAmino { * * Since Revision 2 */ - retirement_reason: string; + retirement_reason?: string; } export interface BatchIssuanceAminoMsg { type: "/regen.ecocredit.v1.BatchIssuance"; @@ -268,12 +268,12 @@ export interface OriginTxAmino { * id is the transaction ID of an originating transaction or operation based * on a type (i.e. transaction ID, serial number). */ - id: string; + id?: string; /** * source is the source chain or registry of the transaction originating the * mint process (e.g. polygon, ethereum, verra). */ - source: string; + source?: string; /** * contract is the address of the contract on the source chain that was * executed when creating the transaction. This address will be stored in @@ -281,12 +281,12 @@ export interface OriginTxAmino { * used when sending credits back to the source chain. This field can be left * blank if credits are bridged from a non-contract-based source. */ - contract: string; + contract?: string; /** * note is a reference note for accounting that will be included in an event * emitted from either Msg/CreateBatch or Msg/MintBatchCredits. */ - note: string; + note?: string; } export interface OriginTxAminoMsg { type: "/regen.ecocredit.v1.OriginTx"; @@ -316,7 +316,7 @@ export interface CreditTypeProposal { * credit_type is the credit type to be added to the network if the proposal * passes. */ - creditType: CreditType; + creditType?: CreditType; } export interface CreditTypeProposalProtoMsg { typeUrl: "/regen.ecocredit.v1.CreditTypeProposal"; @@ -329,9 +329,9 @@ export interface CreditTypeProposalProtoMsg { */ export interface CreditTypeProposalAmino { /** title is the title of the proposal. */ - title: string; + title?: string; /** description is the description of the proposal. */ - description: string; + description?: string; /** * credit_type is the credit type to be added to the network if the proposal * passes. @@ -350,7 +350,7 @@ export interface CreditTypeProposalAminoMsg { export interface CreditTypeProposalSDKType { title: string; description: string; - credit_type: CreditTypeSDKType; + credit_type?: CreditTypeSDKType; } /** * AllowedDenom represents the information for an allowed ask denom. @@ -389,18 +389,18 @@ export interface AllowedDenomProtoMsg { */ export interface AllowedDenomAmino { /** denom is the bank denom to allow (ex. ibc/GLKHDSG423SGS) */ - bank_denom: string; + bank_denom?: string; /** * display_denom is the denom to display to the user and is informational. * Because the denom is likely an IBC denom, this should be chosen by * governance to represent the consensus trusted name of the denom. */ - display_denom: string; + display_denom?: string; /** * exponent is the exponent that relates the denom to the display_denom and is * informational */ - exponent: number; + exponent?: number; } export interface AllowedDenomAminoMsg { type: "/regen.ecocredit.v1.AllowedDenom"; @@ -420,8 +420,9 @@ export interface AllowedDenomSDKType { exponent: number; } export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; @@ -433,8 +434,9 @@ export declare const Params: { toProtoMsg(message: Params): ParamsProtoMsg; }; export declare const Credits: { - encode(message: Credits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Credits; + typeUrl: string; + encode(message: Credits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Credits; fromJSON(object: any): Credits; toJSON(message: Credits): unknown; fromPartial(object: Partial): Credits; @@ -446,8 +448,9 @@ export declare const Credits: { toProtoMsg(message: Credits): CreditsProtoMsg; }; export declare const BatchIssuance: { - encode(message: BatchIssuance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchIssuance; + typeUrl: string; + encode(message: BatchIssuance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchIssuance; fromJSON(object: any): BatchIssuance; toJSON(message: BatchIssuance): unknown; fromPartial(object: Partial): BatchIssuance; @@ -459,8 +462,9 @@ export declare const BatchIssuance: { toProtoMsg(message: BatchIssuance): BatchIssuanceProtoMsg; }; export declare const OriginTx: { - encode(message: OriginTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): OriginTx; + typeUrl: string; + encode(message: OriginTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): OriginTx; fromJSON(object: any): OriginTx; toJSON(message: OriginTx): unknown; fromPartial(object: Partial): OriginTx; @@ -472,8 +476,9 @@ export declare const OriginTx: { toProtoMsg(message: OriginTx): OriginTxProtoMsg; }; export declare const CreditTypeProposal: { - encode(message: CreditTypeProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CreditTypeProposal; + typeUrl: string; + encode(message: CreditTypeProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CreditTypeProposal; fromJSON(object: any): CreditTypeProposal; toJSON(message: CreditTypeProposal): unknown; fromPartial(object: Partial): CreditTypeProposal; @@ -485,8 +490,9 @@ export declare const CreditTypeProposal: { toProtoMsg(message: CreditTypeProposal): CreditTypeProposalProtoMsg; }; export declare const AllowedDenom: { - encode(message: AllowedDenom, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): AllowedDenom; + typeUrl: string; + encode(message: AllowedDenom, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): AllowedDenom; fromJSON(object: any): AllowedDenom; toJSON(message: AllowedDenom): unknown; fromPartial(object: Partial): AllowedDenom; diff --git a/packages/api/types/codegen/regen/ecocredit/v1alpha1/events.d.ts b/packages/api/types/codegen/regen/ecocredit/v1alpha1/events.d.ts index 1c4af78..0a9cd9f 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1alpha1/events.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1alpha1/events.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** EventCreateClass is an event emitted when a credit class is created. */ export interface EventCreateClass { /** class_id is the unique ID of credit class. */ @@ -13,9 +13,9 @@ export interface EventCreateClassProtoMsg { /** EventCreateClass is an event emitted when a credit class is created. */ export interface EventCreateClassAmino { /** class_id is the unique ID of credit class. */ - class_id: string; + class_id?: string; /** admin is the admin of the credit class. */ - admin: string; + admin?: string; } export interface EventCreateClassAminoMsg { type: "/regen.ecocredit.v1alpha1.EventCreateClass"; @@ -59,28 +59,28 @@ export interface EventCreateBatchProtoMsg { /** EventCreateBatch is an event emitted when a credit batch is created. */ export interface EventCreateBatchAmino { /** class_id is the unique ID of credit class. */ - class_id: string; + class_id?: string; /** batch_denom is the unique ID of credit batch. */ - batch_denom: string; + batch_denom?: string; /** issuer is the account address of the issuer of the credit batch. */ - issuer: string; + issuer?: string; /** total_amount is the total number of credits in the credit batch. */ - total_amount: string; + total_amount?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date: string; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date: string; + end_date?: string; /** * project_location is the location of the project backing the credits in this * batch. Full documentation can be found in MsgCreateBatch.project_location. */ - project_location: string; + project_location?: string; } export interface EventCreateBatchAminoMsg { type: "/regen.ecocredit.v1alpha1.EventCreateBatch"; @@ -141,22 +141,22 @@ export interface EventReceiveAmino { * result of a transfer. It will not be set when credits are received at * initial issuance or taken from a basket. */ - sender: string; + sender?: string; /** recipient is the recipient of the credits. */ - recipient: string; + recipient?: string; /** batch_denom is the unique ID of credit batch. */ - batch_denom: string; + batch_denom?: string; /** tradable_amount is the decimal number of tradable credits received. */ - tradable_amount: string; + tradable_amount?: string; /** retired_amount is the decimal number of retired credits received. */ - retired_amount: string; + retired_amount?: string; /** * basket_denom is the denom of the basket. when the basket_denom field is * set, it indicates that this event was triggered by the transfer of credits * from a basket. It will not be set if the credits were sent by a user, or by * initial issuance. */ - basket_denom: string; + basket_denom?: string; } export interface EventReceiveAminoMsg { type: "/regen.ecocredit.v1alpha1.EventReceive"; @@ -216,11 +216,11 @@ export interface EventRetireAmino { * account receiving credits in the case that credits were retired upon * issuance using Msg/CreateBatch or retired upon transfer using Msg/Send. */ - retirer: string; + retirer?: string; /** batch_denom is the unique ID of credit batch. */ - batch_denom: string; + batch_denom?: string; /** amount is the decimal number of credits that have been retired. */ - amount: string; + amount?: string; /** * location is the location of the beneficiary or buyer of the retired * credits. It is a string of the form @@ -228,7 +228,7 @@ export interface EventRetireAmino { * fields conforming to ISO 3166-2, and postal-code being up to 64 * alphanumeric characters. */ - location: string; + location?: string; } export interface EventRetireAminoMsg { type: "/regen.ecocredit.v1alpha1.EventRetire"; @@ -275,11 +275,11 @@ export interface EventCancelAmino { * canceller is the account which has cancelled the credits, which should be * the holder of the credits. */ - canceller: string; + canceller?: string; /** batch_denom is the unique ID of credit batch. */ - batch_denom: string; + batch_denom?: string; /** amount is the decimal number of credits that have been cancelled. */ - amount: string; + amount?: string; } export interface EventCancelAminoMsg { type: "/regen.ecocredit.v1alpha1.EventCancel"; @@ -296,8 +296,9 @@ export interface EventCancelSDKType { amount: string; } export declare const EventCreateClass: { - encode(message: EventCreateClass, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateClass; + typeUrl: string; + encode(message: EventCreateClass, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateClass; fromJSON(object: any): EventCreateClass; toJSON(message: EventCreateClass): unknown; fromPartial(object: Partial): EventCreateClass; @@ -309,8 +310,9 @@ export declare const EventCreateClass: { toProtoMsg(message: EventCreateClass): EventCreateClassProtoMsg; }; export declare const EventCreateBatch: { - encode(message: EventCreateBatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCreateBatch; + typeUrl: string; + encode(message: EventCreateBatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCreateBatch; fromJSON(object: any): EventCreateBatch; toJSON(message: EventCreateBatch): unknown; fromPartial(object: Partial): EventCreateBatch; @@ -322,8 +324,9 @@ export declare const EventCreateBatch: { toProtoMsg(message: EventCreateBatch): EventCreateBatchProtoMsg; }; export declare const EventReceive: { - encode(message: EventReceive, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventReceive; + typeUrl: string; + encode(message: EventReceive, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventReceive; fromJSON(object: any): EventReceive; toJSON(message: EventReceive): unknown; fromPartial(object: Partial): EventReceive; @@ -335,8 +338,9 @@ export declare const EventReceive: { toProtoMsg(message: EventReceive): EventReceiveProtoMsg; }; export declare const EventRetire: { - encode(message: EventRetire, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventRetire; + typeUrl: string; + encode(message: EventRetire, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventRetire; fromJSON(object: any): EventRetire; toJSON(message: EventRetire): unknown; fromPartial(object: Partial): EventRetire; @@ -348,8 +352,9 @@ export declare const EventRetire: { toProtoMsg(message: EventRetire): EventRetireProtoMsg; }; export declare const EventCancel: { - encode(message: EventCancel, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventCancel; + typeUrl: string; + encode(message: EventCancel, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventCancel; fromJSON(object: any): EventCancel; toJSON(message: EventCancel): unknown; fromPartial(object: Partial): EventCancel; diff --git a/packages/api/types/codegen/regen/ecocredit/v1alpha1/genesis.d.ts b/packages/api/types/codegen/regen/ecocredit/v1alpha1/genesis.d.ts index 3662da6..ea89f1c 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1alpha1/genesis.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1alpha1/genesis.d.ts @@ -1,5 +1,5 @@ import { Params, ParamsAmino, ParamsSDKType, ClassInfo, ClassInfoAmino, ClassInfoSDKType, BatchInfo, BatchInfoAmino, BatchInfoSDKType, CreditTypeSeq, CreditTypeSeqAmino, CreditTypeSeqSDKType } from "./types"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines ecocredit module's genesis state. */ export interface GenesisState { /** @@ -30,15 +30,15 @@ export interface GenesisStateAmino { */ params?: ParamsAmino; /** class_info is the list of credit class info. */ - class_info: ClassInfoAmino[]; + class_info?: ClassInfoAmino[]; /** batch_info is the list of credit batch info. */ - batch_info: BatchInfoAmino[]; + batch_info?: BatchInfoAmino[]; /** sequences is the list of credit type sequence. */ - sequences: CreditTypeSeqAmino[]; + sequences?: CreditTypeSeqAmino[]; /** balances is the list of credit batch tradable/retired units. */ - balances: BalanceAmino[]; + balances?: BalanceAmino[]; /** supplies is the list of credit batch tradable/retired supply. */ - supplies: SupplyAmino[]; + supplies?: SupplyAmino[]; } export interface GenesisStateAminoMsg { type: "/regen.ecocredit.v1alpha1.GenesisState"; @@ -77,13 +77,13 @@ export interface BalanceProtoMsg { */ export interface BalanceAmino { /** address is the account address of the account holding credits. */ - address: string; + address?: string; /** batch_denom is the unique ID of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** tradable_balance is the tradable balance of the credit batch. */ - tradable_balance: string; + tradable_balance?: string; /** retired_balance is the retired balance of the credit batch. */ - retired_balance: string; + retired_balance?: string; } export interface BalanceAminoMsg { type: "/regen.ecocredit.v1alpha1.Balance"; @@ -115,11 +115,11 @@ export interface SupplyProtoMsg { /** Supply represents a tradable or retired supply of a credit batch. */ export interface SupplyAmino { /** batch_denom is the unique ID of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** tradable_supply is the tradable supply of the credit batch. */ - tradable_supply: string; + tradable_supply?: string; /** retired_supply is the retired supply of the credit batch. */ - retired_supply: string; + retired_supply?: string; } export interface SupplyAminoMsg { type: "/regen.ecocredit.v1alpha1.Supply"; @@ -132,8 +132,9 @@ export interface SupplySDKType { retired_supply: string; } export declare const GenesisState: { - encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; + typeUrl: string; + encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; @@ -145,8 +146,9 @@ export declare const GenesisState: { toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const Balance: { - encode(message: Balance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Balance; + typeUrl: string; + encode(message: Balance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Balance; fromJSON(object: any): Balance; toJSON(message: Balance): unknown; fromPartial(object: Partial): Balance; @@ -158,8 +160,9 @@ export declare const Balance: { toProtoMsg(message: Balance): BalanceProtoMsg; }; export declare const Supply: { - encode(message: Supply, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Supply; + typeUrl: string; + encode(message: Supply, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Supply; fromJSON(object: any): Supply; toJSON(message: Supply): unknown; fromPartial(object: Partial): Supply; diff --git a/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.d.ts b/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.d.ts index ff1fa12..e080545 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.d.ts @@ -1,6 +1,6 @@ import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../cosmos/base/query/v1beta1/pagination"; import { Params, ParamsAmino, ParamsSDKType, ClassInfo, ClassInfoAmino, ClassInfoSDKType, BatchInfo, BatchInfoAmino, BatchInfoSDKType, CreditType, CreditTypeAmino, CreditTypeSDKType } from "./types"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** QueryParamsRequest is the Query/Params request type. */ export interface QueryParamsRequest { } @@ -21,7 +21,7 @@ export interface QueryParamsRequestSDKType { /** QueryParamsResponse is the Query/Params response type. */ export interface QueryParamsResponse { /** params defines the parameters of the ecocredit module. */ - params: Params; + params?: Params; } export interface QueryParamsResponseProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryParamsResponse"; @@ -38,12 +38,12 @@ export interface QueryParamsResponseAminoMsg { } /** QueryParamsResponse is the Query/Params response type. */ export interface QueryParamsResponseSDKType { - params: ParamsSDKType; + params?: ParamsSDKType; } /** QueryClassesRequest is the Query/Classes request type. */ export interface QueryClassesRequest { /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryClassesRequestProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryClassesRequest"; @@ -60,14 +60,14 @@ export interface QueryClassesRequestAminoMsg { } /** QueryClassesRequest is the Query/Classes request type. */ export interface QueryClassesRequestSDKType { - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryClassesResponse is the Query/Classes response type. */ export interface QueryClassesResponse { /** classes are the fetched credit classes. */ classes: ClassInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryClassesResponseProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryClassesResponse"; @@ -76,7 +76,7 @@ export interface QueryClassesResponseProtoMsg { /** QueryClassesResponse is the Query/Classes response type. */ export interface QueryClassesResponseAmino { /** classes are the fetched credit classes. */ - classes: ClassInfoAmino[]; + classes?: ClassInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -87,7 +87,7 @@ export interface QueryClassesResponseAminoMsg { /** QueryClassesResponse is the Query/Classes response type. */ export interface QueryClassesResponseSDKType { classes: ClassInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryClassInfoRequest is the Query/ClassInfo request type. */ export interface QueryClassInfoRequest { @@ -101,7 +101,7 @@ export interface QueryClassInfoRequestProtoMsg { /** QueryClassInfoRequest is the Query/ClassInfo request type. */ export interface QueryClassInfoRequestAmino { /** class_id is the unique ID of credit class to query. */ - class_id: string; + class_id?: string; } export interface QueryClassInfoRequestAminoMsg { type: "/regen.ecocredit.v1alpha1.QueryClassInfoRequest"; @@ -114,7 +114,7 @@ export interface QueryClassInfoRequestSDKType { /** QueryClassInfoResponse is the Query/ClassInfo request type. */ export interface QueryClassInfoResponse { /** info is the ClassInfo for the credit class. */ - info: ClassInfo; + info?: ClassInfo; } export interface QueryClassInfoResponseProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryClassInfoResponse"; @@ -131,14 +131,14 @@ export interface QueryClassInfoResponseAminoMsg { } /** QueryClassInfoResponse is the Query/ClassInfo request type. */ export interface QueryClassInfoResponseSDKType { - info: ClassInfoSDKType; + info?: ClassInfoSDKType; } /** QueryBatchesRequest is the Query/Batches request type. */ export interface QueryBatchesRequest { /** class_id is the unique ID of the credit class to query. */ classId: string; /** pagination defines an optional pagination for the request. */ - pagination: PageRequest; + pagination?: PageRequest; } export interface QueryBatchesRequestProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryBatchesRequest"; @@ -147,7 +147,7 @@ export interface QueryBatchesRequestProtoMsg { /** QueryBatchesRequest is the Query/Batches request type. */ export interface QueryBatchesRequestAmino { /** class_id is the unique ID of the credit class to query. */ - class_id: string; + class_id?: string; /** pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } @@ -158,14 +158,14 @@ export interface QueryBatchesRequestAminoMsg { /** QueryBatchesRequest is the Query/Batches request type. */ export interface QueryBatchesRequestSDKType { class_id: string; - pagination: PageRequestSDKType; + pagination?: PageRequestSDKType; } /** QueryBatchesResponse is the Query/Batches response type. */ export interface QueryBatchesResponse { /** batches are the fetched credit batches within the class. */ batches: BatchInfo[]; /** pagination defines the pagination in the response. */ - pagination: PageResponse; + pagination?: PageResponse; } export interface QueryBatchesResponseProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryBatchesResponse"; @@ -174,7 +174,7 @@ export interface QueryBatchesResponseProtoMsg { /** QueryBatchesResponse is the Query/Batches response type. */ export interface QueryBatchesResponseAmino { /** batches are the fetched credit batches within the class. */ - batches: BatchInfoAmino[]; + batches?: BatchInfoAmino[]; /** pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } @@ -185,7 +185,7 @@ export interface QueryBatchesResponseAminoMsg { /** QueryBatchesResponse is the Query/Batches response type. */ export interface QueryBatchesResponseSDKType { batches: BatchInfoSDKType[]; - pagination: PageResponseSDKType; + pagination?: PageResponseSDKType; } /** QueryBatchInfoRequest is the Query/BatchInfo request type. */ export interface QueryBatchInfoRequest { @@ -199,7 +199,7 @@ export interface QueryBatchInfoRequestProtoMsg { /** QueryBatchInfoRequest is the Query/BatchInfo request type. */ export interface QueryBatchInfoRequestAmino { /** batch_denom is the unique ID of credit batch to query. */ - batch_denom: string; + batch_denom?: string; } export interface QueryBatchInfoRequestAminoMsg { type: "/regen.ecocredit.v1alpha1.QueryBatchInfoRequest"; @@ -212,7 +212,7 @@ export interface QueryBatchInfoRequestSDKType { /** QueryBatchInfoResponse is the Query/BatchInfo response type. */ export interface QueryBatchInfoResponse { /** info is the BatchInfo for the credit batch. */ - info: BatchInfo; + info?: BatchInfo; } export interface QueryBatchInfoResponseProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.QueryBatchInfoResponse"; @@ -229,7 +229,7 @@ export interface QueryBatchInfoResponseAminoMsg { } /** QueryBatchInfoResponse is the Query/BatchInfo response type. */ export interface QueryBatchInfoResponseSDKType { - info: BatchInfoSDKType; + info?: BatchInfoSDKType; } /** QueryBalanceRequest is the Query/Balance request type. */ export interface QueryBalanceRequest { @@ -245,9 +245,9 @@ export interface QueryBalanceRequestProtoMsg { /** QueryBalanceRequest is the Query/Balance request type. */ export interface QueryBalanceRequestAmino { /** account is the address of the account whose balance is being queried. */ - account: string; + account?: string; /** batch_denom is the unique ID of credit batch balance to query. */ - batch_denom: string; + batch_denom?: string; } export interface QueryBalanceRequestAminoMsg { type: "/regen.ecocredit.v1alpha1.QueryBalanceRequest"; @@ -272,9 +272,9 @@ export interface QueryBalanceResponseProtoMsg { /** QueryBalanceResponse is the Query/Balance response type. */ export interface QueryBalanceResponseAmino { /** tradable_amount is the decimal number of tradable credits. */ - tradable_amount: string; + tradable_amount?: string; /** retired_amount is the decimal number of retired credits. */ - retired_amount: string; + retired_amount?: string; } export interface QueryBalanceResponseAminoMsg { type: "/regen.ecocredit.v1alpha1.QueryBalanceResponse"; @@ -297,7 +297,7 @@ export interface QuerySupplyRequestProtoMsg { /** QuerySupplyRequest is the Query/Supply request type. */ export interface QuerySupplyRequestAmino { /** batch_denom is the unique ID of credit batch to query. */ - batch_denom: string; + batch_denom?: string; } export interface QuerySupplyRequestAminoMsg { type: "/regen.ecocredit.v1alpha1.QuerySupplyRequest"; @@ -330,12 +330,12 @@ export interface QuerySupplyResponseAmino { * tradable_supply is the decimal number of tradable credits in the batch * supply. */ - tradable_supply: string; + tradable_supply?: string; /** * retired_supply is the decimal number of retired credits in the batch * supply. */ - retired_supply: string; + retired_supply?: string; } export interface QuerySupplyResponseAminoMsg { type: "/regen.ecocredit.v1alpha1.QuerySupplyResponse"; @@ -375,7 +375,7 @@ export interface QueryCreditTypesResponseProtoMsg { /** QueryCreditTypesRequest is the Query/Credit_Types response type */ export interface QueryCreditTypesResponseAmino { /** list of credit types */ - credit_types: CreditTypeAmino[]; + credit_types?: CreditTypeAmino[]; } export interface QueryCreditTypesResponseAminoMsg { type: "/regen.ecocredit.v1alpha1.QueryCreditTypesResponse"; @@ -386,8 +386,9 @@ export interface QueryCreditTypesResponseSDKType { credit_types: CreditTypeSDKType[]; } export declare const QueryParamsRequest: { - encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest; + typeUrl: string; + encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): unknown; fromPartial(_: Partial): QueryParamsRequest; @@ -399,8 +400,9 @@ export declare const QueryParamsRequest: { toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { - encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse; + typeUrl: string; + encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): unknown; fromPartial(object: Partial): QueryParamsResponse; @@ -412,8 +414,9 @@ export declare const QueryParamsResponse: { toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryClassesRequest: { - encode(message: QueryClassesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesRequest; + typeUrl: string; + encode(message: QueryClassesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesRequest; fromJSON(object: any): QueryClassesRequest; toJSON(message: QueryClassesRequest): unknown; fromPartial(object: Partial): QueryClassesRequest; @@ -425,8 +428,9 @@ export declare const QueryClassesRequest: { toProtoMsg(message: QueryClassesRequest): QueryClassesRequestProtoMsg; }; export declare const QueryClassesResponse: { - encode(message: QueryClassesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesResponse; + typeUrl: string; + encode(message: QueryClassesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassesResponse; fromJSON(object: any): QueryClassesResponse; toJSON(message: QueryClassesResponse): unknown; fromPartial(object: Partial): QueryClassesResponse; @@ -438,8 +442,9 @@ export declare const QueryClassesResponse: { toProtoMsg(message: QueryClassesResponse): QueryClassesResponseProtoMsg; }; export declare const QueryClassInfoRequest: { - encode(message: QueryClassInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassInfoRequest; + typeUrl: string; + encode(message: QueryClassInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassInfoRequest; fromJSON(object: any): QueryClassInfoRequest; toJSON(message: QueryClassInfoRequest): unknown; fromPartial(object: Partial): QueryClassInfoRequest; @@ -451,8 +456,9 @@ export declare const QueryClassInfoRequest: { toProtoMsg(message: QueryClassInfoRequest): QueryClassInfoRequestProtoMsg; }; export declare const QueryClassInfoResponse: { - encode(message: QueryClassInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassInfoResponse; + typeUrl: string; + encode(message: QueryClassInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryClassInfoResponse; fromJSON(object: any): QueryClassInfoResponse; toJSON(message: QueryClassInfoResponse): unknown; fromPartial(object: Partial): QueryClassInfoResponse; @@ -464,8 +470,9 @@ export declare const QueryClassInfoResponse: { toProtoMsg(message: QueryClassInfoResponse): QueryClassInfoResponseProtoMsg; }; export declare const QueryBatchesRequest: { - encode(message: QueryBatchesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesRequest; + typeUrl: string; + encode(message: QueryBatchesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesRequest; fromJSON(object: any): QueryBatchesRequest; toJSON(message: QueryBatchesRequest): unknown; fromPartial(object: Partial): QueryBatchesRequest; @@ -477,8 +484,9 @@ export declare const QueryBatchesRequest: { toProtoMsg(message: QueryBatchesRequest): QueryBatchesRequestProtoMsg; }; export declare const QueryBatchesResponse: { - encode(message: QueryBatchesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchesResponse; + typeUrl: string; + encode(message: QueryBatchesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchesResponse; fromJSON(object: any): QueryBatchesResponse; toJSON(message: QueryBatchesResponse): unknown; fromPartial(object: Partial): QueryBatchesResponse; @@ -490,8 +498,9 @@ export declare const QueryBatchesResponse: { toProtoMsg(message: QueryBatchesResponse): QueryBatchesResponseProtoMsg; }; export declare const QueryBatchInfoRequest: { - encode(message: QueryBatchInfoRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchInfoRequest; + typeUrl: string; + encode(message: QueryBatchInfoRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchInfoRequest; fromJSON(object: any): QueryBatchInfoRequest; toJSON(message: QueryBatchInfoRequest): unknown; fromPartial(object: Partial): QueryBatchInfoRequest; @@ -503,8 +512,9 @@ export declare const QueryBatchInfoRequest: { toProtoMsg(message: QueryBatchInfoRequest): QueryBatchInfoRequestProtoMsg; }; export declare const QueryBatchInfoResponse: { - encode(message: QueryBatchInfoResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBatchInfoResponse; + typeUrl: string; + encode(message: QueryBatchInfoResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBatchInfoResponse; fromJSON(object: any): QueryBatchInfoResponse; toJSON(message: QueryBatchInfoResponse): unknown; fromPartial(object: Partial): QueryBatchInfoResponse; @@ -516,8 +526,9 @@ export declare const QueryBatchInfoResponse: { toProtoMsg(message: QueryBatchInfoResponse): QueryBatchInfoResponseProtoMsg; }; export declare const QueryBalanceRequest: { - encode(message: QueryBalanceRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceRequest; + typeUrl: string; + encode(message: QueryBalanceRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceRequest; fromJSON(object: any): QueryBalanceRequest; toJSON(message: QueryBalanceRequest): unknown; fromPartial(object: Partial): QueryBalanceRequest; @@ -529,8 +540,9 @@ export declare const QueryBalanceRequest: { toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg; }; export declare const QueryBalanceResponse: { - encode(message: QueryBalanceResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceResponse; + typeUrl: string; + encode(message: QueryBalanceResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceResponse; fromJSON(object: any): QueryBalanceResponse; toJSON(message: QueryBalanceResponse): unknown; fromPartial(object: Partial): QueryBalanceResponse; @@ -542,8 +554,9 @@ export declare const QueryBalanceResponse: { toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg; }; export declare const QuerySupplyRequest: { - encode(message: QuerySupplyRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyRequest; + typeUrl: string; + encode(message: QuerySupplyRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyRequest; fromJSON(object: any): QuerySupplyRequest; toJSON(message: QuerySupplyRequest): unknown; fromPartial(object: Partial): QuerySupplyRequest; @@ -555,8 +568,9 @@ export declare const QuerySupplyRequest: { toProtoMsg(message: QuerySupplyRequest): QuerySupplyRequestProtoMsg; }; export declare const QuerySupplyResponse: { - encode(message: QuerySupplyResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyResponse; + typeUrl: string; + encode(message: QuerySupplyResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QuerySupplyResponse; fromJSON(object: any): QuerySupplyResponse; toJSON(message: QuerySupplyResponse): unknown; fromPartial(object: Partial): QuerySupplyResponse; @@ -568,8 +582,9 @@ export declare const QuerySupplyResponse: { toProtoMsg(message: QuerySupplyResponse): QuerySupplyResponseProtoMsg; }; export declare const QueryCreditTypesRequest: { - encode(_: QueryCreditTypesRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCreditTypesRequest; + typeUrl: string; + encode(_: QueryCreditTypesRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCreditTypesRequest; fromJSON(_: any): QueryCreditTypesRequest; toJSON(_: QueryCreditTypesRequest): unknown; fromPartial(_: Partial): QueryCreditTypesRequest; @@ -581,8 +596,9 @@ export declare const QueryCreditTypesRequest: { toProtoMsg(message: QueryCreditTypesRequest): QueryCreditTypesRequestProtoMsg; }; export declare const QueryCreditTypesResponse: { - encode(message: QueryCreditTypesResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryCreditTypesResponse; + typeUrl: string; + encode(message: QueryCreditTypesResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryCreditTypesResponse; fromJSON(object: any): QueryCreditTypesResponse; toJSON(message: QueryCreditTypesResponse): unknown; fromPartial(object: Partial): QueryCreditTypesResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.lcd.d.ts b/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.lcd.d.ts index 12ff0c5..14568f8 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.lcd.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1alpha1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryClassesRequest, QueryClassesResponseSDKType, QueryClassInfoRequest, QueryClassInfoResponseSDKType, QueryBatchesRequest, QueryBatchesResponseSDKType, QueryBatchInfoRequest, QueryBatchInfoResponseSDKType, QueryBalanceRequest, QueryBalanceResponseSDKType, QuerySupplyRequest, QuerySupplyResponseSDKType, QueryCreditTypesRequest, QueryCreditTypesResponseSDKType, QueryParamsRequest, QueryParamsResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/regen/ecocredit/v1alpha1/tx.d.ts b/packages/api/types/codegen/regen/ecocredit/v1alpha1/tx.d.ts index deecd24..727a375 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1alpha1/tx.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1alpha1/tx.d.ts @@ -1,5 +1,5 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; -import * as _m0 from "protobufjs/minimal"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** MsgCreateClass is the Msg/CreateClass request type. */ export interface MsgCreateClass { /** admin is the address of the account that created the credit class. */ @@ -21,16 +21,16 @@ export interface MsgCreateClassProtoMsg { /** MsgCreateClass is the Msg/CreateClass request type. */ export interface MsgCreateClassAmino { /** admin is the address of the account that created the credit class. */ - admin: string; + admin?: string; /** issuers are the account addresses of the approved issuers. */ - issuers: string[]; + issuers?: string[]; /** metadata is any arbitrary metadata to attached to the credit class. */ - metadata: Uint8Array; + metadata?: string; /** * credit_type_name describes the type of credit (e.g. "carbon", * "biodiversity"). */ - credit_type_name: string; + credit_type_name?: string; } export interface MsgCreateClassAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgCreateClass"; @@ -55,7 +55,7 @@ export interface MsgCreateClassResponseProtoMsg { /** MsgCreateClassResponse is the Msg/CreateClass response type. */ export interface MsgCreateClassResponseAmino { /** class_id is the unique ID of the newly created credit class. */ - class_id: string; + class_id?: string; } export interface MsgCreateClassResponseAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgCreateClassResponse"; @@ -79,12 +79,12 @@ export interface MsgCreateBatch { * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - startDate: Timestamp; + startDate?: Timestamp; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - endDate: Timestamp; + endDate?: Timestamp; /** * project_location is the location of the project backing the credits in this * batch. It is a string of the form @@ -102,23 +102,23 @@ export interface MsgCreateBatchProtoMsg { /** MsgCreateBatch is the Msg/CreateBatch request type. */ export interface MsgCreateBatchAmino { /** issuer is the address of the batch issuer. */ - issuer: string; + issuer?: string; /** class_id is the unique ID of the class. */ - class_id: string; + class_id?: string; /** issuance are the credits issued in the batch. */ - issuance: MsgCreateBatch_BatchIssuanceAmino[]; + issuance?: MsgCreateBatch_BatchIssuanceAmino[]; /** metadata is any arbitrary metadata attached to the credit batch. */ - metadata: Uint8Array; + metadata?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date?: TimestampAmino; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date?: TimestampAmino; + end_date?: string; /** * project_location is the location of the project backing the credits in this * batch. It is a string of the form @@ -127,7 +127,7 @@ export interface MsgCreateBatchAmino { * alphanumeric characters. country-code is required, while sub-national-code * and postal-code can be added for increasing precision. */ - project_location: string; + project_location?: string; } export interface MsgCreateBatchAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgCreateBatch"; @@ -139,8 +139,8 @@ export interface MsgCreateBatchSDKType { class_id: string; issuance: MsgCreateBatch_BatchIssuanceSDKType[]; metadata: Uint8Array; - start_date: TimestampSDKType; - end_date: TimestampSDKType; + start_date?: TimestampSDKType; + end_date?: TimestampSDKType; project_location: string; } /** @@ -181,18 +181,18 @@ export interface MsgCreateBatch_BatchIssuanceProtoMsg { */ export interface MsgCreateBatch_BatchIssuanceAmino { /** recipient is the account of the recipient. */ - recipient: string; + recipient?: string; /** * tradable_amount is the number of credits in this issuance that can be * traded by this recipient. Decimal values are acceptable. */ - tradable_amount: string; + tradable_amount?: string; /** * retired_amount is the number of credits in this issuance that are * effectively retired by the issuer on receipt. Decimal values are * acceptable. */ - retired_amount: string; + retired_amount?: string; /** * retirement_location is the location of the beneficiary or buyer of the * retired credits. This must be provided if retired_amount is positive. It @@ -201,7 +201,7 @@ export interface MsgCreateBatch_BatchIssuanceAmino { * fields conforming to ISO 3166-2, and postal-code being up to 64 * alphanumeric characters. */ - retirement_location: string; + retirement_location?: string; } export interface MsgCreateBatch_BatchIssuanceAminoMsg { type: "/regen.ecocredit.v1alpha1.BatchIssuance"; @@ -229,7 +229,7 @@ export interface MsgCreateBatchResponseProtoMsg { /** MsgCreateBatchResponse is the Msg/CreateBatch response type. */ export interface MsgCreateBatchResponseAmino { /** batch_denom is the unique denomination ID of the newly created batch. */ - batch_denom: string; + batch_denom?: string; } export interface MsgCreateBatchResponseAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgCreateBatchResponse"; @@ -255,11 +255,11 @@ export interface MsgSendProtoMsg { /** MsgSend is the Msg/Send request type. */ export interface MsgSendAmino { /** sender is the address of the account sending credits. */ - sender: string; + sender?: string; /** sender is the address of the account receiving credits. */ - recipient: string; + recipient?: string; /** credits are the credits being sent. */ - credits: MsgSend_SendCreditsAmino[]; + credits?: MsgSend_SendCreditsAmino[]; } export interface MsgSendAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgSend"; @@ -312,19 +312,19 @@ export interface MsgSend_SendCreditsProtoMsg { */ export interface MsgSend_SendCreditsAmino { /** batch_denom is the unique ID of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * tradable_amount is the number of credits in this transfer that can be * traded by the recipient. Decimal values are acceptable within the * precision returned by Query/Precision. */ - tradable_amount: string; + tradable_amount?: string; /** * retired_amount is the number of credits in this transfer that are * effectively retired by the issuer on receipt. Decimal values are * acceptable within the precision returned by Query/Precision. */ - retired_amount: string; + retired_amount?: string; /** * retirement_location is the location of the beneficiary or buyer of the * retired credits. This must be provided if retired_amount is positive. It @@ -333,7 +333,7 @@ export interface MsgSend_SendCreditsAmino { * fields conforming to ISO 3166-2, and postal-code being up to 64 * alphanumeric characters. */ - retirement_location: string; + retirement_location?: string; } export interface MsgSend_SendCreditsAminoMsg { type: "/regen.ecocredit.v1alpha1.SendCredits"; @@ -389,9 +389,9 @@ export interface MsgRetireProtoMsg { /** MsgRetire is the Msg/Retire request type. */ export interface MsgRetireAmino { /** holder is the credit holder address. */ - holder: string; + holder?: string; /** credits are the credits being retired. */ - credits: MsgRetire_RetireCreditsAmino[]; + credits?: MsgRetire_RetireCreditsAmino[]; /** * location is the location of the beneficiary or buyer of the retired * credits. It is a string of the form @@ -399,7 +399,7 @@ export interface MsgRetireAmino { * fields conforming to ISO 3166-2, and postal-code being up to 64 * alphanumeric characters. */ - location: string; + location?: string; } export interface MsgRetireAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgRetire"; @@ -429,13 +429,13 @@ export interface MsgRetire_RetireCreditsProtoMsg { /** RetireCredits specifies a batch and the number of credits being retired. */ export interface MsgRetire_RetireCreditsAmino { /** batch_denom is the unique ID of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * amount is the number of credits being retired. * Decimal values are acceptable within the precision returned by * Query/Precision. */ - amount: string; + amount?: string; } export interface MsgRetire_RetireCreditsAminoMsg { type: "/regen.ecocredit.v1alpha1.RetireCredits"; @@ -477,9 +477,9 @@ export interface MsgCancelProtoMsg { /** MsgCancel is the Msg/Cancel request type. */ export interface MsgCancelAmino { /** holder is the credit holder address. */ - holder: string; + holder?: string; /** credits are the credits being cancelled. */ - credits: MsgCancel_CancelCreditsAmino[]; + credits?: MsgCancel_CancelCreditsAmino[]; } export interface MsgCancelAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgCancel"; @@ -508,13 +508,13 @@ export interface MsgCancel_CancelCreditsProtoMsg { /** CancelCredits specifies a batch and the number of credits being cancelled. */ export interface MsgCancel_CancelCreditsAmino { /** batch_denom is the unique ID of the credit batch. */ - batch_denom: string; + batch_denom?: string; /** * amount is the number of credits being cancelled. * Decimal values are acceptable within the precision returned by * Query/Precision. */ - amount: string; + amount?: string; } export interface MsgCancel_CancelCreditsAminoMsg { type: "/regen.ecocredit.v1alpha1.CancelCredits"; @@ -558,11 +558,11 @@ export interface MsgUpdateClassAdminProtoMsg { /** MsgUpdateClassAdmin is the Msg/UpdateClassAdmin request type. */ export interface MsgUpdateClassAdminAmino { /** admin is the address of the account that is the admin of the credit class. */ - admin: string; + admin?: string; /** class_id is the unique ID of the credit class. */ - class_id: string; + class_id?: string; /** new_admin is the address of the new admin of the credit class. */ - new_admin: string; + new_admin?: string; } export interface MsgUpdateClassAdminAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgUpdateClassAdmin"; @@ -607,11 +607,11 @@ export interface MsgUpdateClassIssuersProtoMsg { /** MsgUpdateClassIssuers is the Msg/UpdateClassIssuers request type. */ export interface MsgUpdateClassIssuersAmino { /** admin is the address of the account that is the admin of the credit class. */ - admin: string; + admin?: string; /** class_id is the unique ID of the credit class. */ - class_id: string; + class_id?: string; /** issuers are the updated account addresses of the approved issuers. */ - issuers: string[]; + issuers?: string[]; } export interface MsgUpdateClassIssuersAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgUpdateClassIssuers"; @@ -659,14 +659,14 @@ export interface MsgUpdateClassMetadataProtoMsg { /** MsgUpdateClassMetadata is the Msg/UpdateClassMetadata request type. */ export interface MsgUpdateClassMetadataAmino { /** admin is the address of the account that is the admin of the credit class. */ - admin: string; + admin?: string; /** class_id is the unique ID of the credit class. */ - class_id: string; + class_id?: string; /** * metadata is the updated arbitrary metadata to be attached to the credit * class. */ - metadata: Uint8Array; + metadata?: string; } export interface MsgUpdateClassMetadataAminoMsg { type: "/regen.ecocredit.v1alpha1.MsgUpdateClassMetadata"; @@ -696,8 +696,9 @@ export interface MsgUpdateClassMetadataResponseAminoMsg { export interface MsgUpdateClassMetadataResponseSDKType { } export declare const MsgCreateClass: { - encode(message: MsgCreateClass, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateClass; + typeUrl: string; + encode(message: MsgCreateClass, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateClass; fromJSON(object: any): MsgCreateClass; toJSON(message: MsgCreateClass): unknown; fromPartial(object: Partial): MsgCreateClass; @@ -709,8 +710,9 @@ export declare const MsgCreateClass: { toProtoMsg(message: MsgCreateClass): MsgCreateClassProtoMsg; }; export declare const MsgCreateClassResponse: { - encode(message: MsgCreateClassResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateClassResponse; + typeUrl: string; + encode(message: MsgCreateClassResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateClassResponse; fromJSON(object: any): MsgCreateClassResponse; toJSON(message: MsgCreateClassResponse): unknown; fromPartial(object: Partial): MsgCreateClassResponse; @@ -722,8 +724,9 @@ export declare const MsgCreateClassResponse: { toProtoMsg(message: MsgCreateClassResponse): MsgCreateClassResponseProtoMsg; }; export declare const MsgCreateBatch: { - encode(message: MsgCreateBatch, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateBatch; + typeUrl: string; + encode(message: MsgCreateBatch, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateBatch; fromJSON(object: any): MsgCreateBatch; toJSON(message: MsgCreateBatch): unknown; fromPartial(object: Partial): MsgCreateBatch; @@ -735,8 +738,9 @@ export declare const MsgCreateBatch: { toProtoMsg(message: MsgCreateBatch): MsgCreateBatchProtoMsg; }; export declare const MsgCreateBatch_BatchIssuance: { - encode(message: MsgCreateBatch_BatchIssuance, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateBatch_BatchIssuance; + typeUrl: string; + encode(message: MsgCreateBatch_BatchIssuance, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateBatch_BatchIssuance; fromJSON(object: any): MsgCreateBatch_BatchIssuance; toJSON(message: MsgCreateBatch_BatchIssuance): unknown; fromPartial(object: Partial): MsgCreateBatch_BatchIssuance; @@ -748,8 +752,9 @@ export declare const MsgCreateBatch_BatchIssuance: { toProtoMsg(message: MsgCreateBatch_BatchIssuance): MsgCreateBatch_BatchIssuanceProtoMsg; }; export declare const MsgCreateBatchResponse: { - encode(message: MsgCreateBatchResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCreateBatchResponse; + typeUrl: string; + encode(message: MsgCreateBatchResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateBatchResponse; fromJSON(object: any): MsgCreateBatchResponse; toJSON(message: MsgCreateBatchResponse): unknown; fromPartial(object: Partial): MsgCreateBatchResponse; @@ -761,8 +766,9 @@ export declare const MsgCreateBatchResponse: { toProtoMsg(message: MsgCreateBatchResponse): MsgCreateBatchResponseProtoMsg; }; export declare const MsgSend: { - encode(message: MsgSend, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSend; + typeUrl: string; + encode(message: MsgSend, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSend; fromJSON(object: any): MsgSend; toJSON(message: MsgSend): unknown; fromPartial(object: Partial): MsgSend; @@ -774,8 +780,9 @@ export declare const MsgSend: { toProtoMsg(message: MsgSend): MsgSendProtoMsg; }; export declare const MsgSend_SendCredits: { - encode(message: MsgSend_SendCredits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSend_SendCredits; + typeUrl: string; + encode(message: MsgSend_SendCredits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSend_SendCredits; fromJSON(object: any): MsgSend_SendCredits; toJSON(message: MsgSend_SendCredits): unknown; fromPartial(object: Partial): MsgSend_SendCredits; @@ -787,8 +794,9 @@ export declare const MsgSend_SendCredits: { toProtoMsg(message: MsgSend_SendCredits): MsgSend_SendCreditsProtoMsg; }; export declare const MsgSendResponse: { - encode(_: MsgSendResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSendResponse; + typeUrl: string; + encode(_: MsgSendResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSendResponse; fromJSON(_: any): MsgSendResponse; toJSON(_: MsgSendResponse): unknown; fromPartial(_: Partial): MsgSendResponse; @@ -800,8 +808,9 @@ export declare const MsgSendResponse: { toProtoMsg(message: MsgSendResponse): MsgSendResponseProtoMsg; }; export declare const MsgRetire: { - encode(message: MsgRetire, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRetire; + typeUrl: string; + encode(message: MsgRetire, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRetire; fromJSON(object: any): MsgRetire; toJSON(message: MsgRetire): unknown; fromPartial(object: Partial): MsgRetire; @@ -813,8 +822,9 @@ export declare const MsgRetire: { toProtoMsg(message: MsgRetire): MsgRetireProtoMsg; }; export declare const MsgRetire_RetireCredits: { - encode(message: MsgRetire_RetireCredits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRetire_RetireCredits; + typeUrl: string; + encode(message: MsgRetire_RetireCredits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRetire_RetireCredits; fromJSON(object: any): MsgRetire_RetireCredits; toJSON(message: MsgRetire_RetireCredits): unknown; fromPartial(object: Partial): MsgRetire_RetireCredits; @@ -826,8 +836,9 @@ export declare const MsgRetire_RetireCredits: { toProtoMsg(message: MsgRetire_RetireCredits): MsgRetire_RetireCreditsProtoMsg; }; export declare const MsgRetireResponse: { - encode(_: MsgRetireResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRetireResponse; + typeUrl: string; + encode(_: MsgRetireResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRetireResponse; fromJSON(_: any): MsgRetireResponse; toJSON(_: MsgRetireResponse): unknown; fromPartial(_: Partial): MsgRetireResponse; @@ -839,8 +850,9 @@ export declare const MsgRetireResponse: { toProtoMsg(message: MsgRetireResponse): MsgRetireResponseProtoMsg; }; export declare const MsgCancel: { - encode(message: MsgCancel, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancel; + typeUrl: string; + encode(message: MsgCancel, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancel; fromJSON(object: any): MsgCancel; toJSON(message: MsgCancel): unknown; fromPartial(object: Partial): MsgCancel; @@ -852,8 +864,9 @@ export declare const MsgCancel: { toProtoMsg(message: MsgCancel): MsgCancelProtoMsg; }; export declare const MsgCancel_CancelCredits: { - encode(message: MsgCancel_CancelCredits, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancel_CancelCredits; + typeUrl: string; + encode(message: MsgCancel_CancelCredits, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancel_CancelCredits; fromJSON(object: any): MsgCancel_CancelCredits; toJSON(message: MsgCancel_CancelCredits): unknown; fromPartial(object: Partial): MsgCancel_CancelCredits; @@ -865,8 +878,9 @@ export declare const MsgCancel_CancelCredits: { toProtoMsg(message: MsgCancel_CancelCredits): MsgCancel_CancelCreditsProtoMsg; }; export declare const MsgCancelResponse: { - encode(_: MsgCancelResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgCancelResponse; + typeUrl: string; + encode(_: MsgCancelResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelResponse; fromJSON(_: any): MsgCancelResponse; toJSON(_: MsgCancelResponse): unknown; fromPartial(_: Partial): MsgCancelResponse; @@ -878,8 +892,9 @@ export declare const MsgCancelResponse: { toProtoMsg(message: MsgCancelResponse): MsgCancelResponseProtoMsg; }; export declare const MsgUpdateClassAdmin: { - encode(message: MsgUpdateClassAdmin, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassAdmin; + typeUrl: string; + encode(message: MsgUpdateClassAdmin, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassAdmin; fromJSON(object: any): MsgUpdateClassAdmin; toJSON(message: MsgUpdateClassAdmin): unknown; fromPartial(object: Partial): MsgUpdateClassAdmin; @@ -891,8 +906,9 @@ export declare const MsgUpdateClassAdmin: { toProtoMsg(message: MsgUpdateClassAdmin): MsgUpdateClassAdminProtoMsg; }; export declare const MsgUpdateClassAdminResponse: { - encode(_: MsgUpdateClassAdminResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassAdminResponse; + typeUrl: string; + encode(_: MsgUpdateClassAdminResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassAdminResponse; fromJSON(_: any): MsgUpdateClassAdminResponse; toJSON(_: MsgUpdateClassAdminResponse): unknown; fromPartial(_: Partial): MsgUpdateClassAdminResponse; @@ -904,8 +920,9 @@ export declare const MsgUpdateClassAdminResponse: { toProtoMsg(message: MsgUpdateClassAdminResponse): MsgUpdateClassAdminResponseProtoMsg; }; export declare const MsgUpdateClassIssuers: { - encode(message: MsgUpdateClassIssuers, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassIssuers; + typeUrl: string; + encode(message: MsgUpdateClassIssuers, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassIssuers; fromJSON(object: any): MsgUpdateClassIssuers; toJSON(message: MsgUpdateClassIssuers): unknown; fromPartial(object: Partial): MsgUpdateClassIssuers; @@ -917,8 +934,9 @@ export declare const MsgUpdateClassIssuers: { toProtoMsg(message: MsgUpdateClassIssuers): MsgUpdateClassIssuersProtoMsg; }; export declare const MsgUpdateClassIssuersResponse: { - encode(_: MsgUpdateClassIssuersResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassIssuersResponse; + typeUrl: string; + encode(_: MsgUpdateClassIssuersResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassIssuersResponse; fromJSON(_: any): MsgUpdateClassIssuersResponse; toJSON(_: MsgUpdateClassIssuersResponse): unknown; fromPartial(_: Partial): MsgUpdateClassIssuersResponse; @@ -930,8 +948,9 @@ export declare const MsgUpdateClassIssuersResponse: { toProtoMsg(message: MsgUpdateClassIssuersResponse): MsgUpdateClassIssuersResponseProtoMsg; }; export declare const MsgUpdateClassMetadata: { - encode(message: MsgUpdateClassMetadata, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassMetadata; + typeUrl: string; + encode(message: MsgUpdateClassMetadata, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassMetadata; fromJSON(object: any): MsgUpdateClassMetadata; toJSON(message: MsgUpdateClassMetadata): unknown; fromPartial(object: Partial): MsgUpdateClassMetadata; @@ -943,8 +962,9 @@ export declare const MsgUpdateClassMetadata: { toProtoMsg(message: MsgUpdateClassMetadata): MsgUpdateClassMetadataProtoMsg; }; export declare const MsgUpdateClassMetadataResponse: { - encode(_: MsgUpdateClassMetadataResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateClassMetadataResponse; + typeUrl: string; + encode(_: MsgUpdateClassMetadataResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateClassMetadataResponse; fromJSON(_: any): MsgUpdateClassMetadataResponse; toJSON(_: MsgUpdateClassMetadataResponse): unknown; fromPartial(_: Partial): MsgUpdateClassMetadataResponse; diff --git a/packages/api/types/codegen/regen/ecocredit/v1alpha1/types.d.ts b/packages/api/types/codegen/regen/ecocredit/v1alpha1/types.d.ts index 19782b5..6773fac 100644 --- a/packages/api/types/codegen/regen/ecocredit/v1alpha1/types.d.ts +++ b/packages/api/types/codegen/regen/ecocredit/v1alpha1/types.d.ts @@ -1,7 +1,6 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../../google/protobuf/timestamp"; import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** ClassInfo represents the high-level on-chain information for a credit class. */ export interface ClassInfo { /** class_id is the unique ID of credit class. */ @@ -16,9 +15,9 @@ export interface ClassInfo { * credit_type describes the type of credit (e.g. carbon, biodiversity), as * well as unit and precision. */ - creditType: CreditType; + creditType?: CreditType; /** The number of batches issued in this credit class. */ - numBatches: Long; + numBatches: bigint; } export interface ClassInfoProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.ClassInfo"; @@ -27,20 +26,20 @@ export interface ClassInfoProtoMsg { /** ClassInfo represents the high-level on-chain information for a credit class. */ export interface ClassInfoAmino { /** class_id is the unique ID of credit class. */ - class_id: string; + class_id?: string; /** admin is the admin of the credit class. */ - admin: string; + admin?: string; /** issuers are the approved issuers of the credit class. */ - issuers: string[]; + issuers?: string[]; /** metadata is any arbitrary metadata to attached to the credit class. */ - metadata: Uint8Array; + metadata?: string; /** * credit_type describes the type of credit (e.g. carbon, biodiversity), as * well as unit and precision. */ credit_type?: CreditTypeAmino; /** The number of batches issued in this credit class. */ - num_batches: string; + num_batches?: string; } export interface ClassInfoAminoMsg { type: "/regen.ecocredit.v1alpha1.ClassInfo"; @@ -52,8 +51,8 @@ export interface ClassInfoSDKType { admin: string; issuers: string[]; metadata: Uint8Array; - credit_type: CreditTypeSDKType; - num_batches: Long; + credit_type?: CreditTypeSDKType; + num_batches: bigint; } /** BatchInfo represents the high-level on-chain information for a credit batch. */ export interface BatchInfo { @@ -84,12 +83,12 @@ export interface BatchInfo { * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - startDate: Timestamp; + startDate?: Timestamp; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - endDate: Timestamp; + endDate?: Timestamp; /** * project_location is the location of the project backing the credits in this * batch. Full documentation can be found in MsgCreateBatch.project_location. @@ -103,11 +102,11 @@ export interface BatchInfoProtoMsg { /** BatchInfo represents the high-level on-chain information for a credit batch. */ export interface BatchInfoAmino { /** class_id is the unique ID of credit class. */ - class_id: string; + class_id?: string; /** batch_denom is the unique ID of credit batch. */ - batch_denom: string; + batch_denom?: string; /** issuer is the issuer of the credit batch. */ - issuer: string; + issuer?: string; /** * total_amount is the total number of active credits in the credit batch. * Some of the issued credits may be cancelled and will be removed from @@ -115,31 +114,31 @@ export interface BatchInfoAmino { * amount_cancelled will always sum to the original amount of credits that * were issued. */ - total_amount: string; + total_amount?: string; /** metadata is any arbitrary metadata attached to the credit batch. */ - metadata: Uint8Array; + metadata?: string; /** * amount_cancelled is the number of credits in the batch that have been * cancelled, effectively undoing there issuance. The sum of total_amount and * amount_cancelled will always sum to the original amount of credits that * were issued. */ - amount_cancelled: string; + amount_cancelled?: string; /** * start_date is the beginning of the period during which this credit batch * was quantified and verified. */ - start_date?: TimestampAmino; + start_date?: string; /** * end_date is the end of the period during which this credit batch was * quantified and verified. */ - end_date?: TimestampAmino; + end_date?: string; /** * project_location is the location of the project backing the credits in this * batch. Full documentation can be found in MsgCreateBatch.project_location. */ - project_location: string; + project_location?: string; } export interface BatchInfoAminoMsg { type: "/regen.ecocredit.v1alpha1.BatchInfo"; @@ -153,8 +152,8 @@ export interface BatchInfoSDKType { total_amount: string; metadata: Uint8Array; amount_cancelled: string; - start_date: TimestampSDKType; - end_date: TimestampSDKType; + start_date?: TimestampSDKType; + end_date?: TimestampSDKType; project_location: string; } /** @@ -189,21 +188,21 @@ export interface ParamsProtoMsg { */ export interface ParamsAmino { /** credit_class_fee is the fixed fee charged on creation of a new credit class */ - credit_class_fee: CoinAmino[]; + credit_class_fee?: CoinAmino[]; /** * allowed_class_creators is an allowlist defining the addresses with * the required permissions to create credit classes */ - allowed_class_creators: string[]; + allowed_class_creators?: string[]; /** * allowlist_enabled is a param that enables/disables the allowlist for credit * creation */ - allowlist_enabled: boolean; + allowlist_enabled?: boolean; /** credit_types is a list of definitions for credit types */ - credit_types: CreditTypeAmino[]; + credit_types?: CreditTypeAmino[]; /** basket_creation_fee is the fee to create a new basket denom. */ - basket_creation_fee: CoinAmino[]; + basket_creation_fee?: CoinAmino[]; } export interface ParamsAminoMsg { type: "/regen.ecocredit.v1alpha1.Params"; @@ -247,16 +246,16 @@ export interface CreditTypeProtoMsg { */ export interface CreditTypeAmino { /** the type of credit (e.g. carbon, biodiversity, etc) */ - name: string; + name?: string; /** * abbreviation is a 1-3 character uppercase abbreviation of the CreditType * name, used in batch denominations within the CreditType. It must be unique. */ - abbreviation: string; + abbreviation?: string; /** the measurement unit (e.g. kg, ton, etc) */ - unit: string; + unit?: string; /** the decimal precision */ - precision: number; + precision?: number; } export interface CreditTypeAminoMsg { type: "/regen.ecocredit.v1alpha1.CreditType"; @@ -280,7 +279,7 @@ export interface CreditTypeSeq { /** The credit type abbreviation */ abbreviation: string; /** The sequence number of classes of the credit type */ - seqNumber: Long; + seqNumber: bigint; } export interface CreditTypeSeqProtoMsg { typeUrl: "/regen.ecocredit.v1alpha1.CreditTypeSeq"; @@ -292,9 +291,9 @@ export interface CreditTypeSeqProtoMsg { */ export interface CreditTypeSeqAmino { /** The credit type abbreviation */ - abbreviation: string; + abbreviation?: string; /** The sequence number of classes of the credit type */ - seq_number: string; + seq_number?: string; } export interface CreditTypeSeqAminoMsg { type: "/regen.ecocredit.v1alpha1.CreditTypeSeq"; @@ -306,11 +305,12 @@ export interface CreditTypeSeqAminoMsg { */ export interface CreditTypeSeqSDKType { abbreviation: string; - seq_number: Long; + seq_number: bigint; } export declare const ClassInfo: { - encode(message: ClassInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ClassInfo; + typeUrl: string; + encode(message: ClassInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ClassInfo; fromJSON(object: any): ClassInfo; toJSON(message: ClassInfo): unknown; fromPartial(object: Partial): ClassInfo; @@ -322,8 +322,9 @@ export declare const ClassInfo: { toProtoMsg(message: ClassInfo): ClassInfoProtoMsg; }; export declare const BatchInfo: { - encode(message: BatchInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BatchInfo; + typeUrl: string; + encode(message: BatchInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BatchInfo; fromJSON(object: any): BatchInfo; toJSON(message: BatchInfo): unknown; fromPartial(object: Partial): BatchInfo; @@ -335,8 +336,9 @@ export declare const BatchInfo: { toProtoMsg(message: BatchInfo): BatchInfoProtoMsg; }; export declare const Params: { - encode(message: Params, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Params; + typeUrl: string; + encode(message: Params, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; @@ -348,8 +350,9 @@ export declare const Params: { toProtoMsg(message: Params): ParamsProtoMsg; }; export declare const CreditType: { - encode(message: CreditType, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CreditType; + typeUrl: string; + encode(message: CreditType, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CreditType; fromJSON(object: any): CreditType; toJSON(message: CreditType): unknown; fromPartial(object: Partial): CreditType; @@ -361,8 +364,9 @@ export declare const CreditType: { toProtoMsg(message: CreditType): CreditTypeProtoMsg; }; export declare const CreditTypeSeq: { - encode(message: CreditTypeSeq, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CreditTypeSeq; + typeUrl: string; + encode(message: CreditTypeSeq, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CreditTypeSeq; fromJSON(object: any): CreditTypeSeq; toJSON(message: CreditTypeSeq): unknown; fromPartial(object: Partial): CreditTypeSeq; diff --git a/packages/api/types/codegen/regen/intertx/v1/query.d.ts b/packages/api/types/codegen/regen/intertx/v1/query.d.ts index 7f22512..1c564a3 100644 --- a/packages/api/types/codegen/regen/intertx/v1/query.d.ts +++ b/packages/api/types/codegen/regen/intertx/v1/query.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** * QueryInterchainAccountRequest is the request type for the * Query/InterchainAccountAddress RPC @@ -19,9 +19,9 @@ export interface QueryInterchainAccountRequestProtoMsg { */ export interface QueryInterchainAccountRequestAmino { /** owner is the address of the account that owns the ICA. */ - owner: string; + owner?: string; /** connection_id is the connection the ICA claimed. */ - connection_id: string; + connection_id?: string; } export interface QueryInterchainAccountRequestAminoMsg { type: "/regen.intertx.v1.QueryInterchainAccountRequest"; @@ -53,7 +53,7 @@ export interface QueryInterchainAccountResponseProtoMsg { */ export interface QueryInterchainAccountResponseAmino { /** interchain_account_address is the address of the ICA. */ - interchain_account_address: string; + interchain_account_address?: string; } export interface QueryInterchainAccountResponseAminoMsg { type: "/regen.intertx.v1.QueryInterchainAccountResponse"; @@ -67,8 +67,9 @@ export interface QueryInterchainAccountResponseSDKType { interchain_account_address: string; } export declare const QueryInterchainAccountRequest: { - encode(message: QueryInterchainAccountRequest, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryInterchainAccountRequest; + typeUrl: string; + encode(message: QueryInterchainAccountRequest, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryInterchainAccountRequest; fromJSON(object: any): QueryInterchainAccountRequest; toJSON(message: QueryInterchainAccountRequest): unknown; fromPartial(object: Partial): QueryInterchainAccountRequest; @@ -80,8 +81,9 @@ export declare const QueryInterchainAccountRequest: { toProtoMsg(message: QueryInterchainAccountRequest): QueryInterchainAccountRequestProtoMsg; }; export declare const QueryInterchainAccountResponse: { - encode(message: QueryInterchainAccountResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): QueryInterchainAccountResponse; + typeUrl: string; + encode(message: QueryInterchainAccountResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): QueryInterchainAccountResponse; fromJSON(object: any): QueryInterchainAccountResponse; toJSON(message: QueryInterchainAccountResponse): unknown; fromPartial(object: Partial): QueryInterchainAccountResponse; diff --git a/packages/api/types/codegen/regen/intertx/v1/query.lcd.d.ts b/packages/api/types/codegen/regen/intertx/v1/query.lcd.d.ts index 86c70ae..54d4635 100644 --- a/packages/api/types/codegen/regen/intertx/v1/query.lcd.d.ts +++ b/packages/api/types/codegen/regen/intertx/v1/query.lcd.d.ts @@ -1,4 +1,4 @@ -import { LCDClient } from "@osmonauts/lcd"; +import { LCDClient } from "@cosmology/lcd"; import { QueryInterchainAccountRequest, QueryInterchainAccountResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; diff --git a/packages/api/types/codegen/regen/intertx/v1/tx.d.ts b/packages/api/types/codegen/regen/intertx/v1/tx.d.ts index 60f9132..7bccc46 100644 --- a/packages/api/types/codegen/regen/intertx/v1/tx.d.ts +++ b/packages/api/types/codegen/regen/intertx/v1/tx.d.ts @@ -1,5 +1,5 @@ import { Any, AnyAmino, AnySDKType } from "../../../google/protobuf/any"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; /** MsgRegisterAccount defines the payload for Msg/RegisterAccount */ export interface MsgRegisterAccount { /** owner is the address of the interchain account owner. */ @@ -20,15 +20,15 @@ export interface MsgRegisterAccountProtoMsg { /** MsgRegisterAccount defines the payload for Msg/RegisterAccount */ export interface MsgRegisterAccountAmino { /** owner is the address of the interchain account owner. */ - owner: string; + owner?: string; /** connection_id is the connection id string (i.e. channel-5). */ - connection_id: string; + connection_id?: string; /** * version is the application version string. For example, this could be an * ICS27 encoded metadata type or an ICS29 encoded metadata type with a nested * application version. */ - version: string; + version?: string; } export interface MsgRegisterAccountAminoMsg { type: "/regen.intertx.v1.MsgRegisterAccount"; @@ -64,7 +64,7 @@ export interface MsgSubmitTx { /** connection_id is the id of the connection. */ connectionId: string; /** msg is the bytes of the transaction msg to send. */ - msg: Any; + msg?: Any; } export interface MsgSubmitTxProtoMsg { typeUrl: "/regen.intertx.v1.MsgSubmitTx"; @@ -73,9 +73,9 @@ export interface MsgSubmitTxProtoMsg { /** MsgSubmitTx defines the payload for Msg/SubmitTx */ export interface MsgSubmitTxAmino { /** owner is the owner address of the interchain account. */ - owner: string; + owner?: string; /** connection_id is the id of the connection. */ - connection_id: string; + connection_id?: string; /** msg is the bytes of the transaction msg to send. */ msg?: AnyAmino; } @@ -87,7 +87,7 @@ export interface MsgSubmitTxAminoMsg { export interface MsgSubmitTxSDKType { owner: string; connection_id: string; - msg: AnySDKType; + msg?: AnySDKType; } /** MsgSubmitTxResponse defines the response for Msg/SubmitTx */ export interface MsgSubmitTxResponse { @@ -107,8 +107,9 @@ export interface MsgSubmitTxResponseAminoMsg { export interface MsgSubmitTxResponseSDKType { } export declare const MsgRegisterAccount: { - encode(message: MsgRegisterAccount, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRegisterAccount; + typeUrl: string; + encode(message: MsgRegisterAccount, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterAccount; fromJSON(object: any): MsgRegisterAccount; toJSON(message: MsgRegisterAccount): unknown; fromPartial(object: Partial): MsgRegisterAccount; @@ -120,8 +121,9 @@ export declare const MsgRegisterAccount: { toProtoMsg(message: MsgRegisterAccount): MsgRegisterAccountProtoMsg; }; export declare const MsgRegisterAccountResponse: { - encode(_: MsgRegisterAccountResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgRegisterAccountResponse; + typeUrl: string; + encode(_: MsgRegisterAccountResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterAccountResponse; fromJSON(_: any): MsgRegisterAccountResponse; toJSON(_: MsgRegisterAccountResponse): unknown; fromPartial(_: Partial): MsgRegisterAccountResponse; @@ -133,8 +135,9 @@ export declare const MsgRegisterAccountResponse: { toProtoMsg(message: MsgRegisterAccountResponse): MsgRegisterAccountResponseProtoMsg; }; export declare const MsgSubmitTx: { - encode(message: MsgSubmitTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitTx; + typeUrl: string; + encode(message: MsgSubmitTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitTx; fromJSON(object: any): MsgSubmitTx; toJSON(message: MsgSubmitTx): unknown; fromPartial(object: Partial): MsgSubmitTx; @@ -146,8 +149,9 @@ export declare const MsgSubmitTx: { toProtoMsg(message: MsgSubmitTx): MsgSubmitTxProtoMsg; }; export declare const MsgSubmitTxResponse: { - encode(_: MsgSubmitTxResponse, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): MsgSubmitTxResponse; + typeUrl: string; + encode(_: MsgSubmitTxResponse, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitTxResponse; fromJSON(_: any): MsgSubmitTxResponse; toJSON(_: MsgSubmitTxResponse): unknown; fromPartial(_: Partial): MsgSubmitTxResponse; diff --git a/packages/api/types/codegen/tendermint/abci/types.d.ts b/packages/api/types/codegen/tendermint/abci/types.d.ts index f41e9f5..23b6cda 100644 --- a/packages/api/types/codegen/tendermint/abci/types.d.ts +++ b/packages/api/types/codegen/tendermint/abci/types.d.ts @@ -1,10 +1,9 @@ -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../google/protobuf/timestamp"; import { ConsensusParams, ConsensusParamsAmino, ConsensusParamsSDKType } from "../types/params"; import { Header, HeaderAmino, HeaderSDKType } from "../types/types"; import { ProofOps, ProofOpsAmino, ProofOpsSDKType } from "../crypto/proof"; import { PublicKey, PublicKeyAmino, PublicKeySDKType } from "../crypto/keys"; -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export declare enum CheckTxType { NEW = 0, RECHECK = 1, @@ -142,7 +141,7 @@ export interface RequestEchoProtoMsg { value: Uint8Array; } export interface RequestEchoAmino { - message: string; + message?: string; } export interface RequestEchoAminoMsg { type: "/tendermint.abci.RequestEcho"; @@ -167,8 +166,8 @@ export interface RequestFlushSDKType { } export interface RequestInfo { version: string; - blockVersion: Long; - p2pVersion: Long; + blockVersion: bigint; + p2pVersion: bigint; abciVersion: string; } export interface RequestInfoProtoMsg { @@ -176,10 +175,10 @@ export interface RequestInfoProtoMsg { value: Uint8Array; } export interface RequestInfoAmino { - version: string; - block_version: string; - p2p_version: string; - abci_version: string; + version?: string; + block_version?: string; + p2p_version?: string; + abci_version?: string; } export interface RequestInfoAminoMsg { type: "/tendermint.abci.RequestInfo"; @@ -187,29 +186,29 @@ export interface RequestInfoAminoMsg { } export interface RequestInfoSDKType { version: string; - block_version: Long; - p2p_version: Long; + block_version: bigint; + p2p_version: bigint; abci_version: string; } export interface RequestInitChain { time: Timestamp; chainId: string; - consensusParams: ConsensusParams; + consensusParams?: ConsensusParams; validators: ValidatorUpdate[]; appStateBytes: Uint8Array; - initialHeight: Long; + initialHeight: bigint; } export interface RequestInitChainProtoMsg { typeUrl: "/tendermint.abci.RequestInitChain"; value: Uint8Array; } export interface RequestInitChainAmino { - time?: TimestampAmino; - chain_id: string; + time?: string; + chain_id?: string; consensus_params?: ConsensusParamsAmino; - validators: ValidatorUpdateAmino[]; - app_state_bytes: Uint8Array; - initial_height: string; + validators?: ValidatorUpdateAmino[]; + app_state_bytes?: string; + initial_height?: string; } export interface RequestInitChainAminoMsg { type: "/tendermint.abci.RequestInitChain"; @@ -218,15 +217,15 @@ export interface RequestInitChainAminoMsg { export interface RequestInitChainSDKType { time: TimestampSDKType; chain_id: string; - consensus_params: ConsensusParamsSDKType; + consensus_params?: ConsensusParamsSDKType; validators: ValidatorUpdateSDKType[]; app_state_bytes: Uint8Array; - initial_height: Long; + initial_height: bigint; } export interface RequestQuery { data: Uint8Array; path: string; - height: Long; + height: bigint; prove: boolean; } export interface RequestQueryProtoMsg { @@ -234,10 +233,10 @@ export interface RequestQueryProtoMsg { value: Uint8Array; } export interface RequestQueryAmino { - data: Uint8Array; - path: string; - height: string; - prove: boolean; + data?: string; + path?: string; + height?: string; + prove?: boolean; } export interface RequestQueryAminoMsg { type: "/tendermint.abci.RequestQuery"; @@ -246,7 +245,7 @@ export interface RequestQueryAminoMsg { export interface RequestQuerySDKType { data: Uint8Array; path: string; - height: Long; + height: bigint; prove: boolean; } export interface RequestBeginBlock { @@ -260,10 +259,10 @@ export interface RequestBeginBlockProtoMsg { value: Uint8Array; } export interface RequestBeginBlockAmino { - hash: Uint8Array; + hash?: string; header?: HeaderAmino; last_commit_info?: CommitInfoAmino; - byzantine_validators: MisbehaviorAmino[]; + byzantine_validators?: MisbehaviorAmino[]; } export interface RequestBeginBlockAminoMsg { type: "/tendermint.abci.RequestBeginBlock"; @@ -284,8 +283,8 @@ export interface RequestCheckTxProtoMsg { value: Uint8Array; } export interface RequestCheckTxAmino { - tx: Uint8Array; - type: CheckTxType; + tx?: string; + type?: CheckTxType; } export interface RequestCheckTxAminoMsg { type: "/tendermint.abci.RequestCheckTx"; @@ -303,7 +302,7 @@ export interface RequestDeliverTxProtoMsg { value: Uint8Array; } export interface RequestDeliverTxAmino { - tx: Uint8Array; + tx?: string; } export interface RequestDeliverTxAminoMsg { type: "/tendermint.abci.RequestDeliverTx"; @@ -313,21 +312,21 @@ export interface RequestDeliverTxSDKType { tx: Uint8Array; } export interface RequestEndBlock { - height: Long; + height: bigint; } export interface RequestEndBlockProtoMsg { typeUrl: "/tendermint.abci.RequestEndBlock"; value: Uint8Array; } export interface RequestEndBlockAmino { - height: string; + height?: string; } export interface RequestEndBlockAminoMsg { type: "/tendermint.abci.RequestEndBlock"; value: RequestEndBlockAmino; } export interface RequestEndBlockSDKType { - height: Long; + height: bigint; } export interface RequestCommit { } @@ -363,7 +362,7 @@ export interface RequestListSnapshotsSDKType { /** offers a snapshot to the application */ export interface RequestOfferSnapshot { /** snapshot offered by peers */ - snapshot: Snapshot; + snapshot?: Snapshot; /** light client-verified app hash for snapshot height */ appHash: Uint8Array; } @@ -376,7 +375,7 @@ export interface RequestOfferSnapshotAmino { /** snapshot offered by peers */ snapshot?: SnapshotAmino; /** light client-verified app hash for snapshot height */ - app_hash: Uint8Array; + app_hash?: string; } export interface RequestOfferSnapshotAminoMsg { type: "/tendermint.abci.RequestOfferSnapshot"; @@ -384,12 +383,12 @@ export interface RequestOfferSnapshotAminoMsg { } /** offers a snapshot to the application */ export interface RequestOfferSnapshotSDKType { - snapshot: SnapshotSDKType; + snapshot?: SnapshotSDKType; app_hash: Uint8Array; } /** loads a snapshot chunk */ export interface RequestLoadSnapshotChunk { - height: Long; + height: bigint; format: number; chunk: number; } @@ -399,9 +398,9 @@ export interface RequestLoadSnapshotChunkProtoMsg { } /** loads a snapshot chunk */ export interface RequestLoadSnapshotChunkAmino { - height: string; - format: number; - chunk: number; + height?: string; + format?: number; + chunk?: number; } export interface RequestLoadSnapshotChunkAminoMsg { type: "/tendermint.abci.RequestLoadSnapshotChunk"; @@ -409,7 +408,7 @@ export interface RequestLoadSnapshotChunkAminoMsg { } /** loads a snapshot chunk */ export interface RequestLoadSnapshotChunkSDKType { - height: Long; + height: bigint; format: number; chunk: number; } @@ -425,9 +424,9 @@ export interface RequestApplySnapshotChunkProtoMsg { } /** Applies a snapshot chunk */ export interface RequestApplySnapshotChunkAmino { - index: number; - chunk: Uint8Array; - sender: string; + index?: number; + chunk?: string; + sender?: string; } export interface RequestApplySnapshotChunkAminoMsg { type: "/tendermint.abci.RequestApplySnapshotChunk"; @@ -441,7 +440,7 @@ export interface RequestApplySnapshotChunkSDKType { } export interface RequestPrepareProposal { /** the modified transactions cannot exceed this size. */ - maxTxBytes: Long; + maxTxBytes: bigint; /** * txs is an array of transactions that will be included in a block, * sent to the app for possible modifications. @@ -449,7 +448,7 @@ export interface RequestPrepareProposal { txs: Uint8Array[]; localLastCommit: ExtendedCommitInfo; misbehavior: Misbehavior[]; - height: Long; + height: bigint; time: Timestamp; nextValidatorsHash: Uint8Array; /** address of the public key of the validator proposing the block. */ @@ -461,30 +460,30 @@ export interface RequestPrepareProposalProtoMsg { } export interface RequestPrepareProposalAmino { /** the modified transactions cannot exceed this size. */ - max_tx_bytes: string; + max_tx_bytes?: string; /** * txs is an array of transactions that will be included in a block, * sent to the app for possible modifications. */ - txs: Uint8Array[]; + txs?: string[]; local_last_commit?: ExtendedCommitInfoAmino; - misbehavior: MisbehaviorAmino[]; - height: string; - time?: TimestampAmino; - next_validators_hash: Uint8Array; + misbehavior?: MisbehaviorAmino[]; + height?: string; + time?: string; + next_validators_hash?: string; /** address of the public key of the validator proposing the block. */ - proposer_address: Uint8Array; + proposer_address?: string; } export interface RequestPrepareProposalAminoMsg { type: "/tendermint.abci.RequestPrepareProposal"; value: RequestPrepareProposalAmino; } export interface RequestPrepareProposalSDKType { - max_tx_bytes: Long; + max_tx_bytes: bigint; txs: Uint8Array[]; local_last_commit: ExtendedCommitInfoSDKType; misbehavior: MisbehaviorSDKType[]; - height: Long; + height: bigint; time: TimestampSDKType; next_validators_hash: Uint8Array; proposer_address: Uint8Array; @@ -495,7 +494,7 @@ export interface RequestProcessProposal { misbehavior: Misbehavior[]; /** hash is the merkle root hash of the fields of the proposed block. */ hash: Uint8Array; - height: Long; + height: bigint; time: Timestamp; nextValidatorsHash: Uint8Array; /** address of the public key of the original proposer of the block. */ @@ -506,16 +505,16 @@ export interface RequestProcessProposalProtoMsg { value: Uint8Array; } export interface RequestProcessProposalAmino { - txs: Uint8Array[]; + txs?: string[]; proposed_last_commit?: CommitInfoAmino; - misbehavior: MisbehaviorAmino[]; + misbehavior?: MisbehaviorAmino[]; /** hash is the merkle root hash of the fields of the proposed block. */ - hash: Uint8Array; - height: string; - time?: TimestampAmino; - next_validators_hash: Uint8Array; + hash?: string; + height?: string; + time?: string; + next_validators_hash?: string; /** address of the public key of the original proposer of the block. */ - proposer_address: Uint8Array; + proposer_address?: string; } export interface RequestProcessProposalAminoMsg { type: "/tendermint.abci.RequestProcessProposal"; @@ -526,7 +525,7 @@ export interface RequestProcessProposalSDKType { proposed_last_commit: CommitInfoSDKType; misbehavior: MisbehaviorSDKType[]; hash: Uint8Array; - height: Long; + height: bigint; time: TimestampSDKType; next_validators_hash: Uint8Array; proposer_address: Uint8Array; @@ -606,7 +605,7 @@ export interface ResponseExceptionProtoMsg { } /** nondeterministic */ export interface ResponseExceptionAmino { - error: string; + error?: string; } export interface ResponseExceptionAminoMsg { type: "/tendermint.abci.ResponseException"; @@ -624,7 +623,7 @@ export interface ResponseEchoProtoMsg { value: Uint8Array; } export interface ResponseEchoAmino { - message: string; + message?: string; } export interface ResponseEchoAminoMsg { type: "/tendermint.abci.ResponseEcho"; @@ -650,8 +649,8 @@ export interface ResponseFlushSDKType { export interface ResponseInfo { data: string; version: string; - appVersion: Long; - lastBlockHeight: Long; + appVersion: bigint; + lastBlockHeight: bigint; lastBlockAppHash: Uint8Array; } export interface ResponseInfoProtoMsg { @@ -659,11 +658,11 @@ export interface ResponseInfoProtoMsg { value: Uint8Array; } export interface ResponseInfoAmino { - data: string; - version: string; - app_version: string; - last_block_height: string; - last_block_app_hash: Uint8Array; + data?: string; + version?: string; + app_version?: string; + last_block_height?: string; + last_block_app_hash?: string; } export interface ResponseInfoAminoMsg { type: "/tendermint.abci.ResponseInfo"; @@ -672,12 +671,12 @@ export interface ResponseInfoAminoMsg { export interface ResponseInfoSDKType { data: string; version: string; - app_version: Long; - last_block_height: Long; + app_version: bigint; + last_block_height: bigint; last_block_app_hash: Uint8Array; } export interface ResponseInitChain { - consensusParams: ConsensusParams; + consensusParams?: ConsensusParams; validators: ValidatorUpdate[]; appHash: Uint8Array; } @@ -687,15 +686,15 @@ export interface ResponseInitChainProtoMsg { } export interface ResponseInitChainAmino { consensus_params?: ConsensusParamsAmino; - validators: ValidatorUpdateAmino[]; - app_hash: Uint8Array; + validators?: ValidatorUpdateAmino[]; + app_hash?: string; } export interface ResponseInitChainAminoMsg { type: "/tendermint.abci.ResponseInitChain"; value: ResponseInitChainAmino; } export interface ResponseInitChainSDKType { - consensus_params: ConsensusParamsSDKType; + consensus_params?: ConsensusParamsSDKType; validators: ValidatorUpdateSDKType[]; app_hash: Uint8Array; } @@ -705,11 +704,11 @@ export interface ResponseQuery { log: string; /** nondeterministic */ info: string; - index: Long; + index: bigint; key: Uint8Array; value: Uint8Array; - proofOps: ProofOps; - height: Long; + proofOps?: ProofOps; + height: bigint; codespace: string; } export interface ResponseQueryProtoMsg { @@ -717,17 +716,17 @@ export interface ResponseQueryProtoMsg { value: Uint8Array; } export interface ResponseQueryAmino { - code: number; + code?: number; /** bytes data = 2; // use "value" instead. */ - log: string; + log?: string; /** nondeterministic */ - info: string; - index: string; - key: Uint8Array; - value: Uint8Array; + info?: string; + index?: string; + key?: string; + value?: string; proof_ops?: ProofOpsAmino; - height: string; - codespace: string; + height?: string; + codespace?: string; } export interface ResponseQueryAminoMsg { type: "/tendermint.abci.ResponseQuery"; @@ -737,11 +736,11 @@ export interface ResponseQuerySDKType { code: number; log: string; info: string; - index: Long; + index: bigint; key: Uint8Array; value: Uint8Array; - proof_ops: ProofOpsSDKType; - height: Long; + proof_ops?: ProofOpsSDKType; + height: bigint; codespace: string; } export interface ResponseBeginBlock { @@ -752,7 +751,7 @@ export interface ResponseBeginBlockProtoMsg { value: Uint8Array; } export interface ResponseBeginBlockAmino { - events: EventAmino[]; + events?: EventAmino[]; } export interface ResponseBeginBlockAminoMsg { type: "/tendermint.abci.ResponseBeginBlock"; @@ -768,12 +767,12 @@ export interface ResponseCheckTx { log: string; /** nondeterministic */ info: string; - gasWanted: Long; - gasUsed: Long; + gasWanted: bigint; + gasUsed: bigint; events: Event[]; codespace: string; sender: string; - priority: Long; + priority: bigint; /** * mempool_error is set by CometBFT. * ABCI applictions creating a ResponseCheckTX should not set mempool_error. @@ -785,23 +784,23 @@ export interface ResponseCheckTxProtoMsg { value: Uint8Array; } export interface ResponseCheckTxAmino { - code: number; - data: Uint8Array; + code?: number; + data?: string; /** nondeterministic */ - log: string; + log?: string; /** nondeterministic */ - info: string; - gas_wanted: string; - gas_used: string; - events: EventAmino[]; - codespace: string; - sender: string; - priority: string; + info?: string; + gas_wanted?: string; + gas_used?: string; + events?: EventAmino[]; + codespace?: string; + sender?: string; + priority?: string; /** * mempool_error is set by CometBFT. * ABCI applictions creating a ResponseCheckTX should not set mempool_error. */ - mempool_error: string; + mempool_error?: string; } export interface ResponseCheckTxAminoMsg { type: "/tendermint.abci.ResponseCheckTx"; @@ -812,12 +811,12 @@ export interface ResponseCheckTxSDKType { data: Uint8Array; log: string; info: string; - gas_wanted: Long; - gas_used: Long; + gas_wanted: bigint; + gas_used: bigint; events: EventSDKType[]; codespace: string; sender: string; - priority: Long; + priority: bigint; mempool_error: string; } export interface ResponseDeliverTx { @@ -827,8 +826,8 @@ export interface ResponseDeliverTx { log: string; /** nondeterministic */ info: string; - gasWanted: Long; - gasUsed: Long; + gasWanted: bigint; + gasUsed: bigint; events: Event[]; codespace: string; } @@ -837,16 +836,16 @@ export interface ResponseDeliverTxProtoMsg { value: Uint8Array; } export interface ResponseDeliverTxAmino { - code: number; - data: Uint8Array; + code?: number; + data?: string; /** nondeterministic */ - log: string; + log?: string; /** nondeterministic */ - info: string; - gas_wanted: string; - gas_used: string; - events: EventAmino[]; - codespace: string; + info?: string; + gas_wanted?: string; + gas_used?: string; + events?: EventAmino[]; + codespace?: string; } export interface ResponseDeliverTxAminoMsg { type: "/tendermint.abci.ResponseDeliverTx"; @@ -857,14 +856,14 @@ export interface ResponseDeliverTxSDKType { data: Uint8Array; log: string; info: string; - gas_wanted: Long; - gas_used: Long; + gas_wanted: bigint; + gas_used: bigint; events: EventSDKType[]; codespace: string; } export interface ResponseEndBlock { validatorUpdates: ValidatorUpdate[]; - consensusParamUpdates: ConsensusParams; + consensusParamUpdates?: ConsensusParams; events: Event[]; } export interface ResponseEndBlockProtoMsg { @@ -872,9 +871,9 @@ export interface ResponseEndBlockProtoMsg { value: Uint8Array; } export interface ResponseEndBlockAmino { - validator_updates: ValidatorUpdateAmino[]; + validator_updates?: ValidatorUpdateAmino[]; consensus_param_updates?: ConsensusParamsAmino; - events: EventAmino[]; + events?: EventAmino[]; } export interface ResponseEndBlockAminoMsg { type: "/tendermint.abci.ResponseEndBlock"; @@ -882,13 +881,13 @@ export interface ResponseEndBlockAminoMsg { } export interface ResponseEndBlockSDKType { validator_updates: ValidatorUpdateSDKType[]; - consensus_param_updates: ConsensusParamsSDKType; + consensus_param_updates?: ConsensusParamsSDKType; events: EventSDKType[]; } export interface ResponseCommit { /** reserve 1 */ data: Uint8Array; - retainHeight: Long; + retainHeight: bigint; } export interface ResponseCommitProtoMsg { typeUrl: "/tendermint.abci.ResponseCommit"; @@ -896,8 +895,8 @@ export interface ResponseCommitProtoMsg { } export interface ResponseCommitAmino { /** reserve 1 */ - data: Uint8Array; - retain_height: string; + data?: string; + retain_height?: string; } export interface ResponseCommitAminoMsg { type: "/tendermint.abci.ResponseCommit"; @@ -905,7 +904,7 @@ export interface ResponseCommitAminoMsg { } export interface ResponseCommitSDKType { data: Uint8Array; - retain_height: Long; + retain_height: bigint; } export interface ResponseListSnapshots { snapshots: Snapshot[]; @@ -915,7 +914,7 @@ export interface ResponseListSnapshotsProtoMsg { value: Uint8Array; } export interface ResponseListSnapshotsAmino { - snapshots: SnapshotAmino[]; + snapshots?: SnapshotAmino[]; } export interface ResponseListSnapshotsAminoMsg { type: "/tendermint.abci.ResponseListSnapshots"; @@ -932,7 +931,7 @@ export interface ResponseOfferSnapshotProtoMsg { value: Uint8Array; } export interface ResponseOfferSnapshotAmino { - result: ResponseOfferSnapshot_Result; + result?: ResponseOfferSnapshot_Result; } export interface ResponseOfferSnapshotAminoMsg { type: "/tendermint.abci.ResponseOfferSnapshot"; @@ -949,7 +948,7 @@ export interface ResponseLoadSnapshotChunkProtoMsg { value: Uint8Array; } export interface ResponseLoadSnapshotChunkAmino { - chunk: Uint8Array; + chunk?: string; } export interface ResponseLoadSnapshotChunkAminoMsg { type: "/tendermint.abci.ResponseLoadSnapshotChunk"; @@ -970,11 +969,11 @@ export interface ResponseApplySnapshotChunkProtoMsg { value: Uint8Array; } export interface ResponseApplySnapshotChunkAmino { - result: ResponseApplySnapshotChunk_Result; + result?: ResponseApplySnapshotChunk_Result; /** Chunks to refetch and reapply */ - refetch_chunks: number[]; + refetch_chunks?: number[]; /** Chunk senders to reject and ban */ - reject_senders: string[]; + reject_senders?: string[]; } export interface ResponseApplySnapshotChunkAminoMsg { type: "/tendermint.abci.ResponseApplySnapshotChunk"; @@ -993,7 +992,7 @@ export interface ResponsePrepareProposalProtoMsg { value: Uint8Array; } export interface ResponsePrepareProposalAmino { - txs: Uint8Array[]; + txs?: string[]; } export interface ResponsePrepareProposalAminoMsg { type: "/tendermint.abci.ResponsePrepareProposal"; @@ -1010,7 +1009,7 @@ export interface ResponseProcessProposalProtoMsg { value: Uint8Array; } export interface ResponseProcessProposalAmino { - status: ResponseProcessProposal_ProposalStatus; + status?: ResponseProcessProposal_ProposalStatus; } export interface ResponseProcessProposalAminoMsg { type: "/tendermint.abci.ResponseProcessProposal"; @@ -1028,8 +1027,8 @@ export interface CommitInfoProtoMsg { value: Uint8Array; } export interface CommitInfoAmino { - round: number; - votes: VoteInfoAmino[]; + round?: number; + votes?: VoteInfoAmino[]; } export interface CommitInfoAminoMsg { type: "/tendermint.abci.CommitInfo"; @@ -1054,12 +1053,12 @@ export interface ExtendedCommitInfoProtoMsg { } export interface ExtendedCommitInfoAmino { /** The round at which the block proposer decided in the previous height. */ - round: number; + round?: number; /** * List of validators' addresses in the last validator set with their voting * information, including vote extensions. */ - votes: ExtendedVoteInfoAmino[]; + votes?: ExtendedVoteInfoAmino[]; } export interface ExtendedCommitInfoAminoMsg { type: "/tendermint.abci.ExtendedCommitInfo"; @@ -1088,8 +1087,8 @@ export interface EventProtoMsg { * Later, transactions may be queried using these events. */ export interface EventAmino { - type: string; - attributes: EventAttributeAmino[]; + type?: string; + attributes?: EventAttributeAmino[]; } export interface EventAminoMsg { type: "/tendermint.abci.Event"; @@ -1117,10 +1116,10 @@ export interface EventAttributeProtoMsg { } /** EventAttribute is a single key-value pair, associated with an event. */ export interface EventAttributeAmino { - key: string; - value: string; + key?: string; + value?: string; /** nondeterministic */ - index: boolean; + index?: boolean; } export interface EventAttributeAminoMsg { type: "/tendermint.abci.EventAttribute"; @@ -1138,7 +1137,7 @@ export interface EventAttributeSDKType { * One usage is indexing transaction results. */ export interface TxResult { - height: Long; + height: bigint; index: number; tx: Uint8Array; result: ResponseDeliverTx; @@ -1153,9 +1152,9 @@ export interface TxResultProtoMsg { * One usage is indexing transaction results. */ export interface TxResultAmino { - height: string; - index: number; - tx: Uint8Array; + height?: string; + index?: number; + tx?: string; result?: ResponseDeliverTxAmino; } export interface TxResultAminoMsg { @@ -1168,7 +1167,7 @@ export interface TxResultAminoMsg { * One usage is indexing transaction results. */ export interface TxResultSDKType { - height: Long; + height: bigint; index: number; tx: Uint8Array; result: ResponseDeliverTxSDKType; @@ -1181,7 +1180,7 @@ export interface Validator { */ address: Uint8Array; /** The voting power */ - power: Long; + power: bigint; } export interface ValidatorProtoMsg { typeUrl: "/tendermint.abci.Validator"; @@ -1193,9 +1192,9 @@ export interface ValidatorAmino { * The first 20 bytes of SHA256(public key) * PubKey pub_key = 2 [(gogoproto.nullable)=false]; */ - address: Uint8Array; + address?: string; /** The voting power */ - power: string; + power?: string; } export interface ValidatorAminoMsg { type: "/tendermint.abci.Validator"; @@ -1204,12 +1203,12 @@ export interface ValidatorAminoMsg { /** Validator */ export interface ValidatorSDKType { address: Uint8Array; - power: Long; + power: bigint; } /** ValidatorUpdate */ export interface ValidatorUpdate { pubKey: PublicKey; - power: Long; + power: bigint; } export interface ValidatorUpdateProtoMsg { typeUrl: "/tendermint.abci.ValidatorUpdate"; @@ -1218,7 +1217,7 @@ export interface ValidatorUpdateProtoMsg { /** ValidatorUpdate */ export interface ValidatorUpdateAmino { pub_key?: PublicKeyAmino; - power: string; + power?: string; } export interface ValidatorUpdateAminoMsg { type: "/tendermint.abci.ValidatorUpdate"; @@ -1227,7 +1226,7 @@ export interface ValidatorUpdateAminoMsg { /** ValidatorUpdate */ export interface ValidatorUpdateSDKType { pub_key: PublicKeySDKType; - power: Long; + power: bigint; } /** VoteInfo */ export interface VoteInfo { @@ -1241,7 +1240,7 @@ export interface VoteInfoProtoMsg { /** VoteInfo */ export interface VoteInfoAmino { validator?: ValidatorAmino; - signed_last_block: boolean; + signed_last_block?: boolean; } export interface VoteInfoAminoMsg { type: "/tendermint.abci.VoteInfo"; @@ -1264,9 +1263,9 @@ export interface ExtendedVoteInfoProtoMsg { } export interface ExtendedVoteInfoAmino { validator?: ValidatorAmino; - signed_last_block: boolean; + signed_last_block?: boolean; /** Reserved for future use */ - vote_extension: Uint8Array; + vote_extension?: string; } export interface ExtendedVoteInfoAminoMsg { type: "/tendermint.abci.ExtendedVoteInfo"; @@ -1282,7 +1281,7 @@ export interface Misbehavior { /** The offending validator */ validator: Validator; /** The height when the offense occurred */ - height: Long; + height: bigint; /** The corresponding time where the offense occurred */ time: Timestamp; /** @@ -1290,26 +1289,26 @@ export interface Misbehavior { * not store historical validators. * https://github.com/tendermint/tendermint/issues/4581 */ - totalVotingPower: Long; + totalVotingPower: bigint; } export interface MisbehaviorProtoMsg { typeUrl: "/tendermint.abci.Misbehavior"; value: Uint8Array; } export interface MisbehaviorAmino { - type: MisbehaviorType; + type?: MisbehaviorType; /** The offending validator */ validator?: ValidatorAmino; /** The height when the offense occurred */ - height: string; + height?: string; /** The corresponding time where the offense occurred */ - time?: TimestampAmino; + time?: string; /** * Total voting power of the validator set in case the ABCI application does * not store historical validators. * https://github.com/tendermint/tendermint/issues/4581 */ - total_voting_power: string; + total_voting_power?: string; } export interface MisbehaviorAminoMsg { type: "/tendermint.abci.Misbehavior"; @@ -1318,13 +1317,13 @@ export interface MisbehaviorAminoMsg { export interface MisbehaviorSDKType { type: MisbehaviorType; validator: ValidatorSDKType; - height: Long; + height: bigint; time: TimestampSDKType; - total_voting_power: Long; + total_voting_power: bigint; } export interface Snapshot { /** The height at which the snapshot was taken */ - height: Long; + height: bigint; /** The application-specific snapshot format */ format: number; /** Number of chunks in the snapshot */ @@ -1340,30 +1339,31 @@ export interface SnapshotProtoMsg { } export interface SnapshotAmino { /** The height at which the snapshot was taken */ - height: string; + height?: string; /** The application-specific snapshot format */ - format: number; + format?: number; /** Number of chunks in the snapshot */ - chunks: number; + chunks?: number; /** Arbitrary snapshot hash, equal only if identical */ - hash: Uint8Array; + hash?: string; /** Arbitrary application metadata */ - metadata: Uint8Array; + metadata?: string; } export interface SnapshotAminoMsg { type: "/tendermint.abci.Snapshot"; value: SnapshotAmino; } export interface SnapshotSDKType { - height: Long; + height: bigint; format: number; chunks: number; hash: Uint8Array; metadata: Uint8Array; } export declare const Request: { - encode(message: Request, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Request; + typeUrl: string; + encode(message: Request, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Request; fromJSON(object: any): Request; toJSON(message: Request): unknown; fromPartial(object: Partial): Request; @@ -1375,8 +1375,9 @@ export declare const Request: { toProtoMsg(message: Request): RequestProtoMsg; }; export declare const RequestEcho: { - encode(message: RequestEcho, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestEcho; + typeUrl: string; + encode(message: RequestEcho, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestEcho; fromJSON(object: any): RequestEcho; toJSON(message: RequestEcho): unknown; fromPartial(object: Partial): RequestEcho; @@ -1388,8 +1389,9 @@ export declare const RequestEcho: { toProtoMsg(message: RequestEcho): RequestEchoProtoMsg; }; export declare const RequestFlush: { - encode(_: RequestFlush, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestFlush; + typeUrl: string; + encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestFlush; fromJSON(_: any): RequestFlush; toJSON(_: RequestFlush): unknown; fromPartial(_: Partial): RequestFlush; @@ -1401,8 +1403,9 @@ export declare const RequestFlush: { toProtoMsg(message: RequestFlush): RequestFlushProtoMsg; }; export declare const RequestInfo: { - encode(message: RequestInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestInfo; + typeUrl: string; + encode(message: RequestInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestInfo; fromJSON(object: any): RequestInfo; toJSON(message: RequestInfo): unknown; fromPartial(object: Partial): RequestInfo; @@ -1414,8 +1417,9 @@ export declare const RequestInfo: { toProtoMsg(message: RequestInfo): RequestInfoProtoMsg; }; export declare const RequestInitChain: { - encode(message: RequestInitChain, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestInitChain; + typeUrl: string; + encode(message: RequestInitChain, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestInitChain; fromJSON(object: any): RequestInitChain; toJSON(message: RequestInitChain): unknown; fromPartial(object: Partial): RequestInitChain; @@ -1427,8 +1431,9 @@ export declare const RequestInitChain: { toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg; }; export declare const RequestQuery: { - encode(message: RequestQuery, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestQuery; + typeUrl: string; + encode(message: RequestQuery, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestQuery; fromJSON(object: any): RequestQuery; toJSON(message: RequestQuery): unknown; fromPartial(object: Partial): RequestQuery; @@ -1440,8 +1445,9 @@ export declare const RequestQuery: { toProtoMsg(message: RequestQuery): RequestQueryProtoMsg; }; export declare const RequestBeginBlock: { - encode(message: RequestBeginBlock, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestBeginBlock; + typeUrl: string; + encode(message: RequestBeginBlock, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestBeginBlock; fromJSON(object: any): RequestBeginBlock; toJSON(message: RequestBeginBlock): unknown; fromPartial(object: Partial): RequestBeginBlock; @@ -1453,8 +1459,9 @@ export declare const RequestBeginBlock: { toProtoMsg(message: RequestBeginBlock): RequestBeginBlockProtoMsg; }; export declare const RequestCheckTx: { - encode(message: RequestCheckTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestCheckTx; + typeUrl: string; + encode(message: RequestCheckTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestCheckTx; fromJSON(object: any): RequestCheckTx; toJSON(message: RequestCheckTx): unknown; fromPartial(object: Partial): RequestCheckTx; @@ -1466,8 +1473,9 @@ export declare const RequestCheckTx: { toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg; }; export declare const RequestDeliverTx: { - encode(message: RequestDeliverTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestDeliverTx; + typeUrl: string; + encode(message: RequestDeliverTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestDeliverTx; fromJSON(object: any): RequestDeliverTx; toJSON(message: RequestDeliverTx): unknown; fromPartial(object: Partial): RequestDeliverTx; @@ -1479,8 +1487,9 @@ export declare const RequestDeliverTx: { toProtoMsg(message: RequestDeliverTx): RequestDeliverTxProtoMsg; }; export declare const RequestEndBlock: { - encode(message: RequestEndBlock, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestEndBlock; + typeUrl: string; + encode(message: RequestEndBlock, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestEndBlock; fromJSON(object: any): RequestEndBlock; toJSON(message: RequestEndBlock): unknown; fromPartial(object: Partial): RequestEndBlock; @@ -1492,8 +1501,9 @@ export declare const RequestEndBlock: { toProtoMsg(message: RequestEndBlock): RequestEndBlockProtoMsg; }; export declare const RequestCommit: { - encode(_: RequestCommit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestCommit; + typeUrl: string; + encode(_: RequestCommit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestCommit; fromJSON(_: any): RequestCommit; toJSON(_: RequestCommit): unknown; fromPartial(_: Partial): RequestCommit; @@ -1505,8 +1515,9 @@ export declare const RequestCommit: { toProtoMsg(message: RequestCommit): RequestCommitProtoMsg; }; export declare const RequestListSnapshots: { - encode(_: RequestListSnapshots, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestListSnapshots; + typeUrl: string; + encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestListSnapshots; fromJSON(_: any): RequestListSnapshots; toJSON(_: RequestListSnapshots): unknown; fromPartial(_: Partial): RequestListSnapshots; @@ -1518,8 +1529,9 @@ export declare const RequestListSnapshots: { toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg; }; export declare const RequestOfferSnapshot: { - encode(message: RequestOfferSnapshot, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestOfferSnapshot; + typeUrl: string; + encode(message: RequestOfferSnapshot, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestOfferSnapshot; fromJSON(object: any): RequestOfferSnapshot; toJSON(message: RequestOfferSnapshot): unknown; fromPartial(object: Partial): RequestOfferSnapshot; @@ -1531,8 +1543,9 @@ export declare const RequestOfferSnapshot: { toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg; }; export declare const RequestLoadSnapshotChunk: { - encode(message: RequestLoadSnapshotChunk, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestLoadSnapshotChunk; + typeUrl: string; + encode(message: RequestLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestLoadSnapshotChunk; fromJSON(object: any): RequestLoadSnapshotChunk; toJSON(message: RequestLoadSnapshotChunk): unknown; fromPartial(object: Partial): RequestLoadSnapshotChunk; @@ -1544,8 +1557,9 @@ export declare const RequestLoadSnapshotChunk: { toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg; }; export declare const RequestApplySnapshotChunk: { - encode(message: RequestApplySnapshotChunk, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestApplySnapshotChunk; + typeUrl: string; + encode(message: RequestApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestApplySnapshotChunk; fromJSON(object: any): RequestApplySnapshotChunk; toJSON(message: RequestApplySnapshotChunk): unknown; fromPartial(object: Partial): RequestApplySnapshotChunk; @@ -1557,8 +1571,9 @@ export declare const RequestApplySnapshotChunk: { toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg; }; export declare const RequestPrepareProposal: { - encode(message: RequestPrepareProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestPrepareProposal; + typeUrl: string; + encode(message: RequestPrepareProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestPrepareProposal; fromJSON(object: any): RequestPrepareProposal; toJSON(message: RequestPrepareProposal): unknown; fromPartial(object: Partial): RequestPrepareProposal; @@ -1570,8 +1585,9 @@ export declare const RequestPrepareProposal: { toProtoMsg(message: RequestPrepareProposal): RequestPrepareProposalProtoMsg; }; export declare const RequestProcessProposal: { - encode(message: RequestProcessProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): RequestProcessProposal; + typeUrl: string; + encode(message: RequestProcessProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): RequestProcessProposal; fromJSON(object: any): RequestProcessProposal; toJSON(message: RequestProcessProposal): unknown; fromPartial(object: Partial): RequestProcessProposal; @@ -1583,8 +1599,9 @@ export declare const RequestProcessProposal: { toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg; }; export declare const Response: { - encode(message: Response, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Response; + typeUrl: string; + encode(message: Response, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Response; fromJSON(object: any): Response; toJSON(message: Response): unknown; fromPartial(object: Partial): Response; @@ -1596,8 +1613,9 @@ export declare const Response: { toProtoMsg(message: Response): ResponseProtoMsg; }; export declare const ResponseException: { - encode(message: ResponseException, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseException; + typeUrl: string; + encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseException; fromJSON(object: any): ResponseException; toJSON(message: ResponseException): unknown; fromPartial(object: Partial): ResponseException; @@ -1609,8 +1627,9 @@ export declare const ResponseException: { toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg; }; export declare const ResponseEcho: { - encode(message: ResponseEcho, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseEcho; + typeUrl: string; + encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseEcho; fromJSON(object: any): ResponseEcho; toJSON(message: ResponseEcho): unknown; fromPartial(object: Partial): ResponseEcho; @@ -1622,8 +1641,9 @@ export declare const ResponseEcho: { toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg; }; export declare const ResponseFlush: { - encode(_: ResponseFlush, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseFlush; + typeUrl: string; + encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseFlush; fromJSON(_: any): ResponseFlush; toJSON(_: ResponseFlush): unknown; fromPartial(_: Partial): ResponseFlush; @@ -1635,8 +1655,9 @@ export declare const ResponseFlush: { toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg; }; export declare const ResponseInfo: { - encode(message: ResponseInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseInfo; + typeUrl: string; + encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseInfo; fromJSON(object: any): ResponseInfo; toJSON(message: ResponseInfo): unknown; fromPartial(object: Partial): ResponseInfo; @@ -1648,8 +1669,9 @@ export declare const ResponseInfo: { toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg; }; export declare const ResponseInitChain: { - encode(message: ResponseInitChain, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseInitChain; + typeUrl: string; + encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseInitChain; fromJSON(object: any): ResponseInitChain; toJSON(message: ResponseInitChain): unknown; fromPartial(object: Partial): ResponseInitChain; @@ -1661,8 +1683,9 @@ export declare const ResponseInitChain: { toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg; }; export declare const ResponseQuery: { - encode(message: ResponseQuery, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseQuery; + typeUrl: string; + encode(message: ResponseQuery, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseQuery; fromJSON(object: any): ResponseQuery; toJSON(message: ResponseQuery): unknown; fromPartial(object: Partial): ResponseQuery; @@ -1674,8 +1697,9 @@ export declare const ResponseQuery: { toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg; }; export declare const ResponseBeginBlock: { - encode(message: ResponseBeginBlock, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseBeginBlock; + typeUrl: string; + encode(message: ResponseBeginBlock, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseBeginBlock; fromJSON(object: any): ResponseBeginBlock; toJSON(message: ResponseBeginBlock): unknown; fromPartial(object: Partial): ResponseBeginBlock; @@ -1687,8 +1711,9 @@ export declare const ResponseBeginBlock: { toProtoMsg(message: ResponseBeginBlock): ResponseBeginBlockProtoMsg; }; export declare const ResponseCheckTx: { - encode(message: ResponseCheckTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseCheckTx; + typeUrl: string; + encode(message: ResponseCheckTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseCheckTx; fromJSON(object: any): ResponseCheckTx; toJSON(message: ResponseCheckTx): unknown; fromPartial(object: Partial): ResponseCheckTx; @@ -1700,8 +1725,9 @@ export declare const ResponseCheckTx: { toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg; }; export declare const ResponseDeliverTx: { - encode(message: ResponseDeliverTx, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseDeliverTx; + typeUrl: string; + encode(message: ResponseDeliverTx, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseDeliverTx; fromJSON(object: any): ResponseDeliverTx; toJSON(message: ResponseDeliverTx): unknown; fromPartial(object: Partial): ResponseDeliverTx; @@ -1713,8 +1739,9 @@ export declare const ResponseDeliverTx: { toProtoMsg(message: ResponseDeliverTx): ResponseDeliverTxProtoMsg; }; export declare const ResponseEndBlock: { - encode(message: ResponseEndBlock, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseEndBlock; + typeUrl: string; + encode(message: ResponseEndBlock, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseEndBlock; fromJSON(object: any): ResponseEndBlock; toJSON(message: ResponseEndBlock): unknown; fromPartial(object: Partial): ResponseEndBlock; @@ -1726,8 +1753,9 @@ export declare const ResponseEndBlock: { toProtoMsg(message: ResponseEndBlock): ResponseEndBlockProtoMsg; }; export declare const ResponseCommit: { - encode(message: ResponseCommit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseCommit; + typeUrl: string; + encode(message: ResponseCommit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseCommit; fromJSON(object: any): ResponseCommit; toJSON(message: ResponseCommit): unknown; fromPartial(object: Partial): ResponseCommit; @@ -1739,8 +1767,9 @@ export declare const ResponseCommit: { toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg; }; export declare const ResponseListSnapshots: { - encode(message: ResponseListSnapshots, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseListSnapshots; + typeUrl: string; + encode(message: ResponseListSnapshots, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseListSnapshots; fromJSON(object: any): ResponseListSnapshots; toJSON(message: ResponseListSnapshots): unknown; fromPartial(object: Partial): ResponseListSnapshots; @@ -1752,8 +1781,9 @@ export declare const ResponseListSnapshots: { toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg; }; export declare const ResponseOfferSnapshot: { - encode(message: ResponseOfferSnapshot, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseOfferSnapshot; + typeUrl: string; + encode(message: ResponseOfferSnapshot, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseOfferSnapshot; fromJSON(object: any): ResponseOfferSnapshot; toJSON(message: ResponseOfferSnapshot): unknown; fromPartial(object: Partial): ResponseOfferSnapshot; @@ -1765,8 +1795,9 @@ export declare const ResponseOfferSnapshot: { toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg; }; export declare const ResponseLoadSnapshotChunk: { - encode(message: ResponseLoadSnapshotChunk, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseLoadSnapshotChunk; + typeUrl: string; + encode(message: ResponseLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseLoadSnapshotChunk; fromJSON(object: any): ResponseLoadSnapshotChunk; toJSON(message: ResponseLoadSnapshotChunk): unknown; fromPartial(object: Partial): ResponseLoadSnapshotChunk; @@ -1778,8 +1809,9 @@ export declare const ResponseLoadSnapshotChunk: { toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg; }; export declare const ResponseApplySnapshotChunk: { - encode(message: ResponseApplySnapshotChunk, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseApplySnapshotChunk; + typeUrl: string; + encode(message: ResponseApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseApplySnapshotChunk; fromJSON(object: any): ResponseApplySnapshotChunk; toJSON(message: ResponseApplySnapshotChunk): unknown; fromPartial(object: Partial): ResponseApplySnapshotChunk; @@ -1791,8 +1823,9 @@ export declare const ResponseApplySnapshotChunk: { toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg; }; export declare const ResponsePrepareProposal: { - encode(message: ResponsePrepareProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponsePrepareProposal; + typeUrl: string; + encode(message: ResponsePrepareProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponsePrepareProposal; fromJSON(object: any): ResponsePrepareProposal; toJSON(message: ResponsePrepareProposal): unknown; fromPartial(object: Partial): ResponsePrepareProposal; @@ -1804,8 +1837,9 @@ export declare const ResponsePrepareProposal: { toProtoMsg(message: ResponsePrepareProposal): ResponsePrepareProposalProtoMsg; }; export declare const ResponseProcessProposal: { - encode(message: ResponseProcessProposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ResponseProcessProposal; + typeUrl: string; + encode(message: ResponseProcessProposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ResponseProcessProposal; fromJSON(object: any): ResponseProcessProposal; toJSON(message: ResponseProcessProposal): unknown; fromPartial(object: Partial): ResponseProcessProposal; @@ -1817,8 +1851,9 @@ export declare const ResponseProcessProposal: { toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg; }; export declare const CommitInfo: { - encode(message: CommitInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommitInfo; + typeUrl: string; + encode(message: CommitInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommitInfo; fromJSON(object: any): CommitInfo; toJSON(message: CommitInfo): unknown; fromPartial(object: Partial): CommitInfo; @@ -1830,8 +1865,9 @@ export declare const CommitInfo: { toProtoMsg(message: CommitInfo): CommitInfoProtoMsg; }; export declare const ExtendedCommitInfo: { - encode(message: ExtendedCommitInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ExtendedCommitInfo; + typeUrl: string; + encode(message: ExtendedCommitInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ExtendedCommitInfo; fromJSON(object: any): ExtendedCommitInfo; toJSON(message: ExtendedCommitInfo): unknown; fromPartial(object: Partial): ExtendedCommitInfo; @@ -1843,8 +1879,9 @@ export declare const ExtendedCommitInfo: { toProtoMsg(message: ExtendedCommitInfo): ExtendedCommitInfoProtoMsg; }; export declare const Event: { - encode(message: Event, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Event; + typeUrl: string; + encode(message: Event, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Event; fromJSON(object: any): Event; toJSON(message: Event): unknown; fromPartial(object: Partial): Event; @@ -1856,8 +1893,9 @@ export declare const Event: { toProtoMsg(message: Event): EventProtoMsg; }; export declare const EventAttribute: { - encode(message: EventAttribute, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EventAttribute; + typeUrl: string; + encode(message: EventAttribute, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EventAttribute; fromJSON(object: any): EventAttribute; toJSON(message: EventAttribute): unknown; fromPartial(object: Partial): EventAttribute; @@ -1869,8 +1907,9 @@ export declare const EventAttribute: { toProtoMsg(message: EventAttribute): EventAttributeProtoMsg; }; export declare const TxResult: { - encode(message: TxResult, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxResult; + typeUrl: string; + encode(message: TxResult, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxResult; fromJSON(object: any): TxResult; toJSON(message: TxResult): unknown; fromPartial(object: Partial): TxResult; @@ -1882,8 +1921,9 @@ export declare const TxResult: { toProtoMsg(message: TxResult): TxResultProtoMsg; }; export declare const Validator: { - encode(message: Validator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Validator; + typeUrl: string; + encode(message: Validator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Validator; fromJSON(object: any): Validator; toJSON(message: Validator): unknown; fromPartial(object: Partial): Validator; @@ -1895,8 +1935,9 @@ export declare const Validator: { toProtoMsg(message: Validator): ValidatorProtoMsg; }; export declare const ValidatorUpdate: { - encode(message: ValidatorUpdate, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorUpdate; + typeUrl: string; + encode(message: ValidatorUpdate, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorUpdate; fromJSON(object: any): ValidatorUpdate; toJSON(message: ValidatorUpdate): unknown; fromPartial(object: Partial): ValidatorUpdate; @@ -1908,8 +1949,9 @@ export declare const ValidatorUpdate: { toProtoMsg(message: ValidatorUpdate): ValidatorUpdateProtoMsg; }; export declare const VoteInfo: { - encode(message: VoteInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): VoteInfo; + typeUrl: string; + encode(message: VoteInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): VoteInfo; fromJSON(object: any): VoteInfo; toJSON(message: VoteInfo): unknown; fromPartial(object: Partial): VoteInfo; @@ -1921,8 +1963,9 @@ export declare const VoteInfo: { toProtoMsg(message: VoteInfo): VoteInfoProtoMsg; }; export declare const ExtendedVoteInfo: { - encode(message: ExtendedVoteInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ExtendedVoteInfo; + typeUrl: string; + encode(message: ExtendedVoteInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ExtendedVoteInfo; fromJSON(object: any): ExtendedVoteInfo; toJSON(message: ExtendedVoteInfo): unknown; fromPartial(object: Partial): ExtendedVoteInfo; @@ -1934,8 +1977,9 @@ export declare const ExtendedVoteInfo: { toProtoMsg(message: ExtendedVoteInfo): ExtendedVoteInfoProtoMsg; }; export declare const Misbehavior: { - encode(message: Misbehavior, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Misbehavior; + typeUrl: string; + encode(message: Misbehavior, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Misbehavior; fromJSON(object: any): Misbehavior; toJSON(message: Misbehavior): unknown; fromPartial(object: Partial): Misbehavior; @@ -1947,8 +1991,9 @@ export declare const Misbehavior: { toProtoMsg(message: Misbehavior): MisbehaviorProtoMsg; }; export declare const Snapshot: { - encode(message: Snapshot, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Snapshot; + typeUrl: string; + encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Snapshot; fromJSON(object: any): Snapshot; toJSON(message: Snapshot): unknown; fromPartial(object: Partial): Snapshot; diff --git a/packages/api/types/codegen/tendermint/bundle.d.ts b/packages/api/types/codegen/tendermint/bundle.d.ts index 8817da3..f1aafa7 100644 --- a/packages/api/types/codegen/tendermint/bundle.d.ts +++ b/packages/api/types/codegen/tendermint/bundle.d.ts @@ -1,1180 +1,1266 @@ -import * as _140 from "./abci/types"; -import * as _141 from "./crypto/keys"; -import * as _142 from "./crypto/proof"; -import * as _143 from "./libs/bits/types"; -import * as _144 from "./p2p/types"; -import * as _145 from "./types/block"; -import * as _146 from "./types/evidence"; -import * as _147 from "./types/params"; -import * as _148 from "./types/types"; -import * as _149 from "./types/validator"; -import * as _150 from "./version/types"; +import * as _141 from "./abci/types"; +import * as _142 from "./crypto/keys"; +import * as _143 from "./crypto/proof"; +import * as _144 from "./libs/bits/types"; +import * as _145 from "./p2p/types"; +import * as _146 from "./types/block"; +import * as _147 from "./types/evidence"; +import * as _148 from "./types/params"; +import * as _149 from "./types/types"; +import * as _150 from "./types/validator"; +import * as _151 from "./version/types"; export declare namespace tendermint { const abci: { - checkTxTypeFromJSON(object: any): _140.CheckTxType; - checkTxTypeToJSON(object: _140.CheckTxType): string; - responseOfferSnapshot_ResultFromJSON(object: any): _140.ResponseOfferSnapshot_Result; - responseOfferSnapshot_ResultToJSON(object: _140.ResponseOfferSnapshot_Result): string; - responseApplySnapshotChunk_ResultFromJSON(object: any): _140.ResponseApplySnapshotChunk_Result; - responseApplySnapshotChunk_ResultToJSON(object: _140.ResponseApplySnapshotChunk_Result): string; - responseProcessProposal_ProposalStatusFromJSON(object: any): _140.ResponseProcessProposal_ProposalStatus; - responseProcessProposal_ProposalStatusToJSON(object: _140.ResponseProcessProposal_ProposalStatus): string; - misbehaviorTypeFromJSON(object: any): _140.MisbehaviorType; - misbehaviorTypeToJSON(object: _140.MisbehaviorType): string; - CheckTxType: typeof _140.CheckTxType; - CheckTxTypeSDKType: typeof _140.CheckTxType; - CheckTxTypeAmino: typeof _140.CheckTxType; - ResponseOfferSnapshot_Result: typeof _140.ResponseOfferSnapshot_Result; - ResponseOfferSnapshot_ResultSDKType: typeof _140.ResponseOfferSnapshot_Result; - ResponseOfferSnapshot_ResultAmino: typeof _140.ResponseOfferSnapshot_Result; - ResponseApplySnapshotChunk_Result: typeof _140.ResponseApplySnapshotChunk_Result; - ResponseApplySnapshotChunk_ResultSDKType: typeof _140.ResponseApplySnapshotChunk_Result; - ResponseApplySnapshotChunk_ResultAmino: typeof _140.ResponseApplySnapshotChunk_Result; - ResponseProcessProposal_ProposalStatus: typeof _140.ResponseProcessProposal_ProposalStatus; - ResponseProcessProposal_ProposalStatusSDKType: typeof _140.ResponseProcessProposal_ProposalStatus; - ResponseProcessProposal_ProposalStatusAmino: typeof _140.ResponseProcessProposal_ProposalStatus; - MisbehaviorType: typeof _140.MisbehaviorType; - MisbehaviorTypeSDKType: typeof _140.MisbehaviorType; - MisbehaviorTypeAmino: typeof _140.MisbehaviorType; + checkTxTypeFromJSON(object: any): _141.CheckTxType; + checkTxTypeToJSON(object: _141.CheckTxType): string; + responseOfferSnapshot_ResultFromJSON(object: any): _141.ResponseOfferSnapshot_Result; + responseOfferSnapshot_ResultToJSON(object: _141.ResponseOfferSnapshot_Result): string; + responseApplySnapshotChunk_ResultFromJSON(object: any): _141.ResponseApplySnapshotChunk_Result; + responseApplySnapshotChunk_ResultToJSON(object: _141.ResponseApplySnapshotChunk_Result): string; + responseProcessProposal_ProposalStatusFromJSON(object: any): _141.ResponseProcessProposal_ProposalStatus; + responseProcessProposal_ProposalStatusToJSON(object: _141.ResponseProcessProposal_ProposalStatus): string; + misbehaviorTypeFromJSON(object: any): _141.MisbehaviorType; + misbehaviorTypeToJSON(object: _141.MisbehaviorType): string; + CheckTxType: typeof _141.CheckTxType; + CheckTxTypeSDKType: typeof _141.CheckTxType; + CheckTxTypeAmino: typeof _141.CheckTxType; + ResponseOfferSnapshot_Result: typeof _141.ResponseOfferSnapshot_Result; + ResponseOfferSnapshot_ResultSDKType: typeof _141.ResponseOfferSnapshot_Result; + ResponseOfferSnapshot_ResultAmino: typeof _141.ResponseOfferSnapshot_Result; + ResponseApplySnapshotChunk_Result: typeof _141.ResponseApplySnapshotChunk_Result; + ResponseApplySnapshotChunk_ResultSDKType: typeof _141.ResponseApplySnapshotChunk_Result; + ResponseApplySnapshotChunk_ResultAmino: typeof _141.ResponseApplySnapshotChunk_Result; + ResponseProcessProposal_ProposalStatus: typeof _141.ResponseProcessProposal_ProposalStatus; + ResponseProcessProposal_ProposalStatusSDKType: typeof _141.ResponseProcessProposal_ProposalStatus; + ResponseProcessProposal_ProposalStatusAmino: typeof _141.ResponseProcessProposal_ProposalStatus; + MisbehaviorType: typeof _141.MisbehaviorType; + MisbehaviorTypeSDKType: typeof _141.MisbehaviorType; + MisbehaviorTypeAmino: typeof _141.MisbehaviorType; Request: { - encode(message: _140.Request, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.Request; - fromJSON(object: any): _140.Request; - toJSON(message: _140.Request): unknown; - fromPartial(object: Partial<_140.Request>): _140.Request; - fromAmino(object: _140.RequestAmino): _140.Request; - toAmino(message: _140.Request): _140.RequestAmino; - fromAminoMsg(object: _140.RequestAminoMsg): _140.Request; - fromProtoMsg(message: _140.RequestProtoMsg): _140.Request; - toProto(message: _140.Request): Uint8Array; - toProtoMsg(message: _140.Request): _140.RequestProtoMsg; + typeUrl: string; + encode(message: _141.Request, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.Request; + fromJSON(object: any): _141.Request; + toJSON(message: _141.Request): unknown; + fromPartial(object: Partial<_141.Request>): _141.Request; + fromAmino(object: _141.RequestAmino): _141.Request; + toAmino(message: _141.Request): _141.RequestAmino; + fromAminoMsg(object: _141.RequestAminoMsg): _141.Request; + fromProtoMsg(message: _141.RequestProtoMsg): _141.Request; + toProto(message: _141.Request): Uint8Array; + toProtoMsg(message: _141.Request): _141.RequestProtoMsg; }; RequestEcho: { - encode(message: _140.RequestEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestEcho; - fromJSON(object: any): _140.RequestEcho; - toJSON(message: _140.RequestEcho): unknown; - fromPartial(object: Partial<_140.RequestEcho>): _140.RequestEcho; - fromAmino(object: _140.RequestEchoAmino): _140.RequestEcho; - toAmino(message: _140.RequestEcho): _140.RequestEchoAmino; - fromAminoMsg(object: _140.RequestEchoAminoMsg): _140.RequestEcho; - fromProtoMsg(message: _140.RequestEchoProtoMsg): _140.RequestEcho; - toProto(message: _140.RequestEcho): Uint8Array; - toProtoMsg(message: _140.RequestEcho): _140.RequestEchoProtoMsg; + typeUrl: string; + encode(message: _141.RequestEcho, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestEcho; + fromJSON(object: any): _141.RequestEcho; + toJSON(message: _141.RequestEcho): unknown; + fromPartial(object: Partial<_141.RequestEcho>): _141.RequestEcho; + fromAmino(object: _141.RequestEchoAmino): _141.RequestEcho; + toAmino(message: _141.RequestEcho): _141.RequestEchoAmino; + fromAminoMsg(object: _141.RequestEchoAminoMsg): _141.RequestEcho; + fromProtoMsg(message: _141.RequestEchoProtoMsg): _141.RequestEcho; + toProto(message: _141.RequestEcho): Uint8Array; + toProtoMsg(message: _141.RequestEcho): _141.RequestEchoProtoMsg; }; RequestFlush: { - encode(_: _140.RequestFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestFlush; - fromJSON(_: any): _140.RequestFlush; - toJSON(_: _140.RequestFlush): unknown; - fromPartial(_: Partial<_140.RequestFlush>): _140.RequestFlush; - fromAmino(_: _140.RequestFlushAmino): _140.RequestFlush; - toAmino(_: _140.RequestFlush): _140.RequestFlushAmino; - fromAminoMsg(object: _140.RequestFlushAminoMsg): _140.RequestFlush; - fromProtoMsg(message: _140.RequestFlushProtoMsg): _140.RequestFlush; - toProto(message: _140.RequestFlush): Uint8Array; - toProtoMsg(message: _140.RequestFlush): _140.RequestFlushProtoMsg; + typeUrl: string; + encode(_: _141.RequestFlush, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestFlush; + fromJSON(_: any): _141.RequestFlush; + toJSON(_: _141.RequestFlush): unknown; + fromPartial(_: Partial<_141.RequestFlush>): _141.RequestFlush; + fromAmino(_: _141.RequestFlushAmino): _141.RequestFlush; + toAmino(_: _141.RequestFlush): _141.RequestFlushAmino; + fromAminoMsg(object: _141.RequestFlushAminoMsg): _141.RequestFlush; + fromProtoMsg(message: _141.RequestFlushProtoMsg): _141.RequestFlush; + toProto(message: _141.RequestFlush): Uint8Array; + toProtoMsg(message: _141.RequestFlush): _141.RequestFlushProtoMsg; }; RequestInfo: { - encode(message: _140.RequestInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestInfo; - fromJSON(object: any): _140.RequestInfo; - toJSON(message: _140.RequestInfo): unknown; - fromPartial(object: Partial<_140.RequestInfo>): _140.RequestInfo; - fromAmino(object: _140.RequestInfoAmino): _140.RequestInfo; - toAmino(message: _140.RequestInfo): _140.RequestInfoAmino; - fromAminoMsg(object: _140.RequestInfoAminoMsg): _140.RequestInfo; - fromProtoMsg(message: _140.RequestInfoProtoMsg): _140.RequestInfo; - toProto(message: _140.RequestInfo): Uint8Array; - toProtoMsg(message: _140.RequestInfo): _140.RequestInfoProtoMsg; + typeUrl: string; + encode(message: _141.RequestInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestInfo; + fromJSON(object: any): _141.RequestInfo; + toJSON(message: _141.RequestInfo): unknown; + fromPartial(object: Partial<_141.RequestInfo>): _141.RequestInfo; + fromAmino(object: _141.RequestInfoAmino): _141.RequestInfo; + toAmino(message: _141.RequestInfo): _141.RequestInfoAmino; + fromAminoMsg(object: _141.RequestInfoAminoMsg): _141.RequestInfo; + fromProtoMsg(message: _141.RequestInfoProtoMsg): _141.RequestInfo; + toProto(message: _141.RequestInfo): Uint8Array; + toProtoMsg(message: _141.RequestInfo): _141.RequestInfoProtoMsg; }; RequestInitChain: { - encode(message: _140.RequestInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestInitChain; - fromJSON(object: any): _140.RequestInitChain; - toJSON(message: _140.RequestInitChain): unknown; - fromPartial(object: Partial<_140.RequestInitChain>): _140.RequestInitChain; - fromAmino(object: _140.RequestInitChainAmino): _140.RequestInitChain; - toAmino(message: _140.RequestInitChain): _140.RequestInitChainAmino; - fromAminoMsg(object: _140.RequestInitChainAminoMsg): _140.RequestInitChain; - fromProtoMsg(message: _140.RequestInitChainProtoMsg): _140.RequestInitChain; - toProto(message: _140.RequestInitChain): Uint8Array; - toProtoMsg(message: _140.RequestInitChain): _140.RequestInitChainProtoMsg; + typeUrl: string; + encode(message: _141.RequestInitChain, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestInitChain; + fromJSON(object: any): _141.RequestInitChain; + toJSON(message: _141.RequestInitChain): unknown; + fromPartial(object: Partial<_141.RequestInitChain>): _141.RequestInitChain; + fromAmino(object: _141.RequestInitChainAmino): _141.RequestInitChain; + toAmino(message: _141.RequestInitChain): _141.RequestInitChainAmino; + fromAminoMsg(object: _141.RequestInitChainAminoMsg): _141.RequestInitChain; + fromProtoMsg(message: _141.RequestInitChainProtoMsg): _141.RequestInitChain; + toProto(message: _141.RequestInitChain): Uint8Array; + toProtoMsg(message: _141.RequestInitChain): _141.RequestInitChainProtoMsg; }; RequestQuery: { - encode(message: _140.RequestQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestQuery; - fromJSON(object: any): _140.RequestQuery; - toJSON(message: _140.RequestQuery): unknown; - fromPartial(object: Partial<_140.RequestQuery>): _140.RequestQuery; - fromAmino(object: _140.RequestQueryAmino): _140.RequestQuery; - toAmino(message: _140.RequestQuery): _140.RequestQueryAmino; - fromAminoMsg(object: _140.RequestQueryAminoMsg): _140.RequestQuery; - fromProtoMsg(message: _140.RequestQueryProtoMsg): _140.RequestQuery; - toProto(message: _140.RequestQuery): Uint8Array; - toProtoMsg(message: _140.RequestQuery): _140.RequestQueryProtoMsg; + typeUrl: string; + encode(message: _141.RequestQuery, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestQuery; + fromJSON(object: any): _141.RequestQuery; + toJSON(message: _141.RequestQuery): unknown; + fromPartial(object: Partial<_141.RequestQuery>): _141.RequestQuery; + fromAmino(object: _141.RequestQueryAmino): _141.RequestQuery; + toAmino(message: _141.RequestQuery): _141.RequestQueryAmino; + fromAminoMsg(object: _141.RequestQueryAminoMsg): _141.RequestQuery; + fromProtoMsg(message: _141.RequestQueryProtoMsg): _141.RequestQuery; + toProto(message: _141.RequestQuery): Uint8Array; + toProtoMsg(message: _141.RequestQuery): _141.RequestQueryProtoMsg; }; RequestBeginBlock: { - encode(message: _140.RequestBeginBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestBeginBlock; - fromJSON(object: any): _140.RequestBeginBlock; - toJSON(message: _140.RequestBeginBlock): unknown; - fromPartial(object: Partial<_140.RequestBeginBlock>): _140.RequestBeginBlock; - fromAmino(object: _140.RequestBeginBlockAmino): _140.RequestBeginBlock; - toAmino(message: _140.RequestBeginBlock): _140.RequestBeginBlockAmino; - fromAminoMsg(object: _140.RequestBeginBlockAminoMsg): _140.RequestBeginBlock; - fromProtoMsg(message: _140.RequestBeginBlockProtoMsg): _140.RequestBeginBlock; - toProto(message: _140.RequestBeginBlock): Uint8Array; - toProtoMsg(message: _140.RequestBeginBlock): _140.RequestBeginBlockProtoMsg; + typeUrl: string; + encode(message: _141.RequestBeginBlock, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestBeginBlock; + fromJSON(object: any): _141.RequestBeginBlock; + toJSON(message: _141.RequestBeginBlock): unknown; + fromPartial(object: Partial<_141.RequestBeginBlock>): _141.RequestBeginBlock; + fromAmino(object: _141.RequestBeginBlockAmino): _141.RequestBeginBlock; + toAmino(message: _141.RequestBeginBlock): _141.RequestBeginBlockAmino; + fromAminoMsg(object: _141.RequestBeginBlockAminoMsg): _141.RequestBeginBlock; + fromProtoMsg(message: _141.RequestBeginBlockProtoMsg): _141.RequestBeginBlock; + toProto(message: _141.RequestBeginBlock): Uint8Array; + toProtoMsg(message: _141.RequestBeginBlock): _141.RequestBeginBlockProtoMsg; }; RequestCheckTx: { - encode(message: _140.RequestCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestCheckTx; - fromJSON(object: any): _140.RequestCheckTx; - toJSON(message: _140.RequestCheckTx): unknown; - fromPartial(object: Partial<_140.RequestCheckTx>): _140.RequestCheckTx; - fromAmino(object: _140.RequestCheckTxAmino): _140.RequestCheckTx; - toAmino(message: _140.RequestCheckTx): _140.RequestCheckTxAmino; - fromAminoMsg(object: _140.RequestCheckTxAminoMsg): _140.RequestCheckTx; - fromProtoMsg(message: _140.RequestCheckTxProtoMsg): _140.RequestCheckTx; - toProto(message: _140.RequestCheckTx): Uint8Array; - toProtoMsg(message: _140.RequestCheckTx): _140.RequestCheckTxProtoMsg; + typeUrl: string; + encode(message: _141.RequestCheckTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestCheckTx; + fromJSON(object: any): _141.RequestCheckTx; + toJSON(message: _141.RequestCheckTx): unknown; + fromPartial(object: Partial<_141.RequestCheckTx>): _141.RequestCheckTx; + fromAmino(object: _141.RequestCheckTxAmino): _141.RequestCheckTx; + toAmino(message: _141.RequestCheckTx): _141.RequestCheckTxAmino; + fromAminoMsg(object: _141.RequestCheckTxAminoMsg): _141.RequestCheckTx; + fromProtoMsg(message: _141.RequestCheckTxProtoMsg): _141.RequestCheckTx; + toProto(message: _141.RequestCheckTx): Uint8Array; + toProtoMsg(message: _141.RequestCheckTx): _141.RequestCheckTxProtoMsg; }; RequestDeliverTx: { - encode(message: _140.RequestDeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestDeliverTx; - fromJSON(object: any): _140.RequestDeliverTx; - toJSON(message: _140.RequestDeliverTx): unknown; - fromPartial(object: Partial<_140.RequestDeliverTx>): _140.RequestDeliverTx; - fromAmino(object: _140.RequestDeliverTxAmino): _140.RequestDeliverTx; - toAmino(message: _140.RequestDeliverTx): _140.RequestDeliverTxAmino; - fromAminoMsg(object: _140.RequestDeliverTxAminoMsg): _140.RequestDeliverTx; - fromProtoMsg(message: _140.RequestDeliverTxProtoMsg): _140.RequestDeliverTx; - toProto(message: _140.RequestDeliverTx): Uint8Array; - toProtoMsg(message: _140.RequestDeliverTx): _140.RequestDeliverTxProtoMsg; + typeUrl: string; + encode(message: _141.RequestDeliverTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestDeliverTx; + fromJSON(object: any): _141.RequestDeliverTx; + toJSON(message: _141.RequestDeliverTx): unknown; + fromPartial(object: Partial<_141.RequestDeliverTx>): _141.RequestDeliverTx; + fromAmino(object: _141.RequestDeliverTxAmino): _141.RequestDeliverTx; + toAmino(message: _141.RequestDeliverTx): _141.RequestDeliverTxAmino; + fromAminoMsg(object: _141.RequestDeliverTxAminoMsg): _141.RequestDeliverTx; + fromProtoMsg(message: _141.RequestDeliverTxProtoMsg): _141.RequestDeliverTx; + toProto(message: _141.RequestDeliverTx): Uint8Array; + toProtoMsg(message: _141.RequestDeliverTx): _141.RequestDeliverTxProtoMsg; }; RequestEndBlock: { - encode(message: _140.RequestEndBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestEndBlock; - fromJSON(object: any): _140.RequestEndBlock; - toJSON(message: _140.RequestEndBlock): unknown; - fromPartial(object: Partial<_140.RequestEndBlock>): _140.RequestEndBlock; - fromAmino(object: _140.RequestEndBlockAmino): _140.RequestEndBlock; - toAmino(message: _140.RequestEndBlock): _140.RequestEndBlockAmino; - fromAminoMsg(object: _140.RequestEndBlockAminoMsg): _140.RequestEndBlock; - fromProtoMsg(message: _140.RequestEndBlockProtoMsg): _140.RequestEndBlock; - toProto(message: _140.RequestEndBlock): Uint8Array; - toProtoMsg(message: _140.RequestEndBlock): _140.RequestEndBlockProtoMsg; + typeUrl: string; + encode(message: _141.RequestEndBlock, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestEndBlock; + fromJSON(object: any): _141.RequestEndBlock; + toJSON(message: _141.RequestEndBlock): unknown; + fromPartial(object: Partial<_141.RequestEndBlock>): _141.RequestEndBlock; + fromAmino(object: _141.RequestEndBlockAmino): _141.RequestEndBlock; + toAmino(message: _141.RequestEndBlock): _141.RequestEndBlockAmino; + fromAminoMsg(object: _141.RequestEndBlockAminoMsg): _141.RequestEndBlock; + fromProtoMsg(message: _141.RequestEndBlockProtoMsg): _141.RequestEndBlock; + toProto(message: _141.RequestEndBlock): Uint8Array; + toProtoMsg(message: _141.RequestEndBlock): _141.RequestEndBlockProtoMsg; }; RequestCommit: { - encode(_: _140.RequestCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestCommit; - fromJSON(_: any): _140.RequestCommit; - toJSON(_: _140.RequestCommit): unknown; - fromPartial(_: Partial<_140.RequestCommit>): _140.RequestCommit; - fromAmino(_: _140.RequestCommitAmino): _140.RequestCommit; - toAmino(_: _140.RequestCommit): _140.RequestCommitAmino; - fromAminoMsg(object: _140.RequestCommitAminoMsg): _140.RequestCommit; - fromProtoMsg(message: _140.RequestCommitProtoMsg): _140.RequestCommit; - toProto(message: _140.RequestCommit): Uint8Array; - toProtoMsg(message: _140.RequestCommit): _140.RequestCommitProtoMsg; + typeUrl: string; + encode(_: _141.RequestCommit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestCommit; + fromJSON(_: any): _141.RequestCommit; + toJSON(_: _141.RequestCommit): unknown; + fromPartial(_: Partial<_141.RequestCommit>): _141.RequestCommit; + fromAmino(_: _141.RequestCommitAmino): _141.RequestCommit; + toAmino(_: _141.RequestCommit): _141.RequestCommitAmino; + fromAminoMsg(object: _141.RequestCommitAminoMsg): _141.RequestCommit; + fromProtoMsg(message: _141.RequestCommitProtoMsg): _141.RequestCommit; + toProto(message: _141.RequestCommit): Uint8Array; + toProtoMsg(message: _141.RequestCommit): _141.RequestCommitProtoMsg; }; RequestListSnapshots: { - encode(_: _140.RequestListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestListSnapshots; - fromJSON(_: any): _140.RequestListSnapshots; - toJSON(_: _140.RequestListSnapshots): unknown; - fromPartial(_: Partial<_140.RequestListSnapshots>): _140.RequestListSnapshots; - fromAmino(_: _140.RequestListSnapshotsAmino): _140.RequestListSnapshots; - toAmino(_: _140.RequestListSnapshots): _140.RequestListSnapshotsAmino; - fromAminoMsg(object: _140.RequestListSnapshotsAminoMsg): _140.RequestListSnapshots; - fromProtoMsg(message: _140.RequestListSnapshotsProtoMsg): _140.RequestListSnapshots; - toProto(message: _140.RequestListSnapshots): Uint8Array; - toProtoMsg(message: _140.RequestListSnapshots): _140.RequestListSnapshotsProtoMsg; + typeUrl: string; + encode(_: _141.RequestListSnapshots, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestListSnapshots; + fromJSON(_: any): _141.RequestListSnapshots; + toJSON(_: _141.RequestListSnapshots): unknown; + fromPartial(_: Partial<_141.RequestListSnapshots>): _141.RequestListSnapshots; + fromAmino(_: _141.RequestListSnapshotsAmino): _141.RequestListSnapshots; + toAmino(_: _141.RequestListSnapshots): _141.RequestListSnapshotsAmino; + fromAminoMsg(object: _141.RequestListSnapshotsAminoMsg): _141.RequestListSnapshots; + fromProtoMsg(message: _141.RequestListSnapshotsProtoMsg): _141.RequestListSnapshots; + toProto(message: _141.RequestListSnapshots): Uint8Array; + toProtoMsg(message: _141.RequestListSnapshots): _141.RequestListSnapshotsProtoMsg; }; RequestOfferSnapshot: { - encode(message: _140.RequestOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestOfferSnapshot; - fromJSON(object: any): _140.RequestOfferSnapshot; - toJSON(message: _140.RequestOfferSnapshot): unknown; - fromPartial(object: Partial<_140.RequestOfferSnapshot>): _140.RequestOfferSnapshot; - fromAmino(object: _140.RequestOfferSnapshotAmino): _140.RequestOfferSnapshot; - toAmino(message: _140.RequestOfferSnapshot): _140.RequestOfferSnapshotAmino; - fromAminoMsg(object: _140.RequestOfferSnapshotAminoMsg): _140.RequestOfferSnapshot; - fromProtoMsg(message: _140.RequestOfferSnapshotProtoMsg): _140.RequestOfferSnapshot; - toProto(message: _140.RequestOfferSnapshot): Uint8Array; - toProtoMsg(message: _140.RequestOfferSnapshot): _140.RequestOfferSnapshotProtoMsg; + typeUrl: string; + encode(message: _141.RequestOfferSnapshot, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestOfferSnapshot; + fromJSON(object: any): _141.RequestOfferSnapshot; + toJSON(message: _141.RequestOfferSnapshot): unknown; + fromPartial(object: Partial<_141.RequestOfferSnapshot>): _141.RequestOfferSnapshot; + fromAmino(object: _141.RequestOfferSnapshotAmino): _141.RequestOfferSnapshot; + toAmino(message: _141.RequestOfferSnapshot): _141.RequestOfferSnapshotAmino; + fromAminoMsg(object: _141.RequestOfferSnapshotAminoMsg): _141.RequestOfferSnapshot; + fromProtoMsg(message: _141.RequestOfferSnapshotProtoMsg): _141.RequestOfferSnapshot; + toProto(message: _141.RequestOfferSnapshot): Uint8Array; + toProtoMsg(message: _141.RequestOfferSnapshot): _141.RequestOfferSnapshotProtoMsg; }; RequestLoadSnapshotChunk: { - encode(message: _140.RequestLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestLoadSnapshotChunk; - fromJSON(object: any): _140.RequestLoadSnapshotChunk; - toJSON(message: _140.RequestLoadSnapshotChunk): unknown; - fromPartial(object: Partial<_140.RequestLoadSnapshotChunk>): _140.RequestLoadSnapshotChunk; - fromAmino(object: _140.RequestLoadSnapshotChunkAmino): _140.RequestLoadSnapshotChunk; - toAmino(message: _140.RequestLoadSnapshotChunk): _140.RequestLoadSnapshotChunkAmino; - fromAminoMsg(object: _140.RequestLoadSnapshotChunkAminoMsg): _140.RequestLoadSnapshotChunk; - fromProtoMsg(message: _140.RequestLoadSnapshotChunkProtoMsg): _140.RequestLoadSnapshotChunk; - toProto(message: _140.RequestLoadSnapshotChunk): Uint8Array; - toProtoMsg(message: _140.RequestLoadSnapshotChunk): _140.RequestLoadSnapshotChunkProtoMsg; + typeUrl: string; + encode(message: _141.RequestLoadSnapshotChunk, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestLoadSnapshotChunk; + fromJSON(object: any): _141.RequestLoadSnapshotChunk; + toJSON(message: _141.RequestLoadSnapshotChunk): unknown; + fromPartial(object: Partial<_141.RequestLoadSnapshotChunk>): _141.RequestLoadSnapshotChunk; + fromAmino(object: _141.RequestLoadSnapshotChunkAmino): _141.RequestLoadSnapshotChunk; + toAmino(message: _141.RequestLoadSnapshotChunk): _141.RequestLoadSnapshotChunkAmino; + fromAminoMsg(object: _141.RequestLoadSnapshotChunkAminoMsg): _141.RequestLoadSnapshotChunk; + fromProtoMsg(message: _141.RequestLoadSnapshotChunkProtoMsg): _141.RequestLoadSnapshotChunk; + toProto(message: _141.RequestLoadSnapshotChunk): Uint8Array; + toProtoMsg(message: _141.RequestLoadSnapshotChunk): _141.RequestLoadSnapshotChunkProtoMsg; }; RequestApplySnapshotChunk: { - encode(message: _140.RequestApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestApplySnapshotChunk; - fromJSON(object: any): _140.RequestApplySnapshotChunk; - toJSON(message: _140.RequestApplySnapshotChunk): unknown; - fromPartial(object: Partial<_140.RequestApplySnapshotChunk>): _140.RequestApplySnapshotChunk; - fromAmino(object: _140.RequestApplySnapshotChunkAmino): _140.RequestApplySnapshotChunk; - toAmino(message: _140.RequestApplySnapshotChunk): _140.RequestApplySnapshotChunkAmino; - fromAminoMsg(object: _140.RequestApplySnapshotChunkAminoMsg): _140.RequestApplySnapshotChunk; - fromProtoMsg(message: _140.RequestApplySnapshotChunkProtoMsg): _140.RequestApplySnapshotChunk; - toProto(message: _140.RequestApplySnapshotChunk): Uint8Array; - toProtoMsg(message: _140.RequestApplySnapshotChunk): _140.RequestApplySnapshotChunkProtoMsg; + typeUrl: string; + encode(message: _141.RequestApplySnapshotChunk, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestApplySnapshotChunk; + fromJSON(object: any): _141.RequestApplySnapshotChunk; + toJSON(message: _141.RequestApplySnapshotChunk): unknown; + fromPartial(object: Partial<_141.RequestApplySnapshotChunk>): _141.RequestApplySnapshotChunk; + fromAmino(object: _141.RequestApplySnapshotChunkAmino): _141.RequestApplySnapshotChunk; + toAmino(message: _141.RequestApplySnapshotChunk): _141.RequestApplySnapshotChunkAmino; + fromAminoMsg(object: _141.RequestApplySnapshotChunkAminoMsg): _141.RequestApplySnapshotChunk; + fromProtoMsg(message: _141.RequestApplySnapshotChunkProtoMsg): _141.RequestApplySnapshotChunk; + toProto(message: _141.RequestApplySnapshotChunk): Uint8Array; + toProtoMsg(message: _141.RequestApplySnapshotChunk): _141.RequestApplySnapshotChunkProtoMsg; }; RequestPrepareProposal: { - encode(message: _140.RequestPrepareProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestPrepareProposal; - fromJSON(object: any): _140.RequestPrepareProposal; - toJSON(message: _140.RequestPrepareProposal): unknown; - fromPartial(object: Partial<_140.RequestPrepareProposal>): _140.RequestPrepareProposal; - fromAmino(object: _140.RequestPrepareProposalAmino): _140.RequestPrepareProposal; - toAmino(message: _140.RequestPrepareProposal): _140.RequestPrepareProposalAmino; - fromAminoMsg(object: _140.RequestPrepareProposalAminoMsg): _140.RequestPrepareProposal; - fromProtoMsg(message: _140.RequestPrepareProposalProtoMsg): _140.RequestPrepareProposal; - toProto(message: _140.RequestPrepareProposal): Uint8Array; - toProtoMsg(message: _140.RequestPrepareProposal): _140.RequestPrepareProposalProtoMsg; + typeUrl: string; + encode(message: _141.RequestPrepareProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestPrepareProposal; + fromJSON(object: any): _141.RequestPrepareProposal; + toJSON(message: _141.RequestPrepareProposal): unknown; + fromPartial(object: Partial<_141.RequestPrepareProposal>): _141.RequestPrepareProposal; + fromAmino(object: _141.RequestPrepareProposalAmino): _141.RequestPrepareProposal; + toAmino(message: _141.RequestPrepareProposal): _141.RequestPrepareProposalAmino; + fromAminoMsg(object: _141.RequestPrepareProposalAminoMsg): _141.RequestPrepareProposal; + fromProtoMsg(message: _141.RequestPrepareProposalProtoMsg): _141.RequestPrepareProposal; + toProto(message: _141.RequestPrepareProposal): Uint8Array; + toProtoMsg(message: _141.RequestPrepareProposal): _141.RequestPrepareProposalProtoMsg; }; RequestProcessProposal: { - encode(message: _140.RequestProcessProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.RequestProcessProposal; - fromJSON(object: any): _140.RequestProcessProposal; - toJSON(message: _140.RequestProcessProposal): unknown; - fromPartial(object: Partial<_140.RequestProcessProposal>): _140.RequestProcessProposal; - fromAmino(object: _140.RequestProcessProposalAmino): _140.RequestProcessProposal; - toAmino(message: _140.RequestProcessProposal): _140.RequestProcessProposalAmino; - fromAminoMsg(object: _140.RequestProcessProposalAminoMsg): _140.RequestProcessProposal; - fromProtoMsg(message: _140.RequestProcessProposalProtoMsg): _140.RequestProcessProposal; - toProto(message: _140.RequestProcessProposal): Uint8Array; - toProtoMsg(message: _140.RequestProcessProposal): _140.RequestProcessProposalProtoMsg; + typeUrl: string; + encode(message: _141.RequestProcessProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.RequestProcessProposal; + fromJSON(object: any): _141.RequestProcessProposal; + toJSON(message: _141.RequestProcessProposal): unknown; + fromPartial(object: Partial<_141.RequestProcessProposal>): _141.RequestProcessProposal; + fromAmino(object: _141.RequestProcessProposalAmino): _141.RequestProcessProposal; + toAmino(message: _141.RequestProcessProposal): _141.RequestProcessProposalAmino; + fromAminoMsg(object: _141.RequestProcessProposalAminoMsg): _141.RequestProcessProposal; + fromProtoMsg(message: _141.RequestProcessProposalProtoMsg): _141.RequestProcessProposal; + toProto(message: _141.RequestProcessProposal): Uint8Array; + toProtoMsg(message: _141.RequestProcessProposal): _141.RequestProcessProposalProtoMsg; }; Response: { - encode(message: _140.Response, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.Response; - fromJSON(object: any): _140.Response; - toJSON(message: _140.Response): unknown; - fromPartial(object: Partial<_140.Response>): _140.Response; - fromAmino(object: _140.ResponseAmino): _140.Response; - toAmino(message: _140.Response): _140.ResponseAmino; - fromAminoMsg(object: _140.ResponseAminoMsg): _140.Response; - fromProtoMsg(message: _140.ResponseProtoMsg): _140.Response; - toProto(message: _140.Response): Uint8Array; - toProtoMsg(message: _140.Response): _140.ResponseProtoMsg; + typeUrl: string; + encode(message: _141.Response, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.Response; + fromJSON(object: any): _141.Response; + toJSON(message: _141.Response): unknown; + fromPartial(object: Partial<_141.Response>): _141.Response; + fromAmino(object: _141.ResponseAmino): _141.Response; + toAmino(message: _141.Response): _141.ResponseAmino; + fromAminoMsg(object: _141.ResponseAminoMsg): _141.Response; + fromProtoMsg(message: _141.ResponseProtoMsg): _141.Response; + toProto(message: _141.Response): Uint8Array; + toProtoMsg(message: _141.Response): _141.ResponseProtoMsg; }; ResponseException: { - encode(message: _140.ResponseException, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseException; - fromJSON(object: any): _140.ResponseException; - toJSON(message: _140.ResponseException): unknown; - fromPartial(object: Partial<_140.ResponseException>): _140.ResponseException; - fromAmino(object: _140.ResponseExceptionAmino): _140.ResponseException; - toAmino(message: _140.ResponseException): _140.ResponseExceptionAmino; - fromAminoMsg(object: _140.ResponseExceptionAminoMsg): _140.ResponseException; - fromProtoMsg(message: _140.ResponseExceptionProtoMsg): _140.ResponseException; - toProto(message: _140.ResponseException): Uint8Array; - toProtoMsg(message: _140.ResponseException): _140.ResponseExceptionProtoMsg; + typeUrl: string; + encode(message: _141.ResponseException, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseException; + fromJSON(object: any): _141.ResponseException; + toJSON(message: _141.ResponseException): unknown; + fromPartial(object: Partial<_141.ResponseException>): _141.ResponseException; + fromAmino(object: _141.ResponseExceptionAmino): _141.ResponseException; + toAmino(message: _141.ResponseException): _141.ResponseExceptionAmino; + fromAminoMsg(object: _141.ResponseExceptionAminoMsg): _141.ResponseException; + fromProtoMsg(message: _141.ResponseExceptionProtoMsg): _141.ResponseException; + toProto(message: _141.ResponseException): Uint8Array; + toProtoMsg(message: _141.ResponseException): _141.ResponseExceptionProtoMsg; }; ResponseEcho: { - encode(message: _140.ResponseEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseEcho; - fromJSON(object: any): _140.ResponseEcho; - toJSON(message: _140.ResponseEcho): unknown; - fromPartial(object: Partial<_140.ResponseEcho>): _140.ResponseEcho; - fromAmino(object: _140.ResponseEchoAmino): _140.ResponseEcho; - toAmino(message: _140.ResponseEcho): _140.ResponseEchoAmino; - fromAminoMsg(object: _140.ResponseEchoAminoMsg): _140.ResponseEcho; - fromProtoMsg(message: _140.ResponseEchoProtoMsg): _140.ResponseEcho; - toProto(message: _140.ResponseEcho): Uint8Array; - toProtoMsg(message: _140.ResponseEcho): _140.ResponseEchoProtoMsg; + typeUrl: string; + encode(message: _141.ResponseEcho, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseEcho; + fromJSON(object: any): _141.ResponseEcho; + toJSON(message: _141.ResponseEcho): unknown; + fromPartial(object: Partial<_141.ResponseEcho>): _141.ResponseEcho; + fromAmino(object: _141.ResponseEchoAmino): _141.ResponseEcho; + toAmino(message: _141.ResponseEcho): _141.ResponseEchoAmino; + fromAminoMsg(object: _141.ResponseEchoAminoMsg): _141.ResponseEcho; + fromProtoMsg(message: _141.ResponseEchoProtoMsg): _141.ResponseEcho; + toProto(message: _141.ResponseEcho): Uint8Array; + toProtoMsg(message: _141.ResponseEcho): _141.ResponseEchoProtoMsg; }; ResponseFlush: { - encode(_: _140.ResponseFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseFlush; - fromJSON(_: any): _140.ResponseFlush; - toJSON(_: _140.ResponseFlush): unknown; - fromPartial(_: Partial<_140.ResponseFlush>): _140.ResponseFlush; - fromAmino(_: _140.ResponseFlushAmino): _140.ResponseFlush; - toAmino(_: _140.ResponseFlush): _140.ResponseFlushAmino; - fromAminoMsg(object: _140.ResponseFlushAminoMsg): _140.ResponseFlush; - fromProtoMsg(message: _140.ResponseFlushProtoMsg): _140.ResponseFlush; - toProto(message: _140.ResponseFlush): Uint8Array; - toProtoMsg(message: _140.ResponseFlush): _140.ResponseFlushProtoMsg; + typeUrl: string; + encode(_: _141.ResponseFlush, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseFlush; + fromJSON(_: any): _141.ResponseFlush; + toJSON(_: _141.ResponseFlush): unknown; + fromPartial(_: Partial<_141.ResponseFlush>): _141.ResponseFlush; + fromAmino(_: _141.ResponseFlushAmino): _141.ResponseFlush; + toAmino(_: _141.ResponseFlush): _141.ResponseFlushAmino; + fromAminoMsg(object: _141.ResponseFlushAminoMsg): _141.ResponseFlush; + fromProtoMsg(message: _141.ResponseFlushProtoMsg): _141.ResponseFlush; + toProto(message: _141.ResponseFlush): Uint8Array; + toProtoMsg(message: _141.ResponseFlush): _141.ResponseFlushProtoMsg; }; ResponseInfo: { - encode(message: _140.ResponseInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseInfo; - fromJSON(object: any): _140.ResponseInfo; - toJSON(message: _140.ResponseInfo): unknown; - fromPartial(object: Partial<_140.ResponseInfo>): _140.ResponseInfo; - fromAmino(object: _140.ResponseInfoAmino): _140.ResponseInfo; - toAmino(message: _140.ResponseInfo): _140.ResponseInfoAmino; - fromAminoMsg(object: _140.ResponseInfoAminoMsg): _140.ResponseInfo; - fromProtoMsg(message: _140.ResponseInfoProtoMsg): _140.ResponseInfo; - toProto(message: _140.ResponseInfo): Uint8Array; - toProtoMsg(message: _140.ResponseInfo): _140.ResponseInfoProtoMsg; + typeUrl: string; + encode(message: _141.ResponseInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseInfo; + fromJSON(object: any): _141.ResponseInfo; + toJSON(message: _141.ResponseInfo): unknown; + fromPartial(object: Partial<_141.ResponseInfo>): _141.ResponseInfo; + fromAmino(object: _141.ResponseInfoAmino): _141.ResponseInfo; + toAmino(message: _141.ResponseInfo): _141.ResponseInfoAmino; + fromAminoMsg(object: _141.ResponseInfoAminoMsg): _141.ResponseInfo; + fromProtoMsg(message: _141.ResponseInfoProtoMsg): _141.ResponseInfo; + toProto(message: _141.ResponseInfo): Uint8Array; + toProtoMsg(message: _141.ResponseInfo): _141.ResponseInfoProtoMsg; }; ResponseInitChain: { - encode(message: _140.ResponseInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseInitChain; - fromJSON(object: any): _140.ResponseInitChain; - toJSON(message: _140.ResponseInitChain): unknown; - fromPartial(object: Partial<_140.ResponseInitChain>): _140.ResponseInitChain; - fromAmino(object: _140.ResponseInitChainAmino): _140.ResponseInitChain; - toAmino(message: _140.ResponseInitChain): _140.ResponseInitChainAmino; - fromAminoMsg(object: _140.ResponseInitChainAminoMsg): _140.ResponseInitChain; - fromProtoMsg(message: _140.ResponseInitChainProtoMsg): _140.ResponseInitChain; - toProto(message: _140.ResponseInitChain): Uint8Array; - toProtoMsg(message: _140.ResponseInitChain): _140.ResponseInitChainProtoMsg; + typeUrl: string; + encode(message: _141.ResponseInitChain, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseInitChain; + fromJSON(object: any): _141.ResponseInitChain; + toJSON(message: _141.ResponseInitChain): unknown; + fromPartial(object: Partial<_141.ResponseInitChain>): _141.ResponseInitChain; + fromAmino(object: _141.ResponseInitChainAmino): _141.ResponseInitChain; + toAmino(message: _141.ResponseInitChain): _141.ResponseInitChainAmino; + fromAminoMsg(object: _141.ResponseInitChainAminoMsg): _141.ResponseInitChain; + fromProtoMsg(message: _141.ResponseInitChainProtoMsg): _141.ResponseInitChain; + toProto(message: _141.ResponseInitChain): Uint8Array; + toProtoMsg(message: _141.ResponseInitChain): _141.ResponseInitChainProtoMsg; }; ResponseQuery: { - encode(message: _140.ResponseQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseQuery; - fromJSON(object: any): _140.ResponseQuery; - toJSON(message: _140.ResponseQuery): unknown; - fromPartial(object: Partial<_140.ResponseQuery>): _140.ResponseQuery; - fromAmino(object: _140.ResponseQueryAmino): _140.ResponseQuery; - toAmino(message: _140.ResponseQuery): _140.ResponseQueryAmino; - fromAminoMsg(object: _140.ResponseQueryAminoMsg): _140.ResponseQuery; - fromProtoMsg(message: _140.ResponseQueryProtoMsg): _140.ResponseQuery; - toProto(message: _140.ResponseQuery): Uint8Array; - toProtoMsg(message: _140.ResponseQuery): _140.ResponseQueryProtoMsg; + typeUrl: string; + encode(message: _141.ResponseQuery, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseQuery; + fromJSON(object: any): _141.ResponseQuery; + toJSON(message: _141.ResponseQuery): unknown; + fromPartial(object: Partial<_141.ResponseQuery>): _141.ResponseQuery; + fromAmino(object: _141.ResponseQueryAmino): _141.ResponseQuery; + toAmino(message: _141.ResponseQuery): _141.ResponseQueryAmino; + fromAminoMsg(object: _141.ResponseQueryAminoMsg): _141.ResponseQuery; + fromProtoMsg(message: _141.ResponseQueryProtoMsg): _141.ResponseQuery; + toProto(message: _141.ResponseQuery): Uint8Array; + toProtoMsg(message: _141.ResponseQuery): _141.ResponseQueryProtoMsg; }; ResponseBeginBlock: { - encode(message: _140.ResponseBeginBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseBeginBlock; - fromJSON(object: any): _140.ResponseBeginBlock; - toJSON(message: _140.ResponseBeginBlock): unknown; - fromPartial(object: Partial<_140.ResponseBeginBlock>): _140.ResponseBeginBlock; - fromAmino(object: _140.ResponseBeginBlockAmino): _140.ResponseBeginBlock; - toAmino(message: _140.ResponseBeginBlock): _140.ResponseBeginBlockAmino; - fromAminoMsg(object: _140.ResponseBeginBlockAminoMsg): _140.ResponseBeginBlock; - fromProtoMsg(message: _140.ResponseBeginBlockProtoMsg): _140.ResponseBeginBlock; - toProto(message: _140.ResponseBeginBlock): Uint8Array; - toProtoMsg(message: _140.ResponseBeginBlock): _140.ResponseBeginBlockProtoMsg; + typeUrl: string; + encode(message: _141.ResponseBeginBlock, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseBeginBlock; + fromJSON(object: any): _141.ResponseBeginBlock; + toJSON(message: _141.ResponseBeginBlock): unknown; + fromPartial(object: Partial<_141.ResponseBeginBlock>): _141.ResponseBeginBlock; + fromAmino(object: _141.ResponseBeginBlockAmino): _141.ResponseBeginBlock; + toAmino(message: _141.ResponseBeginBlock): _141.ResponseBeginBlockAmino; + fromAminoMsg(object: _141.ResponseBeginBlockAminoMsg): _141.ResponseBeginBlock; + fromProtoMsg(message: _141.ResponseBeginBlockProtoMsg): _141.ResponseBeginBlock; + toProto(message: _141.ResponseBeginBlock): Uint8Array; + toProtoMsg(message: _141.ResponseBeginBlock): _141.ResponseBeginBlockProtoMsg; }; ResponseCheckTx: { - encode(message: _140.ResponseCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseCheckTx; - fromJSON(object: any): _140.ResponseCheckTx; - toJSON(message: _140.ResponseCheckTx): unknown; - fromPartial(object: Partial<_140.ResponseCheckTx>): _140.ResponseCheckTx; - fromAmino(object: _140.ResponseCheckTxAmino): _140.ResponseCheckTx; - toAmino(message: _140.ResponseCheckTx): _140.ResponseCheckTxAmino; - fromAminoMsg(object: _140.ResponseCheckTxAminoMsg): _140.ResponseCheckTx; - fromProtoMsg(message: _140.ResponseCheckTxProtoMsg): _140.ResponseCheckTx; - toProto(message: _140.ResponseCheckTx): Uint8Array; - toProtoMsg(message: _140.ResponseCheckTx): _140.ResponseCheckTxProtoMsg; + typeUrl: string; + encode(message: _141.ResponseCheckTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseCheckTx; + fromJSON(object: any): _141.ResponseCheckTx; + toJSON(message: _141.ResponseCheckTx): unknown; + fromPartial(object: Partial<_141.ResponseCheckTx>): _141.ResponseCheckTx; + fromAmino(object: _141.ResponseCheckTxAmino): _141.ResponseCheckTx; + toAmino(message: _141.ResponseCheckTx): _141.ResponseCheckTxAmino; + fromAminoMsg(object: _141.ResponseCheckTxAminoMsg): _141.ResponseCheckTx; + fromProtoMsg(message: _141.ResponseCheckTxProtoMsg): _141.ResponseCheckTx; + toProto(message: _141.ResponseCheckTx): Uint8Array; + toProtoMsg(message: _141.ResponseCheckTx): _141.ResponseCheckTxProtoMsg; }; ResponseDeliverTx: { - encode(message: _140.ResponseDeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseDeliverTx; - fromJSON(object: any): _140.ResponseDeliverTx; - toJSON(message: _140.ResponseDeliverTx): unknown; - fromPartial(object: Partial<_140.ResponseDeliverTx>): _140.ResponseDeliverTx; - fromAmino(object: _140.ResponseDeliverTxAmino): _140.ResponseDeliverTx; - toAmino(message: _140.ResponseDeliverTx): _140.ResponseDeliverTxAmino; - fromAminoMsg(object: _140.ResponseDeliverTxAminoMsg): _140.ResponseDeliverTx; - fromProtoMsg(message: _140.ResponseDeliverTxProtoMsg): _140.ResponseDeliverTx; - toProto(message: _140.ResponseDeliverTx): Uint8Array; - toProtoMsg(message: _140.ResponseDeliverTx): _140.ResponseDeliverTxProtoMsg; + typeUrl: string; + encode(message: _141.ResponseDeliverTx, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseDeliverTx; + fromJSON(object: any): _141.ResponseDeliverTx; + toJSON(message: _141.ResponseDeliverTx): unknown; + fromPartial(object: Partial<_141.ResponseDeliverTx>): _141.ResponseDeliverTx; + fromAmino(object: _141.ResponseDeliverTxAmino): _141.ResponseDeliverTx; + toAmino(message: _141.ResponseDeliverTx): _141.ResponseDeliverTxAmino; + fromAminoMsg(object: _141.ResponseDeliverTxAminoMsg): _141.ResponseDeliverTx; + fromProtoMsg(message: _141.ResponseDeliverTxProtoMsg): _141.ResponseDeliverTx; + toProto(message: _141.ResponseDeliverTx): Uint8Array; + toProtoMsg(message: _141.ResponseDeliverTx): _141.ResponseDeliverTxProtoMsg; }; ResponseEndBlock: { - encode(message: _140.ResponseEndBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseEndBlock; - fromJSON(object: any): _140.ResponseEndBlock; - toJSON(message: _140.ResponseEndBlock): unknown; - fromPartial(object: Partial<_140.ResponseEndBlock>): _140.ResponseEndBlock; - fromAmino(object: _140.ResponseEndBlockAmino): _140.ResponseEndBlock; - toAmino(message: _140.ResponseEndBlock): _140.ResponseEndBlockAmino; - fromAminoMsg(object: _140.ResponseEndBlockAminoMsg): _140.ResponseEndBlock; - fromProtoMsg(message: _140.ResponseEndBlockProtoMsg): _140.ResponseEndBlock; - toProto(message: _140.ResponseEndBlock): Uint8Array; - toProtoMsg(message: _140.ResponseEndBlock): _140.ResponseEndBlockProtoMsg; + typeUrl: string; + encode(message: _141.ResponseEndBlock, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseEndBlock; + fromJSON(object: any): _141.ResponseEndBlock; + toJSON(message: _141.ResponseEndBlock): unknown; + fromPartial(object: Partial<_141.ResponseEndBlock>): _141.ResponseEndBlock; + fromAmino(object: _141.ResponseEndBlockAmino): _141.ResponseEndBlock; + toAmino(message: _141.ResponseEndBlock): _141.ResponseEndBlockAmino; + fromAminoMsg(object: _141.ResponseEndBlockAminoMsg): _141.ResponseEndBlock; + fromProtoMsg(message: _141.ResponseEndBlockProtoMsg): _141.ResponseEndBlock; + toProto(message: _141.ResponseEndBlock): Uint8Array; + toProtoMsg(message: _141.ResponseEndBlock): _141.ResponseEndBlockProtoMsg; }; ResponseCommit: { - encode(message: _140.ResponseCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseCommit; - fromJSON(object: any): _140.ResponseCommit; - toJSON(message: _140.ResponseCommit): unknown; - fromPartial(object: Partial<_140.ResponseCommit>): _140.ResponseCommit; - fromAmino(object: _140.ResponseCommitAmino): _140.ResponseCommit; - toAmino(message: _140.ResponseCommit): _140.ResponseCommitAmino; - fromAminoMsg(object: _140.ResponseCommitAminoMsg): _140.ResponseCommit; - fromProtoMsg(message: _140.ResponseCommitProtoMsg): _140.ResponseCommit; - toProto(message: _140.ResponseCommit): Uint8Array; - toProtoMsg(message: _140.ResponseCommit): _140.ResponseCommitProtoMsg; + typeUrl: string; + encode(message: _141.ResponseCommit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseCommit; + fromJSON(object: any): _141.ResponseCommit; + toJSON(message: _141.ResponseCommit): unknown; + fromPartial(object: Partial<_141.ResponseCommit>): _141.ResponseCommit; + fromAmino(object: _141.ResponseCommitAmino): _141.ResponseCommit; + toAmino(message: _141.ResponseCommit): _141.ResponseCommitAmino; + fromAminoMsg(object: _141.ResponseCommitAminoMsg): _141.ResponseCommit; + fromProtoMsg(message: _141.ResponseCommitProtoMsg): _141.ResponseCommit; + toProto(message: _141.ResponseCommit): Uint8Array; + toProtoMsg(message: _141.ResponseCommit): _141.ResponseCommitProtoMsg; }; ResponseListSnapshots: { - encode(message: _140.ResponseListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseListSnapshots; - fromJSON(object: any): _140.ResponseListSnapshots; - toJSON(message: _140.ResponseListSnapshots): unknown; - fromPartial(object: Partial<_140.ResponseListSnapshots>): _140.ResponseListSnapshots; - fromAmino(object: _140.ResponseListSnapshotsAmino): _140.ResponseListSnapshots; - toAmino(message: _140.ResponseListSnapshots): _140.ResponseListSnapshotsAmino; - fromAminoMsg(object: _140.ResponseListSnapshotsAminoMsg): _140.ResponseListSnapshots; - fromProtoMsg(message: _140.ResponseListSnapshotsProtoMsg): _140.ResponseListSnapshots; - toProto(message: _140.ResponseListSnapshots): Uint8Array; - toProtoMsg(message: _140.ResponseListSnapshots): _140.ResponseListSnapshotsProtoMsg; + typeUrl: string; + encode(message: _141.ResponseListSnapshots, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseListSnapshots; + fromJSON(object: any): _141.ResponseListSnapshots; + toJSON(message: _141.ResponseListSnapshots): unknown; + fromPartial(object: Partial<_141.ResponseListSnapshots>): _141.ResponseListSnapshots; + fromAmino(object: _141.ResponseListSnapshotsAmino): _141.ResponseListSnapshots; + toAmino(message: _141.ResponseListSnapshots): _141.ResponseListSnapshotsAmino; + fromAminoMsg(object: _141.ResponseListSnapshotsAminoMsg): _141.ResponseListSnapshots; + fromProtoMsg(message: _141.ResponseListSnapshotsProtoMsg): _141.ResponseListSnapshots; + toProto(message: _141.ResponseListSnapshots): Uint8Array; + toProtoMsg(message: _141.ResponseListSnapshots): _141.ResponseListSnapshotsProtoMsg; }; ResponseOfferSnapshot: { - encode(message: _140.ResponseOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseOfferSnapshot; - fromJSON(object: any): _140.ResponseOfferSnapshot; - toJSON(message: _140.ResponseOfferSnapshot): unknown; - fromPartial(object: Partial<_140.ResponseOfferSnapshot>): _140.ResponseOfferSnapshot; - fromAmino(object: _140.ResponseOfferSnapshotAmino): _140.ResponseOfferSnapshot; - toAmino(message: _140.ResponseOfferSnapshot): _140.ResponseOfferSnapshotAmino; - fromAminoMsg(object: _140.ResponseOfferSnapshotAminoMsg): _140.ResponseOfferSnapshot; - fromProtoMsg(message: _140.ResponseOfferSnapshotProtoMsg): _140.ResponseOfferSnapshot; - toProto(message: _140.ResponseOfferSnapshot): Uint8Array; - toProtoMsg(message: _140.ResponseOfferSnapshot): _140.ResponseOfferSnapshotProtoMsg; + typeUrl: string; + encode(message: _141.ResponseOfferSnapshot, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseOfferSnapshot; + fromJSON(object: any): _141.ResponseOfferSnapshot; + toJSON(message: _141.ResponseOfferSnapshot): unknown; + fromPartial(object: Partial<_141.ResponseOfferSnapshot>): _141.ResponseOfferSnapshot; + fromAmino(object: _141.ResponseOfferSnapshotAmino): _141.ResponseOfferSnapshot; + toAmino(message: _141.ResponseOfferSnapshot): _141.ResponseOfferSnapshotAmino; + fromAminoMsg(object: _141.ResponseOfferSnapshotAminoMsg): _141.ResponseOfferSnapshot; + fromProtoMsg(message: _141.ResponseOfferSnapshotProtoMsg): _141.ResponseOfferSnapshot; + toProto(message: _141.ResponseOfferSnapshot): Uint8Array; + toProtoMsg(message: _141.ResponseOfferSnapshot): _141.ResponseOfferSnapshotProtoMsg; }; ResponseLoadSnapshotChunk: { - encode(message: _140.ResponseLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseLoadSnapshotChunk; - fromJSON(object: any): _140.ResponseLoadSnapshotChunk; - toJSON(message: _140.ResponseLoadSnapshotChunk): unknown; - fromPartial(object: Partial<_140.ResponseLoadSnapshotChunk>): _140.ResponseLoadSnapshotChunk; - fromAmino(object: _140.ResponseLoadSnapshotChunkAmino): _140.ResponseLoadSnapshotChunk; - toAmino(message: _140.ResponseLoadSnapshotChunk): _140.ResponseLoadSnapshotChunkAmino; - fromAminoMsg(object: _140.ResponseLoadSnapshotChunkAminoMsg): _140.ResponseLoadSnapshotChunk; - fromProtoMsg(message: _140.ResponseLoadSnapshotChunkProtoMsg): _140.ResponseLoadSnapshotChunk; - toProto(message: _140.ResponseLoadSnapshotChunk): Uint8Array; - toProtoMsg(message: _140.ResponseLoadSnapshotChunk): _140.ResponseLoadSnapshotChunkProtoMsg; + typeUrl: string; + encode(message: _141.ResponseLoadSnapshotChunk, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseLoadSnapshotChunk; + fromJSON(object: any): _141.ResponseLoadSnapshotChunk; + toJSON(message: _141.ResponseLoadSnapshotChunk): unknown; + fromPartial(object: Partial<_141.ResponseLoadSnapshotChunk>): _141.ResponseLoadSnapshotChunk; + fromAmino(object: _141.ResponseLoadSnapshotChunkAmino): _141.ResponseLoadSnapshotChunk; + toAmino(message: _141.ResponseLoadSnapshotChunk): _141.ResponseLoadSnapshotChunkAmino; + fromAminoMsg(object: _141.ResponseLoadSnapshotChunkAminoMsg): _141.ResponseLoadSnapshotChunk; + fromProtoMsg(message: _141.ResponseLoadSnapshotChunkProtoMsg): _141.ResponseLoadSnapshotChunk; + toProto(message: _141.ResponseLoadSnapshotChunk): Uint8Array; + toProtoMsg(message: _141.ResponseLoadSnapshotChunk): _141.ResponseLoadSnapshotChunkProtoMsg; }; ResponseApplySnapshotChunk: { - encode(message: _140.ResponseApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseApplySnapshotChunk; - fromJSON(object: any): _140.ResponseApplySnapshotChunk; - toJSON(message: _140.ResponseApplySnapshotChunk): unknown; - fromPartial(object: Partial<_140.ResponseApplySnapshotChunk>): _140.ResponseApplySnapshotChunk; - fromAmino(object: _140.ResponseApplySnapshotChunkAmino): _140.ResponseApplySnapshotChunk; - toAmino(message: _140.ResponseApplySnapshotChunk): _140.ResponseApplySnapshotChunkAmino; - fromAminoMsg(object: _140.ResponseApplySnapshotChunkAminoMsg): _140.ResponseApplySnapshotChunk; - fromProtoMsg(message: _140.ResponseApplySnapshotChunkProtoMsg): _140.ResponseApplySnapshotChunk; - toProto(message: _140.ResponseApplySnapshotChunk): Uint8Array; - toProtoMsg(message: _140.ResponseApplySnapshotChunk): _140.ResponseApplySnapshotChunkProtoMsg; + typeUrl: string; + encode(message: _141.ResponseApplySnapshotChunk, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseApplySnapshotChunk; + fromJSON(object: any): _141.ResponseApplySnapshotChunk; + toJSON(message: _141.ResponseApplySnapshotChunk): unknown; + fromPartial(object: Partial<_141.ResponseApplySnapshotChunk>): _141.ResponseApplySnapshotChunk; + fromAmino(object: _141.ResponseApplySnapshotChunkAmino): _141.ResponseApplySnapshotChunk; + toAmino(message: _141.ResponseApplySnapshotChunk): _141.ResponseApplySnapshotChunkAmino; + fromAminoMsg(object: _141.ResponseApplySnapshotChunkAminoMsg): _141.ResponseApplySnapshotChunk; + fromProtoMsg(message: _141.ResponseApplySnapshotChunkProtoMsg): _141.ResponseApplySnapshotChunk; + toProto(message: _141.ResponseApplySnapshotChunk): Uint8Array; + toProtoMsg(message: _141.ResponseApplySnapshotChunk): _141.ResponseApplySnapshotChunkProtoMsg; }; ResponsePrepareProposal: { - encode(message: _140.ResponsePrepareProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponsePrepareProposal; - fromJSON(object: any): _140.ResponsePrepareProposal; - toJSON(message: _140.ResponsePrepareProposal): unknown; - fromPartial(object: Partial<_140.ResponsePrepareProposal>): _140.ResponsePrepareProposal; - fromAmino(object: _140.ResponsePrepareProposalAmino): _140.ResponsePrepareProposal; - toAmino(message: _140.ResponsePrepareProposal): _140.ResponsePrepareProposalAmino; - fromAminoMsg(object: _140.ResponsePrepareProposalAminoMsg): _140.ResponsePrepareProposal; - fromProtoMsg(message: _140.ResponsePrepareProposalProtoMsg): _140.ResponsePrepareProposal; - toProto(message: _140.ResponsePrepareProposal): Uint8Array; - toProtoMsg(message: _140.ResponsePrepareProposal): _140.ResponsePrepareProposalProtoMsg; + typeUrl: string; + encode(message: _141.ResponsePrepareProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponsePrepareProposal; + fromJSON(object: any): _141.ResponsePrepareProposal; + toJSON(message: _141.ResponsePrepareProposal): unknown; + fromPartial(object: Partial<_141.ResponsePrepareProposal>): _141.ResponsePrepareProposal; + fromAmino(object: _141.ResponsePrepareProposalAmino): _141.ResponsePrepareProposal; + toAmino(message: _141.ResponsePrepareProposal): _141.ResponsePrepareProposalAmino; + fromAminoMsg(object: _141.ResponsePrepareProposalAminoMsg): _141.ResponsePrepareProposal; + fromProtoMsg(message: _141.ResponsePrepareProposalProtoMsg): _141.ResponsePrepareProposal; + toProto(message: _141.ResponsePrepareProposal): Uint8Array; + toProtoMsg(message: _141.ResponsePrepareProposal): _141.ResponsePrepareProposalProtoMsg; }; ResponseProcessProposal: { - encode(message: _140.ResponseProcessProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ResponseProcessProposal; - fromJSON(object: any): _140.ResponseProcessProposal; - toJSON(message: _140.ResponseProcessProposal): unknown; - fromPartial(object: Partial<_140.ResponseProcessProposal>): _140.ResponseProcessProposal; - fromAmino(object: _140.ResponseProcessProposalAmino): _140.ResponseProcessProposal; - toAmino(message: _140.ResponseProcessProposal): _140.ResponseProcessProposalAmino; - fromAminoMsg(object: _140.ResponseProcessProposalAminoMsg): _140.ResponseProcessProposal; - fromProtoMsg(message: _140.ResponseProcessProposalProtoMsg): _140.ResponseProcessProposal; - toProto(message: _140.ResponseProcessProposal): Uint8Array; - toProtoMsg(message: _140.ResponseProcessProposal): _140.ResponseProcessProposalProtoMsg; + typeUrl: string; + encode(message: _141.ResponseProcessProposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ResponseProcessProposal; + fromJSON(object: any): _141.ResponseProcessProposal; + toJSON(message: _141.ResponseProcessProposal): unknown; + fromPartial(object: Partial<_141.ResponseProcessProposal>): _141.ResponseProcessProposal; + fromAmino(object: _141.ResponseProcessProposalAmino): _141.ResponseProcessProposal; + toAmino(message: _141.ResponseProcessProposal): _141.ResponseProcessProposalAmino; + fromAminoMsg(object: _141.ResponseProcessProposalAminoMsg): _141.ResponseProcessProposal; + fromProtoMsg(message: _141.ResponseProcessProposalProtoMsg): _141.ResponseProcessProposal; + toProto(message: _141.ResponseProcessProposal): Uint8Array; + toProtoMsg(message: _141.ResponseProcessProposal): _141.ResponseProcessProposalProtoMsg; }; CommitInfo: { - encode(message: _140.CommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.CommitInfo; - fromJSON(object: any): _140.CommitInfo; - toJSON(message: _140.CommitInfo): unknown; - fromPartial(object: Partial<_140.CommitInfo>): _140.CommitInfo; - fromAmino(object: _140.CommitInfoAmino): _140.CommitInfo; - toAmino(message: _140.CommitInfo): _140.CommitInfoAmino; - fromAminoMsg(object: _140.CommitInfoAminoMsg): _140.CommitInfo; - fromProtoMsg(message: _140.CommitInfoProtoMsg): _140.CommitInfo; - toProto(message: _140.CommitInfo): Uint8Array; - toProtoMsg(message: _140.CommitInfo): _140.CommitInfoProtoMsg; + typeUrl: string; + encode(message: _141.CommitInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.CommitInfo; + fromJSON(object: any): _141.CommitInfo; + toJSON(message: _141.CommitInfo): unknown; + fromPartial(object: Partial<_141.CommitInfo>): _141.CommitInfo; + fromAmino(object: _141.CommitInfoAmino): _141.CommitInfo; + toAmino(message: _141.CommitInfo): _141.CommitInfoAmino; + fromAminoMsg(object: _141.CommitInfoAminoMsg): _141.CommitInfo; + fromProtoMsg(message: _141.CommitInfoProtoMsg): _141.CommitInfo; + toProto(message: _141.CommitInfo): Uint8Array; + toProtoMsg(message: _141.CommitInfo): _141.CommitInfoProtoMsg; }; ExtendedCommitInfo: { - encode(message: _140.ExtendedCommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ExtendedCommitInfo; - fromJSON(object: any): _140.ExtendedCommitInfo; - toJSON(message: _140.ExtendedCommitInfo): unknown; - fromPartial(object: Partial<_140.ExtendedCommitInfo>): _140.ExtendedCommitInfo; - fromAmino(object: _140.ExtendedCommitInfoAmino): _140.ExtendedCommitInfo; - toAmino(message: _140.ExtendedCommitInfo): _140.ExtendedCommitInfoAmino; - fromAminoMsg(object: _140.ExtendedCommitInfoAminoMsg): _140.ExtendedCommitInfo; - fromProtoMsg(message: _140.ExtendedCommitInfoProtoMsg): _140.ExtendedCommitInfo; - toProto(message: _140.ExtendedCommitInfo): Uint8Array; - toProtoMsg(message: _140.ExtendedCommitInfo): _140.ExtendedCommitInfoProtoMsg; + typeUrl: string; + encode(message: _141.ExtendedCommitInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ExtendedCommitInfo; + fromJSON(object: any): _141.ExtendedCommitInfo; + toJSON(message: _141.ExtendedCommitInfo): unknown; + fromPartial(object: Partial<_141.ExtendedCommitInfo>): _141.ExtendedCommitInfo; + fromAmino(object: _141.ExtendedCommitInfoAmino): _141.ExtendedCommitInfo; + toAmino(message: _141.ExtendedCommitInfo): _141.ExtendedCommitInfoAmino; + fromAminoMsg(object: _141.ExtendedCommitInfoAminoMsg): _141.ExtendedCommitInfo; + fromProtoMsg(message: _141.ExtendedCommitInfoProtoMsg): _141.ExtendedCommitInfo; + toProto(message: _141.ExtendedCommitInfo): Uint8Array; + toProtoMsg(message: _141.ExtendedCommitInfo): _141.ExtendedCommitInfoProtoMsg; }; Event: { - encode(message: _140.Event, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.Event; - fromJSON(object: any): _140.Event; - toJSON(message: _140.Event): unknown; - fromPartial(object: Partial<_140.Event>): _140.Event; - fromAmino(object: _140.EventAmino): _140.Event; - toAmino(message: _140.Event): _140.EventAmino; - fromAminoMsg(object: _140.EventAminoMsg): _140.Event; - fromProtoMsg(message: _140.EventProtoMsg): _140.Event; - toProto(message: _140.Event): Uint8Array; - toProtoMsg(message: _140.Event): _140.EventProtoMsg; + typeUrl: string; + encode(message: _141.Event, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.Event; + fromJSON(object: any): _141.Event; + toJSON(message: _141.Event): unknown; + fromPartial(object: Partial<_141.Event>): _141.Event; + fromAmino(object: _141.EventAmino): _141.Event; + toAmino(message: _141.Event): _141.EventAmino; + fromAminoMsg(object: _141.EventAminoMsg): _141.Event; + fromProtoMsg(message: _141.EventProtoMsg): _141.Event; + toProto(message: _141.Event): Uint8Array; + toProtoMsg(message: _141.Event): _141.EventProtoMsg; }; EventAttribute: { - encode(message: _140.EventAttribute, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.EventAttribute; - fromJSON(object: any): _140.EventAttribute; - toJSON(message: _140.EventAttribute): unknown; - fromPartial(object: Partial<_140.EventAttribute>): _140.EventAttribute; - fromAmino(object: _140.EventAttributeAmino): _140.EventAttribute; - toAmino(message: _140.EventAttribute): _140.EventAttributeAmino; - fromAminoMsg(object: _140.EventAttributeAminoMsg): _140.EventAttribute; - fromProtoMsg(message: _140.EventAttributeProtoMsg): _140.EventAttribute; - toProto(message: _140.EventAttribute): Uint8Array; - toProtoMsg(message: _140.EventAttribute): _140.EventAttributeProtoMsg; + typeUrl: string; + encode(message: _141.EventAttribute, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.EventAttribute; + fromJSON(object: any): _141.EventAttribute; + toJSON(message: _141.EventAttribute): unknown; + fromPartial(object: Partial<_141.EventAttribute>): _141.EventAttribute; + fromAmino(object: _141.EventAttributeAmino): _141.EventAttribute; + toAmino(message: _141.EventAttribute): _141.EventAttributeAmino; + fromAminoMsg(object: _141.EventAttributeAminoMsg): _141.EventAttribute; + fromProtoMsg(message: _141.EventAttributeProtoMsg): _141.EventAttribute; + toProto(message: _141.EventAttribute): Uint8Array; + toProtoMsg(message: _141.EventAttribute): _141.EventAttributeProtoMsg; }; TxResult: { - encode(message: _140.TxResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.TxResult; - fromJSON(object: any): _140.TxResult; - toJSON(message: _140.TxResult): unknown; - fromPartial(object: Partial<_140.TxResult>): _140.TxResult; - fromAmino(object: _140.TxResultAmino): _140.TxResult; - toAmino(message: _140.TxResult): _140.TxResultAmino; - fromAminoMsg(object: _140.TxResultAminoMsg): _140.TxResult; - fromProtoMsg(message: _140.TxResultProtoMsg): _140.TxResult; - toProto(message: _140.TxResult): Uint8Array; - toProtoMsg(message: _140.TxResult): _140.TxResultProtoMsg; + typeUrl: string; + encode(message: _141.TxResult, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.TxResult; + fromJSON(object: any): _141.TxResult; + toJSON(message: _141.TxResult): unknown; + fromPartial(object: Partial<_141.TxResult>): _141.TxResult; + fromAmino(object: _141.TxResultAmino): _141.TxResult; + toAmino(message: _141.TxResult): _141.TxResultAmino; + fromAminoMsg(object: _141.TxResultAminoMsg): _141.TxResult; + fromProtoMsg(message: _141.TxResultProtoMsg): _141.TxResult; + toProto(message: _141.TxResult): Uint8Array; + toProtoMsg(message: _141.TxResult): _141.TxResultProtoMsg; }; Validator: { - encode(message: _140.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.Validator; - fromJSON(object: any): _140.Validator; - toJSON(message: _140.Validator): unknown; - fromPartial(object: Partial<_140.Validator>): _140.Validator; - fromAmino(object: _140.ValidatorAmino): _140.Validator; - toAmino(message: _140.Validator): _140.ValidatorAmino; - fromAminoMsg(object: _140.ValidatorAminoMsg): _140.Validator; - fromProtoMsg(message: _140.ValidatorProtoMsg): _140.Validator; - toProto(message: _140.Validator): Uint8Array; - toProtoMsg(message: _140.Validator): _140.ValidatorProtoMsg; + typeUrl: string; + encode(message: _141.Validator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.Validator; + fromJSON(object: any): _141.Validator; + toJSON(message: _141.Validator): unknown; + fromPartial(object: Partial<_141.Validator>): _141.Validator; + fromAmino(object: _141.ValidatorAmino): _141.Validator; + toAmino(message: _141.Validator): _141.ValidatorAmino; + fromAminoMsg(object: _141.ValidatorAminoMsg): _141.Validator; + fromProtoMsg(message: _141.ValidatorProtoMsg): _141.Validator; + toProto(message: _141.Validator): Uint8Array; + toProtoMsg(message: _141.Validator): _141.ValidatorProtoMsg; }; ValidatorUpdate: { - encode(message: _140.ValidatorUpdate, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ValidatorUpdate; - fromJSON(object: any): _140.ValidatorUpdate; - toJSON(message: _140.ValidatorUpdate): unknown; - fromPartial(object: Partial<_140.ValidatorUpdate>): _140.ValidatorUpdate; - fromAmino(object: _140.ValidatorUpdateAmino): _140.ValidatorUpdate; - toAmino(message: _140.ValidatorUpdate): _140.ValidatorUpdateAmino; - fromAminoMsg(object: _140.ValidatorUpdateAminoMsg): _140.ValidatorUpdate; - fromProtoMsg(message: _140.ValidatorUpdateProtoMsg): _140.ValidatorUpdate; - toProto(message: _140.ValidatorUpdate): Uint8Array; - toProtoMsg(message: _140.ValidatorUpdate): _140.ValidatorUpdateProtoMsg; + typeUrl: string; + encode(message: _141.ValidatorUpdate, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ValidatorUpdate; + fromJSON(object: any): _141.ValidatorUpdate; + toJSON(message: _141.ValidatorUpdate): unknown; + fromPartial(object: Partial<_141.ValidatorUpdate>): _141.ValidatorUpdate; + fromAmino(object: _141.ValidatorUpdateAmino): _141.ValidatorUpdate; + toAmino(message: _141.ValidatorUpdate): _141.ValidatorUpdateAmino; + fromAminoMsg(object: _141.ValidatorUpdateAminoMsg): _141.ValidatorUpdate; + fromProtoMsg(message: _141.ValidatorUpdateProtoMsg): _141.ValidatorUpdate; + toProto(message: _141.ValidatorUpdate): Uint8Array; + toProtoMsg(message: _141.ValidatorUpdate): _141.ValidatorUpdateProtoMsg; }; VoteInfo: { - encode(message: _140.VoteInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.VoteInfo; - fromJSON(object: any): _140.VoteInfo; - toJSON(message: _140.VoteInfo): unknown; - fromPartial(object: Partial<_140.VoteInfo>): _140.VoteInfo; - fromAmino(object: _140.VoteInfoAmino): _140.VoteInfo; - toAmino(message: _140.VoteInfo): _140.VoteInfoAmino; - fromAminoMsg(object: _140.VoteInfoAminoMsg): _140.VoteInfo; - fromProtoMsg(message: _140.VoteInfoProtoMsg): _140.VoteInfo; - toProto(message: _140.VoteInfo): Uint8Array; - toProtoMsg(message: _140.VoteInfo): _140.VoteInfoProtoMsg; + typeUrl: string; + encode(message: _141.VoteInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.VoteInfo; + fromJSON(object: any): _141.VoteInfo; + toJSON(message: _141.VoteInfo): unknown; + fromPartial(object: Partial<_141.VoteInfo>): _141.VoteInfo; + fromAmino(object: _141.VoteInfoAmino): _141.VoteInfo; + toAmino(message: _141.VoteInfo): _141.VoteInfoAmino; + fromAminoMsg(object: _141.VoteInfoAminoMsg): _141.VoteInfo; + fromProtoMsg(message: _141.VoteInfoProtoMsg): _141.VoteInfo; + toProto(message: _141.VoteInfo): Uint8Array; + toProtoMsg(message: _141.VoteInfo): _141.VoteInfoProtoMsg; }; ExtendedVoteInfo: { - encode(message: _140.ExtendedVoteInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.ExtendedVoteInfo; - fromJSON(object: any): _140.ExtendedVoteInfo; - toJSON(message: _140.ExtendedVoteInfo): unknown; - fromPartial(object: Partial<_140.ExtendedVoteInfo>): _140.ExtendedVoteInfo; - fromAmino(object: _140.ExtendedVoteInfoAmino): _140.ExtendedVoteInfo; - toAmino(message: _140.ExtendedVoteInfo): _140.ExtendedVoteInfoAmino; - fromAminoMsg(object: _140.ExtendedVoteInfoAminoMsg): _140.ExtendedVoteInfo; - fromProtoMsg(message: _140.ExtendedVoteInfoProtoMsg): _140.ExtendedVoteInfo; - toProto(message: _140.ExtendedVoteInfo): Uint8Array; - toProtoMsg(message: _140.ExtendedVoteInfo): _140.ExtendedVoteInfoProtoMsg; + typeUrl: string; + encode(message: _141.ExtendedVoteInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.ExtendedVoteInfo; + fromJSON(object: any): _141.ExtendedVoteInfo; + toJSON(message: _141.ExtendedVoteInfo): unknown; + fromPartial(object: Partial<_141.ExtendedVoteInfo>): _141.ExtendedVoteInfo; + fromAmino(object: _141.ExtendedVoteInfoAmino): _141.ExtendedVoteInfo; + toAmino(message: _141.ExtendedVoteInfo): _141.ExtendedVoteInfoAmino; + fromAminoMsg(object: _141.ExtendedVoteInfoAminoMsg): _141.ExtendedVoteInfo; + fromProtoMsg(message: _141.ExtendedVoteInfoProtoMsg): _141.ExtendedVoteInfo; + toProto(message: _141.ExtendedVoteInfo): Uint8Array; + toProtoMsg(message: _141.ExtendedVoteInfo): _141.ExtendedVoteInfoProtoMsg; }; Misbehavior: { - encode(message: _140.Misbehavior, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.Misbehavior; - fromJSON(object: any): _140.Misbehavior; - toJSON(message: _140.Misbehavior): unknown; - fromPartial(object: Partial<_140.Misbehavior>): _140.Misbehavior; - fromAmino(object: _140.MisbehaviorAmino): _140.Misbehavior; - toAmino(message: _140.Misbehavior): _140.MisbehaviorAmino; - fromAminoMsg(object: _140.MisbehaviorAminoMsg): _140.Misbehavior; - fromProtoMsg(message: _140.MisbehaviorProtoMsg): _140.Misbehavior; - toProto(message: _140.Misbehavior): Uint8Array; - toProtoMsg(message: _140.Misbehavior): _140.MisbehaviorProtoMsg; + typeUrl: string; + encode(message: _141.Misbehavior, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.Misbehavior; + fromJSON(object: any): _141.Misbehavior; + toJSON(message: _141.Misbehavior): unknown; + fromPartial(object: Partial<_141.Misbehavior>): _141.Misbehavior; + fromAmino(object: _141.MisbehaviorAmino): _141.Misbehavior; + toAmino(message: _141.Misbehavior): _141.MisbehaviorAmino; + fromAminoMsg(object: _141.MisbehaviorAminoMsg): _141.Misbehavior; + fromProtoMsg(message: _141.MisbehaviorProtoMsg): _141.Misbehavior; + toProto(message: _141.Misbehavior): Uint8Array; + toProtoMsg(message: _141.Misbehavior): _141.MisbehaviorProtoMsg; }; Snapshot: { - encode(message: _140.Snapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _140.Snapshot; - fromJSON(object: any): _140.Snapshot; - toJSON(message: _140.Snapshot): unknown; - fromPartial(object: Partial<_140.Snapshot>): _140.Snapshot; - fromAmino(object: _140.SnapshotAmino): _140.Snapshot; - toAmino(message: _140.Snapshot): _140.SnapshotAmino; - fromAminoMsg(object: _140.SnapshotAminoMsg): _140.Snapshot; - fromProtoMsg(message: _140.SnapshotProtoMsg): _140.Snapshot; - toProto(message: _140.Snapshot): Uint8Array; - toProtoMsg(message: _140.Snapshot): _140.SnapshotProtoMsg; + typeUrl: string; + encode(message: _141.Snapshot, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _141.Snapshot; + fromJSON(object: any): _141.Snapshot; + toJSON(message: _141.Snapshot): unknown; + fromPartial(object: Partial<_141.Snapshot>): _141.Snapshot; + fromAmino(object: _141.SnapshotAmino): _141.Snapshot; + toAmino(message: _141.Snapshot): _141.SnapshotAmino; + fromAminoMsg(object: _141.SnapshotAminoMsg): _141.Snapshot; + fromProtoMsg(message: _141.SnapshotProtoMsg): _141.Snapshot; + toProto(message: _141.Snapshot): Uint8Array; + toProtoMsg(message: _141.Snapshot): _141.SnapshotProtoMsg; }; }; const crypto: { Proof: { - encode(message: _142.Proof, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _142.Proof; - fromJSON(object: any): _142.Proof; - toJSON(message: _142.Proof): unknown; - fromPartial(object: Partial<_142.Proof>): _142.Proof; - fromAmino(object: _142.ProofAmino): _142.Proof; - toAmino(message: _142.Proof): _142.ProofAmino; - fromAminoMsg(object: _142.ProofAminoMsg): _142.Proof; - fromProtoMsg(message: _142.ProofProtoMsg): _142.Proof; - toProto(message: _142.Proof): Uint8Array; - toProtoMsg(message: _142.Proof): _142.ProofProtoMsg; + typeUrl: string; + encode(message: _143.Proof, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _143.Proof; + fromJSON(object: any): _143.Proof; + toJSON(message: _143.Proof): unknown; + fromPartial(object: Partial<_143.Proof>): _143.Proof; + fromAmino(object: _143.ProofAmino): _143.Proof; + toAmino(message: _143.Proof): _143.ProofAmino; + fromAminoMsg(object: _143.ProofAminoMsg): _143.Proof; + fromProtoMsg(message: _143.ProofProtoMsg): _143.Proof; + toProto(message: _143.Proof): Uint8Array; + toProtoMsg(message: _143.Proof): _143.ProofProtoMsg; }; ValueOp: { - encode(message: _142.ValueOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _142.ValueOp; - fromJSON(object: any): _142.ValueOp; - toJSON(message: _142.ValueOp): unknown; - fromPartial(object: Partial<_142.ValueOp>): _142.ValueOp; - fromAmino(object: _142.ValueOpAmino): _142.ValueOp; - toAmino(message: _142.ValueOp): _142.ValueOpAmino; - fromAminoMsg(object: _142.ValueOpAminoMsg): _142.ValueOp; - fromProtoMsg(message: _142.ValueOpProtoMsg): _142.ValueOp; - toProto(message: _142.ValueOp): Uint8Array; - toProtoMsg(message: _142.ValueOp): _142.ValueOpProtoMsg; + typeUrl: string; + encode(message: _143.ValueOp, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _143.ValueOp; + fromJSON(object: any): _143.ValueOp; + toJSON(message: _143.ValueOp): unknown; + fromPartial(object: Partial<_143.ValueOp>): _143.ValueOp; + fromAmino(object: _143.ValueOpAmino): _143.ValueOp; + toAmino(message: _143.ValueOp): _143.ValueOpAmino; + fromAminoMsg(object: _143.ValueOpAminoMsg): _143.ValueOp; + fromProtoMsg(message: _143.ValueOpProtoMsg): _143.ValueOp; + toProto(message: _143.ValueOp): Uint8Array; + toProtoMsg(message: _143.ValueOp): _143.ValueOpProtoMsg; }; DominoOp: { - encode(message: _142.DominoOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _142.DominoOp; - fromJSON(object: any): _142.DominoOp; - toJSON(message: _142.DominoOp): unknown; - fromPartial(object: Partial<_142.DominoOp>): _142.DominoOp; - fromAmino(object: _142.DominoOpAmino): _142.DominoOp; - toAmino(message: _142.DominoOp): _142.DominoOpAmino; - fromAminoMsg(object: _142.DominoOpAminoMsg): _142.DominoOp; - fromProtoMsg(message: _142.DominoOpProtoMsg): _142.DominoOp; - toProto(message: _142.DominoOp): Uint8Array; - toProtoMsg(message: _142.DominoOp): _142.DominoOpProtoMsg; + typeUrl: string; + encode(message: _143.DominoOp, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _143.DominoOp; + fromJSON(object: any): _143.DominoOp; + toJSON(message: _143.DominoOp): unknown; + fromPartial(object: Partial<_143.DominoOp>): _143.DominoOp; + fromAmino(object: _143.DominoOpAmino): _143.DominoOp; + toAmino(message: _143.DominoOp): _143.DominoOpAmino; + fromAminoMsg(object: _143.DominoOpAminoMsg): _143.DominoOp; + fromProtoMsg(message: _143.DominoOpProtoMsg): _143.DominoOp; + toProto(message: _143.DominoOp): Uint8Array; + toProtoMsg(message: _143.DominoOp): _143.DominoOpProtoMsg; }; ProofOp: { - encode(message: _142.ProofOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _142.ProofOp; - fromJSON(object: any): _142.ProofOp; - toJSON(message: _142.ProofOp): unknown; - fromPartial(object: Partial<_142.ProofOp>): _142.ProofOp; - fromAmino(object: _142.ProofOpAmino): _142.ProofOp; - toAmino(message: _142.ProofOp): _142.ProofOpAmino; - fromAminoMsg(object: _142.ProofOpAminoMsg): _142.ProofOp; - fromProtoMsg(message: _142.ProofOpProtoMsg): _142.ProofOp; - toProto(message: _142.ProofOp): Uint8Array; - toProtoMsg(message: _142.ProofOp): _142.ProofOpProtoMsg; + typeUrl: string; + encode(message: _143.ProofOp, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _143.ProofOp; + fromJSON(object: any): _143.ProofOp; + toJSON(message: _143.ProofOp): unknown; + fromPartial(object: Partial<_143.ProofOp>): _143.ProofOp; + fromAmino(object: _143.ProofOpAmino): _143.ProofOp; + toAmino(message: _143.ProofOp): _143.ProofOpAmino; + fromAminoMsg(object: _143.ProofOpAminoMsg): _143.ProofOp; + fromProtoMsg(message: _143.ProofOpProtoMsg): _143.ProofOp; + toProto(message: _143.ProofOp): Uint8Array; + toProtoMsg(message: _143.ProofOp): _143.ProofOpProtoMsg; }; ProofOps: { - encode(message: _142.ProofOps, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _142.ProofOps; - fromJSON(object: any): _142.ProofOps; - toJSON(message: _142.ProofOps): unknown; - fromPartial(object: Partial<_142.ProofOps>): _142.ProofOps; - fromAmino(object: _142.ProofOpsAmino): _142.ProofOps; - toAmino(message: _142.ProofOps): _142.ProofOpsAmino; - fromAminoMsg(object: _142.ProofOpsAminoMsg): _142.ProofOps; - fromProtoMsg(message: _142.ProofOpsProtoMsg): _142.ProofOps; - toProto(message: _142.ProofOps): Uint8Array; - toProtoMsg(message: _142.ProofOps): _142.ProofOpsProtoMsg; + typeUrl: string; + encode(message: _143.ProofOps, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _143.ProofOps; + fromJSON(object: any): _143.ProofOps; + toJSON(message: _143.ProofOps): unknown; + fromPartial(object: Partial<_143.ProofOps>): _143.ProofOps; + fromAmino(object: _143.ProofOpsAmino): _143.ProofOps; + toAmino(message: _143.ProofOps): _143.ProofOpsAmino; + fromAminoMsg(object: _143.ProofOpsAminoMsg): _143.ProofOps; + fromProtoMsg(message: _143.ProofOpsProtoMsg): _143.ProofOps; + toProto(message: _143.ProofOps): Uint8Array; + toProtoMsg(message: _143.ProofOps): _143.ProofOpsProtoMsg; }; PublicKey: { - encode(message: _141.PublicKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _141.PublicKey; - fromJSON(object: any): _141.PublicKey; - toJSON(message: _141.PublicKey): unknown; - fromPartial(object: Partial<_141.PublicKey>): _141.PublicKey; - fromAmino(object: _141.PublicKeyAmino): _141.PublicKey; - toAmino(message: _141.PublicKey): _141.PublicKeyAmino; - fromAminoMsg(object: _141.PublicKeyAminoMsg): _141.PublicKey; - fromProtoMsg(message: _141.PublicKeyProtoMsg): _141.PublicKey; - toProto(message: _141.PublicKey): Uint8Array; - toProtoMsg(message: _141.PublicKey): _141.PublicKeyProtoMsg; + typeUrl: string; + encode(message: _142.PublicKey, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _142.PublicKey; + fromJSON(object: any): _142.PublicKey; + toJSON(message: _142.PublicKey): unknown; + fromPartial(object: Partial<_142.PublicKey>): _142.PublicKey; + fromAmino(object: _142.PublicKeyAmino): _142.PublicKey; + toAmino(message: _142.PublicKey): _142.PublicKeyAmino; + fromAminoMsg(object: _142.PublicKeyAminoMsg): _142.PublicKey; + fromProtoMsg(message: _142.PublicKeyProtoMsg): _142.PublicKey; + toProto(message: _142.PublicKey): Uint8Array; + toProtoMsg(message: _142.PublicKey): _142.PublicKeyProtoMsg; }; }; namespace libs { const bits: { BitArray: { - encode(message: _143.BitArray, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _143.BitArray; - fromJSON(object: any): _143.BitArray; - toJSON(message: _143.BitArray): unknown; - fromPartial(object: Partial<_143.BitArray>): _143.BitArray; - fromAmino(object: _143.BitArrayAmino): _143.BitArray; - toAmino(message: _143.BitArray): _143.BitArrayAmino; - fromAminoMsg(object: _143.BitArrayAminoMsg): _143.BitArray; - fromProtoMsg(message: _143.BitArrayProtoMsg): _143.BitArray; - toProto(message: _143.BitArray): Uint8Array; - toProtoMsg(message: _143.BitArray): _143.BitArrayProtoMsg; + typeUrl: string; + encode(message: _144.BitArray, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _144.BitArray; + fromJSON(object: any): _144.BitArray; + toJSON(message: _144.BitArray): unknown; + fromPartial(object: Partial<_144.BitArray>): _144.BitArray; + fromAmino(object: _144.BitArrayAmino): _144.BitArray; + toAmino(message: _144.BitArray): _144.BitArrayAmino; + fromAminoMsg(object: _144.BitArrayAminoMsg): _144.BitArray; + fromProtoMsg(message: _144.BitArrayProtoMsg): _144.BitArray; + toProto(message: _144.BitArray): Uint8Array; + toProtoMsg(message: _144.BitArray): _144.BitArrayProtoMsg; }; }; } const p2p: { NetAddress: { - encode(message: _144.NetAddress, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _144.NetAddress; - fromJSON(object: any): _144.NetAddress; - toJSON(message: _144.NetAddress): unknown; - fromPartial(object: Partial<_144.NetAddress>): _144.NetAddress; - fromAmino(object: _144.NetAddressAmino): _144.NetAddress; - toAmino(message: _144.NetAddress): _144.NetAddressAmino; - fromAminoMsg(object: _144.NetAddressAminoMsg): _144.NetAddress; - fromProtoMsg(message: _144.NetAddressProtoMsg): _144.NetAddress; - toProto(message: _144.NetAddress): Uint8Array; - toProtoMsg(message: _144.NetAddress): _144.NetAddressProtoMsg; + typeUrl: string; + encode(message: _145.NetAddress, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _145.NetAddress; + fromJSON(object: any): _145.NetAddress; + toJSON(message: _145.NetAddress): unknown; + fromPartial(object: Partial<_145.NetAddress>): _145.NetAddress; + fromAmino(object: _145.NetAddressAmino): _145.NetAddress; + toAmino(message: _145.NetAddress): _145.NetAddressAmino; + fromAminoMsg(object: _145.NetAddressAminoMsg): _145.NetAddress; + fromProtoMsg(message: _145.NetAddressProtoMsg): _145.NetAddress; + toProto(message: _145.NetAddress): Uint8Array; + toProtoMsg(message: _145.NetAddress): _145.NetAddressProtoMsg; }; ProtocolVersion: { - encode(message: _144.ProtocolVersion, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _144.ProtocolVersion; - fromJSON(object: any): _144.ProtocolVersion; - toJSON(message: _144.ProtocolVersion): unknown; - fromPartial(object: Partial<_144.ProtocolVersion>): _144.ProtocolVersion; - fromAmino(object: _144.ProtocolVersionAmino): _144.ProtocolVersion; - toAmino(message: _144.ProtocolVersion): _144.ProtocolVersionAmino; - fromAminoMsg(object: _144.ProtocolVersionAminoMsg): _144.ProtocolVersion; - fromProtoMsg(message: _144.ProtocolVersionProtoMsg): _144.ProtocolVersion; - toProto(message: _144.ProtocolVersion): Uint8Array; - toProtoMsg(message: _144.ProtocolVersion): _144.ProtocolVersionProtoMsg; + typeUrl: string; + encode(message: _145.ProtocolVersion, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _145.ProtocolVersion; + fromJSON(object: any): _145.ProtocolVersion; + toJSON(message: _145.ProtocolVersion): unknown; + fromPartial(object: Partial<_145.ProtocolVersion>): _145.ProtocolVersion; + fromAmino(object: _145.ProtocolVersionAmino): _145.ProtocolVersion; + toAmino(message: _145.ProtocolVersion): _145.ProtocolVersionAmino; + fromAminoMsg(object: _145.ProtocolVersionAminoMsg): _145.ProtocolVersion; + fromProtoMsg(message: _145.ProtocolVersionProtoMsg): _145.ProtocolVersion; + toProto(message: _145.ProtocolVersion): Uint8Array; + toProtoMsg(message: _145.ProtocolVersion): _145.ProtocolVersionProtoMsg; }; DefaultNodeInfo: { - encode(message: _144.DefaultNodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _144.DefaultNodeInfo; - fromJSON(object: any): _144.DefaultNodeInfo; - toJSON(message: _144.DefaultNodeInfo): unknown; - fromPartial(object: Partial<_144.DefaultNodeInfo>): _144.DefaultNodeInfo; - fromAmino(object: _144.DefaultNodeInfoAmino): _144.DefaultNodeInfo; - toAmino(message: _144.DefaultNodeInfo): _144.DefaultNodeInfoAmino; - fromAminoMsg(object: _144.DefaultNodeInfoAminoMsg): _144.DefaultNodeInfo; - fromProtoMsg(message: _144.DefaultNodeInfoProtoMsg): _144.DefaultNodeInfo; - toProto(message: _144.DefaultNodeInfo): Uint8Array; - toProtoMsg(message: _144.DefaultNodeInfo): _144.DefaultNodeInfoProtoMsg; + typeUrl: string; + encode(message: _145.DefaultNodeInfo, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _145.DefaultNodeInfo; + fromJSON(object: any): _145.DefaultNodeInfo; + toJSON(message: _145.DefaultNodeInfo): unknown; + fromPartial(object: Partial<_145.DefaultNodeInfo>): _145.DefaultNodeInfo; + fromAmino(object: _145.DefaultNodeInfoAmino): _145.DefaultNodeInfo; + toAmino(message: _145.DefaultNodeInfo): _145.DefaultNodeInfoAmino; + fromAminoMsg(object: _145.DefaultNodeInfoAminoMsg): _145.DefaultNodeInfo; + fromProtoMsg(message: _145.DefaultNodeInfoProtoMsg): _145.DefaultNodeInfo; + toProto(message: _145.DefaultNodeInfo): Uint8Array; + toProtoMsg(message: _145.DefaultNodeInfo): _145.DefaultNodeInfoProtoMsg; }; DefaultNodeInfoOther: { - encode(message: _144.DefaultNodeInfoOther, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _144.DefaultNodeInfoOther; - fromJSON(object: any): _144.DefaultNodeInfoOther; - toJSON(message: _144.DefaultNodeInfoOther): unknown; - fromPartial(object: Partial<_144.DefaultNodeInfoOther>): _144.DefaultNodeInfoOther; - fromAmino(object: _144.DefaultNodeInfoOtherAmino): _144.DefaultNodeInfoOther; - toAmino(message: _144.DefaultNodeInfoOther): _144.DefaultNodeInfoOtherAmino; - fromAminoMsg(object: _144.DefaultNodeInfoOtherAminoMsg): _144.DefaultNodeInfoOther; - fromProtoMsg(message: _144.DefaultNodeInfoOtherProtoMsg): _144.DefaultNodeInfoOther; - toProto(message: _144.DefaultNodeInfoOther): Uint8Array; - toProtoMsg(message: _144.DefaultNodeInfoOther): _144.DefaultNodeInfoOtherProtoMsg; + typeUrl: string; + encode(message: _145.DefaultNodeInfoOther, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _145.DefaultNodeInfoOther; + fromJSON(object: any): _145.DefaultNodeInfoOther; + toJSON(message: _145.DefaultNodeInfoOther): unknown; + fromPartial(object: Partial<_145.DefaultNodeInfoOther>): _145.DefaultNodeInfoOther; + fromAmino(object: _145.DefaultNodeInfoOtherAmino): _145.DefaultNodeInfoOther; + toAmino(message: _145.DefaultNodeInfoOther): _145.DefaultNodeInfoOtherAmino; + fromAminoMsg(object: _145.DefaultNodeInfoOtherAminoMsg): _145.DefaultNodeInfoOther; + fromProtoMsg(message: _145.DefaultNodeInfoOtherProtoMsg): _145.DefaultNodeInfoOther; + toProto(message: _145.DefaultNodeInfoOther): Uint8Array; + toProtoMsg(message: _145.DefaultNodeInfoOther): _145.DefaultNodeInfoOtherProtoMsg; }; }; const types: { ValidatorSet: { - encode(message: _149.ValidatorSet, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _149.ValidatorSet; - fromJSON(object: any): _149.ValidatorSet; - toJSON(message: _149.ValidatorSet): unknown; - fromPartial(object: Partial<_149.ValidatorSet>): _149.ValidatorSet; - fromAmino(object: _149.ValidatorSetAmino): _149.ValidatorSet; - toAmino(message: _149.ValidatorSet): _149.ValidatorSetAmino; - fromAminoMsg(object: _149.ValidatorSetAminoMsg): _149.ValidatorSet; - fromProtoMsg(message: _149.ValidatorSetProtoMsg): _149.ValidatorSet; - toProto(message: _149.ValidatorSet): Uint8Array; - toProtoMsg(message: _149.ValidatorSet): _149.ValidatorSetProtoMsg; + typeUrl: string; + encode(message: _150.ValidatorSet, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _150.ValidatorSet; + fromJSON(object: any): _150.ValidatorSet; + toJSON(message: _150.ValidatorSet): unknown; + fromPartial(object: Partial<_150.ValidatorSet>): _150.ValidatorSet; + fromAmino(object: _150.ValidatorSetAmino): _150.ValidatorSet; + toAmino(message: _150.ValidatorSet): _150.ValidatorSetAmino; + fromAminoMsg(object: _150.ValidatorSetAminoMsg): _150.ValidatorSet; + fromProtoMsg(message: _150.ValidatorSetProtoMsg): _150.ValidatorSet; + toProto(message: _150.ValidatorSet): Uint8Array; + toProtoMsg(message: _150.ValidatorSet): _150.ValidatorSetProtoMsg; }; Validator: { - encode(message: _149.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _149.Validator; - fromJSON(object: any): _149.Validator; - toJSON(message: _149.Validator): unknown; - fromPartial(object: Partial<_149.Validator>): _149.Validator; - fromAmino(object: _149.ValidatorAmino): _149.Validator; - toAmino(message: _149.Validator): _149.ValidatorAmino; - fromAminoMsg(object: _149.ValidatorAminoMsg): _149.Validator; - fromProtoMsg(message: _149.ValidatorProtoMsg): _149.Validator; - toProto(message: _149.Validator): Uint8Array; - toProtoMsg(message: _149.Validator): _149.ValidatorProtoMsg; + typeUrl: string; + encode(message: _150.Validator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _150.Validator; + fromJSON(object: any): _150.Validator; + toJSON(message: _150.Validator): unknown; + fromPartial(object: Partial<_150.Validator>): _150.Validator; + fromAmino(object: _150.ValidatorAmino): _150.Validator; + toAmino(message: _150.Validator): _150.ValidatorAmino; + fromAminoMsg(object: _150.ValidatorAminoMsg): _150.Validator; + fromProtoMsg(message: _150.ValidatorProtoMsg): _150.Validator; + toProto(message: _150.Validator): Uint8Array; + toProtoMsg(message: _150.Validator): _150.ValidatorProtoMsg; }; SimpleValidator: { - encode(message: _149.SimpleValidator, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _149.SimpleValidator; - fromJSON(object: any): _149.SimpleValidator; - toJSON(message: _149.SimpleValidator): unknown; - fromPartial(object: Partial<_149.SimpleValidator>): _149.SimpleValidator; - fromAmino(object: _149.SimpleValidatorAmino): _149.SimpleValidator; - toAmino(message: _149.SimpleValidator): _149.SimpleValidatorAmino; - fromAminoMsg(object: _149.SimpleValidatorAminoMsg): _149.SimpleValidator; - fromProtoMsg(message: _149.SimpleValidatorProtoMsg): _149.SimpleValidator; - toProto(message: _149.SimpleValidator): Uint8Array; - toProtoMsg(message: _149.SimpleValidator): _149.SimpleValidatorProtoMsg; - }; - blockIDFlagFromJSON(object: any): _148.BlockIDFlag; - blockIDFlagToJSON(object: _148.BlockIDFlag): string; - signedMsgTypeFromJSON(object: any): _148.SignedMsgType; - signedMsgTypeToJSON(object: _148.SignedMsgType): string; - BlockIDFlag: typeof _148.BlockIDFlag; - BlockIDFlagSDKType: typeof _148.BlockIDFlag; - BlockIDFlagAmino: typeof _148.BlockIDFlag; - SignedMsgType: typeof _148.SignedMsgType; - SignedMsgTypeSDKType: typeof _148.SignedMsgType; - SignedMsgTypeAmino: typeof _148.SignedMsgType; + typeUrl: string; + encode(message: _150.SimpleValidator, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _150.SimpleValidator; + fromJSON(object: any): _150.SimpleValidator; + toJSON(message: _150.SimpleValidator): unknown; + fromPartial(object: Partial<_150.SimpleValidator>): _150.SimpleValidator; + fromAmino(object: _150.SimpleValidatorAmino): _150.SimpleValidator; + toAmino(message: _150.SimpleValidator): _150.SimpleValidatorAmino; + fromAminoMsg(object: _150.SimpleValidatorAminoMsg): _150.SimpleValidator; + fromProtoMsg(message: _150.SimpleValidatorProtoMsg): _150.SimpleValidator; + toProto(message: _150.SimpleValidator): Uint8Array; + toProtoMsg(message: _150.SimpleValidator): _150.SimpleValidatorProtoMsg; + }; + blockIDFlagFromJSON(object: any): _149.BlockIDFlag; + blockIDFlagToJSON(object: _149.BlockIDFlag): string; + signedMsgTypeFromJSON(object: any): _149.SignedMsgType; + signedMsgTypeToJSON(object: _149.SignedMsgType): string; + BlockIDFlag: typeof _149.BlockIDFlag; + BlockIDFlagSDKType: typeof _149.BlockIDFlag; + BlockIDFlagAmino: typeof _149.BlockIDFlag; + SignedMsgType: typeof _149.SignedMsgType; + SignedMsgTypeSDKType: typeof _149.SignedMsgType; + SignedMsgTypeAmino: typeof _149.SignedMsgType; PartSetHeader: { - encode(message: _148.PartSetHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.PartSetHeader; - fromJSON(object: any): _148.PartSetHeader; - toJSON(message: _148.PartSetHeader): unknown; - fromPartial(object: Partial<_148.PartSetHeader>): _148.PartSetHeader; - fromAmino(object: _148.PartSetHeaderAmino): _148.PartSetHeader; - toAmino(message: _148.PartSetHeader): _148.PartSetHeaderAmino; - fromAminoMsg(object: _148.PartSetHeaderAminoMsg): _148.PartSetHeader; - fromProtoMsg(message: _148.PartSetHeaderProtoMsg): _148.PartSetHeader; - toProto(message: _148.PartSetHeader): Uint8Array; - toProtoMsg(message: _148.PartSetHeader): _148.PartSetHeaderProtoMsg; + typeUrl: string; + encode(message: _149.PartSetHeader, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.PartSetHeader; + fromJSON(object: any): _149.PartSetHeader; + toJSON(message: _149.PartSetHeader): unknown; + fromPartial(object: Partial<_149.PartSetHeader>): _149.PartSetHeader; + fromAmino(object: _149.PartSetHeaderAmino): _149.PartSetHeader; + toAmino(message: _149.PartSetHeader): _149.PartSetHeaderAmino; + fromAminoMsg(object: _149.PartSetHeaderAminoMsg): _149.PartSetHeader; + fromProtoMsg(message: _149.PartSetHeaderProtoMsg): _149.PartSetHeader; + toProto(message: _149.PartSetHeader): Uint8Array; + toProtoMsg(message: _149.PartSetHeader): _149.PartSetHeaderProtoMsg; }; Part: { - encode(message: _148.Part, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.Part; - fromJSON(object: any): _148.Part; - toJSON(message: _148.Part): unknown; - fromPartial(object: Partial<_148.Part>): _148.Part; - fromAmino(object: _148.PartAmino): _148.Part; - toAmino(message: _148.Part): _148.PartAmino; - fromAminoMsg(object: _148.PartAminoMsg): _148.Part; - fromProtoMsg(message: _148.PartProtoMsg): _148.Part; - toProto(message: _148.Part): Uint8Array; - toProtoMsg(message: _148.Part): _148.PartProtoMsg; + typeUrl: string; + encode(message: _149.Part, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.Part; + fromJSON(object: any): _149.Part; + toJSON(message: _149.Part): unknown; + fromPartial(object: Partial<_149.Part>): _149.Part; + fromAmino(object: _149.PartAmino): _149.Part; + toAmino(message: _149.Part): _149.PartAmino; + fromAminoMsg(object: _149.PartAminoMsg): _149.Part; + fromProtoMsg(message: _149.PartProtoMsg): _149.Part; + toProto(message: _149.Part): Uint8Array; + toProtoMsg(message: _149.Part): _149.PartProtoMsg; }; BlockID: { - encode(message: _148.BlockID, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.BlockID; - fromJSON(object: any): _148.BlockID; - toJSON(message: _148.BlockID): unknown; - fromPartial(object: Partial<_148.BlockID>): _148.BlockID; - fromAmino(object: _148.BlockIDAmino): _148.BlockID; - toAmino(message: _148.BlockID): _148.BlockIDAmino; - fromAminoMsg(object: _148.BlockIDAminoMsg): _148.BlockID; - fromProtoMsg(message: _148.BlockIDProtoMsg): _148.BlockID; - toProto(message: _148.BlockID): Uint8Array; - toProtoMsg(message: _148.BlockID): _148.BlockIDProtoMsg; + typeUrl: string; + encode(message: _149.BlockID, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.BlockID; + fromJSON(object: any): _149.BlockID; + toJSON(message: _149.BlockID): unknown; + fromPartial(object: Partial<_149.BlockID>): _149.BlockID; + fromAmino(object: _149.BlockIDAmino): _149.BlockID; + toAmino(message: _149.BlockID): _149.BlockIDAmino; + fromAminoMsg(object: _149.BlockIDAminoMsg): _149.BlockID; + fromProtoMsg(message: _149.BlockIDProtoMsg): _149.BlockID; + toProto(message: _149.BlockID): Uint8Array; + toProtoMsg(message: _149.BlockID): _149.BlockIDProtoMsg; }; Header: { - encode(message: _148.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.Header; - fromJSON(object: any): _148.Header; - toJSON(message: _148.Header): unknown; - fromPartial(object: Partial<_148.Header>): _148.Header; - fromAmino(object: _148.HeaderAmino): _148.Header; - toAmino(message: _148.Header): _148.HeaderAmino; - fromAminoMsg(object: _148.HeaderAminoMsg): _148.Header; - fromProtoMsg(message: _148.HeaderProtoMsg): _148.Header; - toProto(message: _148.Header): Uint8Array; - toProtoMsg(message: _148.Header): _148.HeaderProtoMsg; + typeUrl: string; + encode(message: _149.Header, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.Header; + fromJSON(object: any): _149.Header; + toJSON(message: _149.Header): unknown; + fromPartial(object: Partial<_149.Header>): _149.Header; + fromAmino(object: _149.HeaderAmino): _149.Header; + toAmino(message: _149.Header): _149.HeaderAmino; + fromAminoMsg(object: _149.HeaderAminoMsg): _149.Header; + fromProtoMsg(message: _149.HeaderProtoMsg): _149.Header; + toProto(message: _149.Header): Uint8Array; + toProtoMsg(message: _149.Header): _149.HeaderProtoMsg; }; Data: { - encode(message: _148.Data, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.Data; - fromJSON(object: any): _148.Data; - toJSON(message: _148.Data): unknown; - fromPartial(object: Partial<_148.Data>): _148.Data; - fromAmino(object: _148.DataAmino): _148.Data; - toAmino(message: _148.Data): _148.DataAmino; - fromAminoMsg(object: _148.DataAminoMsg): _148.Data; - fromProtoMsg(message: _148.DataProtoMsg): _148.Data; - toProto(message: _148.Data): Uint8Array; - toProtoMsg(message: _148.Data): _148.DataProtoMsg; + typeUrl: string; + encode(message: _149.Data, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.Data; + fromJSON(object: any): _149.Data; + toJSON(message: _149.Data): unknown; + fromPartial(object: Partial<_149.Data>): _149.Data; + fromAmino(object: _149.DataAmino): _149.Data; + toAmino(message: _149.Data): _149.DataAmino; + fromAminoMsg(object: _149.DataAminoMsg): _149.Data; + fromProtoMsg(message: _149.DataProtoMsg): _149.Data; + toProto(message: _149.Data): Uint8Array; + toProtoMsg(message: _149.Data): _149.DataProtoMsg; }; Vote: { - encode(message: _148.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.Vote; - fromJSON(object: any): _148.Vote; - toJSON(message: _148.Vote): unknown; - fromPartial(object: Partial<_148.Vote>): _148.Vote; - fromAmino(object: _148.VoteAmino): _148.Vote; - toAmino(message: _148.Vote): _148.VoteAmino; - fromAminoMsg(object: _148.VoteAminoMsg): _148.Vote; - fromProtoMsg(message: _148.VoteProtoMsg): _148.Vote; - toProto(message: _148.Vote): Uint8Array; - toProtoMsg(message: _148.Vote): _148.VoteProtoMsg; + typeUrl: string; + encode(message: _149.Vote, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.Vote; + fromJSON(object: any): _149.Vote; + toJSON(message: _149.Vote): unknown; + fromPartial(object: Partial<_149.Vote>): _149.Vote; + fromAmino(object: _149.VoteAmino): _149.Vote; + toAmino(message: _149.Vote): _149.VoteAmino; + fromAminoMsg(object: _149.VoteAminoMsg): _149.Vote; + fromProtoMsg(message: _149.VoteProtoMsg): _149.Vote; + toProto(message: _149.Vote): Uint8Array; + toProtoMsg(message: _149.Vote): _149.VoteProtoMsg; }; Commit: { - encode(message: _148.Commit, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.Commit; - fromJSON(object: any): _148.Commit; - toJSON(message: _148.Commit): unknown; - fromPartial(object: Partial<_148.Commit>): _148.Commit; - fromAmino(object: _148.CommitAmino): _148.Commit; - toAmino(message: _148.Commit): _148.CommitAmino; - fromAminoMsg(object: _148.CommitAminoMsg): _148.Commit; - fromProtoMsg(message: _148.CommitProtoMsg): _148.Commit; - toProto(message: _148.Commit): Uint8Array; - toProtoMsg(message: _148.Commit): _148.CommitProtoMsg; + typeUrl: string; + encode(message: _149.Commit, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.Commit; + fromJSON(object: any): _149.Commit; + toJSON(message: _149.Commit): unknown; + fromPartial(object: Partial<_149.Commit>): _149.Commit; + fromAmino(object: _149.CommitAmino): _149.Commit; + toAmino(message: _149.Commit): _149.CommitAmino; + fromAminoMsg(object: _149.CommitAminoMsg): _149.Commit; + fromProtoMsg(message: _149.CommitProtoMsg): _149.Commit; + toProto(message: _149.Commit): Uint8Array; + toProtoMsg(message: _149.Commit): _149.CommitProtoMsg; }; CommitSig: { - encode(message: _148.CommitSig, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.CommitSig; - fromJSON(object: any): _148.CommitSig; - toJSON(message: _148.CommitSig): unknown; - fromPartial(object: Partial<_148.CommitSig>): _148.CommitSig; - fromAmino(object: _148.CommitSigAmino): _148.CommitSig; - toAmino(message: _148.CommitSig): _148.CommitSigAmino; - fromAminoMsg(object: _148.CommitSigAminoMsg): _148.CommitSig; - fromProtoMsg(message: _148.CommitSigProtoMsg): _148.CommitSig; - toProto(message: _148.CommitSig): Uint8Array; - toProtoMsg(message: _148.CommitSig): _148.CommitSigProtoMsg; + typeUrl: string; + encode(message: _149.CommitSig, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.CommitSig; + fromJSON(object: any): _149.CommitSig; + toJSON(message: _149.CommitSig): unknown; + fromPartial(object: Partial<_149.CommitSig>): _149.CommitSig; + fromAmino(object: _149.CommitSigAmino): _149.CommitSig; + toAmino(message: _149.CommitSig): _149.CommitSigAmino; + fromAminoMsg(object: _149.CommitSigAminoMsg): _149.CommitSig; + fromProtoMsg(message: _149.CommitSigProtoMsg): _149.CommitSig; + toProto(message: _149.CommitSig): Uint8Array; + toProtoMsg(message: _149.CommitSig): _149.CommitSigProtoMsg; }; Proposal: { - encode(message: _148.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.Proposal; - fromJSON(object: any): _148.Proposal; - toJSON(message: _148.Proposal): unknown; - fromPartial(object: Partial<_148.Proposal>): _148.Proposal; - fromAmino(object: _148.ProposalAmino): _148.Proposal; - toAmino(message: _148.Proposal): _148.ProposalAmino; - fromAminoMsg(object: _148.ProposalAminoMsg): _148.Proposal; - fromProtoMsg(message: _148.ProposalProtoMsg): _148.Proposal; - toProto(message: _148.Proposal): Uint8Array; - toProtoMsg(message: _148.Proposal): _148.ProposalProtoMsg; + typeUrl: string; + encode(message: _149.Proposal, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.Proposal; + fromJSON(object: any): _149.Proposal; + toJSON(message: _149.Proposal): unknown; + fromPartial(object: Partial<_149.Proposal>): _149.Proposal; + fromAmino(object: _149.ProposalAmino): _149.Proposal; + toAmino(message: _149.Proposal): _149.ProposalAmino; + fromAminoMsg(object: _149.ProposalAminoMsg): _149.Proposal; + fromProtoMsg(message: _149.ProposalProtoMsg): _149.Proposal; + toProto(message: _149.Proposal): Uint8Array; + toProtoMsg(message: _149.Proposal): _149.ProposalProtoMsg; }; SignedHeader: { - encode(message: _148.SignedHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.SignedHeader; - fromJSON(object: any): _148.SignedHeader; - toJSON(message: _148.SignedHeader): unknown; - fromPartial(object: Partial<_148.SignedHeader>): _148.SignedHeader; - fromAmino(object: _148.SignedHeaderAmino): _148.SignedHeader; - toAmino(message: _148.SignedHeader): _148.SignedHeaderAmino; - fromAminoMsg(object: _148.SignedHeaderAminoMsg): _148.SignedHeader; - fromProtoMsg(message: _148.SignedHeaderProtoMsg): _148.SignedHeader; - toProto(message: _148.SignedHeader): Uint8Array; - toProtoMsg(message: _148.SignedHeader): _148.SignedHeaderProtoMsg; + typeUrl: string; + encode(message: _149.SignedHeader, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.SignedHeader; + fromJSON(object: any): _149.SignedHeader; + toJSON(message: _149.SignedHeader): unknown; + fromPartial(object: Partial<_149.SignedHeader>): _149.SignedHeader; + fromAmino(object: _149.SignedHeaderAmino): _149.SignedHeader; + toAmino(message: _149.SignedHeader): _149.SignedHeaderAmino; + fromAminoMsg(object: _149.SignedHeaderAminoMsg): _149.SignedHeader; + fromProtoMsg(message: _149.SignedHeaderProtoMsg): _149.SignedHeader; + toProto(message: _149.SignedHeader): Uint8Array; + toProtoMsg(message: _149.SignedHeader): _149.SignedHeaderProtoMsg; }; LightBlock: { - encode(message: _148.LightBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.LightBlock; - fromJSON(object: any): _148.LightBlock; - toJSON(message: _148.LightBlock): unknown; - fromPartial(object: Partial<_148.LightBlock>): _148.LightBlock; - fromAmino(object: _148.LightBlockAmino): _148.LightBlock; - toAmino(message: _148.LightBlock): _148.LightBlockAmino; - fromAminoMsg(object: _148.LightBlockAminoMsg): _148.LightBlock; - fromProtoMsg(message: _148.LightBlockProtoMsg): _148.LightBlock; - toProto(message: _148.LightBlock): Uint8Array; - toProtoMsg(message: _148.LightBlock): _148.LightBlockProtoMsg; + typeUrl: string; + encode(message: _149.LightBlock, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.LightBlock; + fromJSON(object: any): _149.LightBlock; + toJSON(message: _149.LightBlock): unknown; + fromPartial(object: Partial<_149.LightBlock>): _149.LightBlock; + fromAmino(object: _149.LightBlockAmino): _149.LightBlock; + toAmino(message: _149.LightBlock): _149.LightBlockAmino; + fromAminoMsg(object: _149.LightBlockAminoMsg): _149.LightBlock; + fromProtoMsg(message: _149.LightBlockProtoMsg): _149.LightBlock; + toProto(message: _149.LightBlock): Uint8Array; + toProtoMsg(message: _149.LightBlock): _149.LightBlockProtoMsg; }; BlockMeta: { - encode(message: _148.BlockMeta, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.BlockMeta; - fromJSON(object: any): _148.BlockMeta; - toJSON(message: _148.BlockMeta): unknown; - fromPartial(object: Partial<_148.BlockMeta>): _148.BlockMeta; - fromAmino(object: _148.BlockMetaAmino): _148.BlockMeta; - toAmino(message: _148.BlockMeta): _148.BlockMetaAmino; - fromAminoMsg(object: _148.BlockMetaAminoMsg): _148.BlockMeta; - fromProtoMsg(message: _148.BlockMetaProtoMsg): _148.BlockMeta; - toProto(message: _148.BlockMeta): Uint8Array; - toProtoMsg(message: _148.BlockMeta): _148.BlockMetaProtoMsg; + typeUrl: string; + encode(message: _149.BlockMeta, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.BlockMeta; + fromJSON(object: any): _149.BlockMeta; + toJSON(message: _149.BlockMeta): unknown; + fromPartial(object: Partial<_149.BlockMeta>): _149.BlockMeta; + fromAmino(object: _149.BlockMetaAmino): _149.BlockMeta; + toAmino(message: _149.BlockMeta): _149.BlockMetaAmino; + fromAminoMsg(object: _149.BlockMetaAminoMsg): _149.BlockMeta; + fromProtoMsg(message: _149.BlockMetaProtoMsg): _149.BlockMeta; + toProto(message: _149.BlockMeta): Uint8Array; + toProtoMsg(message: _149.BlockMeta): _149.BlockMetaProtoMsg; }; TxProof: { - encode(message: _148.TxProof, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _148.TxProof; - fromJSON(object: any): _148.TxProof; - toJSON(message: _148.TxProof): unknown; - fromPartial(object: Partial<_148.TxProof>): _148.TxProof; - fromAmino(object: _148.TxProofAmino): _148.TxProof; - toAmino(message: _148.TxProof): _148.TxProofAmino; - fromAminoMsg(object: _148.TxProofAminoMsg): _148.TxProof; - fromProtoMsg(message: _148.TxProofProtoMsg): _148.TxProof; - toProto(message: _148.TxProof): Uint8Array; - toProtoMsg(message: _148.TxProof): _148.TxProofProtoMsg; + typeUrl: string; + encode(message: _149.TxProof, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _149.TxProof; + fromJSON(object: any): _149.TxProof; + toJSON(message: _149.TxProof): unknown; + fromPartial(object: Partial<_149.TxProof>): _149.TxProof; + fromAmino(object: _149.TxProofAmino): _149.TxProof; + toAmino(message: _149.TxProof): _149.TxProofAmino; + fromAminoMsg(object: _149.TxProofAminoMsg): _149.TxProof; + fromProtoMsg(message: _149.TxProofProtoMsg): _149.TxProof; + toProto(message: _149.TxProof): Uint8Array; + toProtoMsg(message: _149.TxProof): _149.TxProofProtoMsg; }; ConsensusParams: { - encode(message: _147.ConsensusParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _147.ConsensusParams; - fromJSON(object: any): _147.ConsensusParams; - toJSON(message: _147.ConsensusParams): unknown; - fromPartial(object: Partial<_147.ConsensusParams>): _147.ConsensusParams; - fromAmino(object: _147.ConsensusParamsAmino): _147.ConsensusParams; - toAmino(message: _147.ConsensusParams): _147.ConsensusParamsAmino; - fromAminoMsg(object: _147.ConsensusParamsAminoMsg): _147.ConsensusParams; - fromProtoMsg(message: _147.ConsensusParamsProtoMsg): _147.ConsensusParams; - toProto(message: _147.ConsensusParams): Uint8Array; - toProtoMsg(message: _147.ConsensusParams): _147.ConsensusParamsProtoMsg; + typeUrl: string; + encode(message: _148.ConsensusParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _148.ConsensusParams; + fromJSON(object: any): _148.ConsensusParams; + toJSON(message: _148.ConsensusParams): unknown; + fromPartial(object: Partial<_148.ConsensusParams>): _148.ConsensusParams; + fromAmino(object: _148.ConsensusParamsAmino): _148.ConsensusParams; + toAmino(message: _148.ConsensusParams): _148.ConsensusParamsAmino; + fromAminoMsg(object: _148.ConsensusParamsAminoMsg): _148.ConsensusParams; + fromProtoMsg(message: _148.ConsensusParamsProtoMsg): _148.ConsensusParams; + toProto(message: _148.ConsensusParams): Uint8Array; + toProtoMsg(message: _148.ConsensusParams): _148.ConsensusParamsProtoMsg; }; BlockParams: { - encode(message: _147.BlockParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _147.BlockParams; - fromJSON(object: any): _147.BlockParams; - toJSON(message: _147.BlockParams): unknown; - fromPartial(object: Partial<_147.BlockParams>): _147.BlockParams; - fromAmino(object: _147.BlockParamsAmino): _147.BlockParams; - toAmino(message: _147.BlockParams): _147.BlockParamsAmino; - fromAminoMsg(object: _147.BlockParamsAminoMsg): _147.BlockParams; - fromProtoMsg(message: _147.BlockParamsProtoMsg): _147.BlockParams; - toProto(message: _147.BlockParams): Uint8Array; - toProtoMsg(message: _147.BlockParams): _147.BlockParamsProtoMsg; + typeUrl: string; + encode(message: _148.BlockParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _148.BlockParams; + fromJSON(object: any): _148.BlockParams; + toJSON(message: _148.BlockParams): unknown; + fromPartial(object: Partial<_148.BlockParams>): _148.BlockParams; + fromAmino(object: _148.BlockParamsAmino): _148.BlockParams; + toAmino(message: _148.BlockParams): _148.BlockParamsAmino; + fromAminoMsg(object: _148.BlockParamsAminoMsg): _148.BlockParams; + fromProtoMsg(message: _148.BlockParamsProtoMsg): _148.BlockParams; + toProto(message: _148.BlockParams): Uint8Array; + toProtoMsg(message: _148.BlockParams): _148.BlockParamsProtoMsg; }; EvidenceParams: { - encode(message: _147.EvidenceParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _147.EvidenceParams; - fromJSON(object: any): _147.EvidenceParams; - toJSON(message: _147.EvidenceParams): unknown; - fromPartial(object: Partial<_147.EvidenceParams>): _147.EvidenceParams; - fromAmino(object: _147.EvidenceParamsAmino): _147.EvidenceParams; - toAmino(message: _147.EvidenceParams): _147.EvidenceParamsAmino; - fromAminoMsg(object: _147.EvidenceParamsAminoMsg): _147.EvidenceParams; - fromProtoMsg(message: _147.EvidenceParamsProtoMsg): _147.EvidenceParams; - toProto(message: _147.EvidenceParams): Uint8Array; - toProtoMsg(message: _147.EvidenceParams): _147.EvidenceParamsProtoMsg; + typeUrl: string; + encode(message: _148.EvidenceParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _148.EvidenceParams; + fromJSON(object: any): _148.EvidenceParams; + toJSON(message: _148.EvidenceParams): unknown; + fromPartial(object: Partial<_148.EvidenceParams>): _148.EvidenceParams; + fromAmino(object: _148.EvidenceParamsAmino): _148.EvidenceParams; + toAmino(message: _148.EvidenceParams): _148.EvidenceParamsAmino; + fromAminoMsg(object: _148.EvidenceParamsAminoMsg): _148.EvidenceParams; + fromProtoMsg(message: _148.EvidenceParamsProtoMsg): _148.EvidenceParams; + toProto(message: _148.EvidenceParams): Uint8Array; + toProtoMsg(message: _148.EvidenceParams): _148.EvidenceParamsProtoMsg; }; ValidatorParams: { - encode(message: _147.ValidatorParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _147.ValidatorParams; - fromJSON(object: any): _147.ValidatorParams; - toJSON(message: _147.ValidatorParams): unknown; - fromPartial(object: Partial<_147.ValidatorParams>): _147.ValidatorParams; - fromAmino(object: _147.ValidatorParamsAmino): _147.ValidatorParams; - toAmino(message: _147.ValidatorParams): _147.ValidatorParamsAmino; - fromAminoMsg(object: _147.ValidatorParamsAminoMsg): _147.ValidatorParams; - fromProtoMsg(message: _147.ValidatorParamsProtoMsg): _147.ValidatorParams; - toProto(message: _147.ValidatorParams): Uint8Array; - toProtoMsg(message: _147.ValidatorParams): _147.ValidatorParamsProtoMsg; + typeUrl: string; + encode(message: _148.ValidatorParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _148.ValidatorParams; + fromJSON(object: any): _148.ValidatorParams; + toJSON(message: _148.ValidatorParams): unknown; + fromPartial(object: Partial<_148.ValidatorParams>): _148.ValidatorParams; + fromAmino(object: _148.ValidatorParamsAmino): _148.ValidatorParams; + toAmino(message: _148.ValidatorParams): _148.ValidatorParamsAmino; + fromAminoMsg(object: _148.ValidatorParamsAminoMsg): _148.ValidatorParams; + fromProtoMsg(message: _148.ValidatorParamsProtoMsg): _148.ValidatorParams; + toProto(message: _148.ValidatorParams): Uint8Array; + toProtoMsg(message: _148.ValidatorParams): _148.ValidatorParamsProtoMsg; }; VersionParams: { - encode(message: _147.VersionParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _147.VersionParams; - fromJSON(object: any): _147.VersionParams; - toJSON(message: _147.VersionParams): unknown; - fromPartial(object: Partial<_147.VersionParams>): _147.VersionParams; - fromAmino(object: _147.VersionParamsAmino): _147.VersionParams; - toAmino(message: _147.VersionParams): _147.VersionParamsAmino; - fromAminoMsg(object: _147.VersionParamsAminoMsg): _147.VersionParams; - fromProtoMsg(message: _147.VersionParamsProtoMsg): _147.VersionParams; - toProto(message: _147.VersionParams): Uint8Array; - toProtoMsg(message: _147.VersionParams): _147.VersionParamsProtoMsg; + typeUrl: string; + encode(message: _148.VersionParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _148.VersionParams; + fromJSON(object: any): _148.VersionParams; + toJSON(message: _148.VersionParams): unknown; + fromPartial(object: Partial<_148.VersionParams>): _148.VersionParams; + fromAmino(object: _148.VersionParamsAmino): _148.VersionParams; + toAmino(message: _148.VersionParams): _148.VersionParamsAmino; + fromAminoMsg(object: _148.VersionParamsAminoMsg): _148.VersionParams; + fromProtoMsg(message: _148.VersionParamsProtoMsg): _148.VersionParams; + toProto(message: _148.VersionParams): Uint8Array; + toProtoMsg(message: _148.VersionParams): _148.VersionParamsProtoMsg; }; HashedParams: { - encode(message: _147.HashedParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _147.HashedParams; - fromJSON(object: any): _147.HashedParams; - toJSON(message: _147.HashedParams): unknown; - fromPartial(object: Partial<_147.HashedParams>): _147.HashedParams; - fromAmino(object: _147.HashedParamsAmino): _147.HashedParams; - toAmino(message: _147.HashedParams): _147.HashedParamsAmino; - fromAminoMsg(object: _147.HashedParamsAminoMsg): _147.HashedParams; - fromProtoMsg(message: _147.HashedParamsProtoMsg): _147.HashedParams; - toProto(message: _147.HashedParams): Uint8Array; - toProtoMsg(message: _147.HashedParams): _147.HashedParamsProtoMsg; + typeUrl: string; + encode(message: _148.HashedParams, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _148.HashedParams; + fromJSON(object: any): _148.HashedParams; + toJSON(message: _148.HashedParams): unknown; + fromPartial(object: Partial<_148.HashedParams>): _148.HashedParams; + fromAmino(object: _148.HashedParamsAmino): _148.HashedParams; + toAmino(message: _148.HashedParams): _148.HashedParamsAmino; + fromAminoMsg(object: _148.HashedParamsAminoMsg): _148.HashedParams; + fromProtoMsg(message: _148.HashedParamsProtoMsg): _148.HashedParams; + toProto(message: _148.HashedParams): Uint8Array; + toProtoMsg(message: _148.HashedParams): _148.HashedParamsProtoMsg; }; Evidence: { - encode(message: _146.Evidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _146.Evidence; - fromJSON(object: any): _146.Evidence; - toJSON(message: _146.Evidence): unknown; - fromPartial(object: Partial<_146.Evidence>): _146.Evidence; - fromAmino(object: _146.EvidenceAmino): _146.Evidence; - toAmino(message: _146.Evidence): _146.EvidenceAmino; - fromAminoMsg(object: _146.EvidenceAminoMsg): _146.Evidence; - fromProtoMsg(message: _146.EvidenceProtoMsg): _146.Evidence; - toProto(message: _146.Evidence): Uint8Array; - toProtoMsg(message: _146.Evidence): _146.EvidenceProtoMsg; + typeUrl: string; + encode(message: _147.Evidence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _147.Evidence; + fromJSON(object: any): _147.Evidence; + toJSON(message: _147.Evidence): unknown; + fromPartial(object: Partial<_147.Evidence>): _147.Evidence; + fromAmino(object: _147.EvidenceAmino): _147.Evidence; + toAmino(message: _147.Evidence): _147.EvidenceAmino; + fromAminoMsg(object: _147.EvidenceAminoMsg): _147.Evidence; + fromProtoMsg(message: _147.EvidenceProtoMsg): _147.Evidence; + toProto(message: _147.Evidence): Uint8Array; + toProtoMsg(message: _147.Evidence): _147.EvidenceProtoMsg; }; DuplicateVoteEvidence: { - encode(message: _146.DuplicateVoteEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _146.DuplicateVoteEvidence; - fromJSON(object: any): _146.DuplicateVoteEvidence; - toJSON(message: _146.DuplicateVoteEvidence): unknown; - fromPartial(object: Partial<_146.DuplicateVoteEvidence>): _146.DuplicateVoteEvidence; - fromAmino(object: _146.DuplicateVoteEvidenceAmino): _146.DuplicateVoteEvidence; - toAmino(message: _146.DuplicateVoteEvidence): _146.DuplicateVoteEvidenceAmino; - fromAminoMsg(object: _146.DuplicateVoteEvidenceAminoMsg): _146.DuplicateVoteEvidence; - fromProtoMsg(message: _146.DuplicateVoteEvidenceProtoMsg): _146.DuplicateVoteEvidence; - toProto(message: _146.DuplicateVoteEvidence): Uint8Array; - toProtoMsg(message: _146.DuplicateVoteEvidence): _146.DuplicateVoteEvidenceProtoMsg; + typeUrl: string; + encode(message: _147.DuplicateVoteEvidence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _147.DuplicateVoteEvidence; + fromJSON(object: any): _147.DuplicateVoteEvidence; + toJSON(message: _147.DuplicateVoteEvidence): unknown; + fromPartial(object: Partial<_147.DuplicateVoteEvidence>): _147.DuplicateVoteEvidence; + fromAmino(object: _147.DuplicateVoteEvidenceAmino): _147.DuplicateVoteEvidence; + toAmino(message: _147.DuplicateVoteEvidence): _147.DuplicateVoteEvidenceAmino; + fromAminoMsg(object: _147.DuplicateVoteEvidenceAminoMsg): _147.DuplicateVoteEvidence; + fromProtoMsg(message: _147.DuplicateVoteEvidenceProtoMsg): _147.DuplicateVoteEvidence; + toProto(message: _147.DuplicateVoteEvidence): Uint8Array; + toProtoMsg(message: _147.DuplicateVoteEvidence): _147.DuplicateVoteEvidenceProtoMsg; }; LightClientAttackEvidence: { - encode(message: _146.LightClientAttackEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _146.LightClientAttackEvidence; - fromJSON(object: any): _146.LightClientAttackEvidence; - toJSON(message: _146.LightClientAttackEvidence): unknown; - fromPartial(object: Partial<_146.LightClientAttackEvidence>): _146.LightClientAttackEvidence; - fromAmino(object: _146.LightClientAttackEvidenceAmino): _146.LightClientAttackEvidence; - toAmino(message: _146.LightClientAttackEvidence): _146.LightClientAttackEvidenceAmino; - fromAminoMsg(object: _146.LightClientAttackEvidenceAminoMsg): _146.LightClientAttackEvidence; - fromProtoMsg(message: _146.LightClientAttackEvidenceProtoMsg): _146.LightClientAttackEvidence; - toProto(message: _146.LightClientAttackEvidence): Uint8Array; - toProtoMsg(message: _146.LightClientAttackEvidence): _146.LightClientAttackEvidenceProtoMsg; + typeUrl: string; + encode(message: _147.LightClientAttackEvidence, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _147.LightClientAttackEvidence; + fromJSON(object: any): _147.LightClientAttackEvidence; + toJSON(message: _147.LightClientAttackEvidence): unknown; + fromPartial(object: Partial<_147.LightClientAttackEvidence>): _147.LightClientAttackEvidence; + fromAmino(object: _147.LightClientAttackEvidenceAmino): _147.LightClientAttackEvidence; + toAmino(message: _147.LightClientAttackEvidence): _147.LightClientAttackEvidenceAmino; + fromAminoMsg(object: _147.LightClientAttackEvidenceAminoMsg): _147.LightClientAttackEvidence; + fromProtoMsg(message: _147.LightClientAttackEvidenceProtoMsg): _147.LightClientAttackEvidence; + toProto(message: _147.LightClientAttackEvidence): Uint8Array; + toProtoMsg(message: _147.LightClientAttackEvidence): _147.LightClientAttackEvidenceProtoMsg; }; EvidenceList: { - encode(message: _146.EvidenceList, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _146.EvidenceList; - fromJSON(object: any): _146.EvidenceList; - toJSON(message: _146.EvidenceList): unknown; - fromPartial(object: Partial<_146.EvidenceList>): _146.EvidenceList; - fromAmino(object: _146.EvidenceListAmino): _146.EvidenceList; - toAmino(message: _146.EvidenceList): _146.EvidenceListAmino; - fromAminoMsg(object: _146.EvidenceListAminoMsg): _146.EvidenceList; - fromProtoMsg(message: _146.EvidenceListProtoMsg): _146.EvidenceList; - toProto(message: _146.EvidenceList): Uint8Array; - toProtoMsg(message: _146.EvidenceList): _146.EvidenceListProtoMsg; + typeUrl: string; + encode(message: _147.EvidenceList, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _147.EvidenceList; + fromJSON(object: any): _147.EvidenceList; + toJSON(message: _147.EvidenceList): unknown; + fromPartial(object: Partial<_147.EvidenceList>): _147.EvidenceList; + fromAmino(object: _147.EvidenceListAmino): _147.EvidenceList; + toAmino(message: _147.EvidenceList): _147.EvidenceListAmino; + fromAminoMsg(object: _147.EvidenceListAminoMsg): _147.EvidenceList; + fromProtoMsg(message: _147.EvidenceListProtoMsg): _147.EvidenceList; + toProto(message: _147.EvidenceList): Uint8Array; + toProtoMsg(message: _147.EvidenceList): _147.EvidenceListProtoMsg; }; Block: { - encode(message: _145.Block, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _145.Block; - fromJSON(object: any): _145.Block; - toJSON(message: _145.Block): unknown; - fromPartial(object: Partial<_145.Block>): _145.Block; - fromAmino(object: _145.BlockAmino): _145.Block; - toAmino(message: _145.Block): _145.BlockAmino; - fromAminoMsg(object: _145.BlockAminoMsg): _145.Block; - fromProtoMsg(message: _145.BlockProtoMsg): _145.Block; - toProto(message: _145.Block): Uint8Array; - toProtoMsg(message: _145.Block): _145.BlockProtoMsg; + typeUrl: string; + encode(message: _146.Block, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _146.Block; + fromJSON(object: any): _146.Block; + toJSON(message: _146.Block): unknown; + fromPartial(object: Partial<_146.Block>): _146.Block; + fromAmino(object: _146.BlockAmino): _146.Block; + toAmino(message: _146.Block): _146.BlockAmino; + fromAminoMsg(object: _146.BlockAminoMsg): _146.Block; + fromProtoMsg(message: _146.BlockProtoMsg): _146.Block; + toProto(message: _146.Block): Uint8Array; + toProtoMsg(message: _146.Block): _146.BlockProtoMsg; }; }; const version: { App: { - encode(message: _150.App, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _150.App; - fromJSON(object: any): _150.App; - toJSON(message: _150.App): unknown; - fromPartial(object: Partial<_150.App>): _150.App; - fromAmino(object: _150.AppAmino): _150.App; - toAmino(message: _150.App): _150.AppAmino; - fromAminoMsg(object: _150.AppAminoMsg): _150.App; - fromProtoMsg(message: _150.AppProtoMsg): _150.App; - toProto(message: _150.App): Uint8Array; - toProtoMsg(message: _150.App): _150.AppProtoMsg; + typeUrl: string; + encode(message: _151.App, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _151.App; + fromJSON(object: any): _151.App; + toJSON(message: _151.App): unknown; + fromPartial(object: Partial<_151.App>): _151.App; + fromAmino(object: _151.AppAmino): _151.App; + toAmino(message: _151.App): _151.AppAmino; + fromAminoMsg(object: _151.AppAminoMsg): _151.App; + fromProtoMsg(message: _151.AppProtoMsg): _151.App; + toProto(message: _151.App): Uint8Array; + toProtoMsg(message: _151.App): _151.AppProtoMsg; }; Consensus: { - encode(message: _150.Consensus, writer?: import("protobufjs").Writer): import("protobufjs").Writer; - decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _150.Consensus; - fromJSON(object: any): _150.Consensus; - toJSON(message: _150.Consensus): unknown; - fromPartial(object: Partial<_150.Consensus>): _150.Consensus; - fromAmino(object: _150.ConsensusAmino): _150.Consensus; - toAmino(message: _150.Consensus): _150.ConsensusAmino; - fromAminoMsg(object: _150.ConsensusAminoMsg): _150.Consensus; - fromProtoMsg(message: _150.ConsensusProtoMsg): _150.Consensus; - toProto(message: _150.Consensus): Uint8Array; - toProtoMsg(message: _150.Consensus): _150.ConsensusProtoMsg; + typeUrl: string; + encode(message: _151.Consensus, writer?: import("..").BinaryWriter): import("..").BinaryWriter; + decode(input: Uint8Array | import("..").BinaryReader, length?: number | undefined): _151.Consensus; + fromJSON(object: any): _151.Consensus; + toJSON(message: _151.Consensus): unknown; + fromPartial(object: Partial<_151.Consensus>): _151.Consensus; + fromAmino(object: _151.ConsensusAmino): _151.Consensus; + toAmino(message: _151.Consensus): _151.ConsensusAmino; + fromAminoMsg(object: _151.ConsensusAminoMsg): _151.Consensus; + fromProtoMsg(message: _151.ConsensusProtoMsg): _151.Consensus; + toProto(message: _151.Consensus): Uint8Array; + toProtoMsg(message: _151.Consensus): _151.ConsensusProtoMsg; }; }; } diff --git a/packages/api/types/codegen/tendermint/crypto/keys.d.ts b/packages/api/types/codegen/tendermint/crypto/keys.d.ts index 792f0cf..846e8ac 100644 --- a/packages/api/types/codegen/tendermint/crypto/keys.d.ts +++ b/packages/api/types/codegen/tendermint/crypto/keys.d.ts @@ -1,4 +1,4 @@ -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** PublicKey defines the keys available for use with Validators */ export interface PublicKey { ed25519?: Uint8Array; @@ -10,8 +10,8 @@ export interface PublicKeyProtoMsg { } /** PublicKey defines the keys available for use with Validators */ export interface PublicKeyAmino { - ed25519?: Uint8Array; - secp256k1?: Uint8Array; + ed25519?: string; + secp256k1?: string; } export interface PublicKeyAminoMsg { type: "/tendermint.crypto.PublicKey"; @@ -23,8 +23,9 @@ export interface PublicKeySDKType { secp256k1?: Uint8Array; } export declare const PublicKey: { - encode(message: PublicKey, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PublicKey; + typeUrl: string; + encode(message: PublicKey, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PublicKey; fromJSON(object: any): PublicKey; toJSON(message: PublicKey): unknown; fromPartial(object: Partial): PublicKey; diff --git a/packages/api/types/codegen/tendermint/crypto/proof.d.ts b/packages/api/types/codegen/tendermint/crypto/proof.d.ts index 96d1b7b..c68075e 100644 --- a/packages/api/types/codegen/tendermint/crypto/proof.d.ts +++ b/packages/api/types/codegen/tendermint/crypto/proof.d.ts @@ -1,8 +1,7 @@ -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export interface Proof { - total: Long; - index: Long; + total: bigint; + index: bigint; leafHash: Uint8Array; aunts: Uint8Array[]; } @@ -11,18 +10,18 @@ export interface ProofProtoMsg { value: Uint8Array; } export interface ProofAmino { - total: string; - index: string; - leaf_hash: Uint8Array; - aunts: Uint8Array[]; + total?: string; + index?: string; + leaf_hash?: string; + aunts?: string[]; } export interface ProofAminoMsg { type: "/tendermint.crypto.Proof"; value: ProofAmino; } export interface ProofSDKType { - total: Long; - index: Long; + total: bigint; + index: bigint; leaf_hash: Uint8Array; aunts: Uint8Array[]; } @@ -30,7 +29,7 @@ export interface ValueOp { /** Encoded in ProofOp.Key. */ key: Uint8Array; /** To encode in ProofOp.Data */ - proof: Proof; + proof?: Proof; } export interface ValueOpProtoMsg { typeUrl: "/tendermint.crypto.ValueOp"; @@ -38,7 +37,7 @@ export interface ValueOpProtoMsg { } export interface ValueOpAmino { /** Encoded in ProofOp.Key. */ - key: Uint8Array; + key?: string; /** To encode in ProofOp.Data */ proof?: ProofAmino; } @@ -48,7 +47,7 @@ export interface ValueOpAminoMsg { } export interface ValueOpSDKType { key: Uint8Array; - proof: ProofSDKType; + proof?: ProofSDKType; } export interface DominoOp { key: string; @@ -60,9 +59,9 @@ export interface DominoOpProtoMsg { value: Uint8Array; } export interface DominoOpAmino { - key: string; - input: string; - output: string; + key?: string; + input?: string; + output?: string; } export interface DominoOpAminoMsg { type: "/tendermint.crypto.DominoOp"; @@ -93,9 +92,9 @@ export interface ProofOpProtoMsg { * for example neighbouring node hash */ export interface ProofOpAmino { - type: string; - key: Uint8Array; - data: Uint8Array; + type?: string; + key?: string; + data?: string; } export interface ProofOpAminoMsg { type: "/tendermint.crypto.ProofOp"; @@ -121,7 +120,7 @@ export interface ProofOpsProtoMsg { } /** ProofOps is Merkle proof defined by the list of ProofOps */ export interface ProofOpsAmino { - ops: ProofOpAmino[]; + ops?: ProofOpAmino[]; } export interface ProofOpsAminoMsg { type: "/tendermint.crypto.ProofOps"; @@ -132,8 +131,9 @@ export interface ProofOpsSDKType { ops: ProofOpSDKType[]; } export declare const Proof: { - encode(message: Proof, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Proof; + typeUrl: string; + encode(message: Proof, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Proof; fromJSON(object: any): Proof; toJSON(message: Proof): unknown; fromPartial(object: Partial): Proof; @@ -145,8 +145,9 @@ export declare const Proof: { toProtoMsg(message: Proof): ProofProtoMsg; }; export declare const ValueOp: { - encode(message: ValueOp, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValueOp; + typeUrl: string; + encode(message: ValueOp, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValueOp; fromJSON(object: any): ValueOp; toJSON(message: ValueOp): unknown; fromPartial(object: Partial): ValueOp; @@ -158,8 +159,9 @@ export declare const ValueOp: { toProtoMsg(message: ValueOp): ValueOpProtoMsg; }; export declare const DominoOp: { - encode(message: DominoOp, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DominoOp; + typeUrl: string; + encode(message: DominoOp, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DominoOp; fromJSON(object: any): DominoOp; toJSON(message: DominoOp): unknown; fromPartial(object: Partial): DominoOp; @@ -171,8 +173,9 @@ export declare const DominoOp: { toProtoMsg(message: DominoOp): DominoOpProtoMsg; }; export declare const ProofOp: { - encode(message: ProofOp, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProofOp; + typeUrl: string; + encode(message: ProofOp, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProofOp; fromJSON(object: any): ProofOp; toJSON(message: ProofOp): unknown; fromPartial(object: Partial): ProofOp; @@ -184,8 +187,9 @@ export declare const ProofOp: { toProtoMsg(message: ProofOp): ProofOpProtoMsg; }; export declare const ProofOps: { - encode(message: ProofOps, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProofOps; + typeUrl: string; + encode(message: ProofOps, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProofOps; fromJSON(object: any): ProofOps; toJSON(message: ProofOps): unknown; fromPartial(object: Partial): ProofOps; diff --git a/packages/api/types/codegen/tendermint/libs/bits/types.d.ts b/packages/api/types/codegen/tendermint/libs/bits/types.d.ts index 8f2197b..7b5f097 100644 --- a/packages/api/types/codegen/tendermint/libs/bits/types.d.ts +++ b/packages/api/types/codegen/tendermint/libs/bits/types.d.ts @@ -1,28 +1,28 @@ -import { Long } from "../../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../../binary"; export interface BitArray { - bits: Long; - elems: Long[]; + bits: bigint; + elems: bigint[]; } export interface BitArrayProtoMsg { typeUrl: "/tendermint.libs.bits.BitArray"; value: Uint8Array; } export interface BitArrayAmino { - bits: string; - elems: string[]; + bits?: string; + elems?: string[]; } export interface BitArrayAminoMsg { type: "/tendermint.libs.bits.BitArray"; value: BitArrayAmino; } export interface BitArraySDKType { - bits: Long; - elems: Long[]; + bits: bigint; + elems: bigint[]; } export declare const BitArray: { - encode(message: BitArray, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BitArray; + typeUrl: string; + encode(message: BitArray, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BitArray; fromJSON(object: any): BitArray; toJSON(message: BitArray): unknown; fromPartial(object: Partial): BitArray; diff --git a/packages/api/types/codegen/tendermint/p2p/types.d.ts b/packages/api/types/codegen/tendermint/p2p/types.d.ts index 0df7272..2062d25 100644 --- a/packages/api/types/codegen/tendermint/p2p/types.d.ts +++ b/packages/api/types/codegen/tendermint/p2p/types.d.ts @@ -1,5 +1,4 @@ -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export interface NetAddress { id: string; ip: string; @@ -10,9 +9,9 @@ export interface NetAddressProtoMsg { value: Uint8Array; } export interface NetAddressAmino { - id: string; - ip: string; - port: number; + id?: string; + ip?: string; + port?: number; } export interface NetAddressAminoMsg { type: "/tendermint.p2p.NetAddress"; @@ -24,27 +23,27 @@ export interface NetAddressSDKType { port: number; } export interface ProtocolVersion { - p2p: Long; - block: Long; - app: Long; + p2p: bigint; + block: bigint; + app: bigint; } export interface ProtocolVersionProtoMsg { typeUrl: "/tendermint.p2p.ProtocolVersion"; value: Uint8Array; } export interface ProtocolVersionAmino { - p2p: string; - block: string; - app: string; + p2p?: string; + block?: string; + app?: string; } export interface ProtocolVersionAminoMsg { type: "/tendermint.p2p.ProtocolVersion"; value: ProtocolVersionAmino; } export interface ProtocolVersionSDKType { - p2p: Long; - block: Long; - app: Long; + p2p: bigint; + block: bigint; + app: bigint; } export interface DefaultNodeInfo { protocolVersion: ProtocolVersion; @@ -62,12 +61,12 @@ export interface DefaultNodeInfoProtoMsg { } export interface DefaultNodeInfoAmino { protocol_version?: ProtocolVersionAmino; - default_node_id: string; - listen_addr: string; - network: string; - version: string; - channels: Uint8Array; - moniker: string; + default_node_id?: string; + listen_addr?: string; + network?: string; + version?: string; + channels?: string; + moniker?: string; other?: DefaultNodeInfoOtherAmino; } export interface DefaultNodeInfoAminoMsg { @@ -93,8 +92,8 @@ export interface DefaultNodeInfoOtherProtoMsg { value: Uint8Array; } export interface DefaultNodeInfoOtherAmino { - tx_index: string; - rpc_address: string; + tx_index?: string; + rpc_address?: string; } export interface DefaultNodeInfoOtherAminoMsg { type: "/tendermint.p2p.DefaultNodeInfoOther"; @@ -105,8 +104,9 @@ export interface DefaultNodeInfoOtherSDKType { rpc_address: string; } export declare const NetAddress: { - encode(message: NetAddress, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): NetAddress; + typeUrl: string; + encode(message: NetAddress, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): NetAddress; fromJSON(object: any): NetAddress; toJSON(message: NetAddress): unknown; fromPartial(object: Partial): NetAddress; @@ -118,8 +118,9 @@ export declare const NetAddress: { toProtoMsg(message: NetAddress): NetAddressProtoMsg; }; export declare const ProtocolVersion: { - encode(message: ProtocolVersion, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ProtocolVersion; + typeUrl: string; + encode(message: ProtocolVersion, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ProtocolVersion; fromJSON(object: any): ProtocolVersion; toJSON(message: ProtocolVersion): unknown; fromPartial(object: Partial): ProtocolVersion; @@ -131,8 +132,9 @@ export declare const ProtocolVersion: { toProtoMsg(message: ProtocolVersion): ProtocolVersionProtoMsg; }; export declare const DefaultNodeInfo: { - encode(message: DefaultNodeInfo, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DefaultNodeInfo; + typeUrl: string; + encode(message: DefaultNodeInfo, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DefaultNodeInfo; fromJSON(object: any): DefaultNodeInfo; toJSON(message: DefaultNodeInfo): unknown; fromPartial(object: Partial): DefaultNodeInfo; @@ -144,8 +146,9 @@ export declare const DefaultNodeInfo: { toProtoMsg(message: DefaultNodeInfo): DefaultNodeInfoProtoMsg; }; export declare const DefaultNodeInfoOther: { - encode(message: DefaultNodeInfoOther, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DefaultNodeInfoOther; + typeUrl: string; + encode(message: DefaultNodeInfoOther, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DefaultNodeInfoOther; fromJSON(object: any): DefaultNodeInfoOther; toJSON(message: DefaultNodeInfoOther): unknown; fromPartial(object: Partial): DefaultNodeInfoOther; diff --git a/packages/api/types/codegen/tendermint/types/block.d.ts b/packages/api/types/codegen/tendermint/types/block.d.ts index 539e94f..c63389a 100644 --- a/packages/api/types/codegen/tendermint/types/block.d.ts +++ b/packages/api/types/codegen/tendermint/types/block.d.ts @@ -1,11 +1,11 @@ import { Header, HeaderAmino, HeaderSDKType, Data, DataAmino, DataSDKType, Commit, CommitAmino, CommitSDKType } from "./types"; import { EvidenceList, EvidenceListAmino, EvidenceListSDKType } from "./evidence"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export interface Block { header: Header; data: Data; evidence: EvidenceList; - lastCommit: Commit; + lastCommit?: Commit; } export interface BlockProtoMsg { typeUrl: "/tendermint.types.Block"; @@ -25,11 +25,12 @@ export interface BlockSDKType { header: HeaderSDKType; data: DataSDKType; evidence: EvidenceListSDKType; - last_commit: CommitSDKType; + last_commit?: CommitSDKType; } export declare const Block: { - encode(message: Block, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Block; + typeUrl: string; + encode(message: Block, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Block; fromJSON(object: any): Block; toJSON(message: Block): unknown; fromPartial(object: Partial): Block; diff --git a/packages/api/types/codegen/tendermint/types/evidence.d.ts b/packages/api/types/codegen/tendermint/types/evidence.d.ts index e237aed..499fb27 100644 --- a/packages/api/types/codegen/tendermint/types/evidence.d.ts +++ b/packages/api/types/codegen/tendermint/types/evidence.d.ts @@ -1,8 +1,7 @@ import { Vote, VoteAmino, VoteSDKType, LightBlock, LightBlockAmino, LightBlockSDKType } from "./types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../google/protobuf/timestamp"; import { Validator, ValidatorAmino, ValidatorSDKType } from "./validator"; -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export interface Evidence { duplicateVoteEvidence?: DuplicateVoteEvidence; lightClientAttackEvidence?: LightClientAttackEvidence; @@ -25,10 +24,10 @@ export interface EvidenceSDKType { } /** DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes. */ export interface DuplicateVoteEvidence { - voteA: Vote; - voteB: Vote; - totalVotingPower: Long; - validatorPower: Long; + voteA?: Vote; + voteB?: Vote; + totalVotingPower: bigint; + validatorPower: bigint; timestamp: Timestamp; } export interface DuplicateVoteEvidenceProtoMsg { @@ -39,9 +38,9 @@ export interface DuplicateVoteEvidenceProtoMsg { export interface DuplicateVoteEvidenceAmino { vote_a?: VoteAmino; vote_b?: VoteAmino; - total_voting_power: string; - validator_power: string; - timestamp?: TimestampAmino; + total_voting_power?: string; + validator_power?: string; + timestamp?: string; } export interface DuplicateVoteEvidenceAminoMsg { type: "/tendermint.types.DuplicateVoteEvidence"; @@ -49,18 +48,18 @@ export interface DuplicateVoteEvidenceAminoMsg { } /** DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes. */ export interface DuplicateVoteEvidenceSDKType { - vote_a: VoteSDKType; - vote_b: VoteSDKType; - total_voting_power: Long; - validator_power: Long; + vote_a?: VoteSDKType; + vote_b?: VoteSDKType; + total_voting_power: bigint; + validator_power: bigint; timestamp: TimestampSDKType; } /** LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client. */ export interface LightClientAttackEvidence { - conflictingBlock: LightBlock; - commonHeight: Long; + conflictingBlock?: LightBlock; + commonHeight: bigint; byzantineValidators: Validator[]; - totalVotingPower: Long; + totalVotingPower: bigint; timestamp: Timestamp; } export interface LightClientAttackEvidenceProtoMsg { @@ -70,10 +69,10 @@ export interface LightClientAttackEvidenceProtoMsg { /** LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client. */ export interface LightClientAttackEvidenceAmino { conflicting_block?: LightBlockAmino; - common_height: string; - byzantine_validators: ValidatorAmino[]; - total_voting_power: string; - timestamp?: TimestampAmino; + common_height?: string; + byzantine_validators?: ValidatorAmino[]; + total_voting_power?: string; + timestamp?: string; } export interface LightClientAttackEvidenceAminoMsg { type: "/tendermint.types.LightClientAttackEvidence"; @@ -81,10 +80,10 @@ export interface LightClientAttackEvidenceAminoMsg { } /** LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client. */ export interface LightClientAttackEvidenceSDKType { - conflicting_block: LightBlockSDKType; - common_height: Long; + conflicting_block?: LightBlockSDKType; + common_height: bigint; byzantine_validators: ValidatorSDKType[]; - total_voting_power: Long; + total_voting_power: bigint; timestamp: TimestampSDKType; } export interface EvidenceList { @@ -95,7 +94,7 @@ export interface EvidenceListProtoMsg { value: Uint8Array; } export interface EvidenceListAmino { - evidence: EvidenceAmino[]; + evidence?: EvidenceAmino[]; } export interface EvidenceListAminoMsg { type: "/tendermint.types.EvidenceList"; @@ -105,8 +104,9 @@ export interface EvidenceListSDKType { evidence: EvidenceSDKType[]; } export declare const Evidence: { - encode(message: Evidence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Evidence; + typeUrl: string; + encode(message: Evidence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Evidence; fromJSON(object: any): Evidence; toJSON(message: Evidence): unknown; fromPartial(object: Partial): Evidence; @@ -118,8 +118,9 @@ export declare const Evidence: { toProtoMsg(message: Evidence): EvidenceProtoMsg; }; export declare const DuplicateVoteEvidence: { - encode(message: DuplicateVoteEvidence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): DuplicateVoteEvidence; + typeUrl: string; + encode(message: DuplicateVoteEvidence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): DuplicateVoteEvidence; fromJSON(object: any): DuplicateVoteEvidence; toJSON(message: DuplicateVoteEvidence): unknown; fromPartial(object: Partial): DuplicateVoteEvidence; @@ -131,8 +132,9 @@ export declare const DuplicateVoteEvidence: { toProtoMsg(message: DuplicateVoteEvidence): DuplicateVoteEvidenceProtoMsg; }; export declare const LightClientAttackEvidence: { - encode(message: LightClientAttackEvidence, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): LightClientAttackEvidence; + typeUrl: string; + encode(message: LightClientAttackEvidence, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): LightClientAttackEvidence; fromJSON(object: any): LightClientAttackEvidence; toJSON(message: LightClientAttackEvidence): unknown; fromPartial(object: Partial): LightClientAttackEvidence; @@ -144,8 +146,9 @@ export declare const LightClientAttackEvidence: { toProtoMsg(message: LightClientAttackEvidence): LightClientAttackEvidenceProtoMsg; }; export declare const EvidenceList: { - encode(message: EvidenceList, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EvidenceList; + typeUrl: string; + encode(message: EvidenceList, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EvidenceList; fromJSON(object: any): EvidenceList; toJSON(message: EvidenceList): unknown; fromPartial(object: Partial): EvidenceList; diff --git a/packages/api/types/codegen/tendermint/types/params.d.ts b/packages/api/types/codegen/tendermint/types/params.d.ts index 4b6dfb6..b702f5d 100644 --- a/packages/api/types/codegen/tendermint/types/params.d.ts +++ b/packages/api/types/codegen/tendermint/types/params.d.ts @@ -1,15 +1,14 @@ import { Duration, DurationAmino, DurationSDKType } from "../../google/protobuf/duration"; -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** * ConsensusParams contains consensus critical parameters that determine the * validity of blocks. */ export interface ConsensusParams { - block: BlockParams; - evidence: EvidenceParams; - validator: ValidatorParams; - version: VersionParams; + block?: BlockParams; + evidence?: EvidenceParams; + validator?: ValidatorParams; + version?: VersionParams; } export interface ConsensusParamsProtoMsg { typeUrl: "/tendermint.types.ConsensusParams"; @@ -34,10 +33,10 @@ export interface ConsensusParamsAminoMsg { * validity of blocks. */ export interface ConsensusParamsSDKType { - block: BlockParamsSDKType; - evidence: EvidenceParamsSDKType; - validator: ValidatorParamsSDKType; - version: VersionParamsSDKType; + block?: BlockParamsSDKType; + evidence?: EvidenceParamsSDKType; + validator?: ValidatorParamsSDKType; + version?: VersionParamsSDKType; } /** BlockParams contains limits on the block size. */ export interface BlockParams { @@ -45,12 +44,12 @@ export interface BlockParams { * Max block size, in bytes. * Note: must be greater than 0 */ - maxBytes: Long; + maxBytes: bigint; /** * Max gas per block. * Note: must be greater or equal to -1 */ - maxGas: Long; + maxGas: bigint; } export interface BlockParamsProtoMsg { typeUrl: "/tendermint.types.BlockParams"; @@ -62,12 +61,12 @@ export interface BlockParamsAmino { * Max block size, in bytes. * Note: must be greater than 0 */ - max_bytes: string; + max_bytes?: string; /** * Max gas per block. * Note: must be greater or equal to -1 */ - max_gas: string; + max_gas?: string; } export interface BlockParamsAminoMsg { type: "/tendermint.types.BlockParams"; @@ -75,8 +74,8 @@ export interface BlockParamsAminoMsg { } /** BlockParams contains limits on the block size. */ export interface BlockParamsSDKType { - max_bytes: Long; - max_gas: Long; + max_bytes: bigint; + max_gas: bigint; } /** EvidenceParams determine how we handle evidence of malfeasance. */ export interface EvidenceParams { @@ -86,7 +85,7 @@ export interface EvidenceParams { * The basic formula for calculating this is: MaxAgeDuration / {average block * time}. */ - maxAgeNumBlocks: Long; + maxAgeNumBlocks: bigint; /** * Max age of evidence, in time. * @@ -100,7 +99,7 @@ export interface EvidenceParams { * and should fall comfortably under the max block bytes. * Default is 1048576 or 1MB */ - maxBytes: Long; + maxBytes: bigint; } export interface EvidenceParamsProtoMsg { typeUrl: "/tendermint.types.EvidenceParams"; @@ -114,7 +113,7 @@ export interface EvidenceParamsAmino { * The basic formula for calculating this is: MaxAgeDuration / {average block * time}. */ - max_age_num_blocks: string; + max_age_num_blocks?: string; /** * Max age of evidence, in time. * @@ -128,7 +127,7 @@ export interface EvidenceParamsAmino { * and should fall comfortably under the max block bytes. * Default is 1048576 or 1MB */ - max_bytes: string; + max_bytes?: string; } export interface EvidenceParamsAminoMsg { type: "/tendermint.types.EvidenceParams"; @@ -136,9 +135,9 @@ export interface EvidenceParamsAminoMsg { } /** EvidenceParams determine how we handle evidence of malfeasance. */ export interface EvidenceParamsSDKType { - max_age_num_blocks: Long; + max_age_num_blocks: bigint; max_age_duration: DurationSDKType; - max_bytes: Long; + max_bytes: bigint; } /** * ValidatorParams restrict the public key types validators can use. @@ -156,7 +155,7 @@ export interface ValidatorParamsProtoMsg { * NOTE: uses ABCI pubkey naming, not Amino names. */ export interface ValidatorParamsAmino { - pub_key_types: string[]; + pub_key_types?: string[]; } export interface ValidatorParamsAminoMsg { type: "/tendermint.types.ValidatorParams"; @@ -171,7 +170,7 @@ export interface ValidatorParamsSDKType { } /** VersionParams contains the ABCI application version. */ export interface VersionParams { - app: Long; + app: bigint; } export interface VersionParamsProtoMsg { typeUrl: "/tendermint.types.VersionParams"; @@ -179,7 +178,7 @@ export interface VersionParamsProtoMsg { } /** VersionParams contains the ABCI application version. */ export interface VersionParamsAmino { - app: string; + app?: string; } export interface VersionParamsAminoMsg { type: "/tendermint.types.VersionParams"; @@ -187,7 +186,7 @@ export interface VersionParamsAminoMsg { } /** VersionParams contains the ABCI application version. */ export interface VersionParamsSDKType { - app: Long; + app: bigint; } /** * HashedParams is a subset of ConsensusParams. @@ -195,8 +194,8 @@ export interface VersionParamsSDKType { * It is hashed into the Header.ConsensusHash. */ export interface HashedParams { - blockMaxBytes: Long; - blockMaxGas: Long; + blockMaxBytes: bigint; + blockMaxGas: bigint; } export interface HashedParamsProtoMsg { typeUrl: "/tendermint.types.HashedParams"; @@ -208,8 +207,8 @@ export interface HashedParamsProtoMsg { * It is hashed into the Header.ConsensusHash. */ export interface HashedParamsAmino { - block_max_bytes: string; - block_max_gas: string; + block_max_bytes?: string; + block_max_gas?: string; } export interface HashedParamsAminoMsg { type: "/tendermint.types.HashedParams"; @@ -221,12 +220,13 @@ export interface HashedParamsAminoMsg { * It is hashed into the Header.ConsensusHash. */ export interface HashedParamsSDKType { - block_max_bytes: Long; - block_max_gas: Long; + block_max_bytes: bigint; + block_max_gas: bigint; } export declare const ConsensusParams: { - encode(message: ConsensusParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ConsensusParams; + typeUrl: string; + encode(message: ConsensusParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ConsensusParams; fromJSON(object: any): ConsensusParams; toJSON(message: ConsensusParams): unknown; fromPartial(object: Partial): ConsensusParams; @@ -238,8 +238,9 @@ export declare const ConsensusParams: { toProtoMsg(message: ConsensusParams): ConsensusParamsProtoMsg; }; export declare const BlockParams: { - encode(message: BlockParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BlockParams; + typeUrl: string; + encode(message: BlockParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BlockParams; fromJSON(object: any): BlockParams; toJSON(message: BlockParams): unknown; fromPartial(object: Partial): BlockParams; @@ -251,8 +252,9 @@ export declare const BlockParams: { toProtoMsg(message: BlockParams): BlockParamsProtoMsg; }; export declare const EvidenceParams: { - encode(message: EvidenceParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): EvidenceParams; + typeUrl: string; + encode(message: EvidenceParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): EvidenceParams; fromJSON(object: any): EvidenceParams; toJSON(message: EvidenceParams): unknown; fromPartial(object: Partial): EvidenceParams; @@ -264,8 +266,9 @@ export declare const EvidenceParams: { toProtoMsg(message: EvidenceParams): EvidenceParamsProtoMsg; }; export declare const ValidatorParams: { - encode(message: ValidatorParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorParams; + typeUrl: string; + encode(message: ValidatorParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorParams; fromJSON(object: any): ValidatorParams; toJSON(message: ValidatorParams): unknown; fromPartial(object: Partial): ValidatorParams; @@ -277,8 +280,9 @@ export declare const ValidatorParams: { toProtoMsg(message: ValidatorParams): ValidatorParamsProtoMsg; }; export declare const VersionParams: { - encode(message: VersionParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): VersionParams; + typeUrl: string; + encode(message: VersionParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): VersionParams; fromJSON(object: any): VersionParams; toJSON(message: VersionParams): unknown; fromPartial(object: Partial): VersionParams; @@ -290,8 +294,9 @@ export declare const VersionParams: { toProtoMsg(message: VersionParams): VersionParamsProtoMsg; }; export declare const HashedParams: { - encode(message: HashedParams, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): HashedParams; + typeUrl: string; + encode(message: HashedParams, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): HashedParams; fromJSON(object: any): HashedParams; toJSON(message: HashedParams): unknown; fromPartial(object: Partial): HashedParams; diff --git a/packages/api/types/codegen/tendermint/types/types.d.ts b/packages/api/types/codegen/tendermint/types/types.d.ts index 124702d..cd199c1 100644 --- a/packages/api/types/codegen/tendermint/types/types.d.ts +++ b/packages/api/types/codegen/tendermint/types/types.d.ts @@ -1,9 +1,8 @@ import { Proof, ProofAmino, ProofSDKType } from "../crypto/proof"; import { Consensus, ConsensusAmino, ConsensusSDKType } from "../version/types"; -import { Timestamp, TimestampAmino, TimestampSDKType } from "../../google/protobuf/timestamp"; +import { Timestamp, TimestampSDKType } from "../../google/protobuf/timestamp"; import { ValidatorSet, ValidatorSetAmino, ValidatorSetSDKType } from "./validator"; -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** BlockIdFlag indicates which BlcokID the signature is for */ export declare enum BlockIDFlag { BLOCK_ID_FLAG_UNKNOWN = 0, @@ -41,8 +40,8 @@ export interface PartSetHeaderProtoMsg { } /** PartsetHeader */ export interface PartSetHeaderAmino { - total: number; - hash: Uint8Array; + total?: number; + hash?: string; } export interface PartSetHeaderAminoMsg { type: "/tendermint.types.PartSetHeader"; @@ -63,8 +62,8 @@ export interface PartProtoMsg { value: Uint8Array; } export interface PartAmino { - index: number; - bytes: Uint8Array; + index?: number; + bytes?: string; proof?: ProofAmino; } export interface PartAminoMsg { @@ -87,7 +86,7 @@ export interface BlockIDProtoMsg { } /** BlockID */ export interface BlockIDAmino { - hash: Uint8Array; + hash?: string; part_set_header?: PartSetHeaderAmino; } export interface BlockIDAminoMsg { @@ -104,7 +103,7 @@ export interface Header { /** basic block info */ version: Consensus; chainId: string; - height: Long; + height: bigint; time: Timestamp; /** prev block info */ lastBlockId: BlockID; @@ -133,27 +132,27 @@ export interface HeaderProtoMsg { export interface HeaderAmino { /** basic block info */ version?: ConsensusAmino; - chain_id: string; - height: string; - time?: TimestampAmino; + chain_id?: string; + height?: string; + time?: string; /** prev block info */ last_block_id?: BlockIDAmino; /** hashes of block data */ - last_commit_hash: Uint8Array; - data_hash: Uint8Array; + last_commit_hash?: string; + data_hash?: string; /** hashes from the app output from the prev block */ - validators_hash: Uint8Array; + validators_hash?: string; /** validators for the next block */ - next_validators_hash: Uint8Array; + next_validators_hash?: string; /** consensus params for current block */ - consensus_hash: Uint8Array; + consensus_hash?: string; /** state after txs from the previous block */ - app_hash: Uint8Array; - last_results_hash: Uint8Array; + app_hash?: string; + last_results_hash?: string; /** consensus info */ - evidence_hash: Uint8Array; + evidence_hash?: string; /** original proposer of the block */ - proposer_address: Uint8Array; + proposer_address?: string; } export interface HeaderAminoMsg { type: "/tendermint.types.Header"; @@ -163,7 +162,7 @@ export interface HeaderAminoMsg { export interface HeaderSDKType { version: ConsensusSDKType; chain_id: string; - height: Long; + height: bigint; time: TimestampSDKType; last_block_id: BlockIDSDKType; last_commit_hash: Uint8Array; @@ -196,7 +195,7 @@ export interface DataAmino { * NOTE: not all txs here are valid. We're just agreeing on the order first. * This means that block.AppHash does not include these txs. */ - txs: Uint8Array[]; + txs?: string[]; } export interface DataAminoMsg { type: "/tendermint.types.Data"; @@ -212,7 +211,7 @@ export interface DataSDKType { */ export interface Vote { type: SignedMsgType; - height: Long; + height: bigint; round: number; blockId: BlockID; timestamp: Timestamp; @@ -229,14 +228,14 @@ export interface VoteProtoMsg { * consensus. */ export interface VoteAmino { - type: SignedMsgType; - height: string; - round: number; + type?: SignedMsgType; + height?: string; + round?: number; block_id?: BlockIDAmino; - timestamp?: TimestampAmino; - validator_address: Uint8Array; - validator_index: number; - signature: Uint8Array; + timestamp?: string; + validator_address?: string; + validator_index?: number; + signature?: string; } export interface VoteAminoMsg { type: "/tendermint.types.Vote"; @@ -248,7 +247,7 @@ export interface VoteAminoMsg { */ export interface VoteSDKType { type: SignedMsgType; - height: Long; + height: bigint; round: number; block_id: BlockIDSDKType; timestamp: TimestampSDKType; @@ -258,7 +257,7 @@ export interface VoteSDKType { } /** Commit contains the evidence that a block was committed by a set of validators. */ export interface Commit { - height: Long; + height: bigint; round: number; blockId: BlockID; signatures: CommitSig[]; @@ -269,10 +268,10 @@ export interface CommitProtoMsg { } /** Commit contains the evidence that a block was committed by a set of validators. */ export interface CommitAmino { - height: string; - round: number; + height?: string; + round?: number; block_id?: BlockIDAmino; - signatures: CommitSigAmino[]; + signatures?: CommitSigAmino[]; } export interface CommitAminoMsg { type: "/tendermint.types.Commit"; @@ -280,7 +279,7 @@ export interface CommitAminoMsg { } /** Commit contains the evidence that a block was committed by a set of validators. */ export interface CommitSDKType { - height: Long; + height: bigint; round: number; block_id: BlockIDSDKType; signatures: CommitSigSDKType[]; @@ -298,10 +297,10 @@ export interface CommitSigProtoMsg { } /** CommitSig is a part of the Vote included in a Commit. */ export interface CommitSigAmino { - block_id_flag: BlockIDFlag; - validator_address: Uint8Array; - timestamp?: TimestampAmino; - signature: Uint8Array; + block_id_flag?: BlockIDFlag; + validator_address?: string; + timestamp?: string; + signature?: string; } export interface CommitSigAminoMsg { type: "/tendermint.types.CommitSig"; @@ -316,7 +315,7 @@ export interface CommitSigSDKType { } export interface Proposal { type: SignedMsgType; - height: Long; + height: bigint; round: number; polRound: number; blockId: BlockID; @@ -328,13 +327,13 @@ export interface ProposalProtoMsg { value: Uint8Array; } export interface ProposalAmino { - type: SignedMsgType; - height: string; - round: number; - pol_round: number; + type?: SignedMsgType; + height?: string; + round?: number; + pol_round?: number; block_id?: BlockIDAmino; - timestamp?: TimestampAmino; - signature: Uint8Array; + timestamp?: string; + signature?: string; } export interface ProposalAminoMsg { type: "/tendermint.types.Proposal"; @@ -342,7 +341,7 @@ export interface ProposalAminoMsg { } export interface ProposalSDKType { type: SignedMsgType; - height: Long; + height: bigint; round: number; pol_round: number; block_id: BlockIDSDKType; @@ -350,8 +349,8 @@ export interface ProposalSDKType { signature: Uint8Array; } export interface SignedHeader { - header: Header; - commit: Commit; + header?: Header; + commit?: Commit; } export interface SignedHeaderProtoMsg { typeUrl: "/tendermint.types.SignedHeader"; @@ -366,12 +365,12 @@ export interface SignedHeaderAminoMsg { value: SignedHeaderAmino; } export interface SignedHeaderSDKType { - header: HeaderSDKType; - commit: CommitSDKType; + header?: HeaderSDKType; + commit?: CommitSDKType; } export interface LightBlock { - signedHeader: SignedHeader; - validatorSet: ValidatorSet; + signedHeader?: SignedHeader; + validatorSet?: ValidatorSet; } export interface LightBlockProtoMsg { typeUrl: "/tendermint.types.LightBlock"; @@ -386,14 +385,14 @@ export interface LightBlockAminoMsg { value: LightBlockAmino; } export interface LightBlockSDKType { - signed_header: SignedHeaderSDKType; - validator_set: ValidatorSetSDKType; + signed_header?: SignedHeaderSDKType; + validator_set?: ValidatorSetSDKType; } export interface BlockMeta { blockId: BlockID; - blockSize: Long; + blockSize: bigint; header: Header; - numTxs: Long; + numTxs: bigint; } export interface BlockMetaProtoMsg { typeUrl: "/tendermint.types.BlockMeta"; @@ -401,9 +400,9 @@ export interface BlockMetaProtoMsg { } export interface BlockMetaAmino { block_id?: BlockIDAmino; - block_size: string; + block_size?: string; header?: HeaderAmino; - num_txs: string; + num_txs?: string; } export interface BlockMetaAminoMsg { type: "/tendermint.types.BlockMeta"; @@ -411,15 +410,15 @@ export interface BlockMetaAminoMsg { } export interface BlockMetaSDKType { block_id: BlockIDSDKType; - block_size: Long; + block_size: bigint; header: HeaderSDKType; - num_txs: Long; + num_txs: bigint; } /** TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree. */ export interface TxProof { rootHash: Uint8Array; data: Uint8Array; - proof: Proof; + proof?: Proof; } export interface TxProofProtoMsg { typeUrl: "/tendermint.types.TxProof"; @@ -427,8 +426,8 @@ export interface TxProofProtoMsg { } /** TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree. */ export interface TxProofAmino { - root_hash: Uint8Array; - data: Uint8Array; + root_hash?: string; + data?: string; proof?: ProofAmino; } export interface TxProofAminoMsg { @@ -439,11 +438,12 @@ export interface TxProofAminoMsg { export interface TxProofSDKType { root_hash: Uint8Array; data: Uint8Array; - proof: ProofSDKType; + proof?: ProofSDKType; } export declare const PartSetHeader: { - encode(message: PartSetHeader, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): PartSetHeader; + typeUrl: string; + encode(message: PartSetHeader, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): PartSetHeader; fromJSON(object: any): PartSetHeader; toJSON(message: PartSetHeader): unknown; fromPartial(object: Partial): PartSetHeader; @@ -455,8 +455,9 @@ export declare const PartSetHeader: { toProtoMsg(message: PartSetHeader): PartSetHeaderProtoMsg; }; export declare const Part: { - encode(message: Part, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Part; + typeUrl: string; + encode(message: Part, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Part; fromJSON(object: any): Part; toJSON(message: Part): unknown; fromPartial(object: Partial): Part; @@ -468,8 +469,9 @@ export declare const Part: { toProtoMsg(message: Part): PartProtoMsg; }; export declare const BlockID: { - encode(message: BlockID, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BlockID; + typeUrl: string; + encode(message: BlockID, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BlockID; fromJSON(object: any): BlockID; toJSON(message: BlockID): unknown; fromPartial(object: Partial): BlockID; @@ -481,8 +483,9 @@ export declare const BlockID: { toProtoMsg(message: BlockID): BlockIDProtoMsg; }; export declare const Header: { - encode(message: Header, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Header; + typeUrl: string; + encode(message: Header, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Header; fromJSON(object: any): Header; toJSON(message: Header): unknown; fromPartial(object: Partial
): Header; @@ -494,8 +497,9 @@ export declare const Header: { toProtoMsg(message: Header): HeaderProtoMsg; }; export declare const Data: { - encode(message: Data, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Data; + typeUrl: string; + encode(message: Data, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Data; fromJSON(object: any): Data; toJSON(message: Data): unknown; fromPartial(object: Partial): Data; @@ -507,8 +511,9 @@ export declare const Data: { toProtoMsg(message: Data): DataProtoMsg; }; export declare const Vote: { - encode(message: Vote, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Vote; + typeUrl: string; + encode(message: Vote, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Vote; fromJSON(object: any): Vote; toJSON(message: Vote): unknown; fromPartial(object: Partial): Vote; @@ -520,8 +525,9 @@ export declare const Vote: { toProtoMsg(message: Vote): VoteProtoMsg; }; export declare const Commit: { - encode(message: Commit, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Commit; + typeUrl: string; + encode(message: Commit, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Commit; fromJSON(object: any): Commit; toJSON(message: Commit): unknown; fromPartial(object: Partial): Commit; @@ -533,8 +539,9 @@ export declare const Commit: { toProtoMsg(message: Commit): CommitProtoMsg; }; export declare const CommitSig: { - encode(message: CommitSig, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): CommitSig; + typeUrl: string; + encode(message: CommitSig, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): CommitSig; fromJSON(object: any): CommitSig; toJSON(message: CommitSig): unknown; fromPartial(object: Partial): CommitSig; @@ -546,8 +553,9 @@ export declare const CommitSig: { toProtoMsg(message: CommitSig): CommitSigProtoMsg; }; export declare const Proposal: { - encode(message: Proposal, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Proposal; + typeUrl: string; + encode(message: Proposal, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Proposal; fromJSON(object: any): Proposal; toJSON(message: Proposal): unknown; fromPartial(object: Partial): Proposal; @@ -559,8 +567,9 @@ export declare const Proposal: { toProtoMsg(message: Proposal): ProposalProtoMsg; }; export declare const SignedHeader: { - encode(message: SignedHeader, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SignedHeader; + typeUrl: string; + encode(message: SignedHeader, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SignedHeader; fromJSON(object: any): SignedHeader; toJSON(message: SignedHeader): unknown; fromPartial(object: Partial): SignedHeader; @@ -572,8 +581,9 @@ export declare const SignedHeader: { toProtoMsg(message: SignedHeader): SignedHeaderProtoMsg; }; export declare const LightBlock: { - encode(message: LightBlock, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): LightBlock; + typeUrl: string; + encode(message: LightBlock, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): LightBlock; fromJSON(object: any): LightBlock; toJSON(message: LightBlock): unknown; fromPartial(object: Partial): LightBlock; @@ -585,8 +595,9 @@ export declare const LightBlock: { toProtoMsg(message: LightBlock): LightBlockProtoMsg; }; export declare const BlockMeta: { - encode(message: BlockMeta, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): BlockMeta; + typeUrl: string; + encode(message: BlockMeta, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): BlockMeta; fromJSON(object: any): BlockMeta; toJSON(message: BlockMeta): unknown; fromPartial(object: Partial): BlockMeta; @@ -598,8 +609,9 @@ export declare const BlockMeta: { toProtoMsg(message: BlockMeta): BlockMetaProtoMsg; }; export declare const TxProof: { - encode(message: TxProof, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): TxProof; + typeUrl: string; + encode(message: TxProof, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): TxProof; fromJSON(object: any): TxProof; toJSON(message: TxProof): unknown; fromPartial(object: Partial): TxProof; diff --git a/packages/api/types/codegen/tendermint/types/validator.d.ts b/packages/api/types/codegen/tendermint/types/validator.d.ts index 054bc18..7d8b19e 100644 --- a/packages/api/types/codegen/tendermint/types/validator.d.ts +++ b/packages/api/types/codegen/tendermint/types/validator.d.ts @@ -1,19 +1,18 @@ import { PublicKey, PublicKeyAmino, PublicKeySDKType } from "../crypto/keys"; -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; export interface ValidatorSet { validators: Validator[]; - proposer: Validator; - totalVotingPower: Long; + proposer?: Validator; + totalVotingPower: bigint; } export interface ValidatorSetProtoMsg { typeUrl: "/tendermint.types.ValidatorSet"; value: Uint8Array; } export interface ValidatorSetAmino { - validators: ValidatorAmino[]; + validators?: ValidatorAmino[]; proposer?: ValidatorAmino; - total_voting_power: string; + total_voting_power?: string; } export interface ValidatorSetAminoMsg { type: "/tendermint.types.ValidatorSet"; @@ -21,24 +20,24 @@ export interface ValidatorSetAminoMsg { } export interface ValidatorSetSDKType { validators: ValidatorSDKType[]; - proposer: ValidatorSDKType; - total_voting_power: Long; + proposer?: ValidatorSDKType; + total_voting_power: bigint; } export interface Validator { address: Uint8Array; pubKey: PublicKey; - votingPower: Long; - proposerPriority: Long; + votingPower: bigint; + proposerPriority: bigint; } export interface ValidatorProtoMsg { typeUrl: "/tendermint.types.Validator"; value: Uint8Array; } export interface ValidatorAmino { - address: Uint8Array; + address?: string; pub_key?: PublicKeyAmino; - voting_power: string; - proposer_priority: string; + voting_power?: string; + proposer_priority?: string; } export interface ValidatorAminoMsg { type: "/tendermint.types.Validator"; @@ -47,12 +46,12 @@ export interface ValidatorAminoMsg { export interface ValidatorSDKType { address: Uint8Array; pub_key: PublicKeySDKType; - voting_power: Long; - proposer_priority: Long; + voting_power: bigint; + proposer_priority: bigint; } export interface SimpleValidator { - pubKey: PublicKey; - votingPower: Long; + pubKey?: PublicKey; + votingPower: bigint; } export interface SimpleValidatorProtoMsg { typeUrl: "/tendermint.types.SimpleValidator"; @@ -60,19 +59,20 @@ export interface SimpleValidatorProtoMsg { } export interface SimpleValidatorAmino { pub_key?: PublicKeyAmino; - voting_power: string; + voting_power?: string; } export interface SimpleValidatorAminoMsg { type: "/tendermint.types.SimpleValidator"; value: SimpleValidatorAmino; } export interface SimpleValidatorSDKType { - pub_key: PublicKeySDKType; - voting_power: Long; + pub_key?: PublicKeySDKType; + voting_power: bigint; } export declare const ValidatorSet: { - encode(message: ValidatorSet, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorSet; + typeUrl: string; + encode(message: ValidatorSet, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): ValidatorSet; fromJSON(object: any): ValidatorSet; toJSON(message: ValidatorSet): unknown; fromPartial(object: Partial): ValidatorSet; @@ -84,8 +84,9 @@ export declare const ValidatorSet: { toProtoMsg(message: ValidatorSet): ValidatorSetProtoMsg; }; export declare const Validator: { - encode(message: Validator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Validator; + typeUrl: string; + encode(message: Validator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Validator; fromJSON(object: any): Validator; toJSON(message: Validator): unknown; fromPartial(object: Partial): Validator; @@ -97,8 +98,9 @@ export declare const Validator: { toProtoMsg(message: Validator): ValidatorProtoMsg; }; export declare const SimpleValidator: { - encode(message: SimpleValidator, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): SimpleValidator; + typeUrl: string; + encode(message: SimpleValidator, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): SimpleValidator; fromJSON(object: any): SimpleValidator; toJSON(message: SimpleValidator): unknown; fromPartial(object: Partial): SimpleValidator; diff --git a/packages/api/types/codegen/tendermint/version/types.d.ts b/packages/api/types/codegen/tendermint/version/types.d.ts index cc58bf2..1414797 100644 --- a/packages/api/types/codegen/tendermint/version/types.d.ts +++ b/packages/api/types/codegen/tendermint/version/types.d.ts @@ -1,12 +1,11 @@ -import { Long } from "../../helpers"; -import * as _m0 from "protobufjs/minimal"; +import { BinaryReader, BinaryWriter } from "../../binary"; /** * 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; + protocol: bigint; software: string; } export interface AppProtoMsg { @@ -19,8 +18,8 @@ export interface AppProtoMsg { * updated in ResponseEndBlock. */ export interface AppAmino { - protocol: string; - software: string; + protocol?: string; + software?: string; } export interface AppAminoMsg { type: "/tendermint.version.App"; @@ -32,7 +31,7 @@ export interface AppAminoMsg { * updated in ResponseEndBlock. */ export interface AppSDKType { - protocol: Long; + protocol: bigint; software: string; } /** @@ -41,8 +40,8 @@ export interface AppSDKType { * state transition machine. */ export interface Consensus { - block: Long; - app: Long; + block: bigint; + app: bigint; } export interface ConsensusProtoMsg { typeUrl: "/tendermint.version.Consensus"; @@ -54,8 +53,8 @@ export interface ConsensusProtoMsg { * state transition machine. */ export interface ConsensusAmino { - block: string; - app: string; + block?: string; + app?: string; } export interface ConsensusAminoMsg { type: "/tendermint.version.Consensus"; @@ -67,12 +66,13 @@ export interface ConsensusAminoMsg { * state transition machine. */ export interface ConsensusSDKType { - block: Long; - app: Long; + block: bigint; + app: bigint; } export declare const App: { - encode(message: App, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): App; + typeUrl: string; + encode(message: App, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): App; fromJSON(object: any): App; toJSON(message: App): unknown; fromPartial(object: Partial): App; @@ -84,8 +84,9 @@ export declare const App: { toProtoMsg(message: App): AppProtoMsg; }; export declare const Consensus: { - encode(message: Consensus, writer?: _m0.Writer): _m0.Writer; - decode(input: _m0.Reader | Uint8Array, length?: number): Consensus; + typeUrl: string; + encode(message: Consensus, writer?: BinaryWriter): BinaryWriter; + decode(input: BinaryReader | Uint8Array, length?: number): Consensus; fromJSON(object: any): Consensus; toJSON(message: Consensus): unknown; fromPartial(object: Partial): Consensus; diff --git a/yarn.lock b/yarn.lock index 73b010f..2091e09 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2587,6 +2587,13 @@ shelljs "0.8.5" wasm-ast-types "^0.25.0" +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + "@csstools/normalize.css@*": version "12.0.0" resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-12.0.0.tgz#a9583a75c3f150667771f30b60d9f059473e62c4" @@ -3166,7 +3173,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== -"@jridgewell/resolve-uri@^3.1.0": +"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": version "3.1.2" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== @@ -3196,6 +3203,14 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" @@ -4411,6 +4426,26 @@ resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== +"@tsconfig/node10@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" + integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + "@types/aria-query@^5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc" @@ -5199,11 +5234,23 @@ acorn-walk@^7.1.1: resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== +acorn-walk@^8.1.1: + version "8.3.3" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.3.tgz#9caeac29eefaa0c41e3d4c65137de4d6f34df43e" + integrity sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw== + dependencies: + acorn "^8.11.0" + acorn@^7.1.1, acorn@^7.4.0: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== +acorn@^8.11.0, acorn@^8.4.1: + version "8.12.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== + acorn@^8.2.4: version "8.8.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" @@ -5406,6 +5453,11 @@ are-we-there-yet@~1.1.2: delegates "^1.0.0" readable-stream "^2.0.6" +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + arg@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" @@ -6964,6 +7016,11 @@ create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: safe-buffer "^5.0.1" sha.js "^2.4.8" +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + cross-env@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" @@ -7499,6 +7556,11 @@ diff-sequences@^29.4.3: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + diffie-hellman@^5.0.0: version "5.0.3" resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" @@ -11521,7 +11583,7 @@ make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: dependencies: semver "^6.0.0" -make-error@1.x: +make-error@1.x, make-error@^1.1.1: version "1.3.6" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== @@ -15726,6 +15788,25 @@ ts-jest@^26.4.4: semver "7.x" yargs-parser "20.x" +ts-node@^10.9.2: + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + tsconfig-paths@^3.14.1: version "3.14.2" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" @@ -16079,6 +16160,11 @@ uuid@^8.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + v8-compile-cache@^2.0.3: version "2.3.0" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" @@ -16815,6 +16901,11 @@ yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"