@injectivelabs/sdk-ts 1.18.11 → 1.18.13

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.
@@ -296,8 +296,8 @@ var GrpcWebSocketTransport = class {
296
296
  this.handleConnectionTimeout(reject);
297
297
  }, this.config.connectionTimeoutMs);
298
298
  try {
299
- this.ws = await this.createWebSocket(url, this.config.protocol, this.config.metadata);
300
- if ("binaryType" in this.ws) this.ws.binaryType = "arraybuffer";
299
+ this.ws = this.createWebSocket(url, this.config.protocol, this.config.metadata);
300
+ this.ws.binaryType = "arraybuffer";
301
301
  this.ws.onopen = () => {
302
302
  this.handleOpen(resolve);
303
303
  };
@@ -316,12 +316,9 @@ var GrpcWebSocketTransport = class {
316
316
  }
317
317
  });
318
318
  }
319
- async createWebSocket(url, protocol, metadata) {
320
- if (typeof WebSocket !== "undefined") {
321
- const urlWithMetadata = this.addMetadataToUrl(url, metadata);
322
- return new WebSocket(urlWithMetadata, protocol);
323
- }
324
- return new (await (import("ws"))).default(url, protocol, { headers: metadata || {} });
319
+ createWebSocket(url, protocol, metadata) {
320
+ const urlWithMetadata = this.addMetadataToUrl(url, metadata);
321
+ return new WebSocket(urlWithMetadata, protocol);
325
322
  }
326
323
  addMetadataToUrl(url, metadata) {
327
324
  if (!metadata || Object.keys(metadata).length === 0) return url;
@@ -511,7 +508,9 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
511
508
  eventTime: Number(grpcQuote.eventTime),
512
509
  takerDirection: grpcQuote.takerDirection,
513
510
  contractAddress: grpcQuote.contractAddress,
511
+ minFillQuantity: grpcQuote.minFillQuantity,
514
512
  transactionTime: Number(grpcQuote.transactionTime),
513
+ makerSubaccountNonce: Number(grpcQuote.makerSubaccountNonce),
515
514
  expiry: {
516
515
  ...((_grpcQuote$expiry = grpcQuote.expiry) === null || _grpcQuote$expiry === void 0 ? void 0 : _grpcQuote$expiry.height) && { height: Number(grpcQuote.expiry.height) },
517
516
  ...((_grpcQuote$expiry2 = grpcQuote.expiry) === null || _grpcQuote$expiry2 === void 0 ? void 0 : _grpcQuote$expiry2.timestamp) && { timestamp: Number(grpcQuote.expiry.timestamp) }
@@ -561,8 +560,10 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
561
560
  executedMargin: grpcProcessedQuote.executedMargin,
562
561
  takerDirection: grpcProcessedQuote.takerDirection,
563
562
  contractAddress: grpcProcessedQuote.contractAddress,
564
- transactionTime: Number(grpcProcessedQuote.transactionTime),
563
+ minFillQuantity: grpcProcessedQuote.minFillQuantity,
565
564
  executedQuantity: grpcProcessedQuote.executedQuantity,
565
+ transactionTime: Number(grpcProcessedQuote.transactionTime),
566
+ makerSubaccountNonce: Number(grpcProcessedQuote.makerSubaccountNonce),
566
567
  expiry: grpcProcessedQuote.expiry ? {
567
568
  ...grpcProcessedQuote.expiry.height && { height: Number(grpcProcessedQuote.expiry.height) },
568
569
  ...grpcProcessedQuote.expiry.timestamp && { timestamp: Number(grpcProcessedQuote.expiry.timestamp) }
@@ -3793,6 +3794,7 @@ var IndexerGrpcTcDerivativesTransformer = class IndexerGrpcTcDerivativesTransfor
3793
3794
  }
3794
3795
  static grpcDerivativeLimitOrderToDerivativeLimitOrder(order) {
3795
3796
  return {
3797
+ cid: order.cid,
3796
3798
  price: order.price,
3797
3799
  state: order.state,
3798
3800
  margin: order.margin,
@@ -5240,20 +5242,22 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
5240
5242
  return this.initClient(__injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb_client.InjectiveTCDerivativesRPCClient);
5241
5243
  }
5242
5244
  async fetchOrdersHistory(params) {
5243
- const { marketId, direction, perPage, token } = params || {};
5245
+ const { marketId, direction, perPage, token, accountAddress } = params || {};
5244
5246
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.OrdersHistoryRequest.create();
5245
5247
  if (marketId) request.marketIds = [marketId];
5246
5248
  if (direction) request.direction = direction;
5249
+ if (accountAddress) request.accountAddress = accountAddress;
5247
5250
  if (perPage) request.perPage = perPage;
5248
5251
  if (token) request.token = token;
5249
5252
  const response = await this.executeGrpcCall(request, this.client.ordersHistory.bind(this.client));
5250
5253
  return IndexerGrpcTcDerivativesTransformer.ordersHistoryResponseToOrdersHistory(response);
5251
5254
  }
5252
5255
  async fetchTradesHistory(params) {
5253
- const { marketId, direction, perPage, token } = params || {};
5256
+ const { marketId, direction, perPage, token, accountAddress } = params || {};
5254
5257
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.TradesRequest.create();
5255
5258
  if (marketId) request.marketIds = [marketId];
5256
5259
  if (direction) request.direction = direction;
5260
+ if (accountAddress) request.accountAddress = accountAddress;
5257
5261
  if (perPage) request.perPage = perPage;
5258
5262
  if (token) request.token = token;
5259
5263
  const response = await this.executeGrpcCall(request, this.client.trades.bind(this.client));
@@ -5272,10 +5276,11 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
5272
5276
  return IndexerGrpcTcDerivativesTransformer.positionsResponseToPositions(response);
5273
5277
  }
5274
5278
  async fetchOrders(params) {
5275
- const { marketId, direction, perPage, token } = params || {};
5279
+ const { marketId, direction, perPage, token, accountAddress } = params || {};
5276
5280
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.OrdersRequest.create();
5277
5281
  if (marketId) request.marketIds = [marketId];
5278
5282
  if (direction) request.direction = direction;
5283
+ if (accountAddress) request.accountAddress = accountAddress;
5279
5284
  if (perPage) request.perPage = perPage;
5280
5285
  if (token) request.token = token;
5281
5286
  const response = await this.executeGrpcCall(request, this.client.orders.bind(this.client));
@@ -7304,18 +7309,20 @@ var IndexerGrpcTcDerivativesStreamV2 = class {
7304
7309
  this.transport = new require_BaseGrpcConsumer.GrpcWebRpcTransport(endpoint, metadata);
7305
7310
  this.client = new __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb_client.InjectiveTCDerivativesRPCClient(this.transport);
7306
7311
  }
7307
- streamOrdersHistory({ marketId, callback }) {
7312
+ streamOrdersHistory({ marketId, accountAddress, callback }) {
7308
7313
  if (typeof callback !== "function") throw new Error("callback must be a function");
7309
7314
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.StreamOrdersHistoryRequest.create();
7310
7315
  if (marketId) request.marketIds = [marketId];
7316
+ if (accountAddress) request.accountAddress = accountAddress;
7311
7317
  return createStreamSubscriptionV2(this.client.streamOrdersHistory(request), (response) => {
7312
7318
  callback(IndexerTcDerivativesStreamTransformer.orderHistoryStreamCallback(response));
7313
7319
  });
7314
7320
  }
7315
- streamTrades({ marketId, callback }) {
7321
+ streamTrades({ marketId, accountAddress, callback }) {
7316
7322
  if (typeof callback !== "function") throw new Error("callback must be a function");
7317
7323
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.StreamTradesRequest.create();
7318
7324
  if (marketId) request.marketIds = [marketId];
7325
+ if (accountAddress) request.accountAddress = accountAddress;
7319
7326
  return createStreamSubscriptionV2(this.client.streamTrades(request), (response) => {
7320
7327
  callback(IndexerTcDerivativesStreamTransformer.tradesStreamCallback(response));
7321
7328
  });
@@ -7329,10 +7336,11 @@ var IndexerGrpcTcDerivativesStreamV2 = class {
7329
7336
  callback(IndexerTcDerivativesStreamTransformer.positionsStreamCallback(response));
7330
7337
  });
7331
7338
  }
7332
- streamOrders({ marketId, callback }) {
7339
+ streamOrders({ marketId, accountAddress, callback }) {
7333
7340
  if (typeof callback !== "function") throw new Error("callback must be a function");
7334
7341
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.StreamOrdersRequest.create();
7335
7342
  if (marketId) request.marketIds = [marketId];
7343
+ if (accountAddress) request.accountAddress = accountAddress;
7336
7344
  return createStreamSubscriptionV2(this.client.streamOrders(request), (response) => {
7337
7345
  callback(IndexerTcDerivativesStreamTransformer.ordersStreamCallback(response));
7338
7346
  });
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BN7h9uqT.cjs";
2
2
  import { st as OracleType } from "../index-m48Rf9ow.cjs";
3
- import { $_ as GrpcValidatorCommission, $g as ChainDerivativePosition, $h as TxFeesModuleStateParams, $m as DenomBalance, A as ChainGrpcAuctionApi, A_ as GrpcSpotOrder, Ag as GrpcBankParams, Ah as GrpcPermissionRoleManager, Av as GrpcProposal, B as ChainGrpcAuthApi, B_ as TradingRewardCampaignInfo, Bg as EvmBlobConfig, Bh as PermissionPolicyManagerCapability, Bm as RestApiResponse, Bv as VoteOption, C as ChainGrpcInsuranceFundApi, C_ as GrpcMarketStatusMap, Cg as GrpcRedemptionSchedule, Ch as GrpcPermissionAddressVoucher, Cv as MarketingInfo, D as ChainGrpcTendermintApi, D_ as GrpcPointsMultiplier, Dg as GrpcMintParams, Dh as GrpcPermissionRole, Dv as GrpcGovernanceDepositParams, E as ChainGrpcPermissionsApi, E_ as GrpcOrderTypeMap, Eg as OracleTypeMap, Eh as GrpcPermissionPolicyStatusManagerCapability, Ev as GovModuleStateParams, F as ChainGrpcPeggyApi, F_ as OrderType, Fg as Account, Fh as PermissionAddressRoles, Fv as ProposalDeposit, G_ as GrpcPool, Gg as GrpcEvmBlobConfig, Gh as PermissionRoleManager, Gm as TokenFactoryModuleParams, H as ChainGrpcIbcApi, H_ as Delegation, Hg as EvmChainConfig, Hh as PermissionRole, Hm as NodeInfoRestResponse, Hv as WeightedVoteOption, I as ChainGrpcAuthZApi, I_ as OrderTypeMap, Ig as AuthBaseAccount, Ih as PermissionAddressVoucher, Iv as ProposalStatus, J_ as GrpcReDelegationResponse, Jg as GrpcEvmLog, Jh as GrpcOracleParams, Jm as GrpcDecCoin, K_ as GrpcReDelegation, Kg as GrpcEvmBlobScheduleConfig, Kh as PermissionVoucher, Km as TokenFactoryModuleState, L as ChainGrpcWasmApi, L_ as PointsMultiplier, Lg as AuthModuleParams, Lh as PermissionGenesisState, Lv as ProposalStatusMap, M as ChainGrpcOracleApi, M_ as GrpcTradingRewardCampaignBoostInfo, Mg as Metadata, Mh as GrpcPermissionsParams, Mv as GrpcTallyResult, N as ChainGrpcErc20Api, N_ as GrpcTradingRewardCampaignInfo, Ng as SendEnabled, Nh as PermissionActionMap, Nv as GrpcVote, O as ChainGrpcExchangeApi, O_ as GrpcSpotMarket, Og as MinModuleParams, Oh as GrpcPermissionRoleActors, Ov as GrpcGovernanceTallyParams, P as ChainGrpcWasmXApi, P_ as IsOptedOutOfRewards, Pg as TotalSupply, Ph as PermissionActorRoles, Pv as Proposal, Q_ as GrpcValidator, Qg as ChainDenomMinNotional, Qh as TxFeesEipBaseFee, Qm as BalancesResponse, R as ChainGrpcMintApi, R_ as TradeRewardCampaign, Rg as EthAccount, Rh as PermissionNamespace, Rv as TallyResult, S as ChainRestBankApi, S_ as GrpcMarketStatus, Sg as GrpcInsuranceParams, Sh as GrpcPermissionActorRoles, Sv as GrpcContractInfo, T as ChainGrpcDistributionApi, T_ as GrpcOrderType, Tg as InsuranceModuleParams, Th as GrpcPermissionPolicyStatus, Tv as grpcContractInfo, U as ChainGrpcGovApi, U_ as GrpcDelegation, Ug as EvmLog, Uh as PermissionRoleActors, Um as AuthorityMetadata, V as ChainGrpcEvmApi, V_ as BondStatus, Vg as EvmBlobScheduleConfig, Vh as PermissionPolicyStatus, Vm as BlockLatestRestResponse, Vv as VoteOptionMap, W_ as GrpcDelegationResponse, Wg as EvmParams, Wh as PermissionRoleIDs, Wm as FactoryDenomWithMetadata, X_ as GrpcUnbondingDelegation, Xg as CampaignRewardPool, Xh as GrpcTxFeesEipBaseFee, Xm as GrpcDistributionParams, Y_ as GrpcStakingParams, Yg as GrpcEvmParams, Yh as OracleModuleParams, Ym as GrpcDelegationDelegatorReward, Z_ as GrpcUnbondingDelegationEntry, Zg as ChainDenomDecimal, Zh as GrpcTxFeesParams, Zm as ValidatorRewards, _ as ChainGrpcEvmTransformer, __ as GrpcExchangeParams, _g as Grant, _h as GrpcAuctionEventAuctionResult, _v as ContractStateWithPagination, a as ChainGrpcExchangeTransformer, a_ as FeeDiscountSchedule, ag as PeggyModuleParams, ah as AuctionBid, av as UnBondingDelegation, b as ChainRestWasmApi, b_ as GrpcFeeDiscountTierInfo, bg as GrantWithDecodedAuthorization, bh as GrpcAuctionLastAuctionResult, bv as GrpcCodeInfoResponse, c as ChainGrpcCommonTransformer, c_ as GrpcCampaignRewardPool, cg as BatchCreateDerivativeLimitOrdersAuthz, ch as AuctionEventAuctionStart, cv as ValidatorDescription, d as ChainGrpcPeggyTransformer, d_ as GrpcChainFullDerivativeMarket, dg as CancelSpotOrderAuthz, dh as AuctionModuleParams, dv as ContractAccountBalance, e_ as ChainPosition, eg as GrpcParams, eh as DenomOwnersResponse, ev as GrpcValidatorCommissionRates, f as ChainGrpcAuthZTransformer, f_ as GrpcChainFullSpotMarket, fg as CreateDerivativeLimitOrderAuthz, fh as AuctionModuleState, fv as ContractAccountsBalanceWithPagination, g as ChainGrpcAuthTransformer, g_ as GrpcDenomMinNotional, gg as GenericAuthorization, gh as GrpcAuctionBid, gv as ContractInfo, h as ChainGrpcBankTransformer, h_ as GrpcDenomDecimals, hg as CreateSpotMarketOrderAuthz, hh as AuctionParams, hv as ContractCodeHistoryOperationTypeMap, i as ChainGrpcPermissionsTransformer, i_ as FeeDiscountAccountInfo, ig as GrpcPeggyParams, ih as CosmosAccountRestResponse, iv as StakingModuleParams, j as ChainGrpcTxFeesApi, j_ as GrpcTradeRewardCampaign, jg as GrpcSupply, jh as GrpcPermissionsNamespace, jv as GrpcProposalDeposit, k as ChainGrpcStakingApi, k_ as GrpcSpotMarketOrder, kg as BankModuleParams, kh as GrpcPermissionRoleIDs, kv as GrpcGovernanceVotingParams, l as ChainGrpcTxFeesTransformer, l_ as GrpcChainDerivativeMarket, lg as BatchCreateSpotLimitOrdersAuthz, lh as AuctionEventBid, lv as AbsoluteTxPosition, m as ChainGrpcMintTransformer, m_ as GrpcChainSpotMarket, mg as CreateSpotLimitOrderAuthz, mh as AuctionModuleStateResponse, mv as ContractCodeHistoryOperationType, n as ChainGrpcTokenFactoryTransformer, n_ as ExchangeModuleParams, ng as Params, nh as AccountsResponse, nv as Pool, o as ChainGrpcStakingTransformer, o_ as FeeDiscountTierInfo, og as BatchCancelDerivativeOrdersAuthz, oh as AuctionCurrentBasket, ov as Validator, p as ChainGrpcWasmTransformer, p_ as GrpcChainPosition, pg as CreateDerivativeMarketOrderAuthz, ph as AuctionModuleStateParams, pv as ContractCodeHistoryEntry, q_ as GrpcReDelegationEntryResponse, qg as GrpcEvmChainConfig, qh as PermissionsModuleParams, qm as DistributionModuleParams, r as ChainGrpcDistributionTransformer, r_ as ExchangeParams, rg as TokenPair, rh as BaseAccountRestResponse, rv as ReDelegation, s as ChainGrpcAuctionTransformer, s_ as FeeDiscountTierTTL, sg as BatchCancelSpotOrdersAuthz, sh as AuctionEventAuctionResult, sv as ValidatorCommission, t as ChainGrpcInsuranceFundTransformer, t_ as DepositProposalParams, tg as GrpcTokenPair, th as AccountResponse, tv as GrpcValidatorDescription, u as ChainGrpcErc20Transformer, u_ as GrpcChainDerivativePosition, ug as CancelDerivativeOrderAuthz, uh as AuctionLastAuctionResult, uv as CodeInfoResponse, v as ChainGrpcGovTransformer, v_ as GrpcFeeDiscountAccountInfo, vg as GrantAuthorization, vh as GrpcAuctionEventAuctionStart, vv as GoogleProtoBufAny, w as ChainGrpcTokenFactoryApi, w_ as GrpcOrderInfo, wg as InsuranceFund, wh as GrpcPermissionNamespace, wv as TokenInfo, x as ChainRestAuthApi, x_ as GrpcFeeDiscountTierTTL, xg as GrpcInsuranceFund, xh as GrpcAuctionParams, xv as GrpcContractCodeHistoryEntry, y as ChainRestTendermintApi, y_ as GrpcFeeDiscountSchedule, yg as GrantAuthorizationWithDecodedAuthorization, yh as GrpcAuctionEventBid, yv as GrpcAbsoluteTxPosition, z as ChainGrpcBankApi, z_ as TradingRewardCampaignBoostInfo, zg as PubKey, zh as PermissionParams, zm as ChainModule, zv as Vote } from "../index-CDEYM6Fs.cjs";
3
+ import { $_ as GrpcValidatorCommission, $g as ChainDerivativePosition, $h as TxFeesModuleStateParams, $m as DenomBalance, A as ChainGrpcAuctionApi, A_ as GrpcSpotOrder, Ag as GrpcBankParams, Ah as GrpcPermissionRoleManager, Av as GrpcProposal, B as ChainGrpcAuthApi, B_ as TradingRewardCampaignInfo, Bg as EvmBlobConfig, Bh as PermissionPolicyManagerCapability, Bm as RestApiResponse, Bv as VoteOption, C as ChainGrpcInsuranceFundApi, C_ as GrpcMarketStatusMap, Cg as GrpcRedemptionSchedule, Ch as GrpcPermissionAddressVoucher, Cv as MarketingInfo, D as ChainGrpcTendermintApi, D_ as GrpcPointsMultiplier, Dg as GrpcMintParams, Dh as GrpcPermissionRole, Dv as GrpcGovernanceDepositParams, E as ChainGrpcPermissionsApi, E_ as GrpcOrderTypeMap, Eg as OracleTypeMap, Eh as GrpcPermissionPolicyStatusManagerCapability, Ev as GovModuleStateParams, F as ChainGrpcPeggyApi, F_ as OrderType, Fg as Account, Fh as PermissionAddressRoles, Fv as ProposalDeposit, G_ as GrpcPool, Gg as GrpcEvmBlobConfig, Gh as PermissionRoleManager, Gm as TokenFactoryModuleParams, H as ChainGrpcIbcApi, H_ as Delegation, Hg as EvmChainConfig, Hh as PermissionRole, Hm as NodeInfoRestResponse, Hv as WeightedVoteOption, I as ChainGrpcAuthZApi, I_ as OrderTypeMap, Ig as AuthBaseAccount, Ih as PermissionAddressVoucher, Iv as ProposalStatus, J_ as GrpcReDelegationResponse, Jg as GrpcEvmLog, Jh as GrpcOracleParams, Jm as GrpcDecCoin, K_ as GrpcReDelegation, Kg as GrpcEvmBlobScheduleConfig, Kh as PermissionVoucher, Km as TokenFactoryModuleState, L as ChainGrpcWasmApi, L_ as PointsMultiplier, Lg as AuthModuleParams, Lh as PermissionGenesisState, Lv as ProposalStatusMap, M as ChainGrpcOracleApi, M_ as GrpcTradingRewardCampaignBoostInfo, Mg as Metadata, Mh as GrpcPermissionsParams, Mv as GrpcTallyResult, N as ChainGrpcErc20Api, N_ as GrpcTradingRewardCampaignInfo, Ng as SendEnabled, Nh as PermissionActionMap, Nv as GrpcVote, O as ChainGrpcExchangeApi, O_ as GrpcSpotMarket, Og as MinModuleParams, Oh as GrpcPermissionRoleActors, Ov as GrpcGovernanceTallyParams, P as ChainGrpcWasmXApi, P_ as IsOptedOutOfRewards, Pg as TotalSupply, Ph as PermissionActorRoles, Pv as Proposal, Q_ as GrpcValidator, Qg as ChainDenomMinNotional, Qh as TxFeesEipBaseFee, Qm as BalancesResponse, R as ChainGrpcMintApi, R_ as TradeRewardCampaign, Rg as EthAccount, Rh as PermissionNamespace, Rv as TallyResult, S as ChainRestBankApi, S_ as GrpcMarketStatus, Sg as GrpcInsuranceParams, Sh as GrpcPermissionActorRoles, Sv as GrpcContractInfo, T as ChainGrpcDistributionApi, T_ as GrpcOrderType, Tg as InsuranceModuleParams, Th as GrpcPermissionPolicyStatus, Tv as grpcContractInfo, U as ChainGrpcGovApi, U_ as GrpcDelegation, Ug as EvmLog, Uh as PermissionRoleActors, Um as AuthorityMetadata, V as ChainGrpcEvmApi, V_ as BondStatus, Vg as EvmBlobScheduleConfig, Vh as PermissionPolicyStatus, Vm as BlockLatestRestResponse, Vv as VoteOptionMap, W_ as GrpcDelegationResponse, Wg as EvmParams, Wh as PermissionRoleIDs, Wm as FactoryDenomWithMetadata, X_ as GrpcUnbondingDelegation, Xg as CampaignRewardPool, Xh as GrpcTxFeesEipBaseFee, Xm as GrpcDistributionParams, Y_ as GrpcStakingParams, Yg as GrpcEvmParams, Yh as OracleModuleParams, Ym as GrpcDelegationDelegatorReward, Z_ as GrpcUnbondingDelegationEntry, Zg as ChainDenomDecimal, Zh as GrpcTxFeesParams, Zm as ValidatorRewards, _ as ChainGrpcEvmTransformer, __ as GrpcExchangeParams, _g as Grant, _h as GrpcAuctionEventAuctionResult, _v as ContractStateWithPagination, a as ChainGrpcExchangeTransformer, a_ as FeeDiscountSchedule, ag as PeggyModuleParams, ah as AuctionBid, av as UnBondingDelegation, b as ChainRestWasmApi, b_ as GrpcFeeDiscountTierInfo, bg as GrantWithDecodedAuthorization, bh as GrpcAuctionLastAuctionResult, bv as GrpcCodeInfoResponse, c as ChainGrpcCommonTransformer, c_ as GrpcCampaignRewardPool, cg as BatchCreateDerivativeLimitOrdersAuthz, ch as AuctionEventAuctionStart, cv as ValidatorDescription, d as ChainGrpcPeggyTransformer, d_ as GrpcChainFullDerivativeMarket, dg as CancelSpotOrderAuthz, dh as AuctionModuleParams, dv as ContractAccountBalance, e_ as ChainPosition, eg as GrpcParams, eh as DenomOwnersResponse, ev as GrpcValidatorCommissionRates, f as ChainGrpcAuthZTransformer, f_ as GrpcChainFullSpotMarket, fg as CreateDerivativeLimitOrderAuthz, fh as AuctionModuleState, fv as ContractAccountsBalanceWithPagination, g as ChainGrpcAuthTransformer, g_ as GrpcDenomMinNotional, gg as GenericAuthorization, gh as GrpcAuctionBid, gv as ContractInfo, h as ChainGrpcBankTransformer, h_ as GrpcDenomDecimals, hg as CreateSpotMarketOrderAuthz, hh as AuctionParams, hv as ContractCodeHistoryOperationTypeMap, i as ChainGrpcPermissionsTransformer, i_ as FeeDiscountAccountInfo, ig as GrpcPeggyParams, ih as CosmosAccountRestResponse, iv as StakingModuleParams, j as ChainGrpcTxFeesApi, j_ as GrpcTradeRewardCampaign, jg as GrpcSupply, jh as GrpcPermissionsNamespace, jv as GrpcProposalDeposit, k as ChainGrpcStakingApi, k_ as GrpcSpotMarketOrder, kg as BankModuleParams, kh as GrpcPermissionRoleIDs, kv as GrpcGovernanceVotingParams, l as ChainGrpcTxFeesTransformer, l_ as GrpcChainDerivativeMarket, lg as BatchCreateSpotLimitOrdersAuthz, lh as AuctionEventBid, lv as AbsoluteTxPosition, m as ChainGrpcMintTransformer, m_ as GrpcChainSpotMarket, mg as CreateSpotLimitOrderAuthz, mh as AuctionModuleStateResponse, mv as ContractCodeHistoryOperationType, n as ChainGrpcTokenFactoryTransformer, n_ as ExchangeModuleParams, ng as Params, nh as AccountsResponse, nv as Pool, o as ChainGrpcStakingTransformer, o_ as FeeDiscountTierInfo, og as BatchCancelDerivativeOrdersAuthz, oh as AuctionCurrentBasket, ov as Validator, p as ChainGrpcWasmTransformer, p_ as GrpcChainPosition, pg as CreateDerivativeMarketOrderAuthz, ph as AuctionModuleStateParams, pv as ContractCodeHistoryEntry, q_ as GrpcReDelegationEntryResponse, qg as GrpcEvmChainConfig, qh as PermissionsModuleParams, qm as DistributionModuleParams, r as ChainGrpcDistributionTransformer, r_ as ExchangeParams, rg as TokenPair, rh as BaseAccountRestResponse, rv as ReDelegation, s as ChainGrpcAuctionTransformer, s_ as FeeDiscountTierTTL, sg as BatchCancelSpotOrdersAuthz, sh as AuctionEventAuctionResult, sv as ValidatorCommission, t as ChainGrpcInsuranceFundTransformer, t_ as DepositProposalParams, tg as GrpcTokenPair, th as AccountResponse, tv as GrpcValidatorDescription, u as ChainGrpcErc20Transformer, u_ as GrpcChainDerivativePosition, ug as CancelDerivativeOrderAuthz, uh as AuctionLastAuctionResult, uv as CodeInfoResponse, v as ChainGrpcGovTransformer, v_ as GrpcFeeDiscountAccountInfo, vg as GrantAuthorization, vh as GrpcAuctionEventAuctionStart, vv as GoogleProtoBufAny, w as ChainGrpcTokenFactoryApi, w_ as GrpcOrderInfo, wg as InsuranceFund, wh as GrpcPermissionNamespace, wv as TokenInfo, x as ChainRestAuthApi, x_ as GrpcFeeDiscountTierTTL, xg as GrpcInsuranceFund, xh as GrpcAuctionParams, xv as GrpcContractCodeHistoryEntry, y as ChainRestTendermintApi, y_ as GrpcFeeDiscountSchedule, yg as GrantAuthorizationWithDecodedAuthorization, yh as GrpcAuctionEventBid, yv as GrpcAbsoluteTxPosition, z as ChainGrpcBankApi, z_ as TradingRewardCampaignBoostInfo, zg as PubKey, zh as PermissionParams, zm as ChainModule, zv as Vote } from "../index-C3CJY1Ry.cjs";
4
4
  import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
5
5
  import "../index-CgHU4RQF.cjs";
6
6
  import "../index-DfJ_98xz.cjs";
@@ -5,7 +5,7 @@ require('../BaseGrpcConsumer-B1hpRQJ-.cjs');
5
5
  require('../BaseIndexerGrpcConsumer-rRYRp48i.cjs');
6
6
  require('../BaseRestConsumer-CRkyjiSo.cjs');
7
7
  const require_IndexerGrpcWeb3GwApi = require('../IndexerGrpcWeb3GwApi-BjMwVPdm.cjs');
8
- const require_StreamManagerV2 = require('../StreamManagerV2-DlTHwjnI.cjs');
8
+ const require_StreamManagerV2 = require('../StreamManagerV2-ClyLDWzY.cjs');
9
9
  require('../types-BSrt7JzM.cjs');
10
10
 
11
11
  exports.AccessType = require_IndexerGrpcWeb3GwApi.AccessType;
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BN7h9uqT.cjs";
2
2
  import "../index-m48Rf9ow.cjs";
3
- import { $ as TcDerivativeTradesStreamCallbackV2, $a as AllSpotMarketSummaryResponse, $c as GrpcMitoIDO, $i as Position, $l as MitoWhitelistAccount, $n as IndexerRestDerivativesChronosApi, $o as GrpcAtomicSwap, $r as GrpcTcDerivativesOrdersHistoryResponse, $s as ExplorerBlockWithTxs, $t as BlocksWithTxsStreamCallback, Aa as MegaVaultApr, Ac as WasmCode, Ai as DerivativeOrderCancelParams, Al as MitoIDOSubscriber, An as IndexerGrpcAccountPortfolioTransformer, Ao as SpotAverageEntry, Ar as AccountPortfolioBalances, As as RFQRequestType, At as IndexerGrpcSpotStreamV2, Ba as MegaVaultRedemption, Bc as GrpcSubaccountDeposit, Bi as GrpcDerivativeOrderHistory, Bl as MitoPortfolio, Bn as IndexerGrpcReferralTransformer, Bo as GrpcAccountAuctionV2, Br as ChronosLeaderboard, Bs as AccessTypeCode, Bt as createStreamSubscription, Ca as GrpcMegaVaultTargetApr, Cc as PeggyWithdrawalTx, Ci as BaseDerivativeMarket, Cl as MitoGauge, Cn as SpotOrdersStreamCallback, Co as GrpcVolLeaderboard, Cr as IndexerWsTakerStream, Cs as MakerStreamConfig, Ct as OraclePricesByMarketsStreamCallbackV2, Da as GrpcMegaVaultVolatility, Dc as ValidatorSlashingEvent, Di as DerivativeLimitOrderParams, Dl as MitoIDOClaimedCoins, Dn as IndexerGrpcTcDerivativesTransformer, Do as Holder, Dr as StreamStatusResponse, Ds as RFQProcessedQuoteType, Dt as TransfersStreamCallbackV2, Ea as GrpcMegaVaultVaultStats, Ec as TxMessage, Ei as DerivativeLimitOrder, El as MitoIDO, En as IndexerTcDerivativesStreamTransformer, Eo as HistoricalVolumes, Er as IndexerModule, Es as RFQMakerStreamAckData, Et as StakingRewardByAccountStreamCallbackV2, Fa as MegaVaultMaxDrawdown, Fc as TradingStrategy, Fi as FundingPayment, Fl as MitoLeaderboardEpoch, Fn as IndexerGrpcMegaVaultTransformer, Fo as AuctionCoin, Fr as GrpcPositionsWithUPNL, Fs as RFQTakerStreamAckData, Ft as IndexerGrpcRfqStreamV2, G as createStreamSubscriptionV2, Ga as MegaVaultTargetApr, Gc as SubaccountPortfolio, Gi as GrpcFundingPayment, Gl as MitoStakingReward, Gn as IndexerSpotStreamTransformer, Go as GrpcAuctionV2, Gr as ChronosDerivativeMarketSummary, Gs as CW20Message, Gt as DerivativeOrderbookUpdateStreamCallback, Ha as MegaVaultStats, Hc as GrpcTradingReward, Hi as GrpcDerivativePositionV2, Hl as MitoStakeToSubscription, Hn as IndexerGrpcArchiverTransformer, Ho as GrpcAuctionCoin, Hr as ChronosLeaderboardResponse, Hs as BankTransfer, Ht as IndexerGrpcAccountPortfolioStream, Ia as MegaVaultOperator, Ic as AccountPortfolio, Ii as FundingRate, Il as MitoMission, In as IndexerAuctionStreamTransformer, Io as AuctionCoinPrices, Ir as GrpcSubaccountDepositV2, Is as SettlementsResponse, It as QuoteStreamCallbackV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultUserStats, Jc as TransferType, Ji as GrpcPerpetualMarketInfo, Jl as MitoTokenInfo, Jn as IndexerCampaignTransformer, Jo as StreamBidsResponse, Jr as GrpcTcDerivativeOrderHistory, Js as ContractTransactionWithMessages, Jt as DerivativePositionsStreamCallback, K as StreamManagerV2, Ka as MegaVaultUnrealizedPnl, Kc as SubaccountTransfer, Ki as GrpcFundingRate, Kl as MitoSubaccountBalance, Kn as IndexerGrpcOracleTransformer, Ko as GrpcIndexerAuctionBid, Kr as ChronosDerivativeMarketSummaryResponse, Ks as Contract, Kt as DerivativeOrderbookV2StreamCallback, La as MegaVaultOperatorRedemptionBucket, Lc as GrpcAccountPortfolio, Li as GrpcBinaryOptionsMarketInfo, Ll as MitoMissionLeaderboard, Ln as IndexerAccountStreamTransformer, Lo as AuctionContract, Lr as PortfolioSubaccountBalanceV2, Ls as TakerStreamConfig, Lt as RequestStreamCallbackV2, Ma as MegaVaultHistoricalPnL, Mc as GridStrategyType, Mi as DerivativeTrade, Ml as MitoIDOSubscriptionActivity, Mn as IndexerGrpcDerivativeTransformer, Mo as AccountAuctionStatus, Mr as GrpcAccountPortfolioV2, Ms as RFQSettlementType, Mt as SpotOrderbookUpdateStreamCallbackV2, Na as MegaVaultHistoricalTVL, Nc as ListTradingStrategiesResponse, Ni as ExpiryFuturesMarket, Nl as MitoLeaderboard, Nn as ExplorerStreamTransformer, No as AccountAuctionV2, Nr as GrpcPortfolioSubaccountBalanceV2, Ns as RFQSettlementUnfilledActionType, Nt as SpotOrdersStreamCallbackV2, Oa as GrpcMegaVaultVolatilityStats, Oc as ValidatorUptime, Oi as DerivativeMarket, Ol as MitoIDOInitParams, On as IndexerGrpcInsuranceFundTransformer, Oo as LeaderboardRow, Or as AllChronosMarketHistory, Os as RFQQuoteType, Ot as VaultHolderSubscriptionStreamCallbackV2, Pa as MegaVaultIncentives, Pc as MarketType, Pi as ExpiryFuturesMarketInfo, Pl as MitoLeaderboardEntry, Pn as IndexerArchiverStreamTransformer, Po as Auction, Pr as GrpcPositionV2, Ps as RFQStreamErrorData, Pt as SpotTradesStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as AllChronosSpotMarketSummary, Qc as GrpcMitoHolders, Qi as PerpetualMarketInfo, Ql as MitoVestingConfigMap, Qn as IndexerRestLeaderboardChronosApi, Qo as BatchSpotOrderCancelParams, Qr as GrpcTcDerivativeTradesResponse, Qs as EventLogEvent, Qt as BlocksStreamCallback, Ra as MegaVaultPnl, Rc as GrpcSubaccountBalance, Ri as GrpcDerivativeLimitOrder, Rl as MitoMissionLeaderboardEntry, Rn as IndexerRestExplorerTransformer, Ro as AuctionV2, Rr as PositionsWithUPNL, Rs as TakerStreamEvents, Rt as SettlementStreamCallbackV2, Sa as GrpcMegaVaultSubscription, Sc as PeggyDepositTx, Si as WasmCodeExplorerApiResponse, Sl as MitoDenomBalance, Sn as SpotOrderbookV2StreamCallback, So as GrpcSpotAverageEntry, Sr as IndexerWsMakerStream, Ss as GrpcRFQSettlement, St as OraclePriceStreamCallbackV2, Ta as GrpcMegaVaultUserStats, Tc as Transaction, Ti as BinaryOptionsMarket, Tl as MitoHolders, Tn as IndexerAccountPortfolioStreamTransformer, To as HistoricalRPNL, Tr as GrpcWebSocketCodec, Ts as RFQExpiryType, Tt as IndexerGrpcMitoStreamV2, Ua as MegaVaultSubscription, Uc as SubaccountBalance, Ui as GrpcDerivativeTrade, Ul as MitoStakingActivity, Un as IndexerGrpcAuctionTransformer, Uo as GrpcAuctionCoinPrices, Ur as AllChronosDerivativeMarketSummary, Us as Block, Ut as DerivativeMarketStreamCallback, Va as MegaVaultRedemptionStatus, Vc as GrpcSubaccountPortfolio, Vi as GrpcDerivativePosition, Vl as MitoPriceSnapshot, Vn as IndexerGrpcExplorerTransformer, Vo as GrpcAuction, Vr as ChronosLeaderboardEntry, Vs as BankMsgSendTransaction, Vt as AccountPortfolioStreamCallback, Wa as MegaVaultSubscriptionStatus, Wc as SubaccountDeposit, Wi as GrpcExpiryFuturesMarketInfo, Wl as MitoStakingPool, Wn as IndexerGrpcAccountTransformer, Wo as GrpcAuctionContract, Wr as AllDerivativeMarketSummaryResponse, Ws as BlockWithTxs, Wt as DerivativeOrderHistoryStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultVolatilityStats, Xc as GrpcMitoClaimReference, Xi as PerpetualMarket, Xl as MitoVault, Xn as IndexerGrpcMitoTransformer, Xo as Oracle, Xr as GrpcTcDerivativePosition, Xs as CosmWasmPermission, Xt as DerivativeTradesStreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultVolatility, Yc as GrpcMitoChanges, Yi as GrpcPositionDelta, Yl as MitoTransfer, Yn as IndexerGrpcSpotTransformer, Yo as GrpcOracle, Yr as GrpcTcDerivativeOrdersResponse, Ys as CosmWasmChecksum, Yt as DerivativePositionsV2StreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as OperationStatusLogEntry, Zc as GrpcMitoDenomBalance, Zi as PerpetualMarketFunding, Zl as MitoVestingConfig, Zn as IndexerGrpcRfqTransformer, Zo as AtomicSwap, Zr as GrpcTcDerivativeTradeHistory, Zs as EventLog, Zt as IndexerGrpcDerivativesStream, _a as GrpcMegaVaultOperator, _c as GrpcValidatorUptime, _i as ExplorerApiResponseWithPagination, _l as GrpcMitoTokenInfo, _n as VaultStreamCallback, _o as GrpcHistoricalBalance, _r as IndexerGrpcOracleApi, _s as Route, _t as BidsStreamCallbackV2, aa as InsuranceFundCreateParams, ac as ExplorerValidator, ai as TcDerivativePosition, al as GrpcMitoLeaderboardEntry, an as BidsStreamCallback, ao as GrpcCampaign, ar as IndexerGrpcAccountPortfolioApi, as as SpotLimitOrderParams, at as DerivativePositionsStreamCallbackV2, au as TransportEventType, ba as GrpcMegaVaultPnlStats, bc as Message, bi as TransactionFromExplorerApiResponse, bl as MitoChanges, bn as SpotOrderHistoryStreamCallback, bo as GrpcLeaderboardRow, br as IndexerGrpcMitoApi, bs as GrpcRFQQuote, bt as IndexerGrpcAccountStreamV2, ca as IncentivesCampaign, cc as GasFee, ci as TcDerivativesOrdersHistoryResponse, cl as GrpcMitoMissionLeaderboardEntry, cn as IndexerGrpcAccountStream, co as GrpcGuild, cr as IndexerGrpcReferralApi, cs as SpotOrderHistory, ct as IndexerGrpcDerivativesStreamV2, cu as WsReconnectConfig, da as GrpcMegaVaultAprStats, dc as GrpcGasFee, di as BankTransferFromExplorerApiResponse, dl as GrpcMitoStakingGauge, dn as OraclePricesByMarketsStreamCallback, do as GuildCampaignSummary, dr as IndexerGrpcExplorerApi, ds as GrpcTokenMeta, dt as IndexerGrpcExplorerStreamV2, ea as PositionDelta, ec as ExplorerCW20BalanceWithToken, ei as GrpcTcDerivativesPositionsResponse, el as GrpcMitoIDOClaimedCoins, en as IndexerGrpcExplorerStream, eo as ChronosSpotMarketSummary, er as IndexerRestMarketChronosApi, es as GrpcSpotLimitOrder, et as DerivativeMarketStreamCallbackV2, eu as GrpcDecodeError, fa as GrpcMegaVaultHistoricalPnL, fc as GrpcIBCTransferTx, fi as BlockFromExplorerApiResponse, fl as GrpcMitoStakingPool, fn as HistoricalStakingStreamCallback, fo as GuildMember, fr as IndexerGrpcTradingApi, fs as IndexerTokenMeta, ft as TransactionsStreamCallbackV2, ga as GrpcMegaVaultOperationStatusLogEntry, gc as GrpcValidatorSlashingEvent, gi as ExplorerApiResponse, gl as GrpcMitoSubscription, gn as VaultHolderSubscriptionStreamCallback, go as GrpcDenomHolders, gr as IndexerGrpcTransactionApi, gs as QuantityAndFees, gt as IndexerGrpcTradingStreamV2, ha as GrpcMegaVaultMaxDrawdown, hc as GrpcPeggyWithdrawalTx, hi as ContractTransactionExplorerApiResponse, hl as GrpcMitoSubaccountBalance, hn as TransfersStreamCallback, ho as DenomHolders, hr as IndexerGrpcWeb3GwApi, hs as PriceLevel, ht as GridStrategyStreamCallbackV2, ia as IndexerInsuranceFund, ic as ExplorerTxsV2Response, ii as TcDerivativeOrdersResponse, il as GrpcMitoIDOSubscriptionActivity, in as IndexerGrpcTradingStream, io as CampaignV2, ir as IndexerGrpcTcDerivativesApi, is as SpotLimitOrder, it as DerivativeOrdersStreamCallbackV2, iu as TransportEventListener, ja as MegaVaultAprStats, jc as GridStrategyStreamResponse, ji as DerivativeOrderHistory, jl as MitoIDOSubscription, jn as IndexerGrpcMitoStreamTransformer, jo as VolLeaderboard, jr as AccountPortfolioV2, js as RFQSettlementLimitActionType, jt as SpotOrderHistoryStreamCallbackV2, ka as MegaVault, kc as ValidatorUptimeStatus, ki as DerivativeMarketWithoutBinaryOptions, kl as MitoIDOProgress, kn as IndexerDerivativeStreamTransformer, ko as PnlLeaderboard, kr as ChronosMarketHistoryResponse, ks as RFQRequestInputType, kt as VaultStreamCallbackV2, la as IncentivesRound, lc as GrpcBankMsgSendMessage, li as TcDerivativesPositionsResponse, ll as GrpcMitoPagination, ln as IndexerGrpcOracleStream, lo as GrpcGuildMember, lr as IndexerGrpcArchiverApi, ls as SpotTrade, lt as BlocksStreamCallbackV2, lu as WsState, ma as GrpcMegaVaultIncentives, mc as GrpcPeggyDepositTx, mi as ContractExplorerApiResponse, ml as GrpcMitoStakingStakingReward, mn as StakingRewardByAccountStreamCallback, mo as AccountStats, mr as IndexerGrpcAccountApi, ms as OrderbookWithSequence, mt as SpotAverageEntriesStreamCallbackV2, na as GrpcIndexerInsuranceFund, nc as ExplorerTransaction, ni as TcDerivativeLimitOrder, nl as GrpcMitoIDOSubscriber, nn as IndexerGrpcArchiverStream, no as Campaign, nr as IndexerRestExplorerApi, ns as GrpcSpotOrderHistory, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as IsomorphicWebSocket, oa as Redemption, oc as ExplorerValidatorDescription, oi as TcDerivativeTradeHistory, ol as GrpcMitoLeaderboardEpoch, on as IndexerGrpcAuctionStream, oo as GrpcCampaignUser, or as IndexerGrpcDerivativesApi, os as SpotMarket, ot as DerivativePositionsV2StreamCallbackV2, ou as TransportEvents, pa as GrpcMegaVaultHistoricalTVL, pc as GrpcIndexerValidatorDescription, pi as CW20BalanceExplorerApiResponse, pl as GrpcMitoStakingStakingActivity, pn as IndexerGrpcMitoStream, po as ReferralDetails, pr as IndexerGrpcAuctionApi, ps as Orderbook, pt as IndexerGrpcArchiverStreamV2, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultUser, qc as TradingReward, qi as GrpcPerpetualMarketFunding, ql as MitoSubscription, qn as IndexerRfqStreamTransformer, qo as IndexerAuctionBid, qr as GrpcTcDerivativeLimitOrder, qs as ContractTransaction, qt as DerivativeOrdersStreamCallback, ra as GrpcIndexerRedemptionSchedule, rc as ExplorerTransactionV2, ri as TcDerivativeOrderHistory, rl as GrpcMitoIDOSubscription, rn as SpotAverageEntriesStreamCallback, ro as CampaignUser, rr as IndexerGrpcInsuranceFundApi, rs as GrpcSpotTrade, rt as DerivativeOrderbookV2StreamCallbackV2, ru as ResolvedWsTransportConfig, sa as RedemptionStatus, sc as ExplorerValidatorUptime, si as TcDerivativeTradesResponse, sl as GrpcMitoMission, sn as BalanceStreamCallback, so as GrpcCampaignV2, sr as IndexerGrpcMegaVaultApi, ss as SpotOrderCancelParams, st as DerivativeTradesStreamCallbackV2, su as WsDisconnectReason, ta as PositionV2, tc as ExplorerStats, ti as GrpcTcPositionDelta, tl as GrpcMitoIDOProgress, tn as TransactionsStreamCallback, to as ChronosSpotMarketSummaryResponse, tr as IndexerRestSpotChronosApi, ts as GrpcSpotMarketInfo, tt as DerivativeOrderHistoryStreamCallbackV2, tu as GrpcFrame, ua as GrpcMegaVaultApr, uc as GrpcExplorerStats, ui as TcPositionDelta, ul as GrpcMitoPriceSnapshot, un as OraclePriceStreamCallback, uo as Guild, ur as IndexerGrpcCampaignApi, us as GrpcPriceLevel, ut as BlocksWithTxsStreamCallbackV2, uu as WsTransportConfig, va as GrpcMegaVaultOperatorRedemptionBucket, vc as IBCTransferTx, vi as ExplorerBlockApiResponse, vl as GrpcMitoVault, vn as IndexerGrpcSpotStream, vo as GrpcHistoricalRPNL, vr as IndexerGrpcSpotApi, vs as GrpcRFQExpiry, vt as IndexerGrpcAuctionStreamV2, wa as GrpcMegaVaultUnrealizedPnl, wc as Signature, wi as BatchDerivativeOrderCancelParams, wl as MitoGaugeStatus, wn as SpotTradesStreamCallback, wo as HistoricalBalance, wr as GrpcWebSocketTransport, ws as MakerStreamEvents, wt as HistoricalStakingStreamCallbackV2, xa as GrpcMegaVaultRedemption, xc as Paging, xi as ValidatorUptimeFromExplorerApiResponse, xl as MitoClaimReference, xn as SpotOrderbookUpdateStreamCallback, xo as GrpcPnlLeaderboard, xr as IndexerGrpcRFQApi, xs as GrpcRFQRequest, xt as IndexerGrpcOracleStreamV2, ya as GrpcMegaVaultPnl, yc as IndexerStreamTransaction, yi as ExplorerTransactionApiResponse, yl as GrpcMitoWhitelistAccount, yn as MarketsStreamCallback, yo as GrpcHistoricalVolumes, yr as IndexerGrpcMetaApi, ys as GrpcRFQProcessedQuote, yt as BalanceStreamCallbackV2, za as MegaVaultPnlStats, zc as GrpcSubaccountBalanceTransfer, zi as GrpcDerivativeMarketInfo, zl as MitoPagination, zn as IndexerOracleStreamTransformer, zo as AuctionsStats, zr as SubaccountDepositV2, zs as AccessType, zt as StreamManager } from "../index-CDEYM6Fs.cjs";
3
+ import { $ as TcDerivativeTradesStreamCallbackV2, $a as AllSpotMarketSummaryResponse, $c as GrpcMitoIDO, $i as Position, $l as MitoWhitelistAccount, $n as IndexerRestDerivativesChronosApi, $o as GrpcAtomicSwap, $r as GrpcTcDerivativesOrdersHistoryResponse, $s as ExplorerBlockWithTxs, $t as BlocksWithTxsStreamCallback, Aa as MegaVaultApr, Ac as WasmCode, Ai as DerivativeOrderCancelParams, Al as MitoIDOSubscriber, An as IndexerGrpcAccountPortfolioTransformer, Ao as SpotAverageEntry, Ar as AccountPortfolioBalances, As as RFQRequestType, At as IndexerGrpcSpotStreamV2, Ba as MegaVaultRedemption, Bc as GrpcSubaccountDeposit, Bi as GrpcDerivativeOrderHistory, Bl as MitoPortfolio, Bn as IndexerGrpcReferralTransformer, Bo as GrpcAccountAuctionV2, Br as ChronosLeaderboard, Bs as AccessTypeCode, Bt as createStreamSubscription, Ca as GrpcMegaVaultTargetApr, Cc as PeggyWithdrawalTx, Ci as BaseDerivativeMarket, Cl as MitoGauge, Cn as SpotOrdersStreamCallback, Co as GrpcVolLeaderboard, Cr as IndexerWsTakerStream, Cs as MakerStreamConfig, Ct as OraclePricesByMarketsStreamCallbackV2, Da as GrpcMegaVaultVolatility, Dc as ValidatorSlashingEvent, Di as DerivativeLimitOrderParams, Dl as MitoIDOClaimedCoins, Dn as IndexerGrpcTcDerivativesTransformer, Do as Holder, Dr as StreamStatusResponse, Ds as RFQProcessedQuoteType, Dt as TransfersStreamCallbackV2, Ea as GrpcMegaVaultVaultStats, Ec as TxMessage, Ei as DerivativeLimitOrder, El as MitoIDO, En as IndexerTcDerivativesStreamTransformer, Eo as HistoricalVolumes, Er as IndexerModule, Es as RFQMakerStreamAckData, Et as StakingRewardByAccountStreamCallbackV2, Fa as MegaVaultMaxDrawdown, Fc as TradingStrategy, Fi as FundingPayment, Fl as MitoLeaderboardEpoch, Fn as IndexerGrpcMegaVaultTransformer, Fo as AuctionCoin, Fr as GrpcPositionsWithUPNL, Fs as RFQTakerStreamAckData, Ft as IndexerGrpcRfqStreamV2, G as createStreamSubscriptionV2, Ga as MegaVaultTargetApr, Gc as SubaccountPortfolio, Gi as GrpcFundingPayment, Gl as MitoStakingReward, Gn as IndexerSpotStreamTransformer, Go as GrpcAuctionV2, Gr as ChronosDerivativeMarketSummary, Gs as CW20Message, Gt as DerivativeOrderbookUpdateStreamCallback, Ha as MegaVaultStats, Hc as GrpcTradingReward, Hi as GrpcDerivativePositionV2, Hl as MitoStakeToSubscription, Hn as IndexerGrpcArchiverTransformer, Ho as GrpcAuctionCoin, Hr as ChronosLeaderboardResponse, Hs as BankTransfer, Ht as IndexerGrpcAccountPortfolioStream, Ia as MegaVaultOperator, Ic as AccountPortfolio, Ii as FundingRate, Il as MitoMission, In as IndexerAuctionStreamTransformer, Io as AuctionCoinPrices, Ir as GrpcSubaccountDepositV2, Is as SettlementsResponse, It as QuoteStreamCallbackV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultUserStats, Jc as TransferType, Ji as GrpcPerpetualMarketInfo, Jl as MitoTokenInfo, Jn as IndexerCampaignTransformer, Jo as StreamBidsResponse, Jr as GrpcTcDerivativeOrderHistory, Js as ContractTransactionWithMessages, Jt as DerivativePositionsStreamCallback, K as StreamManagerV2, Ka as MegaVaultUnrealizedPnl, Kc as SubaccountTransfer, Ki as GrpcFundingRate, Kl as MitoSubaccountBalance, Kn as IndexerGrpcOracleTransformer, Ko as GrpcIndexerAuctionBid, Kr as ChronosDerivativeMarketSummaryResponse, Ks as Contract, Kt as DerivativeOrderbookV2StreamCallback, La as MegaVaultOperatorRedemptionBucket, Lc as GrpcAccountPortfolio, Li as GrpcBinaryOptionsMarketInfo, Ll as MitoMissionLeaderboard, Ln as IndexerAccountStreamTransformer, Lo as AuctionContract, Lr as PortfolioSubaccountBalanceV2, Ls as TakerStreamConfig, Lt as RequestStreamCallbackV2, Ma as MegaVaultHistoricalPnL, Mc as GridStrategyType, Mi as DerivativeTrade, Ml as MitoIDOSubscriptionActivity, Mn as IndexerGrpcDerivativeTransformer, Mo as AccountAuctionStatus, Mr as GrpcAccountPortfolioV2, Ms as RFQSettlementType, Mt as SpotOrderbookUpdateStreamCallbackV2, Na as MegaVaultHistoricalTVL, Nc as ListTradingStrategiesResponse, Ni as ExpiryFuturesMarket, Nl as MitoLeaderboard, Nn as ExplorerStreamTransformer, No as AccountAuctionV2, Nr as GrpcPortfolioSubaccountBalanceV2, Ns as RFQSettlementUnfilledActionType, Nt as SpotOrdersStreamCallbackV2, Oa as GrpcMegaVaultVolatilityStats, Oc as ValidatorUptime, Oi as DerivativeMarket, Ol as MitoIDOInitParams, On as IndexerGrpcInsuranceFundTransformer, Oo as LeaderboardRow, Or as AllChronosMarketHistory, Os as RFQQuoteType, Ot as VaultHolderSubscriptionStreamCallbackV2, Pa as MegaVaultIncentives, Pc as MarketType, Pi as ExpiryFuturesMarketInfo, Pl as MitoLeaderboardEntry, Pn as IndexerArchiverStreamTransformer, Po as Auction, Pr as GrpcPositionV2, Ps as RFQStreamErrorData, Pt as SpotTradesStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as AllChronosSpotMarketSummary, Qc as GrpcMitoHolders, Qi as PerpetualMarketInfo, Ql as MitoVestingConfigMap, Qn as IndexerRestLeaderboardChronosApi, Qo as BatchSpotOrderCancelParams, Qr as GrpcTcDerivativeTradesResponse, Qs as EventLogEvent, Qt as BlocksStreamCallback, Ra as MegaVaultPnl, Rc as GrpcSubaccountBalance, Ri as GrpcDerivativeLimitOrder, Rl as MitoMissionLeaderboardEntry, Rn as IndexerRestExplorerTransformer, Ro as AuctionV2, Rr as PositionsWithUPNL, Rs as TakerStreamEvents, Rt as SettlementStreamCallbackV2, Sa as GrpcMegaVaultSubscription, Sc as PeggyDepositTx, Si as WasmCodeExplorerApiResponse, Sl as MitoDenomBalance, Sn as SpotOrderbookV2StreamCallback, So as GrpcSpotAverageEntry, Sr as IndexerWsMakerStream, Ss as GrpcRFQSettlement, St as OraclePriceStreamCallbackV2, Ta as GrpcMegaVaultUserStats, Tc as Transaction, Ti as BinaryOptionsMarket, Tl as MitoHolders, Tn as IndexerAccountPortfolioStreamTransformer, To as HistoricalRPNL, Tr as GrpcWebSocketCodec, Ts as RFQExpiryType, Tt as IndexerGrpcMitoStreamV2, Ua as MegaVaultSubscription, Uc as SubaccountBalance, Ui as GrpcDerivativeTrade, Ul as MitoStakingActivity, Un as IndexerGrpcAuctionTransformer, Uo as GrpcAuctionCoinPrices, Ur as AllChronosDerivativeMarketSummary, Us as Block, Ut as DerivativeMarketStreamCallback, Va as MegaVaultRedemptionStatus, Vc as GrpcSubaccountPortfolio, Vi as GrpcDerivativePosition, Vl as MitoPriceSnapshot, Vn as IndexerGrpcExplorerTransformer, Vo as GrpcAuction, Vr as ChronosLeaderboardEntry, Vs as BankMsgSendTransaction, Vt as AccountPortfolioStreamCallback, Wa as MegaVaultSubscriptionStatus, Wc as SubaccountDeposit, Wi as GrpcExpiryFuturesMarketInfo, Wl as MitoStakingPool, Wn as IndexerGrpcAccountTransformer, Wo as GrpcAuctionContract, Wr as AllDerivativeMarketSummaryResponse, Ws as BlockWithTxs, Wt as DerivativeOrderHistoryStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultVolatilityStats, Xc as GrpcMitoClaimReference, Xi as PerpetualMarket, Xl as MitoVault, Xn as IndexerGrpcMitoTransformer, Xo as Oracle, Xr as GrpcTcDerivativePosition, Xs as CosmWasmPermission, Xt as DerivativeTradesStreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultVolatility, Yc as GrpcMitoChanges, Yi as GrpcPositionDelta, Yl as MitoTransfer, Yn as IndexerGrpcSpotTransformer, Yo as GrpcOracle, Yr as GrpcTcDerivativeOrdersResponse, Ys as CosmWasmChecksum, Yt as DerivativePositionsV2StreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as OperationStatusLogEntry, Zc as GrpcMitoDenomBalance, Zi as PerpetualMarketFunding, Zl as MitoVestingConfig, Zn as IndexerGrpcRfqTransformer, Zo as AtomicSwap, Zr as GrpcTcDerivativeTradeHistory, Zs as EventLog, Zt as IndexerGrpcDerivativesStream, _a as GrpcMegaVaultOperator, _c as GrpcValidatorUptime, _i as ExplorerApiResponseWithPagination, _l as GrpcMitoTokenInfo, _n as VaultStreamCallback, _o as GrpcHistoricalBalance, _r as IndexerGrpcOracleApi, _s as Route, _t as BidsStreamCallbackV2, aa as InsuranceFundCreateParams, ac as ExplorerValidator, ai as TcDerivativePosition, al as GrpcMitoLeaderboardEntry, an as BidsStreamCallback, ao as GrpcCampaign, ar as IndexerGrpcAccountPortfolioApi, as as SpotLimitOrderParams, at as DerivativePositionsStreamCallbackV2, au as TransportEventType, ba as GrpcMegaVaultPnlStats, bc as Message, bi as TransactionFromExplorerApiResponse, bl as MitoChanges, bn as SpotOrderHistoryStreamCallback, bo as GrpcLeaderboardRow, br as IndexerGrpcMitoApi, bs as GrpcRFQQuote, bt as IndexerGrpcAccountStreamV2, ca as IncentivesCampaign, cc as GasFee, ci as TcDerivativesOrdersHistoryResponse, cl as GrpcMitoMissionLeaderboardEntry, cn as IndexerGrpcAccountStream, co as GrpcGuild, cr as IndexerGrpcReferralApi, cs as SpotOrderHistory, ct as IndexerGrpcDerivativesStreamV2, cu as WsReconnectConfig, da as GrpcMegaVaultAprStats, dc as GrpcGasFee, di as BankTransferFromExplorerApiResponse, dl as GrpcMitoStakingGauge, dn as OraclePricesByMarketsStreamCallback, do as GuildCampaignSummary, dr as IndexerGrpcExplorerApi, ds as GrpcTokenMeta, dt as IndexerGrpcExplorerStreamV2, ea as PositionDelta, ec as ExplorerCW20BalanceWithToken, ei as GrpcTcDerivativesPositionsResponse, el as GrpcMitoIDOClaimedCoins, en as IndexerGrpcExplorerStream, eo as ChronosSpotMarketSummary, er as IndexerRestMarketChronosApi, es as GrpcSpotLimitOrder, et as DerivativeMarketStreamCallbackV2, eu as GrpcDecodeError, fa as GrpcMegaVaultHistoricalPnL, fc as GrpcIBCTransferTx, fi as BlockFromExplorerApiResponse, fl as GrpcMitoStakingPool, fn as HistoricalStakingStreamCallback, fo as GuildMember, fr as IndexerGrpcTradingApi, fs as IndexerTokenMeta, ft as TransactionsStreamCallbackV2, ga as GrpcMegaVaultOperationStatusLogEntry, gc as GrpcValidatorSlashingEvent, gi as ExplorerApiResponse, gl as GrpcMitoSubscription, gn as VaultHolderSubscriptionStreamCallback, go as GrpcDenomHolders, gr as IndexerGrpcTransactionApi, gs as QuantityAndFees, gt as IndexerGrpcTradingStreamV2, ha as GrpcMegaVaultMaxDrawdown, hc as GrpcPeggyWithdrawalTx, hi as ContractTransactionExplorerApiResponse, hl as GrpcMitoSubaccountBalance, hn as TransfersStreamCallback, ho as DenomHolders, hr as IndexerGrpcWeb3GwApi, hs as PriceLevel, ht as GridStrategyStreamCallbackV2, ia as IndexerInsuranceFund, ic as ExplorerTxsV2Response, ii as TcDerivativeOrdersResponse, il as GrpcMitoIDOSubscriptionActivity, in as IndexerGrpcTradingStream, io as CampaignV2, ir as IndexerGrpcTcDerivativesApi, is as SpotLimitOrder, it as DerivativeOrdersStreamCallbackV2, iu as TransportEventListener, ja as MegaVaultAprStats, jc as GridStrategyStreamResponse, ji as DerivativeOrderHistory, jl as MitoIDOSubscription, jn as IndexerGrpcMitoStreamTransformer, jo as VolLeaderboard, jr as AccountPortfolioV2, js as RFQSettlementLimitActionType, jt as SpotOrderHistoryStreamCallbackV2, ka as MegaVault, kc as ValidatorUptimeStatus, ki as DerivativeMarketWithoutBinaryOptions, kl as MitoIDOProgress, kn as IndexerDerivativeStreamTransformer, ko as PnlLeaderboard, kr as ChronosMarketHistoryResponse, ks as RFQRequestInputType, kt as VaultStreamCallbackV2, la as IncentivesRound, lc as GrpcBankMsgSendMessage, li as TcDerivativesPositionsResponse, ll as GrpcMitoPagination, ln as IndexerGrpcOracleStream, lo as GrpcGuildMember, lr as IndexerGrpcArchiverApi, ls as SpotTrade, lt as BlocksStreamCallbackV2, lu as WsState, ma as GrpcMegaVaultIncentives, mc as GrpcPeggyDepositTx, mi as ContractExplorerApiResponse, ml as GrpcMitoStakingStakingReward, mn as StakingRewardByAccountStreamCallback, mo as AccountStats, mr as IndexerGrpcAccountApi, ms as OrderbookWithSequence, mt as SpotAverageEntriesStreamCallbackV2, na as GrpcIndexerInsuranceFund, nc as ExplorerTransaction, ni as TcDerivativeLimitOrder, nl as GrpcMitoIDOSubscriber, nn as IndexerGrpcArchiverStream, no as Campaign, nr as IndexerRestExplorerApi, ns as GrpcSpotOrderHistory, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as IsomorphicWebSocket, oa as Redemption, oc as ExplorerValidatorDescription, oi as TcDerivativeTradeHistory, ol as GrpcMitoLeaderboardEpoch, on as IndexerGrpcAuctionStream, oo as GrpcCampaignUser, or as IndexerGrpcDerivativesApi, os as SpotMarket, ot as DerivativePositionsV2StreamCallbackV2, ou as TransportEvents, pa as GrpcMegaVaultHistoricalTVL, pc as GrpcIndexerValidatorDescription, pi as CW20BalanceExplorerApiResponse, pl as GrpcMitoStakingStakingActivity, pn as IndexerGrpcMitoStream, po as ReferralDetails, pr as IndexerGrpcAuctionApi, ps as Orderbook, pt as IndexerGrpcArchiverStreamV2, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultUser, qc as TradingReward, qi as GrpcPerpetualMarketFunding, ql as MitoSubscription, qn as IndexerRfqStreamTransformer, qo as IndexerAuctionBid, qr as GrpcTcDerivativeLimitOrder, qs as ContractTransaction, qt as DerivativeOrdersStreamCallback, ra as GrpcIndexerRedemptionSchedule, rc as ExplorerTransactionV2, ri as TcDerivativeOrderHistory, rl as GrpcMitoIDOSubscription, rn as SpotAverageEntriesStreamCallback, ro as CampaignUser, rr as IndexerGrpcInsuranceFundApi, rs as GrpcSpotTrade, rt as DerivativeOrderbookV2StreamCallbackV2, ru as ResolvedWsTransportConfig, sa as RedemptionStatus, sc as ExplorerValidatorUptime, si as TcDerivativeTradesResponse, sl as GrpcMitoMission, sn as BalanceStreamCallback, so as GrpcCampaignV2, sr as IndexerGrpcMegaVaultApi, ss as SpotOrderCancelParams, st as DerivativeTradesStreamCallbackV2, su as WsDisconnectReason, ta as PositionV2, tc as ExplorerStats, ti as GrpcTcPositionDelta, tl as GrpcMitoIDOProgress, tn as TransactionsStreamCallback, to as ChronosSpotMarketSummaryResponse, tr as IndexerRestSpotChronosApi, ts as GrpcSpotMarketInfo, tt as DerivativeOrderHistoryStreamCallbackV2, tu as GrpcFrame, ua as GrpcMegaVaultApr, uc as GrpcExplorerStats, ui as TcPositionDelta, ul as GrpcMitoPriceSnapshot, un as OraclePriceStreamCallback, uo as Guild, ur as IndexerGrpcCampaignApi, us as GrpcPriceLevel, ut as BlocksWithTxsStreamCallbackV2, uu as WsTransportConfig, va as GrpcMegaVaultOperatorRedemptionBucket, vc as IBCTransferTx, vi as ExplorerBlockApiResponse, vl as GrpcMitoVault, vn as IndexerGrpcSpotStream, vo as GrpcHistoricalRPNL, vr as IndexerGrpcSpotApi, vs as GrpcRFQExpiry, vt as IndexerGrpcAuctionStreamV2, wa as GrpcMegaVaultUnrealizedPnl, wc as Signature, wi as BatchDerivativeOrderCancelParams, wl as MitoGaugeStatus, wn as SpotTradesStreamCallback, wo as HistoricalBalance, wr as GrpcWebSocketTransport, ws as MakerStreamEvents, wt as HistoricalStakingStreamCallbackV2, xa as GrpcMegaVaultRedemption, xc as Paging, xi as ValidatorUptimeFromExplorerApiResponse, xl as MitoClaimReference, xn as SpotOrderbookUpdateStreamCallback, xo as GrpcPnlLeaderboard, xr as IndexerGrpcRFQApi, xs as GrpcRFQRequest, xt as IndexerGrpcOracleStreamV2, ya as GrpcMegaVaultPnl, yc as IndexerStreamTransaction, yi as ExplorerTransactionApiResponse, yl as GrpcMitoWhitelistAccount, yn as MarketsStreamCallback, yo as GrpcHistoricalVolumes, yr as IndexerGrpcMetaApi, ys as GrpcRFQProcessedQuote, yt as BalanceStreamCallbackV2, za as MegaVaultPnlStats, zc as GrpcSubaccountBalanceTransfer, zi as GrpcDerivativeMarketInfo, zl as MitoPagination, zn as IndexerOracleStreamTransformer, zo as AuctionsStats, zr as SubaccountDepositV2, zs as AccessType, zt as StreamManager } from "../index-C3CJY1Ry.cjs";
4
4
  import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
5
5
  import "../index-CgHU4RQF.cjs";
6
6
  import "../index-DfJ_98xz.cjs";
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BN7h9uqT.cjs";
2
2
  import "../index-m48Rf9ow.cjs";
3
- import { Gf as PublicKey, Kf as Address, Uf as BaseAccount, Wf as PrivateKey } from "../index-CDEYM6Fs.cjs";
3
+ import { Gf as PublicKey, Kf as Address, Uf as BaseAccount, Wf as PrivateKey } from "../index-C3CJY1Ry.cjs";
4
4
  import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
5
5
  import "../index-CgHU4RQF.cjs";
6
6
  import "../index-DfJ_98xz.cjs";
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BN7h9uqT.cjs";
2
2
  import "../index-m48Rf9ow.cjs";
3
- import { $v as MsgIncreasePositionMargin, $y as MsgSubmitProposalPerpetualMarketLaunch, Af as MsgUpdateParams, Am as OracleMsgs, Ay as MsgChangeAdmin, Bf as ExecArgNeptuneWithdraw, By as MsgSendToEth, Cm as ExchangeV1Msgs, Cy as MsgGrantAllowance, Df as MsgUpdateActorRoles, Dm as IbcMsgs, Dy as MsgMigrateContract, Em as GovMsgs, Ey as MsgCreateRateLimit, Ff as ContractExecutionAuthorization, Fm as MsgSetDelegationTransferReceivers, Fy as MsgUndelegate, Gv as MsgCreateDerivativeMarketOrder, Gy as MsgBurn, Hy as MsgDeposit, If as GenericAuthorization, Im as MsgCreateBinaryOptionsMarketOrder, Iy as MsgUpdateAdmin, Jv as MsgWithdrawDelegatorReward, Jy as MsgSubmitProposal, Kv as MsgBatchCancelDerivativeOrders, Ky as MsgTransfer, Lf as GrantAuthorizationType, Lm as MsgBatchCancelBinaryOptionsOrders, Ly as MsgWithdraw, Mf as OrderHashManager, Mm as StakingMsgs, My as MsgPrivilegedExecuteContract, Nf as MsgInstantBinaryOptionsMarketLaunch, Nm as TokenFactoryMsgs, Ny as MsgEditValidator, Of as MsgUpdateNamespace, Om as InsuranceMsgs, Oy as MsgExecuteContract, Pf as ContractExecutionCompatAuthorization, Pm as WasmMsgs, Py as MsgUnderwrite, Qv as MsgInstantSpotMarketLaunch, Qy as MsgSubmitProposalSpotMarketParamUpdate, Rf as getGenericAuthorizationFromMessageType, Rm as MsgAdminUpdateBinaryOptionsMarket, Ry as MsgSignData, Sm as ExchangeMsgs, Sy as MsgBeginRedelegate, Tm as FeegrantMsgs, Ty as MsgUpdateRateLimit, Uv as MsgCreateBinaryOptionsLimitOrder, Uy as MsgMultiSend, Vf as ExecArgNeptuneDeposit, Vy as MsgStoreCode, Wv as MsgWithdrawValidatorCommission, Wy as MsgMint, Xv as MsgUpdateDerivativeMarketV2, Xy as MsgSubmitProposalExpiryFuturesMarketLaunch, Yv as MsgCancelUnbondingDelegation, Yy as ProposalDecomposer, Zv as MsgCancelBinaryOptionsOrder, Zy as MsgSubmitProposalPerpetualMarketLaunchV2, _m as AuctionMsgs, _y as MsgBatchUpdateOrders, ab as MsgRevoke, ay as MsgCreateSpotLimitOrder, bm as DistributionMsgs, by as MsgCancelSpotOrder, cb as MsgSend, cy as MsgFundCommunityPool, dy as MsgReclaimLockedFunds, eb as MsgGrantProviderPrivilegeProposal, ey as MsgCreateSpotMarketOrder, fy as MsgRelayProviderPrices, gy as MsgLiquidatePosition, hy as MsgInstantiateContract, ib as MsgDeposit$1, iy as MsgCancelPostOnlyModeV2, jf as MsgClaimVoucher, jm as PeggyMsgs, jy as MsgRewardsOptOut, kf as MsgCreateNamespace, km as Msgs, ky as MsgCreateDenom, lb as MsgVote, ly as MsgSetDenomMetadata, my as MsgRequestRedemption, nb as MsgSubmitGenericProposal, ny as MsgBatchCancelSpotOrders, ob as MsgGrant, oy as MsgAuthorizeStakeGrants, py as MsgTransferDelegation, qv as MsgCreateDerivativeLimitOrder, qy as MsgExec, rb as MsgSubmitTextProposal, ry as MsgGrantWithAuthorization, sb as MsgBid, sy as MsgCreateInsuranceFund, tb as MsgSubmitProposalSpotMarketLaunch, ty as MsgCancelDerivativeOrder, uy as MsgUpdateSpotMarketV2, vm as AuthzMsgs, vy as MsgExternalTransfer, wm as ExchangeV2Msgs, wy as MsgRemoveRateLimit, xm as Erc20Msgs, xy as MsgCreateValidator, ym as BankMsgs, yy as MsgRevokeAllowance, zf as msgsOrMsgExecMsgs, zy as MsgDelegate } from "../index-CDEYM6Fs.cjs";
3
+ import { $v as MsgIncreasePositionMargin, $y as MsgSubmitProposalPerpetualMarketLaunch, Af as MsgUpdateParams, Am as OracleMsgs, Ay as MsgChangeAdmin, Bf as ExecArgNeptuneWithdraw, By as MsgSendToEth, Cm as ExchangeV1Msgs, Cy as MsgGrantAllowance, Df as MsgUpdateActorRoles, Dm as IbcMsgs, Dy as MsgMigrateContract, Em as GovMsgs, Ey as MsgCreateRateLimit, Ff as ContractExecutionAuthorization, Fm as MsgSetDelegationTransferReceivers, Fy as MsgUndelegate, Gv as MsgCreateDerivativeMarketOrder, Gy as MsgBurn, Hy as MsgDeposit, If as GenericAuthorization, Im as MsgCreateBinaryOptionsMarketOrder, Iy as MsgUpdateAdmin, Jv as MsgWithdrawDelegatorReward, Jy as MsgSubmitProposal, Kv as MsgBatchCancelDerivativeOrders, Ky as MsgTransfer, Lf as GrantAuthorizationType, Lm as MsgBatchCancelBinaryOptionsOrders, Ly as MsgWithdraw, Mf as OrderHashManager, Mm as StakingMsgs, My as MsgPrivilegedExecuteContract, Nf as MsgInstantBinaryOptionsMarketLaunch, Nm as TokenFactoryMsgs, Ny as MsgEditValidator, Of as MsgUpdateNamespace, Om as InsuranceMsgs, Oy as MsgExecuteContract, Pf as ContractExecutionCompatAuthorization, Pm as WasmMsgs, Py as MsgUnderwrite, Qv as MsgInstantSpotMarketLaunch, Qy as MsgSubmitProposalSpotMarketParamUpdate, Rf as getGenericAuthorizationFromMessageType, Rm as MsgAdminUpdateBinaryOptionsMarket, Ry as MsgSignData, Sm as ExchangeMsgs, Sy as MsgBeginRedelegate, Tm as FeegrantMsgs, Ty as MsgUpdateRateLimit, Uv as MsgCreateBinaryOptionsLimitOrder, Uy as MsgMultiSend, Vf as ExecArgNeptuneDeposit, Vy as MsgStoreCode, Wv as MsgWithdrawValidatorCommission, Wy as MsgMint, Xv as MsgUpdateDerivativeMarketV2, Xy as MsgSubmitProposalExpiryFuturesMarketLaunch, Yv as MsgCancelUnbondingDelegation, Yy as ProposalDecomposer, Zv as MsgCancelBinaryOptionsOrder, Zy as MsgSubmitProposalPerpetualMarketLaunchV2, _m as AuctionMsgs, _y as MsgBatchUpdateOrders, ab as MsgRevoke, ay as MsgCreateSpotLimitOrder, bm as DistributionMsgs, by as MsgCancelSpotOrder, cb as MsgSend, cy as MsgFundCommunityPool, dy as MsgReclaimLockedFunds, eb as MsgGrantProviderPrivilegeProposal, ey as MsgCreateSpotMarketOrder, fy as MsgRelayProviderPrices, gy as MsgLiquidatePosition, hy as MsgInstantiateContract, ib as MsgDeposit$1, iy as MsgCancelPostOnlyModeV2, jf as MsgClaimVoucher, jm as PeggyMsgs, jy as MsgRewardsOptOut, kf as MsgCreateNamespace, km as Msgs, ky as MsgCreateDenom, lb as MsgVote, ly as MsgSetDenomMetadata, my as MsgRequestRedemption, nb as MsgSubmitGenericProposal, ny as MsgBatchCancelSpotOrders, ob as MsgGrant, oy as MsgAuthorizeStakeGrants, py as MsgTransferDelegation, qv as MsgCreateDerivativeLimitOrder, qy as MsgExec, rb as MsgSubmitTextProposal, ry as MsgGrantWithAuthorization, sb as MsgBid, sy as MsgCreateInsuranceFund, tb as MsgSubmitProposalSpotMarketLaunch, ty as MsgCancelDerivativeOrder, uy as MsgUpdateSpotMarketV2, vm as AuthzMsgs, vy as MsgExternalTransfer, wm as ExchangeV2Msgs, wy as MsgRemoveRateLimit, xm as Erc20Msgs, xy as MsgCreateValidator, ym as BankMsgs, yy as MsgRevokeAllowance, zf as msgsOrMsgExecMsgs, zy as MsgDelegate } from "../index-C3CJY1Ry.cjs";
4
4
  import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
5
5
  import "../index-CgHU4RQF.cjs";
6
6
  import { $ as ExecArgInitiateTransfer, B as ExecArgCW20AdapterRedeemAndTransfer, G as ExitConfig, H as ExecPrivilegedArgVaultRedeem, I as ExecArgs, J as TrailingArithmetic, K as ExitType, L as ExecPrivilegedArgs, N as MsgExecuteContractCompat, Q as ExecArgUpdateGridConfig, R as ExecPrivilegedArgOffChainVaultSubscribe, U as ExecArgCreateSpotGridStrategy, V as ExecPrivilegedArgVaultSubscribe, W as ExecArgCreatePerpGridStrategy, X as ExecArgRemoveGridStrategy, Y as TrailingArithmeticLP, Z as ExecArgIncreaseAllowance, at as ExecArgCW20Transfer, ct as ExecArgCW20Send, et as ExecArgSwapExactOutput, it as ExecArgFundCampaign, nt as ExecArgSwapMinOutput, ot as ExecArgCreateRound, q as StrategyType, rt as ExecArgDepositTokens, st as ExecArgSubmitVaa, tt as ExecArgCreateCampaign, z as ExecPrivilegedArgOffChainVaultRedeem } from "../index-DfJ_98xz.cjs";
@@ -1,6 +1,6 @@
1
1
  import { c as tx_pb_d_exports } from "../tx_pb-BN7h9uqT.cjs";
2
2
  import "../index-m48Rf9ow.cjs";
3
- import { $f as getEip712DomainV2, $p as SimulationResponse, Ap as createWeb3Extension, Bp as createTransactionAndCosmosSignDocForAddressAndMsg, Cp as createFee, Dp as createSignerInfo, Ep as createSignDocFromTransaction, Fp as TxRestApi, Gp as getTxRawFromTxRawOrDirectSignResponse, Hf as MsgBroadcasterWithPk, Hp as createTransactionFromMsg, Ip as TxGrpcApi, Jf as getEip712TypedData, Jp as RestAuthInfo, Kp as BroadcastMode, Lp as waitTxBroadcasted, Mp as getPublicKey, Np as getTransactionPartsFromTxRaw, Op as createSigners, Pp as generateArbitrarySignDoc, Qf as getEip712Domain, Qp as RestTxLog, Rp as createTransaction, Sp as createBody, Tp as createSignDoc, Up as createTransactionWithSigners, Vp as createTransactionForAddressAndMsg, Wp as createTxRawFromSigResponse, Xf as getDefaultEip712Types, Xp as RestTx, Yf as getEip712TypedDataV2, Yp as RestSignerInfo, Zf as getDefaultEip712TypesV2, Zp as RestTxBody, _p as getEthereumSignerAddress, am as TxSearchResultParams, ap as getObjectEip712PropertyType, bp as isTxNotFoundError, cm as CreateTransactionWithSignersArgs, cp as protoTypeToAminoType, dm as TxClientBroadcastOptions, dp as SIGN_AMINO, em as TxInfo, ep as getEip712Fee, fm as TxClientBroadcastResponse, fp as SIGN_DIRECT, gm as TxResponse, gp as createAnyMessage, hm as TxConcreteApi, hp as createAny, im as TxSearchResult, ip as getTypesIncludingFeePayer, jp as getAminoStdSignDoc, kp as createTxRawEIP712, lm as MsgArg, lp as stringTypeToReflectionStringType, mm as TxClientSimulateResponse, mp as SIGN_EIP712_V2, nm as TxResult, np as getEipTxContext, om as CreateTransactionArgs, op as numberTypeToReflectionNumberType, pm as TxClientMode, pp as SIGN_EIP712, qf as MsgDecoder, qp as BroadcastModeKeplr, rm as TxResultResponse, rp as getEipTxDetails, sm as CreateTransactionResult, sp as objectKeysToEip712Types, tm as TxInfoResponse, tp as getEip712FeeV2, um as SignerDetails, up as TxClient, vp as getInjectiveSignerAddress, wp as createNonCriticalExtensionFromObject, xp as createAuthInfo, yp as errorToErrorMessage, zp as createTransactionAndCosmosSignDoc } from "../index-CDEYM6Fs.cjs";
3
+ import { $f as getEip712DomainV2, $p as SimulationResponse, Ap as createWeb3Extension, Bp as createTransactionAndCosmosSignDocForAddressAndMsg, Cp as createFee, Dp as createSignerInfo, Ep as createSignDocFromTransaction, Fp as TxRestApi, Gp as getTxRawFromTxRawOrDirectSignResponse, Hf as MsgBroadcasterWithPk, Hp as createTransactionFromMsg, Ip as TxGrpcApi, Jf as getEip712TypedData, Jp as RestAuthInfo, Kp as BroadcastMode, Lp as waitTxBroadcasted, Mp as getPublicKey, Np as getTransactionPartsFromTxRaw, Op as createSigners, Pp as generateArbitrarySignDoc, Qf as getEip712Domain, Qp as RestTxLog, Rp as createTransaction, Sp as createBody, Tp as createSignDoc, Up as createTransactionWithSigners, Vp as createTransactionForAddressAndMsg, Wp as createTxRawFromSigResponse, Xf as getDefaultEip712Types, Xp as RestTx, Yf as getEip712TypedDataV2, Yp as RestSignerInfo, Zf as getDefaultEip712TypesV2, Zp as RestTxBody, _p as getEthereumSignerAddress, am as TxSearchResultParams, ap as getObjectEip712PropertyType, bp as isTxNotFoundError, cm as CreateTransactionWithSignersArgs, cp as protoTypeToAminoType, dm as TxClientBroadcastOptions, dp as SIGN_AMINO, em as TxInfo, ep as getEip712Fee, fm as TxClientBroadcastResponse, fp as SIGN_DIRECT, gm as TxResponse, gp as createAnyMessage, hm as TxConcreteApi, hp as createAny, im as TxSearchResult, ip as getTypesIncludingFeePayer, jp as getAminoStdSignDoc, kp as createTxRawEIP712, lm as MsgArg, lp as stringTypeToReflectionStringType, mm as TxClientSimulateResponse, mp as SIGN_EIP712_V2, nm as TxResult, np as getEipTxContext, om as CreateTransactionArgs, op as numberTypeToReflectionNumberType, pm as TxClientMode, pp as SIGN_EIP712, qf as MsgDecoder, qp as BroadcastModeKeplr, rm as TxResultResponse, rp as getEipTxDetails, sm as CreateTransactionResult, sp as objectKeysToEip712Types, tm as TxInfoResponse, tp as getEip712FeeV2, um as SignerDetails, up as TxClient, vp as getInjectiveSignerAddress, wp as createNonCriticalExtensionFromObject, xp as createAuthInfo, yp as errorToErrorMessage, zp as createTransactionAndCosmosSignDoc } from "../index-C3CJY1Ry.cjs";
4
4
  import "../BaseGrpcConsumer-Ba4uw4ZN.cjs";
5
5
  import "../index-CgHU4RQF.cjs";
6
6
  import { St as TypedDataField, bt as Eip712ConvertTxArgs, xt as MapOfTypedDataField, yt as Eip712ConvertFeeArgs } from "../index-DfJ_98xz.cjs";
@@ -8,7 +8,6 @@ import { DirectSignResponse } from "@cosmjs/proto-signing";
8
8
  import { AccountAddress, ChainId, Coin, EvmChainId, MsgStatus, MsgType } from "@injectivelabs/ts-types";
9
9
  import { HttpClient, HttpRestClient, getExactDecimalsFromNumber, getSignificantDecimalsFromNumber } from "@injectivelabs/utils";
10
10
  import { Network, NetworkEndpoints } from "@injectivelabs/networks";
11
- import * as ws0 from "ws";
12
11
  import { Subscription } from "rxjs";
13
12
 
14
13
  //#region ../../node_modules/.pnpm/@protobuf-ts+grpcweb-transport@2.11.1/node_modules/@protobuf-ts/grpcweb-transport/build/types/grpc-web-transport.d.ts
@@ -18579,7 +18578,7 @@ declare const BECH32_ADDR_VAL_PREFIX = "injvaloper";
18579
18578
  declare const BECH32_ADDR_CONS_PREFIX = "injvalcons";
18580
18579
  declare const DEFAULT_DERIVATION_PATH = "m/44'/60'/0'/0/0";
18581
18580
  //#endregion
18582
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
18581
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
18583
18582
  /**
18584
18583
  * @generated from protobuf message injective_accounts_rpc.PortfolioResponse
18585
18584
  */
@@ -19095,7 +19094,7 @@ declare const Reward = new Reward$Type();
19095
19094
  */
19096
19095
  declare const Coin$7 = new Coin$Type();
19097
19096
  //#endregion
19098
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
19097
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
19099
19098
  /**
19100
19099
  * @generated from protobuf message injective_explorer_rpc.GetAccountTxsResponse
19101
19100
  */
@@ -20529,7 +20528,7 @@ declare const fetchAllWithPagination: <T extends {
20529
20528
  //#region src/utils/transaction.d.ts
20530
20529
  declare const recoverTypedSignaturePubKey: (data: TypedDataDefinition, signature: string) => Promise<string>;
20531
20530
  //#endregion
20532
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
20531
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
20533
20532
  /**
20534
20533
  * @generated from protobuf message injective_rfq_rpc.StreamRequestResponse
20535
20534
  */
@@ -20752,6 +20751,18 @@ interface RFQQuoteType$1 {
20752
20751
  * @generated from protobuf field: uint64 transaction_time = 18
20753
20752
  */
20754
20753
  transactionTime: bigint;
20754
+ /**
20755
+ * Maker subaccount nonce used in quote signature
20756
+ *
20757
+ * @generated from protobuf field: uint64 maker_subaccount_nonce = 19
20758
+ */
20759
+ makerSubaccountNonce: bigint;
20760
+ /**
20761
+ * Optional minimum fill quantity used in quote signature
20762
+ *
20763
+ * @generated from protobuf field: string min_fill_quantity = 20
20764
+ */
20765
+ minFillQuantity: string;
20755
20766
  }
20756
20767
  /**
20757
20768
  * Expiry with timestamp and block height
@@ -20921,6 +20932,18 @@ interface RFQProcessedQuoteType$1 {
20921
20932
  * @generated from protobuf field: uint64 transaction_time = 18
20922
20933
  */
20923
20934
  transactionTime: bigint;
20935
+ /**
20936
+ * Maker subaccount nonce used in quote signature
20937
+ *
20938
+ * @generated from protobuf field: uint64 maker_subaccount_nonce = 19
20939
+ */
20940
+ makerSubaccountNonce: bigint;
20941
+ /**
20942
+ * Optional minimum fill quantity used in quote signature
20943
+ *
20944
+ * @generated from protobuf field: string min_fill_quantity = 20
20945
+ */
20946
+ minFillQuantity: string;
20924
20947
  }
20925
20948
  /**
20926
20949
  * @generated from protobuf message injective_rfq_rpc.ListSettlementResponse
@@ -21576,7 +21599,7 @@ interface TransportEvents {
21576
21599
  error: Error;
21577
21600
  }
21578
21601
  type TransportEventListener<T extends TransportEventType> = (data: TransportEvents[T]) => void;
21579
- type IsomorphicWebSocket = WebSocket | InstanceType<typeof ws0>;
21602
+ type IsomorphicWebSocket = WebSocket;
21580
21603
  interface GrpcFrame<T> {
21581
21604
  isTrailer: boolean;
21582
21605
  message?: T;
@@ -23459,7 +23482,7 @@ type GrpcSubaccountBalance = SubaccountBalance$2;
23459
23482
  type GrpcSubaccountPortfolio = SubaccountPortfolio$1;
23460
23483
  type GrpcSubaccountBalanceTransfer = SubaccountBalanceTransfer;
23461
23484
  //#endregion
23462
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
23485
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
23463
23486
  /**
23464
23487
  * @generated from protobuf message injective_trading_rpc.ListTradingStrategiesResponse
23465
23488
  */
@@ -24471,6 +24494,8 @@ interface RFQQuoteType {
24471
24494
  takerDirection: string;
24472
24495
  contractAddress: string;
24473
24496
  transactionTime: number;
24497
+ makerSubaccountNonce: number;
24498
+ minFillQuantity: string;
24474
24499
  }
24475
24500
  interface RFQProcessedQuoteType {
24476
24501
  error: string;
@@ -24494,6 +24519,8 @@ interface RFQProcessedQuoteType {
24494
24519
  contractAddress: string;
24495
24520
  transactionTime: number;
24496
24521
  executedQuantity: string;
24522
+ makerSubaccountNonce: number;
24523
+ minFillQuantity: string;
24497
24524
  }
24498
24525
  interface RFQSettlementLimitActionType {
24499
24526
  price: string;
@@ -24622,7 +24649,7 @@ interface QuantityAndFees {
24622
24649
  resultQuantity: string;
24623
24650
  }
24624
24651
  //#endregion
24625
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
24652
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
24626
24653
  /**
24627
24654
  * @generated from protobuf message injective_spot_exchange_rpc.MarketsResponse
24628
24655
  */
@@ -25778,7 +25805,7 @@ type GrpcSpotLimitOrder = SpotLimitOrder$1;
25778
25805
  type GrpcSpotOrderHistory = SpotOrderHistory$1;
25779
25806
  type GrpcAtomicSwap = AtomicSwap$1;
25780
25807
  //#endregion
25781
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
25808
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
25782
25809
  /**
25783
25810
  * @generated from protobuf message injective_oracle_rpc.OracleListResponse
25784
25811
  */
@@ -25907,7 +25934,7 @@ declare const StreamPricesByMarketsResponse = new StreamPricesByMarketsResponse$
25907
25934
  type GrpcOracle = Oracle$1;
25908
25935
  interface Oracle extends GrpcOracle {}
25909
25936
  //#endregion
25910
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
25937
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
25911
25938
  /**
25912
25939
  * @generated from protobuf message injective_auction_rpc.AuctionEndpointResponse
25913
25940
  */
@@ -26404,7 +26431,7 @@ type GrpcAccountAuctionV2 = AccountAuctionV2$1;
26404
26431
  type GrpcAuctionContract = AuctionContract$1;
26405
26432
  type StreamBidsResponse = StreamBidsResponse$1;
26406
26433
  //#endregion
26407
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
26434
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
26408
26435
  /**
26409
26436
  * @generated from protobuf message injective_archiver_rpc.BalanceResponse
26410
26437
  */
@@ -26926,7 +26953,7 @@ type GrpcHistoricalVolumes = HistoricalVolumes$1;
26926
26953
  type GrpcPnlLeaderboard = PnlLeaderboardResponse | PnlLeaderboardFixedResolutionResponse;
26927
26954
  type GrpcVolLeaderboard = VolLeaderboardResponse | VolLeaderboardFixedResolutionResponse;
26928
26955
  //#endregion
26929
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
26956
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
26930
26957
  /**
26931
26958
  * @generated from protobuf message injective_referral_rpc.GetReferrerDetailsResponse
26932
26959
  */
@@ -27057,7 +27084,7 @@ interface ReferralDetails {
27057
27084
  invitees: ReferralInvitee[];
27058
27085
  }
27059
27086
  //#endregion
27060
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
27087
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
27061
27088
  /**
27062
27089
  * @generated from protobuf message injective_campaign_rpc.RankingResponse
27063
27090
  */
@@ -27894,7 +27921,7 @@ interface AllSpotMarketSummaryResponse {
27894
27921
  data: AllChronosSpotMarketSummary[];
27895
27922
  }
27896
27923
  //#endregion
27897
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
27924
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
27898
27925
  /**
27899
27926
  * @generated from protobuf message injective_megavault_rpc.GetVaultResponse
27900
27927
  */
@@ -29013,7 +29040,7 @@ interface IncentivesCampaign {
29013
29040
  subaccountIdSuffix: string;
29014
29041
  }
29015
29042
  //#endregion
29016
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
29043
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
29017
29044
  /**
29018
29045
  * @generated from protobuf message injective_insurance_rpc.FundsResponse
29019
29046
  */
@@ -29275,7 +29302,7 @@ interface InsuranceFundCreateParams {
29275
29302
  type GrpcIndexerInsuranceFund = InsuranceFund$2;
29276
29303
  type GrpcIndexerRedemptionSchedule = RedemptionSchedule;
29277
29304
  //#endregion
29278
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
29305
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
29279
29306
  /**
29280
29307
  * @generated from protobuf message injective_derivative_exchange_rpc.MarketsResponse
29281
29308
  */
@@ -31357,7 +31384,7 @@ interface BankTransferFromExplorerApiResponse {
31357
31384
  block_timestamp: string;
31358
31385
  }
31359
31386
  //#endregion
31360
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
31387
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
31361
31388
  /**
31362
31389
  * @generated from protobuf message injective_tc_derivatives_rpc.OrdersHistoryResponse
31363
31390
  */
@@ -32119,26 +32146,27 @@ interface TcDerivativePosition {
32119
32146
  effectiveCumulativeFundingEntry: string;
32120
32147
  }
32121
32148
  interface TcDerivativeLimitOrder {
32122
- orderHash: string;
32123
- orderSide: string;
32124
- marketId: string;
32125
- subaccountId: string;
32126
- isReduceOnly: boolean;
32127
- margin: string;
32149
+ cid: string;
32128
32150
  price: string;
32129
- quantity: string;
32130
- unfilledQuantity: string;
32131
- triggerPrice: string;
32132
- feeRecipient: string;
32133
32151
  state: string;
32152
+ margin: string;
32153
+ marketId: string;
32154
+ quantity: string;
32155
+ orderHash: string;
32156
+ orderSide: string;
32134
32157
  createdAt: number;
32135
32158
  updatedAt: number;
32136
- orderNumber: number;
32137
32159
  orderType: string;
32138
- isConditional: boolean;
32139
32160
  triggerAt: number;
32140
- placedOrderHash: string;
32161
+ orderNumber: number;
32162
+ subaccountId: string;
32163
+ triggerPrice: string;
32164
+ feeRecipient: string;
32165
+ isReduceOnly: boolean;
32141
32166
  executionType: string;
32167
+ isConditional: boolean;
32168
+ placedOrderHash: string;
32169
+ unfilledQuantity: string;
32142
32170
  }
32143
32171
  interface TcDerivativesOrdersHistoryResponse {
32144
32172
  next: string[];
@@ -32207,7 +32235,7 @@ interface ChronosLeaderboardResponse {
32207
32235
  data: ChronosLeaderboard;
32208
32236
  }
32209
32237
  //#endregion
32210
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
32238
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
32211
32239
  /**
32212
32240
  * @generated from protobuf message injective_portfolio_rpc.AccountPortfolioResponse
32213
32241
  */
@@ -33084,7 +33112,7 @@ declare class IndexerGrpcMitoApi extends BaseIndexerGrpcConsumer {
33084
33112
  }>;
33085
33113
  }
33086
33114
  //#endregion
33087
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
33115
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
33088
33116
  /**
33089
33117
  * @generated from protobuf message injective_meta_rpc.PingResponse
33090
33118
  */
@@ -33296,7 +33324,7 @@ declare class IndexerGrpcOracleApi extends BaseIndexerGrpcConsumer {
33296
33324
  }): Promise<PriceResponse>;
33297
33325
  }
33298
33326
  //#endregion
33299
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.9/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
33327
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.10/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
33300
33328
  /**
33301
33329
  * @generated from protobuf message injective_exchange_rpc.PrepareTxResponse
33302
33330
  */
@@ -34421,12 +34449,14 @@ declare class IndexerGrpcTcDerivativesApi extends BaseIndexerGrpcConsumer {
34421
34449
  perPage?: number;
34422
34450
  marketId?: string;
34423
34451
  direction?: string;
34452
+ accountAddress?: string;
34424
34453
  }): Promise<TcDerivativesOrdersHistoryResponse>;
34425
34454
  fetchTradesHistory(params?: {
34426
34455
  token?: string;
34427
34456
  perPage?: number;
34428
34457
  marketId?: string;
34429
34458
  direction?: string;
34459
+ accountAddress?: string;
34430
34460
  }): Promise<TcDerivativeTradesResponse>;
34431
34461
  fetchPositions(params?: {
34432
34462
  token?: string;
@@ -34441,6 +34471,7 @@ declare class IndexerGrpcTcDerivativesApi extends BaseIndexerGrpcConsumer {
34441
34471
  perPage?: number;
34442
34472
  marketId?: string;
34443
34473
  direction?: string;
34474
+ accountAddress?: string;
34444
34475
  }): Promise<TcDerivativeOrdersResponse>;
34445
34476
  }
34446
34477
  //#endregion
@@ -36903,16 +36934,20 @@ declare class IndexerGrpcTcDerivativesStreamV2 {
36903
36934
  constructor(endpoint: string, metadata?: Record<string, string>);
36904
36935
  streamOrdersHistory({
36905
36936
  marketId,
36937
+ accountAddress,
36906
36938
  callback
36907
36939
  }: {
36908
36940
  marketId?: string;
36941
+ accountAddress?: string;
36909
36942
  callback: TcDerivativeOrderHistoryStreamCallbackV2;
36910
36943
  }): StreamSubscription;
36911
36944
  streamTrades({
36912
36945
  marketId,
36946
+ accountAddress,
36913
36947
  callback
36914
36948
  }: {
36915
36949
  marketId?: string;
36950
+ accountAddress?: string;
36916
36951
  callback: TcDerivativeTradesStreamCallbackV2;
36917
36952
  }): StreamSubscription;
36918
36953
  streamPositions({
@@ -36926,9 +36961,11 @@ declare class IndexerGrpcTcDerivativesStreamV2 {
36926
36961
  }): StreamSubscription;
36927
36962
  streamOrders({
36928
36963
  marketId,
36964
+ accountAddress,
36929
36965
  callback
36930
36966
  }: {
36931
36967
  marketId?: string;
36968
+ accountAddress?: string;
36932
36969
  callback: TcDerivativeOrdersStreamCallbackV2;
36933
36970
  }): StreamSubscription;
36934
36971
  }
@@ -16,7 +16,7 @@ require('./BaseRestConsumer-CRkyjiSo.cjs');
16
16
  const require_ExecArgNeptuneWithdraw = require('./ExecArgNeptuneWithdraw-8SOWKjdg.cjs');
17
17
  const require_AbacusGrpcApi = require('./AbacusGrpcApi-Da2mxc3z.cjs');
18
18
  const require_IndexerGrpcWeb3GwApi = require('./IndexerGrpcWeb3GwApi-BjMwVPdm.cjs');
19
- const require_StreamManagerV2 = require('./StreamManagerV2-DlTHwjnI.cjs');
19
+ const require_StreamManagerV2 = require('./StreamManagerV2-ClyLDWzY.cjs');
20
20
  const require_types = require('./types-BSrt7JzM.cjs');
21
21
  const require_TcAbacusGrpcApi = require('./TcAbacusGrpcApi-QxfMHhQI.cjs');
22
22
  const require_tx = require('./tx-DD4X9BrB.cjs');