@injectivelabs/sdk-ts 1.18.5 → 1.18.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2874,6 +2874,81 @@ declare class MsgSubmitProposalSpotMarketLaunch extends MsgBase<MsgSubmitProposa
2874
2874
  toBinary(): Uint8Array;
2875
2875
  }
2876
2876
  //#endregion
2877
+ //#region src/core/modules/gov/msgs/MsgGrantProviderPrivilegeProposal.d.ts
2878
+ declare namespace MsgGrantProviderPrivilegeProposal {
2879
+ interface Params {
2880
+ title: string;
2881
+ description: string;
2882
+ proposer: string;
2883
+ provider: string;
2884
+ relayers: string[];
2885
+ deposit: {
2886
+ amount: string;
2887
+ denom: string;
2888
+ };
2889
+ }
2890
+ type Proto = MsgSubmitProposal$1;
2891
+ type Object = Omit<MsgSubmitProposal$1, 'content'> & {
2892
+ content: {
2893
+ type_url: string;
2894
+ value: any;
2895
+ };
2896
+ };
2897
+ }
2898
+ /**
2899
+ * @category Messages
2900
+ */
2901
+ declare class MsgGrantProviderPrivilegeProposal extends MsgBase<MsgGrantProviderPrivilegeProposal.Params, MsgGrantProviderPrivilegeProposal.Proto> {
2902
+ static fromJSON(params: MsgGrantProviderPrivilegeProposal.Params): MsgGrantProviderPrivilegeProposal;
2903
+ toProto(): MsgSubmitProposal$1;
2904
+ toData(): {
2905
+ content?: Any;
2906
+ initialDeposit: Coin$1[];
2907
+ proposer: string;
2908
+ '@type': string;
2909
+ };
2910
+ toAmino(): {
2911
+ type: string;
2912
+ value: {
2913
+ content: {
2914
+ type: string;
2915
+ value: {
2916
+ title: string;
2917
+ description: string;
2918
+ provider: string;
2919
+ relayers: string[];
2920
+ };
2921
+ };
2922
+ initial_deposit: {
2923
+ denom: string;
2924
+ amount: string;
2925
+ }[];
2926
+ proposer: string;
2927
+ };
2928
+ };
2929
+ toWeb3Gw(): {
2930
+ content: {
2931
+ title: string;
2932
+ description: string;
2933
+ provider: string;
2934
+ relayers: string[];
2935
+ '@type': string;
2936
+ };
2937
+ initial_deposit: {
2938
+ denom: string;
2939
+ amount: string;
2940
+ }[];
2941
+ proposer: string;
2942
+ '@type': string;
2943
+ };
2944
+ toDirectSign(): {
2945
+ type: string;
2946
+ message: MsgSubmitProposal$1;
2947
+ };
2948
+ toBinary(): Uint8Array;
2949
+ private getContent;
2950
+ }
2951
+ //#endregion
2877
2952
  //#region src/core/modules/gov/msgs/MsgSubmitProposalPerpetualMarketLaunch.d.ts
2878
2953
  declare namespace MsgSubmitProposalPerpetualMarketLaunch {
2879
2954
  interface Params {
@@ -3921,6 +3996,27 @@ interface GrantPriceFeederPrivilegeProposal {
3921
3996
  */
3922
3997
  relayers: string[];
3923
3998
  }
3999
+ /**
4000
+ * @generated from protobuf message injective.oracle.v1beta1.GrantProviderPrivilegeProposal
4001
+ */
4002
+ interface GrantProviderPrivilegeProposal {
4003
+ /**
4004
+ * @generated from protobuf field: string title = 1
4005
+ */
4006
+ title: string;
4007
+ /**
4008
+ * @generated from protobuf field: string description = 2
4009
+ */
4010
+ description: string;
4011
+ /**
4012
+ * @generated from protobuf field: string provider = 3
4013
+ */
4014
+ provider: string;
4015
+ /**
4016
+ * @generated from protobuf field: repeated string relayers = 4
4017
+ */
4018
+ relayers: string[];
4019
+ }
3924
4020
  /**
3925
4021
  * @generated from protobuf message injective.oracle.v1beta1.RevokePriceFeederPrivilegeProposal
3926
4022
  */
@@ -4002,6 +4098,10 @@ declare const RevokeBandOraclePrivilegeProposal = new RevokeBandOraclePrivilegeP
4002
4098
  * @generated MessageType for protobuf message injective.oracle.v1beta1.GrantPriceFeederPrivilegeProposal
4003
4099
  */
4004
4100
  declare const GrantPriceFeederPrivilegeProposal = new GrantPriceFeederPrivilegeProposal$Type();
4101
+ /**
4102
+ * @generated MessageType for protobuf message injective.oracle.v1beta1.GrantProviderPrivilegeProposal
4103
+ */
4104
+ declare const GrantProviderPrivilegeProposal = new GrantProviderPrivilegeProposal$Type();
4005
4105
  /**
4006
4106
  * @generated MessageType for protobuf message injective.oracle.v1beta1.RevokePriceFeederPrivilegeProposal
4007
4107
  */
@@ -4021,6 +4121,7 @@ declare const EnableBandIBCProposal = new EnableBandIBCProposal$Type();
4021
4121
  declare class ProposalDecomposer {
4022
4122
  static getMsgExecLegacyContent(content: Uint8Array): MsgExecLegacyContent;
4023
4123
  static grantBandOraclePrivilegeProposal(content: Uint8Array): GrantBandOraclePrivilegeProposal;
4124
+ static grantProviderPrivilegeProposal(content: Uint8Array): GrantProviderPrivilegeProposal;
4024
4125
  static removeBandOraclePrivilegeProposal(content: Uint8Array): RevokeBandOraclePrivilegeProposal;
4025
4126
  static grantPriceFeederPrivilegeProposal(content: Uint8Array): GrantPriceFeederPrivilegeProposal;
4026
4127
  static removePriceFeederPrivilegeProposal(content: Uint8Array): RevokePriceFeederPrivilegeProposal;
@@ -4042,7 +4143,7 @@ declare class ProposalDecomposer {
4042
4143
  }
4043
4144
  //#endregion
4044
4145
  //#region src/core/modules/gov/index.d.ts
4045
- type MsgSubmitProposal = MsgSubmitTextProposal | MsgSubmitGenericProposal | MsgSubmitProposalSpotMarketLaunch | MsgSubmitProposalPerpetualMarketLaunch | MsgSubmitProposalSpotMarketParamUpdate | MsgSubmitProposalPerpetualMarketLaunchV2 | MsgSubmitProposalExpiryFuturesMarketLaunch;
4146
+ type MsgSubmitProposal = MsgSubmitTextProposal | MsgSubmitGenericProposal | MsgSubmitProposalSpotMarketLaunch | MsgSubmitProposalPerpetualMarketLaunch | MsgSubmitProposalSpotMarketParamUpdate | MsgSubmitProposalPerpetualMarketLaunchV2 | MsgSubmitProposalExpiryFuturesMarketLaunch | MsgGrantProviderPrivilegeProposal;
4046
4147
  //#endregion
4047
4148
  //#region src/core/modules/authz/msgs/MsgExec.d.ts
4048
4149
  declare namespace MsgExec {
@@ -8626,13 +8727,13 @@ declare class MsgCreateValidator extends MsgBase<MsgCreateValidator.Params, MsgC
8626
8727
  value: MsgCreateValidator.Object;
8627
8728
  };
8628
8729
  toWeb3Gw(): {
8730
+ value?: Coin$1 | undefined;
8629
8731
  description?: Description | undefined;
8630
8732
  commission?: CommissionRates | undefined;
8631
8733
  minSelfDelegation: string;
8632
8734
  delegatorAddress: string;
8633
8735
  validatorAddress: string;
8634
8736
  pubkey?: Any | undefined;
8635
- value?: Coin$1 | undefined;
8636
8737
  pubKey: any;
8637
8738
  '@type': string;
8638
8739
  };
@@ -9138,6 +9239,90 @@ declare class MsgTransferDelegation extends MsgBase<MsgTransferDelegation.Params
9138
9239
  toBinary(): Uint8Array;
9139
9240
  }
9140
9241
  //#endregion
9242
+ //#region ../../node_modules/.pnpm/@injectivelabs+core-proto-ts-v2@1.18.0/node_modules/@injectivelabs/core-proto-ts-v2/generated/injective/oracle/v1beta1/tx_pb.d.ts
9243
+ /**
9244
+ * MsgRelayProviderPrice defines a SDK message for setting a price through the
9245
+ * provider oracle.
9246
+ *
9247
+ * @generated from protobuf message injective.oracle.v1beta1.MsgRelayProviderPrices
9248
+ */
9249
+ interface MsgRelayProviderPrices$1 {
9250
+ /**
9251
+ * @generated from protobuf field: string sender = 1
9252
+ */
9253
+ sender: string;
9254
+ /**
9255
+ * @generated from protobuf field: string provider = 2
9256
+ */
9257
+ provider: string;
9258
+ /**
9259
+ * @generated from protobuf field: repeated string symbols = 3
9260
+ */
9261
+ symbols: string[];
9262
+ /**
9263
+ * @generated from protobuf field: repeated string prices = 4
9264
+ */
9265
+ prices: string[];
9266
+ }
9267
+ /**
9268
+ * @generated MessageType for protobuf message injective.oracle.v1beta1.MsgRelayProviderPrices
9269
+ */
9270
+ declare const MsgRelayProviderPrices$1 = new MsgRelayProviderPrices$Type();
9271
+ //#endregion
9272
+ //#region src/core/modules/oracle/msgs/MsgRelayProviderPrices.d.ts
9273
+ declare namespace MsgRelayProviderPrices {
9274
+ interface Params {
9275
+ sender: string;
9276
+ provider: string;
9277
+ symbols: string[];
9278
+ prices: string[];
9279
+ }
9280
+ type Proto = MsgRelayProviderPrices$1;
9281
+ }
9282
+ /**
9283
+ * @category Messages
9284
+ */
9285
+ declare class MsgRelayProviderPrices extends MsgBase<MsgRelayProviderPrices.Params, MsgRelayProviderPrices.Proto> {
9286
+ static fromJSON(params: MsgRelayProviderPrices.Params): MsgRelayProviderPrices;
9287
+ toProto(): MsgRelayProviderPrices$1;
9288
+ toData(): {
9289
+ sender: string;
9290
+ provider: string;
9291
+ symbols: string[];
9292
+ prices: string[];
9293
+ '@type': string;
9294
+ };
9295
+ toAmino(): {
9296
+ type: string;
9297
+ value: {
9298
+ sender: string;
9299
+ provider: string;
9300
+ symbols: string[];
9301
+ prices: string[];
9302
+ };
9303
+ };
9304
+ toEip712(): never;
9305
+ toEip712V2(): {
9306
+ prices: any;
9307
+ sender: string;
9308
+ provider: string;
9309
+ symbols: string[];
9310
+ '@type': string;
9311
+ };
9312
+ toWeb3Gw(): {
9313
+ sender: string;
9314
+ provider: string;
9315
+ symbols: string[];
9316
+ prices: string[];
9317
+ '@type': string;
9318
+ };
9319
+ toDirectSign(): {
9320
+ type: string;
9321
+ message: MsgRelayProviderPrices$1;
9322
+ };
9323
+ toBinary(): Uint8Array;
9324
+ }
9325
+ //#endregion
9141
9326
  //#region src/core/modules/exchange/msgs/MsgReclaimLockedFunds.d.ts
9142
9327
  declare namespace MsgReclaimLockedFunds {
9143
9328
  interface Params {
@@ -14371,22 +14556,23 @@ declare class MsgSetDelegationTransferReceivers extends MsgBase<MsgSetDelegation
14371
14556
  }
14372
14557
  //#endregion
14373
14558
  //#region src/core/modules/msgs.d.ts
14374
- type Erc20Msgs = MsgCreateTokenPair;
14375
14559
  type AuctionMsgs = MsgBid;
14376
- type AuthzMsgs = MsgGrant | MsgRevoke | MsgExec | MsgGrantWithAuthorization;
14560
+ type IbcMsgs = MsgTransfer;
14561
+ type PeggyMsgs = MsgSendToEth;
14562
+ type Erc20Msgs = MsgCreateTokenPair;
14377
14563
  type BankMsgs = MsgSend | MsgMultiSend;
14564
+ type OracleMsgs = MsgRelayProviderPrices;
14565
+ type FeegrantMsgs = MsgGrantAllowance | MsgRevokeAllowance;
14566
+ type GovMsgs = MsgVote | MsgSubmitProposal | MsgDeposit$1;
14567
+ type AuthzMsgs = MsgGrant | MsgRevoke | MsgExec | MsgGrantWithAuthorization;
14378
14568
  type DistributionMsgs = MsgFundCommunityPool | MsgWithdrawDelegatorReward | MsgWithdrawValidatorCommission;
14379
14569
  type ExchangeV1Msgs = MsgDeposit | MsgSignData | MsgWithdraw | MsgRewardsOptOut | MsgCancelSpotOrder | MsgExternalTransfer | MsgBatchUpdateOrders | MsgLiquidatePosition | MsgReclaimLockedFunds | MsgAuthorizeStakeGrants | MsgCreateSpotLimitOrder | MsgBatchCancelSpotOrders | MsgCancelDerivativeOrder | MsgCreateSpotMarketOrder | MsgIncreasePositionMargin | MsgInstantSpotMarketLaunch | MsgCancelBinaryOptionsOrder | MsgCreateDerivativeLimitOrder | MsgBatchCancelDerivativeOrders | MsgCreateDerivativeMarketOrder | MsgCreateBinaryOptionsLimitOrder | MsgAdminUpdateBinaryOptionsMarket | MsgBatchCancelBinaryOptionsOrders | MsgCreateBinaryOptionsMarketOrder | MsgSetDelegationTransferReceivers;
14380
14570
  type ExchangeV2Msgs = MsgUpdateSpotMarketV2 | MsgCancelPostOnlyModeV2 | MsgUpdateDerivativeMarketV2;
14381
- type FeegrantMsgs = MsgGrantAllowance | MsgRevokeAllowance;
14382
- type GovMsgs = MsgVote | MsgSubmitProposal | MsgDeposit$1;
14383
- type IbcMsgs = MsgTransfer;
14384
14571
  type InsuranceMsgs = MsgUnderwrite | MsgRequestRedemption | MsgCreateInsuranceFund;
14385
- type PeggyMsgs = MsgSendToEth;
14386
14572
  type StakingMsgs = MsgDelegate | MsgUndelegate | MsgEditValidator | MsgBeginRedelegate | MsgCreateValidator | MsgTransferDelegation | MsgCancelUnbondingDelegation;
14387
14573
  type TokenFactoryMsgs = MsgBurn | MsgMint | MsgChangeAdmin | MsgCreateDenom | MsgSetDenomMetadata;
14388
14574
  type WasmMsgs = MsgStoreCode | MsgUpdateAdmin | MsgPrivilegedExecuteContract | MsgExecuteContract | MsgMigrateContract | MsgInstantiateContract | MsgExecuteContractCompat;
14389
- type Msgs = AuctionMsgs | AuthzMsgs | BankMsgs | DistributionMsgs | ExchangeV1Msgs | ExchangeV2Msgs | FeegrantMsgs | GovMsgs | IbcMsgs | InsuranceMsgs | PeggyMsgs | StakingMsgs | TokenFactoryMsgs | WasmMsgs | Erc20Msgs;
14575
+ type Msgs = AuctionMsgs | AuthzMsgs | BankMsgs | DistributionMsgs | ExchangeV1Msgs | ExchangeV2Msgs | FeegrantMsgs | GovMsgs | IbcMsgs | InsuranceMsgs | PeggyMsgs | StakingMsgs | TokenFactoryMsgs | WasmMsgs | Erc20Msgs | OracleMsgs;
14390
14576
  type ExchangeMsgs = ExchangeV1Msgs | ExchangeV2Msgs;
14391
14577
  //#endregion
14392
14578
  //#region ../../node_modules/.pnpm/@injectivelabs+core-proto-ts-v2@1.18.0/node_modules/@injectivelabs/core-proto-ts-v2/generated/cometbft/types/v1/evidence_pb.d.ts
@@ -38170,4 +38356,4 @@ declare class ChainGrpcInsuranceFundTransformer {
38170
38356
  }[];
38171
38357
  }
38172
38358
  //#endregion
38173
- export { DerivativeOrdersStreamCallbackV2 as $, GrpcGovernanceTallyParams as $_, HistoricalRPNL as $a, MitoIDOClaimedCoins as $c, MsgUpdateActorRoles as $d, createSignerInfo as $f, GrpcSpotMarket as $g, MinModuleParams as $h, GrpcMegaVaultUserStats as $i, base64ToUtf8 as $l, GrpcPermissionRoleActors as $m, IndexerGrpcMegaVaultApi as $n, RFQMakerStreamAckData as $o, IbcMsgs as $p, BinaryOptionsMarket as $r, ValidatorSlashingEvent as $s, IndexerGrpcTradingStream as $t, getExactDecimalsFromNumber as $u, MsgPrivilegedExecuteContract as $v, ChainGrpcAuctionApi as A, UnBondingDelegation as A_, Campaign as Aa, GrpcMitoIDOSubscriptionActivity as Ac, TypedDataUtilsSanitizeData as Ad, getTypesIncludingFeePayer as Af, FeeDiscountSchedule as Ag, PeggyModuleParams as Ah, GrpcIndexerInsuranceFund as Ai, TransportEventListener as Al, AuctionBid as Am, IndexerAccountStreamTransformer as An, GrpcSpotOrderHistory as Ao, TxSearchResult as Ap, PositionsWithUPNL as Ar, ExplorerTxsV2Response as As, IndexerGrpcRfqStreamV2 as At, denomAmountFromChainDenomAmountToFixed as Au, MsgCreateSpotLimitOrder as Av, GrpcWebFetchTransport as Ay, ChainGrpcAuthApi as B, ContractCodeHistoryOperationTypeMap as B_, GuildMember as Ba, GrpcMitoStakingStakingReward as Bc, publicKeyToAddress as Bd, SIGN_EIP712_V2 as Bf, GrpcDenomDecimals as Bg, CreateSpotMarketOrderAuthz as Bh, GrpcMegaVaultHistoricalPnL as Bi, grpcPagingToPaging as Bl, AuctionParams as Bm, IndexerRfqStreamTransformer as Bn, IndexerTokenMeta as Bo, TxClientSimulateResponse as Bp, BlockFromExplorerApiResponse as Br, GrpcPeggyDepositTx as Bs, DerivativeOrderbookUpdateStreamCallback as Bt, derivativePriceFromChainPriceToFixed as Bu, MsgLiquidatePosition as Bv, ChainGrpcInsuranceFundApi as C, GrpcValidator as C_, MegaVaultVolatility as Ca, GrpcMitoDenomBalance as Cc, objectToJson as Cd, getDefaultEip712TypesV2 as Cf, ChainDenomMinNotional as Cg, TxFeesEipBaseFee as Ch, GrpcPositionDelta as Ci, MitoVestingConfig as Cl, BalancesResponse as Cm, IndexerGrpcAccountPortfolioTransformer as Cn, GrpcOracle as Co, RestTxBody as Cp, AccountPortfolioV2 as Cr, EventLog as Cs, VaultHolderSubscriptionStreamCallbackV2 as Ct, getDerivativeMarketDecimals as Cu, MsgInstantSpotMarketLaunch as Cv, MsgSubmitTextProposal as Cy, ChainGrpcTendermintApi as D, Pool as D_, AllSpotMarketSummaryResponse as Da, GrpcMitoIDOProgress as Dc, sortObjectByKeysWithReduce as Dd, getEip712FeeV2 as Df, ExchangeModuleParams as Dg, Params$6 as Dh, Position as Di, GrpcFrame as Dl, AccountsResponse as Dm, IndexerArchiverStreamTransformer as Dn, GrpcAtomicSwap as Do, TxInfoResponse as Dp, GrpcPositionsWithUPNL as Dr, ExplorerStats as Ds, SpotOrderbookUpdateStreamCallbackV2 as Dt, amountToCosmosSdkDecAmount as Du, MsgBatchCancelSpotOrders as Dv, MsgBid as Dy, ChainGrpcPermissionsApi as E, GrpcValidatorDescription as E_, AllChronosSpotMarketSummary as Ea, GrpcMitoIDOClaimedCoins as Ec, sortObjectByKeys as Ed, getEip712Fee as Ef, DepositProposalParams as Eg, GrpcTokenPair as Eh, PerpetualMarketInfo as Ei, GrpcDecodeError as El, AccountResponse as Em, ExplorerStreamTransformer as En, BatchSpotOrderCancelParams as Eo, TxInfo as Ep, GrpcPositionV2 as Er, ExplorerCW20BalanceWithToken as Es, SpotOrderHistoryStreamCallbackV2 as Et, getSpotMarketTensMultiplier as Eu, MsgCancelDerivativeOrder as Ev, MsgGrant as Ey, ChainGrpcPeggyApi as F, CodeInfoResponse as F_, GrpcCampaignV2 as Fa, GrpcMitoPagination as Fc, messageHash as Fd, stringTypeToReflectionStringType as Ff, GrpcChainDerivativePosition as Fg, CancelDerivativeOrderAuthz as Fh, RedemptionStatus as Fi, WsState as Fl, AuctionLastAuctionResult as Fm, IndexerGrpcArchiverTransformer as Fn, SpotOrderCancelParams as Fo, MsgArg as Fp, AllChronosDerivativeMarketSummary as Fr, GrpcBankMsgSendMessage as Fs, createStreamSubscription as Ft, derivativeMarginFromChainMargin as Fu, MsgUpdateSpotMarketV2 as Fv, createStreamSubscriptionV2 as G, GrpcCodeInfoResponse as G_, GrpcHistoricalBalance as Ga, GrpcMitoWhitelistAccount as Gc, ofacList as Gd, errorToErrorMessage as Gf, GrpcFeeDiscountTierInfo as Gg, GrantWithDecodedAuthorization as Gh, GrpcMegaVaultOperator as Gi, BECH32_ADDR_ACC_PREFIX as Gl, GrpcAuctionLastAuctionResult as Gm, IndexerRestLeaderboardChronosApi as Gn, Route as Go, BankMsgs as Gp, ExplorerApiResponseWithPagination as Gr, IndexerStreamTransaction as Gs, DerivativeTradesStreamCallback as Gt, derivativeQuantityToChainQuantity as Gu, MsgCreateValidator as Gv, ChainGrpcIbcApi as H, ContractStateWithPagination as H_, AccountStats as Ha, GrpcMitoSubscription as Hc, sanitizeTypedData as Hd, createAnyMessage as Hf, GrpcExchangeParams as Hg, Grant$1 as Hh, GrpcMegaVaultIncentives as Hi, pageRequestToGrpcPageRequestV2 as Hl, GrpcAuctionEventAuctionResult as Hm, IndexerGrpcSpotTransformer as Hn, OrderbookWithSequence as Ho, TxResponse as Hp, ContractExplorerApiResponse as Hr, GrpcValidatorSlashingEvent as Hs, DerivativeOrdersStreamCallback as Ht, derivativePriceToChainPriceToFixed as Hu, MsgExternalTransfer as Hv, ChainGrpcAuthZApi as I, ContractAccountBalance as I_, GrpcGuild as Ia, GrpcMitoPriceSnapshot as Ic, privateKeyHashToPublicKey as Id, TxClient as If, GrpcChainFullDerivativeMarket as Ig, CancelSpotOrderAuthz as Ih, IncentivesCampaign as Ii, WsTransportConfig as Il, AuctionModuleParams as Im, IndexerGrpcAuctionTransformer as In, SpotOrderHistory as Io, SignerDetails as Ip, AllDerivativeMarketSummaryResponse as Ir, GrpcExplorerStats as Is, AccountPortfolioStreamCallback as It, derivativeMarginFromChainMarginToFixed as Iu, MsgReclaimLockedFunds as Iv, IndexerGrpcAccountPortfolioStreamV2 as J, MarketingInfo as J_, GrpcLeaderboardRow as Ja, MitoDenomBalance as Jc, makeTimeoutTimestamp as Jd, createBody as Jf, GrpcMarketStatusMap as Jg, GrpcRedemptionSchedule as Jh, GrpcMegaVaultPnlStats as Ji, BECH32_PUBKEY_ACC_PREFIX as Jl, GrpcPermissionAddressVoucher as Jm, IndexerRestSpotChronosApi as Jn, GrpcRFQRequest as Jo, ExchangeMsgs as Jp, TransactionFromExplorerApiResponse as Jr, PeggyDepositTx as Js, BlocksWithTxsStreamCallback as Jt, formatAmountToAllowableDecimals as Ju, MsgMigrateContract as Jv, StreamManagerV2 as K, GrpcContractCodeHistoryEntry as K_, GrpcHistoricalRPNL as Ka, MitoChanges as Kc, getGrpcWebTransport as Kd, isTxNotFoundError as Kf, GrpcFeeDiscountTierTTL as Kg, GrpcInsuranceFund as Kh, GrpcMegaVaultOperatorRedemptionBucket as Ki, BECH32_ADDR_CONS_PREFIX as Kl, GrpcAuctionParams as Km, IndexerRestDerivativesChronosApi as Kn, GrpcRFQExpiry as Ko, DistributionMsgs as Kp, ExplorerBlockApiResponse as Kr, Message as Ks, IndexerGrpcDerivativesStream as Kt, derivativeQuantityToChainQuantityToFixed as Ku, MsgBeginRedelegate as Kv, ChainGrpcWasmApi as L, ContractAccountsBalanceWithPagination as L_, GrpcGuildMember as La, GrpcMitoStakingGauge as Lc, privateKeyHashToPublicKeyBase64 as Ld, SIGN_AMINO as Lf, GrpcChainFullSpotMarket as Lg, CreateDerivativeLimitOrderAuthz as Lh, IncentivesRound as Li, recoverTypedSignaturePubKey as Ll, AuctionModuleState as Lm, IndexerGrpcAccountTransformer as Ln, SpotTrade as Lo, TxClientBroadcastOptions as Lp, ChronosDerivativeMarketSummary as Lr, GrpcGasFee as Ls, IndexerGrpcAccountPortfolioStream as Lt, derivativeMarginToChainMargin as Lu, MsgTransferDelegation as Lv, ChainGrpcOracleApi as M, ValidatorCommission as M_, CampaignV2 as Ma, GrpcMitoLeaderboardEpoch as Mc, decompressPubKey as Md, numberTypeToReflectionNumberType as Mf, FeeDiscountTierTTL as Mg, BatchCancelSpotOrdersAuthz as Mh, IndexerInsuranceFund as Mi, TransportEvents as Ml, AuctionEventAuctionResult as Mm, IndexerOracleStreamTransformer as Mn, SpotLimitOrder as Mo, CreateTransactionArgs as Mp, ChronosLeaderboard as Mr, ExplorerValidatorDescription as Ms, RequestStreamCallbackV2 as Mt, denomAmountToChainDenomAmount as Mu, MsgCreateInsuranceFund as Mv, ChainGrpcErc20Api as N, ValidatorDescription as N_, GrpcCampaign as Na, GrpcMitoMission as Nc, domainHash as Nd, objectKeysToEip712Types as Nf, GrpcCampaignRewardPool as Ng, BatchCreateDerivativeLimitOrdersAuthz as Nh, InsuranceFundCreateParams as Ni, WsDisconnectReason as Nl, AuctionEventAuctionStart as Nm, IndexerGrpcReferralTransformer as Nn, SpotLimitOrderParams as No, CreateTransactionResult as Np, ChronosLeaderboardEntry as Nr, ExplorerValidatorUptime as Ns, SettlementStreamCallbackV2 as Nt, denomAmountToChainDenomAmountToFixed as Nu, MsgFundCommunityPool as Nv, ChainGrpcExchangeApi as O, ReDelegation as O_, ChronosSpotMarketSummary as Oa, GrpcMitoIDOSubscriber as Oc, SignTypedDataVersionV4 as Od, getEipTxContext as Of, ExchangeParams as Og, TokenPair as Oh, PositionDelta as Oi, IsomorphicWebSocket as Ol, BaseAccountRestResponse as Om, IndexerGrpcMegaVaultTransformer as On, GrpcSpotLimitOrder as Oo, TxResult as Op, GrpcSubaccountDepositV2 as Or, ExplorerTransaction as Os, SpotOrdersStreamCallbackV2 as Ot, cosmosSdkDecToBigNumber as Ou, MsgGrantWithAuthorization as Ov, MsgSend as Oy, ChainGrpcWasmXApi as P, AbsoluteTxPosition as P_, GrpcCampaignUser as Pa, GrpcMitoMissionLeaderboardEntry as Pc, hashToHex as Pd, protoTypeToAminoType as Pf, GrpcChainDerivativeMarket as Pg, BatchCreateSpotLimitOrdersAuthz as Ph, Redemption as Pi, WsReconnectConfig as Pl, AuctionEventBid as Pm, IndexerGrpcExplorerTransformer as Pn, SpotMarket as Po, CreateTransactionWithSignersArgs as Pp, ChronosLeaderboardResponse as Pr, GasFee as Ps, StreamManager as Pt, denomAmountToGrpcChainDenomAmount as Pu, MsgSetDenomMetadata as Pv, DerivativeOrderbookV2StreamCallbackV2 as Q, GrpcGovernanceDepositParams as Q_, HistoricalBalance as Qa, MitoIDO as Qc, protobufTimestampToUnixSeconds as Qd, createSignDocFromTransaction as Qf, GrpcPointsMultiplier as Qg, GrpcMintParams as Qh, GrpcMegaVaultUnrealizedPnl as Qi, base64ToUint8Array as Ql, GrpcPermissionRole as Qm, IndexerGrpcDerivativesApi as Qn, RFQExpiryType as Qo, GovMsgs as Qp, BatchDerivativeOrderCancelParams as Qr, TxMessage as Qs, SpotAverageEntriesStreamCallback as Qt, formatPriceToAllowablePrice as Qu, MsgRewardsOptOut as Qv, ChainGrpcMintApi as R, ContractCodeHistoryEntry as R_, Guild as Ra, GrpcMitoStakingPool as Rc, privateKeyToPublicKey as Rd, SIGN_DIRECT as Rf, GrpcChainPosition as Rg, CreateDerivativeMarketOrderAuthz as Rh, GrpcMegaVaultApr as Ri, fetchAllWithPagination as Rl, AuctionModuleStateParams as Rm, IndexerSpotStreamTransformer as Rn, GrpcPriceLevel as Ro, TxClientBroadcastResponse as Rp, ChronosDerivativeMarketSummaryResponse as Rr, GrpcIBCTransferTx as Rs, DerivativeMarketStreamCallback as Rt, derivativeMarginToChainMarginToFixed as Ru, MsgRequestRedemption as Rv, ChainRestBankApi as S, GrpcUnbondingDelegationEntry as S_, MegaVaultUserStats as Sa, GrpcMitoClaimReference as Sc, isServerSide as Sd, getDefaultEip712Types as Sf, ChainDenomDecimal as Sg, GrpcTxFeesParams as Sh, GrpcPerpetualMarketInfo as Si, MitoVault as Sl, ValidatorRewards as Sm, IndexerDerivativeStreamTransformer as Sn, StreamBidsResponse as So, RestTx as Sp, AccountPortfolioBalances as Sr, CosmWasmPermission as Ss, TransfersStreamCallbackV2 as St, removeHexPrefix as Su, MsgCancelBinaryOptionsOrder as Sv, MsgSubmitGenericProposal as Sy, ChainGrpcDistributionApi as T, GrpcValidatorCommissionRates as T_, OperationStatusLogEntry as Ta, GrpcMitoIDO as Tc, safeBigIntStringify as Td, getEip712DomainV2 as Tf, ChainPosition as Tg, GrpcParams as Th, PerpetualMarketFunding as Ti, MitoWhitelistAccount as Tl, DenomOwnersResponse as Tm, IndexerGrpcDerivativeTransformer as Tn, AtomicSwap as To, SimulationResponse as Tp, GrpcPortfolioSubaccountBalanceV2 as Tr, ExplorerBlockWithTxs as Ts, IndexerGrpcSpotStreamV2 as Tt, getSpotMarketDecimals as Tu, MsgCreateSpotMarketOrder as Tv, MsgRevoke as Ty, ChainGrpcGovApi as U, GoogleProtoBufAny as U_, DenomHolders as Ua, GrpcMitoTokenInfo as Uc, sha256 as Ud, getEthereumSignerAddress as Uf, GrpcFeeDiscountAccountInfo as Ug, GrantAuthorization$1 as Uh, GrpcMegaVaultMaxDrawdown as Ui, paginationRequestFromPagination as Ul, GrpcAuctionEventAuctionStart as Um, IndexerGrpcMitoTransformer as Un, PriceLevel as Uo, AuctionMsgs as Up, ContractTransactionExplorerApiResponse as Ur, GrpcValidatorUptime as Us, DerivativePositionsStreamCallback as Ut, derivativeQuantityFromChainQuantity as Uu, MsgRevokeAllowance as Uv, ChainGrpcEvmApi as V, ContractInfo as V_, ReferralDetails as Va, GrpcMitoSubaccountBalance as Vc, ripemd160 as Vd, createAny as Vf, GrpcDenomMinNotional as Vg, GenericAuthorization$1 as Vh, GrpcMegaVaultHistoricalTVL as Vi, grpcPagingToPagingV2 as Vl, GrpcAuctionBid as Vm, IndexerCampaignTransformer as Vn, Orderbook as Vo, TxConcreteApi as Vp, CW20BalanceExplorerApiResponse as Vr, GrpcPeggyWithdrawalTx as Vs, DerivativeOrderbookV2StreamCallback as Vt, derivativePriceToChainPrice as Vu, MsgBatchUpdateOrders as Vv, accountEthParser as W, GrpcAbsoluteTxPosition as W_, GrpcDenomHolders as Wa, GrpcMitoVault as Wc, parseCoins as Wd, getInjectiveSignerAddress as Wf, GrpcFeeDiscountSchedule as Wg, GrantAuthorizationWithDecodedAuthorization as Wh, GrpcMegaVaultOperationStatusLogEntry as Wi, paginationUint8ArrayToString as Wl, GrpcAuctionEventBid as Wm, IndexerGrpcRfqTransformer as Wn, QuantityAndFees as Wo, AuthzMsgs as Wp, ExplorerApiResponse as Wr, IBCTransferTx as Ws, DerivativePositionsV2StreamCallback as Wt, derivativeQuantityFromChainQuantityToFixed as Wu, MsgCancelSpotOrder as Wv, DerivativeOrderHistoryStreamCallbackV2 as X, grpcContractInfo as X_, GrpcSpotAverageEntry as Xa, MitoGaugeStatus as Xc, protobufTimestampToDate as Xd, createNonCriticalExtensionFromObject as Xf, GrpcOrderType as Xg, InsuranceModuleParams as Xh, GrpcMegaVaultSubscription as Xi, BECH32_PUBKEY_VAL_PREFIX as Xl, GrpcPermissionPolicyStatus as Xm, IndexerGrpcInsuranceFundApi as Xn, MakerStreamConfig as Xo, ExchangeV2Msgs as Xp, WasmCodeExplorerApiResponse as Xr, Signature as Xs, TransactionsStreamCallback as Xt, formatNumberToAllowableTensMultiplier as Xu, MsgCreateDenom as Xv, DerivativeMarketStreamCallbackV2 as Y, TokenInfo$1 as Y_, GrpcPnlLeaderboard as Ya, MitoGauge as Yc, makeTimeoutTimestampInNs as Yd, createFee as Yf, GrpcOrderInfo as Yg, InsuranceFund as Yh, GrpcMegaVaultRedemption as Yi, BECH32_PUBKEY_CONS_PREFIX as Yl, GrpcPermissionNamespace as Ym, IndexerRestExplorerApi as Yn, GrpcRFQSettlement as Yo, ExchangeV1Msgs as Yp, ValidatorUptimeFromExplorerApiResponse as Yr, PeggyWithdrawalTx as Ys, IndexerGrpcExplorerStream as Yt, formatNumberToAllowableDecimals as Yu, MsgExecuteContract as Yv, DerivativeOrderbookUpdateStreamCallbackV2 as Z, GovModuleStateParams as Z_, GrpcVolLeaderboard as Za, MitoHolders as Zc, protobufTimestampToUnixMs as Zd, createSignDoc as Zf, GrpcOrderTypeMap as Zg, OracleTypeMap as Zh, GrpcMegaVaultTargetApr as Zi, DEFAULT_DERIVATION_PATH as Zl, GrpcPermissionPolicyStatusManagerCapability as Zm, IndexerGrpcAccountPortfolioApi as Zn, MakerStreamEvents as Zo, FeegrantMsgs as Zp, BaseDerivativeMarket as Zr, Transaction as Zs, IndexerGrpcArchiverStream as Zt, formatPriceToAllowableDecimals as Zu, MsgChangeAdmin as Zv, ChainGrpcEvmTransformer as _, GrpcReDelegation as __, MegaVaultSubscription as _a, SubaccountPortfolio as _c, hexToNumber as _d, PublicKey as _f, GrpcEvmBlobScheduleConfig as _g, PermissionVoucher as _h, GrpcDerivativeTrade as _i, MitoStakingReward as _l, TokenFactoryModuleState as _m, SpotOrderbookV2StreamCallback as _n, GrpcAuctionCoinPrices as _o, getTxRawFromTxRawOrDirectSignResponse as _p, GrpcWebSocketCodec as _r, CW20Message as _s, OraclePriceStreamCallbackV2 as _t, getEthereumAddress as _u, MsgBatchCancelDerivativeOrders as _v, MsgSubmitProposalExpiryFuturesMarketLaunch as _y, ChainGrpcExchangeTransformer as a, IsOptedOutOfRewards as a_, MegaVaultAprStats as aa, ListTradingStrategiesResponse as ac, spotPriceFromChainPriceToFixed as ad, MsgInstantBinaryOptionsMarketLaunch as af, TotalSupply as ag, PermissionActorRoles as ah, DerivativeOrderHistory as ai, MitoLeaderboard as al, WasmMsgs as am, OraclePriceStreamCallback as an, VolLeaderboard as ao, getTransactionPartsFromTxRaw as ap, IndexerGrpcAuctionApi as ar, RFQSettlementUnfilledActionType as as, BlocksWithTxsStreamCallbackV2 as at, hexToBuff as au, Proposal as av, MsgSignData as ay, ChainRestWasmApi as b, GrpcStakingParams as b_, MegaVaultUnrealizedPnl as ba, TransferType as bc, isNode as bd, getEip712TypedData as bf, GrpcEvmParams as bg, OracleModuleParams as bh, GrpcFundingRate as bi, MitoTokenInfo as bl, GrpcDelegationDelegatorReward as bm, IndexerAccountPortfolioStreamTransformer as bn, GrpcIndexerAuctionBid as bo, RestAuthInfo as bp, AllChronosMarketHistory as br, ContractTransactionWithMessages as bs, IndexerGrpcMitoStreamV2 as bt, getSubaccountId as bu, MsgCancelUnbondingDelegation as bv, MsgSubmitProposalPerpetualMarketLaunch as by, ChainGrpcCommonTransformer as c, PointsMultiplier as c_, MegaVaultIncentives as ca, AccountPortfolio as cc, spotQuantityFromChainQuantity as cd, GenericAuthorization as cf, AuthModuleParams as cg, PermissionGenesisState as ch, ExpiryFuturesMarketInfo as ci, MitoMission as cl, MsgBatchCancelBinaryOptionsOrders as cm, IndexerGrpcMitoStream as cn, Auction as co, TxGrpcApi as cp, IndexerGrpcTransactionApi as cr, SettlementsResponse as cs, IndexerGrpcArchiverStreamV2 as ct, toBase64 as cu, ProposalStatusMap as cv, MsgStoreCode as cy, ChainGrpcPeggyTransformer as d, TradingRewardCampaignInfo as d_, MegaVaultOperatorRedemptionBucket as da, GrpcSubaccountBalanceTransfer as dc, spotQuantityToChainQuantityToFixed as dd, msgsOrMsgExecMsgs as df, EvmBlobConfig as dg, PermissionPolicyManagerCapability as dh, GrpcBinaryOptionsMarketInfo as di, MitoPagination as dl, RestApiResponse as dm, VaultHolderSubscriptionStreamCallback as dn, AuctionContract as do, createTransactionAndCosmosSignDoc as dp, IndexerGrpcMetaApi as dr, AccessType as ds, IndexerGrpcTradingStreamV2 as dt, uint8ArrayToHex as du, VoteOption as dv, MsgMint as dy, GrpcSpotMarketOrder as e_, GrpcMegaVaultVaultStats as ea, ValidatorUptime as ec, getSignificantDecimalsFromNumber as ed, MsgUpdateNamespace as ef, BankModuleParams as eg, GrpcPermissionRoleIDs as eh, DerivativeLimitOrder as ei, MitoIDOInitParams as el, InsuranceMsgs as em, BidsStreamCallback as en, HistoricalVolumes as eo, createSigners as ep, IndexerGrpcReferralApi as er, RFQQuoteType as es, DerivativePositionsStreamCallbackV2 as et, binaryToBase64 as eu, GrpcGovernanceVotingParams as ev, MsgEditValidator as ey, ChainGrpcAuthZTransformer as f, BondStatus as f_, MegaVaultPnl as fa, GrpcSubaccountDeposit as fc, bigIntReplacer as fd, ExecArgNeptuneWithdraw as ff, EvmBlobScheduleConfig as fg, PermissionPolicyStatus as fh, GrpcDerivativeLimitOrder as fi, MitoPortfolio as fl, BlockLatestRestResponse as fm, VaultStreamCallback as fn, AuctionV2 as fo, createTransactionAndCosmosSignDocForAddressAndMsg as fp, IndexerGrpcMitoApi as fr, AccessTypeCode as fs, BidsStreamCallbackV2 as ft, uint8ArrayToString as fu, VoteOptionMap as fv, MsgBurn as fy, ChainGrpcAuthTransformer as g, GrpcPool as g_, MegaVaultStats as ga, SubaccountDeposit as gc, grpcCoinToUiCoin as gd, PrivateKey as gf, GrpcEvmBlobConfig as gg, PermissionRoleManager as gh, GrpcDerivativePositionV2 as gi, MitoStakingPool as gl, TokenFactoryModuleParams as gm, SpotOrderbookUpdateStreamCallback as gn, GrpcAuctionCoin as go, createTxRawFromSigResponse as gp, GrpcWebSocketTransport as gr, BlockWithTxs as gs, IndexerGrpcOracleStreamV2 as gt, getDefaultSubaccountId as gu, MsgCreateDerivativeMarketOrder as gv, ProposalDecomposer as gy, ChainGrpcBankTransformer as h, GrpcDelegationResponse as h_, MegaVaultRedemptionStatus as ha, SubaccountBalance as hc, getErrorMessage as hd, BaseAccount as hf, EvmParams as hg, PermissionRoleIDs as hh, GrpcDerivativePosition as hi, MitoStakingActivity as hl, FactoryDenomWithMetadata as hm, SpotOrderHistoryStreamCallback as hn, GrpcAuction as ho, createTransactionWithSigners as hp, IndexerWsTakerStream as hr, Block$1 as hs, IndexerGrpcAccountStreamV2 as ht, getChecksumAddress as hu, MsgWithdrawValidatorCommission as hv, MsgSubmitProposal as hy, ChainGrpcPermissionsTransformer as i, GrpcTradingRewardCampaignInfo as i_, MegaVaultApr as ia, GridStrategyType as ic, spotPriceFromChainPrice as id, OrderHashManager as if, SendEnabled as ig, PermissionActionMap as ih, DerivativeOrderCancelParams as ii, MitoIDOSubscriptionActivity as il, TokenFactoryMsgs as im, IndexerGrpcOracleStream as in, SpotAverageEntry as io, getPublicKey as ip, IndexerGrpcTradingApi as ir, RFQSettlementType as is, BlocksStreamCallbackV2 as it, hexToBase64 as iu, GrpcVote as iv, MsgWithdraw as iy, ChainGrpcTxFeesApi as j, Validator as j_, CampaignUser as ja, GrpcMitoLeaderboardEntry as jc, TypedMessageV4 as jd, getObjectEip712PropertyType as jf, FeeDiscountTierInfo as jg, BatchCancelDerivativeOrdersAuthz as jh, GrpcIndexerRedemptionSchedule as ji, TransportEventType as jl, AuctionCurrentBasket as jm, IndexerRestExplorerTransformer as jn, GrpcSpotTrade as jo, TxSearchResultParams as jp, SubaccountDepositV2 as jr, ExplorerValidator as js, QuoteStreamCallbackV2 as jt, denomAmountFromGrpcChainDenomAmount as ju, MsgAuthorizeStakeGrants as jv, ChainGrpcStakingApi as k, StakingModuleParams as k_, ChronosSpotMarketSummaryResponse as ka, GrpcMitoIDOSubscription as kc, TypedDataUtilsHashStruct as kd, getEipTxDetails as kf, FeeDiscountAccountInfo as kg, GrpcPeggyParams as kh, PositionV2 as ki, ResolvedWsTransportConfig as kl, CosmosAccountRestResponse as km, IndexerAuctionStreamTransformer as kn, GrpcSpotMarketInfo as ko, TxResultResponse as kp, PortfolioSubaccountBalanceV2 as kr, ExplorerTransactionV2 as ks, SpotTradesStreamCallbackV2 as kt, denomAmountFromChainDenomAmount as ku, MsgCancelPostOnlyModeV2 as kv, MsgVote as ky, ChainGrpcTxFeesTransformer as l, TradeRewardCampaign as l_, MegaVaultMaxDrawdown as la, GrpcAccountPortfolio as lc, spotQuantityFromChainQuantityToFixed as ld, GrantAuthorizationType as lf, EthAccount as lg, PermissionNamespace as lh, FundingPayment as li, MitoMissionLeaderboard as ll, MsgAdminUpdateBinaryOptionsMarket as lm, StakingRewardByAccountStreamCallback as ln, AuctionCoin as lo, waitTxBroadcasted as lp, IndexerGrpcOracleApi as lr, TakerStreamConfig as ls, SpotAverageEntriesStreamCallbackV2 as lt, toUtf8 as lu, TallyResult as lv, MsgDeposit as ly, ChainGrpcMintTransformer as m, GrpcDelegation as m_, MegaVaultRedemption as ma, GrpcTradingReward as mc, bigIntToString as md, MsgBroadcasterWithPk as mf, EvmLog as mg, PermissionRoleActors as mh, GrpcDerivativeOrderHistory as mi, MitoStakeToSubscription as ml, AuthorityMetadata as mm, MarketsStreamCallback as mn, GrpcAccountAuctionV2 as mo, createTransactionFromMsg as mp, IndexerWsMakerStream as mr, BankTransfer as ms, BalanceStreamCallbackV2 as mt, getAddressFromInjectiveAddress as mu, MsgCreateBinaryOptionsLimitOrder as mv, MsgExec as my, ChainGrpcTokenFactoryTransformer as n, GrpcTradeRewardCampaign as n_, GrpcMegaVaultVolatilityStats as na, WasmCode as nc, isNumber as nd, MsgUpdateParams as nf, GrpcSupply as ng, GrpcPermissionsNamespace as nh, DerivativeMarket as ni, MitoIDOSubscriber as nl, PeggyMsgs as nm, BalanceStreamCallback as nn, LeaderboardRow as no, createWeb3Extension as np, IndexerGrpcCampaignApi as nr, RFQRequestType as ns, DerivativeTradesStreamCallbackV2 as nt, fromBase64 as nu, GrpcProposalDeposit as nv, MsgUndelegate as ny, ChainGrpcStakingTransformer as o, OrderType as o_, MegaVaultHistoricalPnL as oa, MarketType as oc, spotPriceToChainPrice as od, ContractExecutionCompatAuthorization as of, Account as og, PermissionAddressRoles as oh, DerivativeTrade as oi, MitoLeaderboardEntry as ol, MsgSetDelegationTransferReceivers as om, OraclePricesByMarketsStreamCallback as on, AccountAuctionStatus as oo, generateArbitrarySignDoc as op, IndexerGrpcAccountApi as or, RFQStreamErrorData as os, IndexerGrpcExplorerStreamV2 as ot, hexToUint8Array as ou, ProposalDeposit as ov, MsgDelegate as oy, ChainGrpcWasmTransformer as p, Delegation as p_, MegaVaultPnlStats as pa, GrpcSubaccountPortfolio as pc, bigIntToNumber as pd, ExecArgNeptuneDeposit as pf, EvmChainConfig as pg, PermissionRole as ph, GrpcDerivativeMarketInfo as pi, MitoPriceSnapshot as pl, NodeInfoRestResponse as pm, IndexerGrpcSpotStream as pn, AuctionsStats as po, createTransactionForAddressAndMsg as pp, IndexerGrpcRFQApi as pr, BankMsgSendTransaction as ps, IndexerGrpcAuctionStreamV2 as pt, addHexPrefix as pu, WeightedVoteOption as pv, MsgTransfer as py, AccountPortfolioStreamCallbackV2 as q, GrpcContractInfo as q_, GrpcHistoricalVolumes as qa, MitoClaimReference as qc, getGasPriceBasedOnMessage as qd, createAuthInfo as qf, GrpcMarketStatus as qg, GrpcInsuranceParams as qh, GrpcMegaVaultPnl as qi, BECH32_ADDR_VAL_PREFIX as ql, GrpcPermissionActorRoles as qm, IndexerRestMarketChronosApi as qn, GrpcRFQQuote as qo, Erc20Msgs as qp, ExplorerTransactionApiResponse as qr, Paging as qs, BlocksStreamCallback as qt, formatAmountToAllowableAmount as qu, MsgGrantAllowance as qv, ChainGrpcDistributionTransformer as r, GrpcTradingRewardCampaignBoostInfo as r_, MegaVault as ra, GridStrategyStreamResponse as rc, numberToCosmosSdkDecString as rd, MsgClaimVoucher as rf, Metadata as rg, GrpcPermissionsParams as rh, DerivativeMarketWithoutBinaryOptions as ri, MitoIDOSubscription as rl, StakingMsgs as rm, IndexerGrpcAccountStream as rn, PnlLeaderboard as ro, getAminoStdSignDoc as rp, IndexerGrpcExplorerApi as rr, RFQSettlementLimitActionType as rs, IndexerGrpcDerivativesStreamV2 as rt, fromUtf8 as ru, GrpcTallyResult as rv, MsgUpdateAdmin as ry, ChainGrpcAuctionTransformer as s, OrderTypeMap as s_, MegaVaultHistoricalTVL as sa, TradingStrategy as sc, spotPriceToChainPriceToFixed as sd, ContractExecutionAuthorization as sf, AuthBaseAccount as sg, PermissionAddressVoucher as sh, ExpiryFuturesMarket as si, MitoLeaderboardEpoch as sl, MsgCreateBinaryOptionsMarketOrder as sm, HistoricalStakingStreamCallback as sn, AccountAuctionV2 as so, TxRestApi as sp, IndexerGrpcWeb3GwApi as sr, RFQTakerStreamAckData as ss, TransactionsStreamCallbackV2 as st, stringToUint8Array as su, ProposalStatus as sv, MsgSendToEth as sy, ChainGrpcInsuranceFundTransformer as t, GrpcSpotOrder as t_, GrpcMegaVaultVolatility as ta, ValidatorUptimeStatus as tc, getTensMultiplier as td, MsgCreateNamespace as tf, GrpcBankParams as tg, GrpcPermissionRoleManager as th, DerivativeLimitOrderParams as ti, MitoIDOProgress as tl, Msgs as tm, IndexerGrpcAuctionStream as tn, Holder as to, createTxRawEIP712 as tp, IndexerGrpcArchiverApi as tr, RFQRequestInputType as ts, DerivativePositionsV2StreamCallbackV2 as tt, concatUint8Arrays as tu, GrpcProposal as tv, MsgUnderwrite as ty, ChainGrpcErc20Transformer as u, TradingRewardCampaignBoostInfo as u_, MegaVaultOperator as ua, GrpcSubaccountBalance as uc, spotQuantityToChainQuantity as ud, getGenericAuthorizationFromMessageType as uf, PubKey$1 as ug, PermissionParams as uh, FundingRate as ui, MitoMissionLeaderboardEntry as ul, ChainModule as um, TransfersStreamCallback as un, AuctionCoinPrices as uo, createTransaction as up, IndexerGrpcSpotApi as ur, TakerStreamEvents as us, GridStrategyStreamCallbackV2 as ut, uint8ArrayToBase64 as uu, Vote as uv, MsgMultiSend as uy, ChainGrpcGovTransformer as v, GrpcReDelegationEntryResponse as v_, MegaVaultSubscriptionStatus as va, SubaccountTransfer as vc, isBrowser as vd, Address as vf, GrpcEvmChainConfig as vg, PermissionsModuleParams as vh, GrpcExpiryFuturesMarketInfo as vi, MitoSubaccountBalance as vl, DistributionModuleParams as vm, SpotOrdersStreamCallback as vn, GrpcAuctionContract as vo, BroadcastMode as vp, IndexerModule as vr, Contract as vs, OraclePricesByMarketsStreamCallbackV2 as vt, getInjectiveAddress as vu, MsgCreateDerivativeLimitOrder as vv, MsgSubmitProposalPerpetualMarketLaunchV2 as vy, ChainGrpcTokenFactoryApi as w, GrpcValidatorCommission as w_, MegaVaultVolatilityStats as wa, GrpcMitoHolders as wc, protoObjectToJson as wd, getEip712Domain as wf, ChainDerivativePosition as wg, TxFeesModuleStateParams as wh, PerpetualMarket as wi, MitoVestingConfigMap as wl, DenomBalance as wm, IndexerGrpcMitoStreamTransformer as wn, Oracle as wo, RestTxLog as wp, GrpcAccountPortfolioV2 as wr, EventLogEvent as ws, VaultStreamCallbackV2 as wt, getDerivativeMarketTensMultiplier as wu, MsgIncreasePositionMargin as wv, MsgDeposit$1 as wy, ChainRestAuthApi as x, GrpcUnbondingDelegation as x_, MegaVaultUser as xa, GrpcMitoChanges as xc, isReactNative as xd, getEip712TypedDataV2 as xf, CampaignRewardPool as xg, GrpcTxFeesEipBaseFee as xh, GrpcPerpetualMarketFunding as xi, MitoTransfer as xl, GrpcDistributionParams as xm, IndexerGrpcInsuranceFundTransformer as xn, IndexerAuctionBid as xo, RestSignerInfo as xp, ChronosMarketHistoryResponse as xr, CosmWasmChecksum as xs, StakingRewardByAccountStreamCallbackV2 as xt, isCw20ContractAddress as xu, MsgUpdateDerivativeMarketV2 as xv, MsgSubmitProposalSpotMarketLaunch as xy, ChainRestTendermintApi as y, GrpcReDelegationResponse as y_, MegaVaultTargetApr as ya, TradingReward as yc, isJsonString as yd, MsgDecoder as yf, GrpcEvmLog as yg, GrpcOracleParams as yh, GrpcFundingPayment as yi, MitoSubscription as yl, GrpcDecCoin as ym, SpotTradesStreamCallback as yn, GrpcAuctionV2 as yo, BroadcastModeKeplr as yp, StreamStatusResponse as yr, ContractTransaction as ys, HistoricalStakingStreamCallbackV2 as yt, getInjectiveAddressFromSubaccountId as yu, MsgWithdrawDelegatorReward as yv, MsgSubmitProposalSpotMarketParamUpdate as yy, ChainGrpcBankApi as z, ContractCodeHistoryOperationType as z_, GuildCampaignSummary as za, GrpcMitoStakingStakingActivity as zc, privateKeyToPublicKeyBase64 as zd, SIGN_EIP712 as zf, GrpcChainSpotMarket as zg, CreateSpotLimitOrderAuthz as zh, GrpcMegaVaultAprStats as zi, grpcPaginationToPagination as zl, AuctionModuleStateResponse as zm, IndexerGrpcOracleTransformer as zn, GrpcTokenMeta as zo, TxClientMode as zp, BankTransferFromExplorerApiResponse as zr, GrpcIndexerValidatorDescription as zs, DerivativeOrderHistoryStreamCallback as zt, derivativePriceFromChainPrice as zu, MsgInstantiateContract as zv };
38359
+ export { DerivativeOrdersStreamCallbackV2 as $, GrpcGovernanceDepositParams as $_, HistoricalRPNL as $a, MitoIDOClaimedCoins as $c, MsgUpdateActorRoles as $d, createSignerInfo as $f, GrpcPointsMultiplier as $g, GrpcMintParams as $h, GrpcMegaVaultUserStats as $i, base64ToUtf8 as $l, GrpcPermissionRole as $m, IndexerGrpcMegaVaultApi as $n, RFQMakerStreamAckData as $o, IbcMsgs as $p, BinaryOptionsMarket as $r, ValidatorSlashingEvent as $s, IndexerGrpcTradingStream as $t, getExactDecimalsFromNumber as $u, MsgChangeAdmin as $v, ChainGrpcAuctionApi as A, StakingModuleParams as A_, Campaign as Aa, GrpcMitoIDOSubscriptionActivity as Ac, TypedDataUtilsSanitizeData as Ad, getTypesIncludingFeePayer as Af, FeeDiscountAccountInfo as Ag, GrpcPeggyParams as Ah, GrpcIndexerInsuranceFund as Ai, TransportEventListener as Al, CosmosAccountRestResponse as Am, IndexerAccountStreamTransformer as An, GrpcSpotOrderHistory as Ao, TxSearchResult as Ap, PositionsWithUPNL as Ar, ExplorerTxsV2Response as As, IndexerGrpcRfqStreamV2 as At, denomAmountFromChainDenomAmountToFixed as Au, MsgCancelPostOnlyModeV2 as Av, MsgBid as Ay, ChainGrpcAuthApi as B, ContractCodeHistoryOperationType as B_, GuildMember as Ba, GrpcMitoStakingStakingReward as Bc, publicKeyToAddress as Bd, SIGN_EIP712_V2 as Bf, GrpcChainSpotMarket as Bg, CreateSpotLimitOrderAuthz as Bh, GrpcMegaVaultHistoricalPnL as Bi, grpcPagingToPaging as Bl, AuctionModuleStateResponse as Bm, IndexerRfqStreamTransformer as Bn, IndexerTokenMeta as Bo, TxClientSimulateResponse as Bp, BlockFromExplorerApiResponse as Br, GrpcPeggyDepositTx as Bs, DerivativeOrderbookUpdateStreamCallback as Bt, derivativePriceFromChainPriceToFixed as Bu, MsgRequestRedemption as Bv, ChainGrpcInsuranceFundApi as C, GrpcUnbondingDelegationEntry as C_, MegaVaultVolatility as Ca, GrpcMitoDenomBalance as Cc, objectToJson as Cd, getDefaultEip712TypesV2 as Cf, ChainDenomDecimal as Cg, GrpcTxFeesParams as Ch, GrpcPositionDelta as Ci, MitoVestingConfig as Cl, ValidatorRewards as Cm, IndexerGrpcAccountPortfolioTransformer as Cn, GrpcOracle as Co, RestTxBody as Cp, AccountPortfolioV2 as Cr, EventLog as Cs, VaultHolderSubscriptionStreamCallbackV2 as Ct, getDerivativeMarketDecimals as Cu, MsgCancelBinaryOptionsOrder as Cv, MsgGrantProviderPrivilegeProposal as Cy, ChainGrpcTendermintApi as D, GrpcValidatorDescription as D_, AllSpotMarketSummaryResponse as Da, GrpcMitoIDOProgress as Dc, sortObjectByKeysWithReduce as Dd, getEip712FeeV2 as Df, DepositProposalParams as Dg, GrpcTokenPair as Dh, Position as Di, GrpcFrame as Dl, AccountResponse as Dm, IndexerArchiverStreamTransformer as Dn, GrpcAtomicSwap as Do, TxInfoResponse as Dp, GrpcPositionsWithUPNL as Dr, ExplorerStats as Ds, SpotOrderbookUpdateStreamCallbackV2 as Dt, amountToCosmosSdkDecAmount as Du, MsgCancelDerivativeOrder as Dv, MsgDeposit$1 as Dy, ChainGrpcPermissionsApi as E, GrpcValidatorCommissionRates as E_, AllChronosSpotMarketSummary as Ea, GrpcMitoIDOClaimedCoins as Ec, sortObjectByKeys as Ed, getEip712Fee as Ef, ChainPosition as Eg, GrpcParams as Eh, PerpetualMarketInfo as Ei, GrpcDecodeError as El, DenomOwnersResponse as Em, ExplorerStreamTransformer as En, BatchSpotOrderCancelParams as Eo, TxInfo as Ep, GrpcPositionV2 as Er, ExplorerCW20BalanceWithToken as Es, SpotOrderHistoryStreamCallbackV2 as Et, getSpotMarketTensMultiplier as Eu, MsgCreateSpotMarketOrder as Ev, MsgSubmitTextProposal as Ey, ChainGrpcPeggyApi as F, AbsoluteTxPosition as F_, GrpcCampaignV2 as Fa, GrpcMitoPagination as Fc, messageHash as Fd, stringTypeToReflectionStringType as Ff, GrpcChainDerivativeMarket as Fg, BatchCreateSpotLimitOrdersAuthz as Fh, RedemptionStatus as Fi, WsState as Fl, AuctionEventBid as Fm, IndexerGrpcArchiverTransformer as Fn, SpotOrderCancelParams as Fo, MsgArg as Fp, AllChronosDerivativeMarketSummary as Fr, GrpcBankMsgSendMessage as Fs, createStreamSubscription as Ft, derivativeMarginFromChainMargin as Fu, MsgSetDenomMetadata as Fv, createStreamSubscriptionV2 as G, GrpcAbsoluteTxPosition as G_, GrpcHistoricalBalance as Ga, GrpcMitoWhitelistAccount as Gc, ofacList as Gd, errorToErrorMessage as Gf, GrpcFeeDiscountSchedule as Gg, GrantAuthorizationWithDecodedAuthorization as Gh, GrpcMegaVaultOperator as Gi, BECH32_ADDR_ACC_PREFIX as Gl, GrpcAuctionEventBid as Gm, IndexerRestLeaderboardChronosApi as Gn, Route as Go, BankMsgs as Gp, ExplorerApiResponseWithPagination as Gr, IndexerStreamTransaction as Gs, DerivativeTradesStreamCallback as Gt, derivativeQuantityToChainQuantity as Gu, MsgRevokeAllowance as Gv, ChainGrpcIbcApi as H, ContractInfo as H_, AccountStats as Ha, GrpcMitoSubscription as Hc, sanitizeTypedData as Hd, createAnyMessage as Hf, GrpcDenomMinNotional as Hg, GenericAuthorization$1 as Hh, GrpcMegaVaultIncentives as Hi, pageRequestToGrpcPageRequestV2 as Hl, GrpcAuctionBid as Hm, IndexerGrpcSpotTransformer as Hn, OrderbookWithSequence as Ho, TxResponse as Hp, ContractExplorerApiResponse as Hr, GrpcValidatorSlashingEvent as Hs, DerivativeOrdersStreamCallback as Ht, derivativePriceToChainPriceToFixed as Hu, MsgLiquidatePosition as Hv, ChainGrpcAuthZApi as I, CodeInfoResponse as I_, GrpcGuild as Ia, GrpcMitoPriceSnapshot as Ic, privateKeyHashToPublicKey as Id, TxClient as If, GrpcChainDerivativePosition as Ig, CancelDerivativeOrderAuthz as Ih, IncentivesCampaign as Ii, WsTransportConfig as Il, AuctionLastAuctionResult as Im, IndexerGrpcAuctionTransformer as In, SpotOrderHistory as Io, SignerDetails as Ip, AllDerivativeMarketSummaryResponse as Ir, GrpcExplorerStats as Is, AccountPortfolioStreamCallback as It, derivativeMarginFromChainMarginToFixed as Iu, MsgUpdateSpotMarketV2 as Iv, IndexerGrpcAccountPortfolioStreamV2 as J, GrpcContractInfo as J_, GrpcLeaderboardRow as Ja, MitoDenomBalance as Jc, makeTimeoutTimestamp as Jd, createBody as Jf, GrpcMarketStatus as Jg, GrpcInsuranceParams as Jh, GrpcMegaVaultPnlStats as Ji, BECH32_PUBKEY_ACC_PREFIX as Jl, GrpcPermissionActorRoles as Jm, IndexerRestSpotChronosApi as Jn, GrpcRFQRequest as Jo, ExchangeMsgs as Jp, TransactionFromExplorerApiResponse as Jr, PeggyDepositTx as Js, BlocksWithTxsStreamCallback as Jt, formatAmountToAllowableDecimals as Ju, MsgBeginRedelegate as Jv, StreamManagerV2 as K, GrpcCodeInfoResponse as K_, GrpcHistoricalRPNL as Ka, MitoChanges as Kc, getGrpcWebTransport as Kd, isTxNotFoundError as Kf, GrpcFeeDiscountTierInfo as Kg, GrantWithDecodedAuthorization as Kh, GrpcMegaVaultOperatorRedemptionBucket as Ki, BECH32_ADDR_CONS_PREFIX as Kl, GrpcAuctionLastAuctionResult as Km, IndexerRestDerivativesChronosApi as Kn, GrpcRFQExpiry as Ko, DistributionMsgs as Kp, ExplorerBlockApiResponse as Kr, Message as Ks, IndexerGrpcDerivativesStream as Kt, derivativeQuantityToChainQuantityToFixed as Ku, MsgCancelSpotOrder as Kv, ChainGrpcWasmApi as L, ContractAccountBalance as L_, GrpcGuildMember as La, GrpcMitoStakingGauge as Lc, privateKeyHashToPublicKeyBase64 as Ld, SIGN_AMINO as Lf, GrpcChainFullDerivativeMarket as Lg, CancelSpotOrderAuthz as Lh, IncentivesRound as Li, recoverTypedSignaturePubKey as Ll, AuctionModuleParams as Lm, IndexerGrpcAccountTransformer as Ln, SpotTrade as Lo, TxClientBroadcastOptions as Lp, ChronosDerivativeMarketSummary as Lr, GrpcGasFee as Ls, IndexerGrpcAccountPortfolioStream as Lt, derivativeMarginToChainMargin as Lu, MsgReclaimLockedFunds as Lv, ChainGrpcOracleApi as M, Validator as M_, CampaignV2 as Ma, GrpcMitoLeaderboardEpoch as Mc, decompressPubKey as Md, numberTypeToReflectionNumberType as Mf, FeeDiscountTierInfo as Mg, BatchCancelDerivativeOrdersAuthz as Mh, IndexerInsuranceFund as Mi, TransportEvents as Ml, AuctionCurrentBasket as Mm, IndexerOracleStreamTransformer as Mn, SpotLimitOrder as Mo, CreateTransactionArgs as Mp, ChronosLeaderboard as Mr, ExplorerValidatorDescription as Ms, RequestStreamCallbackV2 as Mt, denomAmountToChainDenomAmount as Mu, MsgAuthorizeStakeGrants as Mv, MsgVote as My, ChainGrpcErc20Api as N, ValidatorCommission as N_, GrpcCampaign as Na, GrpcMitoMission as Nc, domainHash as Nd, objectKeysToEip712Types as Nf, FeeDiscountTierTTL as Ng, BatchCancelSpotOrdersAuthz as Nh, InsuranceFundCreateParams as Ni, WsDisconnectReason as Nl, AuctionEventAuctionResult as Nm, IndexerGrpcReferralTransformer as Nn, SpotLimitOrderParams as No, CreateTransactionResult as Np, ChronosLeaderboardEntry as Nr, ExplorerValidatorUptime as Ns, SettlementStreamCallbackV2 as Nt, denomAmountToChainDenomAmountToFixed as Nu, MsgCreateInsuranceFund as Nv, GrpcWebFetchTransport as Ny, ChainGrpcExchangeApi as O, Pool as O_, ChronosSpotMarketSummary as Oa, GrpcMitoIDOSubscriber as Oc, SignTypedDataVersionV4 as Od, getEipTxContext as Of, ExchangeModuleParams as Og, Params$6 as Oh, PositionDelta as Oi, IsomorphicWebSocket as Ol, AccountsResponse as Om, IndexerGrpcMegaVaultTransformer as On, GrpcSpotLimitOrder as Oo, TxResult as Op, GrpcSubaccountDepositV2 as Or, ExplorerTransaction as Os, SpotOrdersStreamCallbackV2 as Ot, cosmosSdkDecToBigNumber as Ou, MsgBatchCancelSpotOrders as Ov, MsgRevoke as Oy, ChainGrpcWasmXApi as P, ValidatorDescription as P_, GrpcCampaignUser as Pa, GrpcMitoMissionLeaderboardEntry as Pc, hashToHex as Pd, protoTypeToAminoType as Pf, GrpcCampaignRewardPool as Pg, BatchCreateDerivativeLimitOrdersAuthz as Ph, Redemption as Pi, WsReconnectConfig as Pl, AuctionEventAuctionStart as Pm, IndexerGrpcExplorerTransformer as Pn, SpotMarket as Po, CreateTransactionWithSignersArgs as Pp, ChronosLeaderboardResponse as Pr, GasFee as Ps, StreamManager as Pt, denomAmountToGrpcChainDenomAmount as Pu, MsgFundCommunityPool as Pv, DerivativeOrderbookV2StreamCallbackV2 as Q, GovModuleStateParams as Q_, HistoricalBalance as Qa, MitoIDO as Qc, protobufTimestampToUnixSeconds as Qd, createSignDocFromTransaction as Qf, GrpcOrderTypeMap as Qg, OracleTypeMap as Qh, GrpcMegaVaultUnrealizedPnl as Qi, base64ToUint8Array as Ql, GrpcPermissionPolicyStatusManagerCapability as Qm, IndexerGrpcDerivativesApi as Qn, RFQExpiryType as Qo, GovMsgs as Qp, BatchDerivativeOrderCancelParams as Qr, TxMessage as Qs, SpotAverageEntriesStreamCallback as Qt, formatPriceToAllowablePrice as Qu, MsgCreateDenom as Qv, ChainGrpcMintApi as R, ContractAccountsBalanceWithPagination as R_, Guild as Ra, GrpcMitoStakingPool as Rc, privateKeyToPublicKey as Rd, SIGN_DIRECT as Rf, GrpcChainFullSpotMarket as Rg, CreateDerivativeLimitOrderAuthz as Rh, GrpcMegaVaultApr as Ri, fetchAllWithPagination as Rl, AuctionModuleState as Rm, IndexerSpotStreamTransformer as Rn, GrpcPriceLevel as Ro, TxClientBroadcastResponse as Rp, ChronosDerivativeMarketSummaryResponse as Rr, GrpcIBCTransferTx as Rs, DerivativeMarketStreamCallback as Rt, derivativeMarginToChainMarginToFixed as Ru, MsgRelayProviderPrices as Rv, ChainRestBankApi as S, GrpcUnbondingDelegation as S_, MegaVaultUserStats as Sa, GrpcMitoClaimReference as Sc, isServerSide as Sd, getDefaultEip712Types as Sf, CampaignRewardPool as Sg, GrpcTxFeesEipBaseFee as Sh, GrpcPerpetualMarketInfo as Si, MitoVault as Sl, GrpcDistributionParams as Sm, IndexerDerivativeStreamTransformer as Sn, StreamBidsResponse as So, RestTx as Sp, AccountPortfolioBalances as Sr, CosmWasmPermission as Ss, TransfersStreamCallbackV2 as St, removeHexPrefix as Su, MsgUpdateDerivativeMarketV2 as Sv, MsgSubmitProposalPerpetualMarketLaunch as Sy, ChainGrpcDistributionApi as T, GrpcValidatorCommission as T_, OperationStatusLogEntry as Ta, GrpcMitoIDO as Tc, safeBigIntStringify as Td, getEip712DomainV2 as Tf, ChainDerivativePosition as Tg, TxFeesModuleStateParams as Th, PerpetualMarketFunding as Ti, MitoWhitelistAccount as Tl, DenomBalance as Tm, IndexerGrpcDerivativeTransformer as Tn, AtomicSwap as To, SimulationResponse as Tp, GrpcPortfolioSubaccountBalanceV2 as Tr, ExplorerBlockWithTxs as Ts, IndexerGrpcSpotStreamV2 as Tt, getSpotMarketDecimals as Tu, MsgIncreasePositionMargin as Tv, MsgSubmitGenericProposal as Ty, ChainGrpcGovApi as U, ContractStateWithPagination as U_, DenomHolders as Ua, GrpcMitoTokenInfo as Uc, sha256 as Ud, getEthereumSignerAddress as Uf, GrpcExchangeParams as Ug, Grant$1 as Uh, GrpcMegaVaultMaxDrawdown as Ui, paginationRequestFromPagination as Ul, GrpcAuctionEventAuctionResult as Um, IndexerGrpcMitoTransformer as Un, PriceLevel as Uo, AuctionMsgs as Up, ContractTransactionExplorerApiResponse as Ur, GrpcValidatorUptime as Us, DerivativePositionsStreamCallback as Ut, derivativeQuantityFromChainQuantity as Uu, MsgBatchUpdateOrders as Uv, ChainGrpcEvmApi as V, ContractCodeHistoryOperationTypeMap as V_, ReferralDetails as Va, GrpcMitoSubaccountBalance as Vc, ripemd160 as Vd, createAny as Vf, GrpcDenomDecimals as Vg, CreateSpotMarketOrderAuthz as Vh, GrpcMegaVaultHistoricalTVL as Vi, grpcPagingToPagingV2 as Vl, AuctionParams as Vm, IndexerCampaignTransformer as Vn, Orderbook as Vo, TxConcreteApi as Vp, CW20BalanceExplorerApiResponse as Vr, GrpcPeggyWithdrawalTx as Vs, DerivativeOrderbookV2StreamCallback as Vt, derivativePriceToChainPrice as Vu, MsgInstantiateContract as Vv, accountEthParser as W, GoogleProtoBufAny as W_, GrpcDenomHolders as Wa, GrpcMitoVault as Wc, parseCoins as Wd, getInjectiveSignerAddress as Wf, GrpcFeeDiscountAccountInfo as Wg, GrantAuthorization$1 as Wh, GrpcMegaVaultOperationStatusLogEntry as Wi, paginationUint8ArrayToString as Wl, GrpcAuctionEventAuctionStart as Wm, IndexerGrpcRfqTransformer as Wn, QuantityAndFees as Wo, AuthzMsgs as Wp, ExplorerApiResponse as Wr, IBCTransferTx as Ws, DerivativePositionsV2StreamCallback as Wt, derivativeQuantityFromChainQuantityToFixed as Wu, MsgExternalTransfer as Wv, DerivativeOrderHistoryStreamCallbackV2 as X, TokenInfo$1 as X_, GrpcSpotAverageEntry as Xa, MitoGaugeStatus as Xc, protobufTimestampToDate as Xd, createNonCriticalExtensionFromObject as Xf, GrpcOrderInfo as Xg, InsuranceFund as Xh, GrpcMegaVaultSubscription as Xi, BECH32_PUBKEY_VAL_PREFIX as Xl, GrpcPermissionNamespace as Xm, IndexerGrpcInsuranceFundApi as Xn, MakerStreamConfig as Xo, ExchangeV2Msgs as Xp, WasmCodeExplorerApiResponse as Xr, Signature as Xs, TransactionsStreamCallback as Xt, formatNumberToAllowableTensMultiplier as Xu, MsgMigrateContract as Xv, DerivativeMarketStreamCallbackV2 as Y, MarketingInfo as Y_, GrpcPnlLeaderboard as Ya, MitoGauge as Yc, makeTimeoutTimestampInNs as Yd, createFee as Yf, GrpcMarketStatusMap as Yg, GrpcRedemptionSchedule as Yh, GrpcMegaVaultRedemption as Yi, BECH32_PUBKEY_CONS_PREFIX as Yl, GrpcPermissionAddressVoucher as Ym, IndexerRestExplorerApi as Yn, GrpcRFQSettlement as Yo, ExchangeV1Msgs as Yp, ValidatorUptimeFromExplorerApiResponse as Yr, PeggyWithdrawalTx as Ys, IndexerGrpcExplorerStream as Yt, formatNumberToAllowableDecimals as Yu, MsgGrantAllowance as Yv, DerivativeOrderbookUpdateStreamCallbackV2 as Z, grpcContractInfo as Z_, GrpcVolLeaderboard as Za, MitoHolders as Zc, protobufTimestampToUnixMs as Zd, createSignDoc as Zf, GrpcOrderType as Zg, InsuranceModuleParams as Zh, GrpcMegaVaultTargetApr as Zi, DEFAULT_DERIVATION_PATH as Zl, GrpcPermissionPolicyStatus as Zm, IndexerGrpcAccountPortfolioApi as Zn, MakerStreamEvents as Zo, FeegrantMsgs as Zp, BaseDerivativeMarket as Zr, Transaction as Zs, IndexerGrpcArchiverStream as Zt, formatPriceToAllowableDecimals as Zu, MsgExecuteContract as Zv, ChainGrpcEvmTransformer as _, GrpcPool as __, MegaVaultSubscription as _a, SubaccountPortfolio as _c, hexToNumber as _d, PublicKey as _f, GrpcEvmBlobConfig as _g, PermissionRoleManager as _h, GrpcDerivativeTrade as _i, MitoStakingReward as _l, TokenFactoryModuleParams as _m, SpotOrderbookV2StreamCallback as _n, GrpcAuctionCoinPrices as _o, getTxRawFromTxRawOrDirectSignResponse as _p, GrpcWebSocketCodec as _r, CW20Message as _s, OraclePriceStreamCallbackV2 as _t, getEthereumAddress as _u, MsgCreateDerivativeMarketOrder as _v, MsgSubmitProposal as _y, ChainGrpcExchangeTransformer as a, GrpcTradingRewardCampaignInfo as a_, MegaVaultAprStats as aa, ListTradingStrategiesResponse as ac, spotPriceFromChainPriceToFixed as ad, MsgInstantBinaryOptionsMarketLaunch as af, SendEnabled as ag, PermissionActionMap as ah, DerivativeOrderHistory as ai, MitoLeaderboard as al, TokenFactoryMsgs as am, OraclePriceStreamCallback as an, VolLeaderboard as ao, getTransactionPartsFromTxRaw as ap, IndexerGrpcAuctionApi as ar, RFQSettlementUnfilledActionType as as, BlocksWithTxsStreamCallbackV2 as at, hexToBuff as au, GrpcVote as av, MsgUpdateAdmin as ay, ChainRestWasmApi as b, GrpcReDelegationResponse as b_, MegaVaultUnrealizedPnl as ba, TransferType as bc, isNode as bd, getEip712TypedData as bf, GrpcEvmLog as bg, GrpcOracleParams as bh, GrpcFundingRate as bi, MitoTokenInfo as bl, GrpcDecCoin as bm, IndexerAccountPortfolioStreamTransformer as bn, GrpcIndexerAuctionBid as bo, RestAuthInfo as bp, AllChronosMarketHistory as br, ContractTransactionWithMessages as bs, IndexerGrpcMitoStreamV2 as bt, getSubaccountId as bu, MsgWithdrawDelegatorReward as bv, MsgSubmitProposalPerpetualMarketLaunchV2 as by, ChainGrpcCommonTransformer as c, OrderTypeMap as c_, MegaVaultIncentives as ca, AccountPortfolio as cc, spotQuantityFromChainQuantity as cd, GenericAuthorization as cf, AuthBaseAccount as cg, PermissionAddressVoucher as ch, ExpiryFuturesMarketInfo as ci, MitoMission as cl, MsgCreateBinaryOptionsMarketOrder as cm, IndexerGrpcMitoStream as cn, Auction as co, TxGrpcApi as cp, IndexerGrpcTransactionApi as cr, SettlementsResponse as cs, IndexerGrpcArchiverStreamV2 as ct, toBase64 as cu, ProposalStatus as cv, MsgDelegate as cy, ChainGrpcPeggyTransformer as d, TradingRewardCampaignBoostInfo as d_, MegaVaultOperatorRedemptionBucket as da, GrpcSubaccountBalanceTransfer as dc, spotQuantityToChainQuantityToFixed as dd, msgsOrMsgExecMsgs as df, PubKey$1 as dg, PermissionParams as dh, GrpcBinaryOptionsMarketInfo as di, MitoPagination as dl, ChainModule as dm, VaultHolderSubscriptionStreamCallback as dn, AuctionContract as do, createTransactionAndCosmosSignDoc as dp, IndexerGrpcMetaApi as dr, AccessType as ds, IndexerGrpcTradingStreamV2 as dt, uint8ArrayToHex as du, Vote as dv, MsgDeposit as dy, GrpcSpotMarket as e_, GrpcMegaVaultVaultStats as ea, ValidatorUptime as ec, getSignificantDecimalsFromNumber as ed, MsgUpdateNamespace as ef, MinModuleParams as eg, GrpcPermissionRoleActors as eh, DerivativeLimitOrder as ei, MitoIDOInitParams as el, InsuranceMsgs as em, BidsStreamCallback as en, HistoricalVolumes as eo, createSigners as ep, IndexerGrpcReferralApi as er, RFQQuoteType as es, DerivativePositionsStreamCallbackV2 as et, binaryToBase64 as eu, GrpcGovernanceTallyParams as ev, MsgRewardsOptOut as ey, ChainGrpcAuthZTransformer as f, TradingRewardCampaignInfo as f_, MegaVaultPnl as fa, GrpcSubaccountDeposit as fc, bigIntReplacer as fd, ExecArgNeptuneWithdraw as ff, EvmBlobConfig as fg, PermissionPolicyManagerCapability as fh, GrpcDerivativeLimitOrder as fi, MitoPortfolio as fl, RestApiResponse as fm, VaultStreamCallback as fn, AuctionV2 as fo, createTransactionAndCosmosSignDocForAddressAndMsg as fp, IndexerGrpcMitoApi as fr, AccessTypeCode as fs, BidsStreamCallbackV2 as ft, uint8ArrayToString as fu, VoteOption as fv, MsgMultiSend as fy, ChainGrpcAuthTransformer as g, GrpcDelegationResponse as g_, MegaVaultStats as ga, SubaccountDeposit as gc, grpcCoinToUiCoin as gd, PrivateKey as gf, EvmParams as gg, PermissionRoleIDs as gh, GrpcDerivativePositionV2 as gi, MitoStakingPool as gl, FactoryDenomWithMetadata as gm, SpotOrderbookUpdateStreamCallback as gn, GrpcAuctionCoin as go, createTxRawFromSigResponse as gp, GrpcWebSocketTransport as gr, BlockWithTxs as gs, IndexerGrpcOracleStreamV2 as gt, getDefaultSubaccountId as gu, MsgWithdrawValidatorCommission as gv, MsgExec as gy, ChainGrpcBankTransformer as h, GrpcDelegation as h_, MegaVaultRedemptionStatus as ha, SubaccountBalance as hc, getErrorMessage as hd, BaseAccount as hf, EvmLog as hg, PermissionRoleActors as hh, GrpcDerivativePosition as hi, MitoStakingActivity as hl, AuthorityMetadata as hm, SpotOrderHistoryStreamCallback as hn, GrpcAuction as ho, createTransactionWithSigners as hp, IndexerWsTakerStream as hr, Block$1 as hs, IndexerGrpcAccountStreamV2 as ht, getChecksumAddress as hu, MsgCreateBinaryOptionsLimitOrder as hv, MsgTransfer as hy, ChainGrpcPermissionsTransformer as i, GrpcTradingRewardCampaignBoostInfo as i_, MegaVaultApr as ia, GridStrategyType as ic, spotPriceFromChainPrice as id, OrderHashManager as if, Metadata as ig, GrpcPermissionsParams as ih, DerivativeOrderCancelParams as ii, MitoIDOSubscriptionActivity as il, StakingMsgs as im, IndexerGrpcOracleStream as in, SpotAverageEntry as io, getPublicKey as ip, IndexerGrpcTradingApi as ir, RFQSettlementType as is, BlocksStreamCallbackV2 as it, hexToBase64 as iu, GrpcTallyResult as iv, MsgUndelegate as iy, ChainGrpcTxFeesApi as j, UnBondingDelegation as j_, CampaignUser as ja, GrpcMitoLeaderboardEntry as jc, TypedMessageV4 as jd, getObjectEip712PropertyType as jf, FeeDiscountSchedule as jg, PeggyModuleParams as jh, GrpcIndexerRedemptionSchedule as ji, TransportEventType as jl, AuctionBid as jm, IndexerRestExplorerTransformer as jn, GrpcSpotTrade as jo, TxSearchResultParams as jp, SubaccountDepositV2 as jr, ExplorerValidator as js, QuoteStreamCallbackV2 as jt, denomAmountFromGrpcChainDenomAmount as ju, MsgCreateSpotLimitOrder as jv, MsgSend as jy, ChainGrpcStakingApi as k, ReDelegation as k_, ChronosSpotMarketSummaryResponse as ka, GrpcMitoIDOSubscription as kc, TypedDataUtilsHashStruct as kd, getEipTxDetails as kf, ExchangeParams as kg, TokenPair as kh, PositionV2 as ki, ResolvedWsTransportConfig as kl, BaseAccountRestResponse as km, IndexerAuctionStreamTransformer as kn, GrpcSpotMarketInfo as ko, TxResultResponse as kp, PortfolioSubaccountBalanceV2 as kr, ExplorerTransactionV2 as ks, SpotTradesStreamCallbackV2 as kt, denomAmountFromChainDenomAmount as ku, MsgGrantWithAuthorization as kv, MsgGrant as ky, ChainGrpcTxFeesTransformer as l, PointsMultiplier as l_, MegaVaultMaxDrawdown as la, GrpcAccountPortfolio as lc, spotQuantityFromChainQuantityToFixed as ld, GrantAuthorizationType as lf, AuthModuleParams as lg, PermissionGenesisState as lh, FundingPayment as li, MitoMissionLeaderboard as ll, MsgBatchCancelBinaryOptionsOrders as lm, StakingRewardByAccountStreamCallback as ln, AuctionCoin as lo, waitTxBroadcasted as lp, IndexerGrpcOracleApi as lr, TakerStreamConfig as ls, SpotAverageEntriesStreamCallbackV2 as lt, toUtf8 as lu, ProposalStatusMap as lv, MsgSendToEth as ly, ChainGrpcMintTransformer as m, Delegation as m_, MegaVaultRedemption as ma, GrpcTradingReward as mc, bigIntToString as md, MsgBroadcasterWithPk as mf, EvmChainConfig as mg, PermissionRole as mh, GrpcDerivativeOrderHistory as mi, MitoStakeToSubscription as ml, NodeInfoRestResponse as mm, MarketsStreamCallback as mn, GrpcAccountAuctionV2 as mo, createTransactionFromMsg as mp, IndexerWsMakerStream as mr, BankTransfer as ms, BalanceStreamCallbackV2 as mt, getAddressFromInjectiveAddress as mu, WeightedVoteOption as mv, MsgBurn as my, ChainGrpcTokenFactoryTransformer as n, GrpcSpotOrder as n_, GrpcMegaVaultVolatilityStats as na, WasmCode as nc, isNumber as nd, MsgUpdateParams as nf, GrpcBankParams as ng, GrpcPermissionRoleManager as nh, DerivativeMarket as ni, MitoIDOSubscriber as nl, OracleMsgs as nm, BalanceStreamCallback as nn, LeaderboardRow as no, createWeb3Extension as np, IndexerGrpcCampaignApi as nr, RFQRequestType as ns, DerivativeTradesStreamCallbackV2 as nt, fromBase64 as nu, GrpcProposal as nv, MsgEditValidator as ny, ChainGrpcStakingTransformer as o, IsOptedOutOfRewards as o_, MegaVaultHistoricalPnL as oa, MarketType as oc, spotPriceToChainPrice as od, ContractExecutionCompatAuthorization as of, TotalSupply as og, PermissionActorRoles as oh, DerivativeTrade as oi, MitoLeaderboardEntry as ol, WasmMsgs as om, OraclePricesByMarketsStreamCallback as on, AccountAuctionStatus as oo, generateArbitrarySignDoc as op, IndexerGrpcAccountApi as or, RFQStreamErrorData as os, IndexerGrpcExplorerStreamV2 as ot, hexToUint8Array as ou, Proposal as ov, MsgWithdraw as oy, ChainGrpcWasmTransformer as p, BondStatus as p_, MegaVaultPnlStats as pa, GrpcSubaccountPortfolio as pc, bigIntToNumber as pd, ExecArgNeptuneDeposit as pf, EvmBlobScheduleConfig as pg, PermissionPolicyStatus as ph, GrpcDerivativeMarketInfo as pi, MitoPriceSnapshot as pl, BlockLatestRestResponse as pm, IndexerGrpcSpotStream as pn, AuctionsStats as po, createTransactionForAddressAndMsg as pp, IndexerGrpcRFQApi as pr, BankMsgSendTransaction as ps, IndexerGrpcAuctionStreamV2 as pt, addHexPrefix as pu, VoteOptionMap as pv, MsgMint as py, AccountPortfolioStreamCallbackV2 as q, GrpcContractCodeHistoryEntry as q_, GrpcHistoricalVolumes as qa, MitoClaimReference as qc, getGasPriceBasedOnMessage as qd, createAuthInfo as qf, GrpcFeeDiscountTierTTL as qg, GrpcInsuranceFund as qh, GrpcMegaVaultPnl as qi, BECH32_ADDR_VAL_PREFIX as ql, GrpcAuctionParams as qm, IndexerRestMarketChronosApi as qn, GrpcRFQQuote as qo, Erc20Msgs as qp, ExplorerTransactionApiResponse as qr, Paging as qs, BlocksStreamCallback as qt, formatAmountToAllowableAmount as qu, MsgCreateValidator as qv, ChainGrpcDistributionTransformer as r, GrpcTradeRewardCampaign as r_, MegaVault as ra, GridStrategyStreamResponse as rc, numberToCosmosSdkDecString as rd, MsgClaimVoucher as rf, GrpcSupply as rg, GrpcPermissionsNamespace as rh, DerivativeMarketWithoutBinaryOptions as ri, MitoIDOSubscription as rl, PeggyMsgs as rm, IndexerGrpcAccountStream as rn, PnlLeaderboard as ro, getAminoStdSignDoc as rp, IndexerGrpcExplorerApi as rr, RFQSettlementLimitActionType as rs, IndexerGrpcDerivativesStreamV2 as rt, fromUtf8 as ru, GrpcProposalDeposit as rv, MsgUnderwrite as ry, ChainGrpcAuctionTransformer as s, OrderType as s_, MegaVaultHistoricalTVL as sa, TradingStrategy as sc, spotPriceToChainPriceToFixed as sd, ContractExecutionAuthorization as sf, Account as sg, PermissionAddressRoles as sh, ExpiryFuturesMarket as si, MitoLeaderboardEpoch as sl, MsgSetDelegationTransferReceivers as sm, HistoricalStakingStreamCallback as sn, AccountAuctionV2 as so, TxRestApi as sp, IndexerGrpcWeb3GwApi as sr, RFQTakerStreamAckData as ss, TransactionsStreamCallbackV2 as st, stringToUint8Array as su, ProposalDeposit as sv, MsgSignData as sy, ChainGrpcInsuranceFundTransformer as t, GrpcSpotMarketOrder as t_, GrpcMegaVaultVolatility as ta, ValidatorUptimeStatus as tc, getTensMultiplier as td, MsgCreateNamespace as tf, BankModuleParams as tg, GrpcPermissionRoleIDs as th, DerivativeLimitOrderParams as ti, MitoIDOProgress as tl, Msgs as tm, IndexerGrpcAuctionStream as tn, Holder as to, createTxRawEIP712 as tp, IndexerGrpcArchiverApi as tr, RFQRequestInputType as ts, DerivativePositionsV2StreamCallbackV2 as tt, concatUint8Arrays as tu, GrpcGovernanceVotingParams as tv, MsgPrivilegedExecuteContract as ty, ChainGrpcErc20Transformer as u, TradeRewardCampaign as u_, MegaVaultOperator as ua, GrpcSubaccountBalance as uc, spotQuantityToChainQuantity as ud, getGenericAuthorizationFromMessageType as uf, EthAccount as ug, PermissionNamespace as uh, FundingRate as ui, MitoMissionLeaderboardEntry as ul, MsgAdminUpdateBinaryOptionsMarket as um, TransfersStreamCallback as un, AuctionCoinPrices as uo, createTransaction as up, IndexerGrpcSpotApi as ur, TakerStreamEvents as us, GridStrategyStreamCallbackV2 as ut, uint8ArrayToBase64 as uu, TallyResult as uv, MsgStoreCode as uy, ChainGrpcGovTransformer as v, GrpcReDelegation as v_, MegaVaultSubscriptionStatus as va, SubaccountTransfer as vc, isBrowser as vd, Address as vf, GrpcEvmBlobScheduleConfig as vg, PermissionVoucher as vh, GrpcExpiryFuturesMarketInfo as vi, MitoSubaccountBalance as vl, TokenFactoryModuleState as vm, SpotOrdersStreamCallback as vn, GrpcAuctionContract as vo, BroadcastMode as vp, IndexerModule as vr, Contract as vs, OraclePricesByMarketsStreamCallbackV2 as vt, getInjectiveAddress as vu, MsgBatchCancelDerivativeOrders as vv, ProposalDecomposer as vy, ChainGrpcTokenFactoryApi as w, GrpcValidator as w_, MegaVaultVolatilityStats as wa, GrpcMitoHolders as wc, protoObjectToJson as wd, getEip712Domain as wf, ChainDenomMinNotional as wg, TxFeesEipBaseFee as wh, PerpetualMarket as wi, MitoVestingConfigMap as wl, BalancesResponse as wm, IndexerGrpcMitoStreamTransformer as wn, Oracle as wo, RestTxLog as wp, GrpcAccountPortfolioV2 as wr, EventLogEvent as ws, VaultStreamCallbackV2 as wt, getDerivativeMarketTensMultiplier as wu, MsgInstantSpotMarketLaunch as wv, MsgSubmitProposalSpotMarketLaunch as wy, ChainRestAuthApi as x, GrpcStakingParams as x_, MegaVaultUser as xa, GrpcMitoChanges as xc, isReactNative as xd, getEip712TypedDataV2 as xf, GrpcEvmParams as xg, OracleModuleParams as xh, GrpcPerpetualMarketFunding as xi, MitoTransfer as xl, GrpcDelegationDelegatorReward as xm, IndexerGrpcInsuranceFundTransformer as xn, IndexerAuctionBid as xo, RestSignerInfo as xp, ChronosMarketHistoryResponse as xr, CosmWasmChecksum as xs, StakingRewardByAccountStreamCallbackV2 as xt, isCw20ContractAddress as xu, MsgCancelUnbondingDelegation as xv, MsgSubmitProposalSpotMarketParamUpdate as xy, ChainRestTendermintApi as y, GrpcReDelegationEntryResponse as y_, MegaVaultTargetApr as ya, TradingReward as yc, isJsonString as yd, MsgDecoder as yf, GrpcEvmChainConfig as yg, PermissionsModuleParams as yh, GrpcFundingPayment as yi, MitoSubscription as yl, DistributionModuleParams as ym, SpotTradesStreamCallback as yn, GrpcAuctionV2 as yo, BroadcastModeKeplr as yp, StreamStatusResponse as yr, ContractTransaction as ys, HistoricalStakingStreamCallbackV2 as yt, getInjectiveAddressFromSubaccountId as yu, MsgCreateDerivativeLimitOrder as yv, MsgSubmitProposalExpiryFuturesMarketLaunch as yy, ChainGrpcBankApi as z, ContractCodeHistoryEntry as z_, GuildCampaignSummary as za, GrpcMitoStakingStakingActivity as zc, privateKeyToPublicKeyBase64 as zd, SIGN_EIP712 as zf, GrpcChainPosition as zg, CreateDerivativeMarketOrderAuthz as zh, GrpcMegaVaultAprStats as zi, grpcPaginationToPagination as zl, AuctionModuleStateParams as zm, IndexerGrpcOracleTransformer as zn, GrpcTokenMeta as zo, TxClientMode as zp, BankTransferFromExplorerApiResponse as zr, GrpcIndexerValidatorDescription as zs, DerivativeOrderHistoryStreamCallback as zt, derivativePriceFromChainPrice as zu, MsgTransferDelegation as zv };
@@ -4,7 +4,7 @@ require('./defineProperty-DAtJs5JQ.cjs');
4
4
  const require_accounts = require('./accounts-CAskEh_H.cjs');
5
5
  const require_grpc = require('./grpc-FG2z-ICE.cjs');
6
6
  const require_MsgBase = require('./MsgBase-CJJkzmQk.cjs');
7
- const require_MsgSetDenomMetadata = require('./MsgSetDenomMetadata-DLdr2cF-.cjs');
7
+ const require_MsgSetDenomMetadata = require('./MsgSetDenomMetadata-MI0yndU_.cjs');
8
8
  const require_ChainRestTendermintApi = require('./ChainRestTendermintApi-DILpgVDN.cjs');
9
9
  require('./BaseGrpcConsumer-B1hpRQJ-.cjs');
10
10
  const require_chain = require('./chain-BKxLKXfI.cjs');
@@ -261,6 +261,7 @@ exports.MsgFundCommunityPool = require_MsgSetDenomMetadata.MsgFundCommunityPool;
261
261
  exports.MsgGovDeposit = require_MsgSetDenomMetadata.MsgDeposit;
262
262
  exports.MsgGrant = require_MsgSetDenomMetadata.MsgGrant;
263
263
  exports.MsgGrantAllowance = require_MsgSetDenomMetadata.MsgGrantAllowance;
264
+ exports.MsgGrantProviderPrivilegeProposal = require_MsgSetDenomMetadata.MsgGrantProviderPrivilegeProposal;
264
265
  exports.MsgGrantWithAuthorization = require_MsgSetDenomMetadata.MsgGrantWithAuthorization;
265
266
  exports.MsgIncreasePositionMargin = require_accounts.MsgIncreasePositionMargin;
266
267
  exports.MsgInstantBinaryOptionsMarketLaunch = require_MsgSetDenomMetadata.MsgInstantBinaryOptionsMarketLaunch;
@@ -272,6 +273,7 @@ exports.MsgMint = require_MsgSetDenomMetadata.MsgMint;
272
273
  exports.MsgMultiSend = require_MsgSetDenomMetadata.MsgMultiSend;
273
274
  exports.MsgPrivilegedExecuteContract = require_MsgSetDenomMetadata.MsgPrivilegedExecuteContract;
274
275
  exports.MsgReclaimLockedFunds = require_MsgSetDenomMetadata.MsgReclaimLockedFunds;
276
+ exports.MsgRelayProviderPrices = require_MsgSetDenomMetadata.MsgRelayProviderPrices;
275
277
  exports.MsgRequestRedemption = require_MsgSetDenomMetadata.MsgRequestRedemption;
276
278
  exports.MsgRevoke = require_MsgSetDenomMetadata.MsgRevoke;
277
279
  exports.MsgRevokeAllowance = require_MsgSetDenomMetadata.MsgRevokeAllowance;