@injectivelabs/sdk-ts 1.19.1 → 1.19.2

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.
@@ -501,6 +501,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
501
501
  marketId: grpcQuote.marketId,
502
502
  quantity: grpcQuote.quantity,
503
503
  clientId: grpcQuote.clientId,
504
+ signMode: grpcQuote.signMode,
504
505
  signature: grpcQuote.signature,
505
506
  rfqId: Number(grpcQuote.rfqId),
506
507
  height: Number(grpcQuote.height),
@@ -553,6 +554,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
553
554
  chainId: grpcProcessedQuote.chainId,
554
555
  marketId: grpcProcessedQuote.marketId,
555
556
  quantity: grpcProcessedQuote.quantity,
557
+ signMode: grpcProcessedQuote.signMode,
556
558
  signature: grpcProcessedQuote.signature,
557
559
  clientId: grpcProcessedQuote.clientId,
558
560
  rfqId: Number(grpcProcessedQuote.rfqId),
@@ -583,6 +585,7 @@ var IndexerGrpcRfqTransformer = class IndexerGrpcRfqTransformer {
583
585
  static grpcConditionalOrderToConditionalOrder(grpcOrder) {
584
586
  return {
585
587
  error: grpcOrder.error,
588
+ txHash: grpcOrder.txHash,
586
589
  margin: grpcOrder.margin,
587
590
  status: grpcOrder.status,
588
591
  marketId: grpcOrder.marketId,
@@ -1787,6 +1790,7 @@ var IndexerGrpcRfqGwTransformer = class IndexerGrpcRfqGwTransformer {
1787
1790
  pubKeyType: response.pubKeyType,
1788
1791
  feePayerSig: response.feePayerSig,
1789
1792
  quotesWaitMs: Number(response.quotesWaitMs),
1793
+ expiredQuotesCount: Number(response.expiredQuotesCount),
1790
1794
  autosignAccountNumber: Number(response.autosignAccountNumber),
1791
1795
  feePayerAccountNumber: Number(response.feePayerAccountNumber),
1792
1796
  autosignAccountSequence: Number(response.autosignAccountSequence),
@@ -3858,6 +3862,7 @@ var IndexerGrpcTcDerivativesTransformer = class IndexerGrpcTcDerivativesTransfor
3858
3862
  isLiquidation: trade.isLiquidation,
3859
3863
  executedAt: Number(trade.executedAt),
3860
3864
  positionIsLong: trade.positionIsLong,
3865
+ isPositionClosed: trade.isPositionClosed,
3861
3866
  positionEntryPrice: trade.positionEntryPrice,
3862
3867
  positionOpenedAt: Number(trade.positionOpenedAt),
3863
3868
  executionSide: trade.executionSide,
@@ -4058,7 +4063,7 @@ var IndexerGrpcRFQApi = class extends require_BaseIndexerGrpcConsumer.BaseIndexe
4058
4063
  const response = await this.executeGrpcCall(request, this.client.listSettlement.bind(this.client));
4059
4064
  return IndexerGrpcRfqTransformer.listSettlementsResponseToSettlements(response);
4060
4065
  }
4061
- async createConditionalOrder({ order, signature }) {
4066
+ async createConditionalOrder({ order, signMode, signature }) {
4062
4067
  const conditionalOrderInput = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_rpc_pb.ConditionalOrderInput.create();
4063
4068
  conditionalOrderInput.taker = order.taker;
4064
4069
  conditionalOrderInput.rfqId = order.rfqId;
@@ -4083,6 +4088,7 @@ var IndexerGrpcRFQApi = class extends require_BaseIndexerGrpcConsumer.BaseIndexe
4083
4088
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_rpc_pb.CreateConditionalOrderRequest.create();
4084
4089
  request.order = conditionalOrderInput;
4085
4090
  request.signature = signature;
4091
+ request.signMode = signMode;
4086
4092
  const response = await this.executeGrpcCall(request, this.client.createConditionalOrder.bind(this.client));
4087
4093
  return { order: response.order ? IndexerGrpcRfqTransformer.grpcConditionalOrderToConditionalOrder(response.order) : void 0 };
4088
4094
  }
@@ -5433,7 +5439,7 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
5433
5439
  return IndexerGrpcTcDerivativesTransformer.ordersHistoryResponseToOrdersHistory(response);
5434
5440
  }
5435
5441
  async fetchTradesHistory(params) {
5436
- const { token, sortBy, endTime, perPage, marketId, startTime, direction, sortDirection, accountAddress } = params || {};
5442
+ const { token, sortBy, withPnl, endTime, perPage, marketId, startTime, direction, sortDirection, accountAddress } = params || {};
5437
5443
  const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_tc_derivatives_rpc_pb.TradesRequest.create();
5438
5444
  if (marketId) request.marketIds = [marketId];
5439
5445
  if (direction) request.direction = direction;
@@ -5442,6 +5448,7 @@ var IndexerGrpcTcDerivativesApi = class extends require_BaseIndexerGrpcConsumer.
5442
5448
  if (token) request.token = token;
5443
5449
  if (sortBy) request.sortBy = sortBy;
5444
5450
  if (sortDirection) request.sortDirection = sortDirection;
5451
+ if (withPnl) request.withPnl = withPnl;
5445
5452
  if (startTime !== void 0) request.startTime = BigInt(startTime);
5446
5453
  if (endTime !== void 0) request.endTime = BigInt(endTime);
5447
5454
  const response = await this.executeGrpcCall(request, this.client.trades.bind(this.client));
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BGCQilBY.cjs";
2
2
  import { st as OracleType } from "../index-C15wCMY6.cjs";
3
- import { $_ as TradeRewardCampaign, $g as EthAccount, $h as PermissionNamespace, $v as TallyResult, A as ChainGrpcAuctionApi, A_ as GrpcDenomDecimals, Ag as CreateSpotMarketOrderAuthz, Ah as AuctionParams, Av as ContractCodeHistoryOperationTypeMap, B as ChainGrpcAuthApi, B_ as GrpcOrderType, Bg as InsuranceModuleParams, Bh as GrpcPermissionPolicyStatus, Bv as grpcContractInfo, C as ChainGrpcInsuranceFundApi, C_ as GrpcCampaignRewardPool, Cg as BatchCreateDerivativeLimitOrdersAuthz, Ch as AuctionEventAuctionStart, Cv as ValidatorDescription, D as ChainGrpcTendermintApi, D_ as GrpcChainFullSpotMarket, Dg as CreateDerivativeLimitOrderAuthz, Dh as AuctionModuleState, Dv as ContractAccountsBalanceWithPagination, E as ChainGrpcPermissionsApi, E_ as GrpcChainFullDerivativeMarket, Eg as CancelSpotOrderAuthz, Eh as AuctionModuleParams, Ev as ContractAccountBalance, F as ChainGrpcPeggyApi, F_ as GrpcFeeDiscountTierInfo, Fg as GrantWithDecodedAuthorization, Fh as GrpcAuctionLastAuctionResult, Fv as GrpcCodeInfoResponse, G_ as GrpcSpotOrder, Gg as GrpcBankParams, Gh as GrpcPermissionRoleManager, Gv as GrpcProposal, H as ChainGrpcIbcApi, H_ as GrpcPointsMultiplier, Hg as GrpcMintParams, Hh as GrpcPermissionRole, Hv as GrpcGovernanceDepositParams, I as ChainGrpcAuthZApi, I_ as GrpcFeeDiscountTierTTL, Ig as GrpcInsuranceFund, Ih as GrpcAuctionParams, Iv as GrpcContractCodeHistoryEntry, J_ as GrpcTradingRewardCampaignInfo, Jg as SendEnabled, Jh as PermissionActionMap, Jv as GrpcVote, K_ as GrpcTradeRewardCampaign, Kg as GrpcSupply, Kh as GrpcPermissionsNamespace, Kv as GrpcProposalDeposit, L as ChainGrpcWasmApi, L_ as GrpcMarketStatus, Lg as GrpcInsuranceParams, Lh as GrpcPermissionActorRoles, Lv as GrpcContractInfo, M as ChainGrpcOracleApi, M_ as GrpcExchangeParams, Mg as Grant, Mh as GrpcAuctionEventAuctionResult, Mv as ContractStateWithPagination, N as ChainGrpcErc20Api, N_ as GrpcFeeDiscountAccountInfo, Ng as GrantAuthorization, Nh as GrpcAuctionEventAuctionStart, Nv as GoogleProtoBufAny, O as ChainGrpcExchangeApi, O_ as GrpcChainPosition, Og as CreateDerivativeMarketOrderAuthz, Oh as AuctionModuleStateParams, Ov as ContractCodeHistoryEntry, P as ChainGrpcWasmXApi, P_ as GrpcFeeDiscountSchedule, Pg as GrantAuthorizationWithDecodedAuthorization, Ph as GrpcAuctionEventBid, Pv as GrpcAbsoluteTxPosition, Q_ as PointsMultiplier, Qg as AuthModuleParams, Qh as PermissionGenesisState, Qv as ProposalStatusMap, R as ChainGrpcMintApi, R_ as GrpcMarketStatusMap, Rg as GrpcRedemptionSchedule, Rh as GrpcPermissionAddressVoucher, Rv as MarketingInfo, S as ChainRestBankApi, S_ as FeeDiscountTierTTL, Sg as BatchCancelSpotOrdersAuthz, Sh as AuctionEventAuctionResult, Sv as ValidatorCommission, T as ChainGrpcDistributionApi, T_ as GrpcChainDerivativePosition, Tg as CancelDerivativeOrderAuthz, Th as AuctionLastAuctionResult, Tv as CodeInfoResponse, U as ChainGrpcGovApi, U_ as GrpcSpotMarket, Ug as MinModuleParams, Uh as GrpcPermissionRoleActors, Uv as GrpcGovernanceTallyParams, V as ChainGrpcEvmApi, V_ as GrpcOrderTypeMap, Vg as OracleTypeMap, Vh as GrpcPermissionPolicyStatusManagerCapability, Vv as GovModuleStateParams, W_ as GrpcSpotMarketOrder, Wg as BankModuleParams, Wh as GrpcPermissionRoleIDs, Wv as GrpcGovernanceVotingParams, X_ as OrderType, Xg as Account, Xh as PermissionAddressRoles, Xv as ProposalDeposit, Y_ as IsOptedOutOfRewards, Yg as TotalSupply, Yh as PermissionActorRoles, Yv as Proposal, Z_ as OrderTypeMap, Zg as AuthBaseAccount, Zh as PermissionAddressVoucher, Zv as ProposalStatus, _ as ChainGrpcEvmTransformer, __ as ExchangeModuleParams, _g as Params, _h as AccountsResponse, _v as Pool, a as ChainGrpcExchangeTransformer, a_ as EvmParams, ag as PermissionRoleIDs, ah as FactoryDenomWithMetadata, av as GrpcDelegationResponse, b as ChainRestWasmApi, b_ as FeeDiscountSchedule, bg as PeggyModuleParams, bh as AuctionBid, bv as UnBondingDelegation, c as ChainGrpcCommonTransformer, c_ as GrpcEvmChainConfig, cg as PermissionsModuleParams, ch as DistributionModuleParams, cv as GrpcReDelegationEntryResponse, d as ChainGrpcPeggyTransformer, d_ as CampaignRewardPool, dg as GrpcTxFeesEipBaseFee, dh as GrpcDistributionParams, dv as GrpcUnbondingDelegation, e_ as PubKey, eg as PermissionParams, eh as ChainModule, ev as TradingRewardCampaignBoostInfo, ey as Vote, f as ChainGrpcAuthZTransformer, f_ as ChainDenomDecimal, fg as GrpcTxFeesParams, fh as ValidatorRewards, fv as GrpcUnbondingDelegationEntry, g as ChainGrpcAuthTransformer, g_ as DepositProposalParams, gg as GrpcTokenPair, gh as AccountResponse, gv as GrpcValidatorDescription, h as ChainGrpcBankTransformer, h_ as ChainPosition, hg as GrpcParams, hh as DenomOwnersResponse, hv as GrpcValidatorCommissionRates, i as ChainGrpcPermissionsTransformer, i_ as EvmLog, ig as PermissionRoleActors, ih as AuthorityMetadata, iv as GrpcDelegation, j as ChainGrpcTxFeesApi, j_ as GrpcDenomMinNotional, jg as GenericAuthorization, jh as GrpcAuctionBid, jv as ContractInfo, k as ChainGrpcStakingApi, k_ as GrpcChainSpotMarket, kg as CreateSpotLimitOrderAuthz, kh as AuctionModuleStateResponse, kv as ContractCodeHistoryOperationType, l as ChainGrpcTxFeesTransformer, l_ as GrpcEvmLog, lg as GrpcOracleParams, lh as GrpcDecCoin, lv as GrpcReDelegationResponse, m as ChainGrpcMintTransformer, m_ as ChainDerivativePosition, mg as TxFeesModuleStateParams, mh as DenomBalance, mv as GrpcValidatorCommission, n as ChainGrpcTokenFactoryTransformer, n_ as EvmBlobScheduleConfig, ng as PermissionPolicyStatus, nh as BlockLatestRestResponse, nv as BondStatus, ny as VoteOptionMap, o as ChainGrpcStakingTransformer, o_ as GrpcEvmBlobConfig, og as PermissionRoleManager, oh as TokenFactoryModuleParams, ov as GrpcPool, p as ChainGrpcWasmTransformer, p_ as ChainDenomMinNotional, pg as TxFeesEipBaseFee, ph as BalancesResponse, pv as GrpcValidator, q_ as GrpcTradingRewardCampaignBoostInfo, qg as Metadata, qh as GrpcPermissionsParams, qv as GrpcTallyResult, r as ChainGrpcDistributionTransformer, r_ as EvmChainConfig, rg as PermissionRole, rh as NodeInfoRestResponse, rv as Delegation, ry as WeightedVoteOption, s as ChainGrpcAuctionTransformer, s_ as GrpcEvmBlobScheduleConfig, sg as PermissionVoucher, sh as TokenFactoryModuleState, sv as GrpcReDelegation, t as ChainGrpcInsuranceFundTransformer, t_ as EvmBlobConfig, tg as PermissionPolicyManagerCapability, th as RestApiResponse, tv as TradingRewardCampaignInfo, ty as VoteOption, u as ChainGrpcErc20Transformer, u_ as GrpcEvmParams, ug as OracleModuleParams, uh as GrpcDelegationDelegatorReward, uv as GrpcStakingParams, v as ChainGrpcGovTransformer, v_ as ExchangeParams, vg as TokenPair, vh as BaseAccountRestResponse, vv as ReDelegation, w as ChainGrpcTokenFactoryApi, w_ as GrpcChainDerivativeMarket, wg as BatchCreateSpotLimitOrdersAuthz, wh as AuctionEventBid, wv as AbsoluteTxPosition, x as ChainRestAuthApi, x_ as FeeDiscountTierInfo, xg as BatchCancelDerivativeOrdersAuthz, xh as AuctionCurrentBasket, xv as Validator, y as ChainRestTendermintApi, y_ as FeeDiscountAccountInfo, yg as GrpcPeggyParams, yh as CosmosAccountRestResponse, yv as StakingModuleParams, z as ChainGrpcBankApi, z_ as GrpcOrderInfo, zg as InsuranceFund, zh as GrpcPermissionNamespace, zv as TokenInfo } from "../index-D0DwgN6e.cjs";
3
+ import { $_ as TradeRewardCampaign, $g as EthAccount, $h as PermissionNamespace, $v as TallyResult, A as ChainGrpcAuctionApi, A_ as GrpcDenomDecimals, Ag as CreateSpotMarketOrderAuthz, Ah as AuctionParams, Av as ContractCodeHistoryOperationTypeMap, B as ChainGrpcAuthApi, B_ as GrpcOrderType, Bg as InsuranceModuleParams, Bh as GrpcPermissionPolicyStatus, Bv as grpcContractInfo, C as ChainGrpcInsuranceFundApi, C_ as GrpcCampaignRewardPool, Cg as BatchCreateDerivativeLimitOrdersAuthz, Ch as AuctionEventAuctionStart, Cv as ValidatorDescription, D as ChainGrpcTendermintApi, D_ as GrpcChainFullSpotMarket, Dg as CreateDerivativeLimitOrderAuthz, Dh as AuctionModuleState, Dv as ContractAccountsBalanceWithPagination, E as ChainGrpcPermissionsApi, E_ as GrpcChainFullDerivativeMarket, Eg as CancelSpotOrderAuthz, Eh as AuctionModuleParams, Ev as ContractAccountBalance, F as ChainGrpcPeggyApi, F_ as GrpcFeeDiscountTierInfo, Fg as GrantWithDecodedAuthorization, Fh as GrpcAuctionLastAuctionResult, Fv as GrpcCodeInfoResponse, G_ as GrpcSpotOrder, Gg as GrpcBankParams, Gh as GrpcPermissionRoleManager, Gv as GrpcProposal, H as ChainGrpcIbcApi, H_ as GrpcPointsMultiplier, Hg as GrpcMintParams, Hh as GrpcPermissionRole, Hv as GrpcGovernanceDepositParams, I as ChainGrpcAuthZApi, I_ as GrpcFeeDiscountTierTTL, Ig as GrpcInsuranceFund, Ih as GrpcAuctionParams, Iv as GrpcContractCodeHistoryEntry, J_ as GrpcTradingRewardCampaignInfo, Jg as SendEnabled, Jh as PermissionActionMap, Jv as GrpcVote, K_ as GrpcTradeRewardCampaign, Kg as GrpcSupply, Kh as GrpcPermissionsNamespace, Kv as GrpcProposalDeposit, L as ChainGrpcWasmApi, L_ as GrpcMarketStatus, Lg as GrpcInsuranceParams, Lh as GrpcPermissionActorRoles, Lv as GrpcContractInfo, M as ChainGrpcOracleApi, M_ as GrpcExchangeParams, Mg as Grant, Mh as GrpcAuctionEventAuctionResult, Mv as ContractStateWithPagination, N as ChainGrpcErc20Api, N_ as GrpcFeeDiscountAccountInfo, Ng as GrantAuthorization, Nh as GrpcAuctionEventAuctionStart, Nv as GoogleProtoBufAny, O as ChainGrpcExchangeApi, O_ as GrpcChainPosition, Og as CreateDerivativeMarketOrderAuthz, Oh as AuctionModuleStateParams, Ov as ContractCodeHistoryEntry, P as ChainGrpcWasmXApi, P_ as GrpcFeeDiscountSchedule, Pg as GrantAuthorizationWithDecodedAuthorization, Ph as GrpcAuctionEventBid, Pv as GrpcAbsoluteTxPosition, Q_ as PointsMultiplier, Qg as AuthModuleParams, Qh as PermissionGenesisState, Qv as ProposalStatusMap, R as ChainGrpcMintApi, R_ as GrpcMarketStatusMap, Rg as GrpcRedemptionSchedule, Rh as GrpcPermissionAddressVoucher, Rv as MarketingInfo, S as ChainRestBankApi, S_ as FeeDiscountTierTTL, Sg as BatchCancelSpotOrdersAuthz, Sh as AuctionEventAuctionResult, Sv as ValidatorCommission, T as ChainGrpcDistributionApi, T_ as GrpcChainDerivativePosition, Tg as CancelDerivativeOrderAuthz, Th as AuctionLastAuctionResult, Tv as CodeInfoResponse, U as ChainGrpcGovApi, U_ as GrpcSpotMarket, Ug as MinModuleParams, Uh as GrpcPermissionRoleActors, Uv as GrpcGovernanceTallyParams, V as ChainGrpcEvmApi, V_ as GrpcOrderTypeMap, Vg as OracleTypeMap, Vh as GrpcPermissionPolicyStatusManagerCapability, Vv as GovModuleStateParams, W_ as GrpcSpotMarketOrder, Wg as BankModuleParams, Wh as GrpcPermissionRoleIDs, Wv as GrpcGovernanceVotingParams, X_ as OrderType, Xg as Account, Xh as PermissionAddressRoles, Xv as ProposalDeposit, Y_ as IsOptedOutOfRewards, Yg as TotalSupply, Yh as PermissionActorRoles, Yv as Proposal, Z_ as OrderTypeMap, Zg as AuthBaseAccount, Zh as PermissionAddressVoucher, Zv as ProposalStatus, _ as ChainGrpcEvmTransformer, __ as ExchangeModuleParams, _g as Params, _h as AccountsResponse, _v as Pool, a as ChainGrpcExchangeTransformer, a_ as EvmParams, ag as PermissionRoleIDs, ah as FactoryDenomWithMetadata, av as GrpcDelegationResponse, b as ChainRestWasmApi, b_ as FeeDiscountSchedule, bg as PeggyModuleParams, bh as AuctionBid, bv as UnBondingDelegation, c as ChainGrpcCommonTransformer, c_ as GrpcEvmChainConfig, cg as PermissionsModuleParams, ch as DistributionModuleParams, cv as GrpcReDelegationEntryResponse, d as ChainGrpcPeggyTransformer, d_ as CampaignRewardPool, dg as GrpcTxFeesEipBaseFee, dh as GrpcDistributionParams, dv as GrpcUnbondingDelegation, e_ as PubKey, eg as PermissionParams, eh as ChainModule, ev as TradingRewardCampaignBoostInfo, ey as Vote, f as ChainGrpcAuthZTransformer, f_ as ChainDenomDecimal, fg as GrpcTxFeesParams, fh as ValidatorRewards, fv as GrpcUnbondingDelegationEntry, g as ChainGrpcAuthTransformer, g_ as DepositProposalParams, gg as GrpcTokenPair, gh as AccountResponse, gv as GrpcValidatorDescription, h as ChainGrpcBankTransformer, h_ as ChainPosition, hg as GrpcParams, hh as DenomOwnersResponse, hv as GrpcValidatorCommissionRates, i as ChainGrpcPermissionsTransformer, i_ as EvmLog, ig as PermissionRoleActors, ih as AuthorityMetadata, iv as GrpcDelegation, j as ChainGrpcTxFeesApi, j_ as GrpcDenomMinNotional, jg as GenericAuthorization, jh as GrpcAuctionBid, jv as ContractInfo, k as ChainGrpcStakingApi, k_ as GrpcChainSpotMarket, kg as CreateSpotLimitOrderAuthz, kh as AuctionModuleStateResponse, kv as ContractCodeHistoryOperationType, l as ChainGrpcTxFeesTransformer, l_ as GrpcEvmLog, lg as GrpcOracleParams, lh as GrpcDecCoin, lv as GrpcReDelegationResponse, m as ChainGrpcMintTransformer, m_ as ChainDerivativePosition, mg as TxFeesModuleStateParams, mh as DenomBalance, mv as GrpcValidatorCommission, n as ChainGrpcTokenFactoryTransformer, n_ as EvmBlobScheduleConfig, ng as PermissionPolicyStatus, nh as BlockLatestRestResponse, nv as BondStatus, ny as VoteOptionMap, o as ChainGrpcStakingTransformer, o_ as GrpcEvmBlobConfig, og as PermissionRoleManager, oh as TokenFactoryModuleParams, ov as GrpcPool, p as ChainGrpcWasmTransformer, p_ as ChainDenomMinNotional, pg as TxFeesEipBaseFee, ph as BalancesResponse, pv as GrpcValidator, q_ as GrpcTradingRewardCampaignBoostInfo, qg as Metadata, qh as GrpcPermissionsParams, qv as GrpcTallyResult, r as ChainGrpcDistributionTransformer, r_ as EvmChainConfig, rg as PermissionRole, rh as NodeInfoRestResponse, rv as Delegation, ry as WeightedVoteOption, s as ChainGrpcAuctionTransformer, s_ as GrpcEvmBlobScheduleConfig, sg as PermissionVoucher, sh as TokenFactoryModuleState, sv as GrpcReDelegation, t as ChainGrpcInsuranceFundTransformer, t_ as EvmBlobConfig, tg as PermissionPolicyManagerCapability, th as RestApiResponse, tv as TradingRewardCampaignInfo, ty as VoteOption, u as ChainGrpcErc20Transformer, u_ as GrpcEvmParams, ug as OracleModuleParams, uh as GrpcDelegationDelegatorReward, uv as GrpcStakingParams, v as ChainGrpcGovTransformer, v_ as ExchangeParams, vg as TokenPair, vh as BaseAccountRestResponse, vv as ReDelegation, w as ChainGrpcTokenFactoryApi, w_ as GrpcChainDerivativeMarket, wg as BatchCreateSpotLimitOrdersAuthz, wh as AuctionEventBid, wv as AbsoluteTxPosition, x as ChainRestAuthApi, x_ as FeeDiscountTierInfo, xg as BatchCancelDerivativeOrdersAuthz, xh as AuctionCurrentBasket, xv as Validator, y as ChainRestTendermintApi, y_ as FeeDiscountAccountInfo, yg as GrpcPeggyParams, yh as CosmosAccountRestResponse, yv as StakingModuleParams, z as ChainGrpcBankApi, z_ as GrpcOrderInfo, zg as InsuranceFund, zh as GrpcPermissionNamespace, zv as TokenInfo } from "../index-B7UsSUbZ.cjs";
4
4
  import "../BaseGrpcConsumer-CZTAcNtS.cjs";
5
5
  import "../index-C00Yswov.cjs";
6
6
  import "../index-Dvfd07fs.cjs";
@@ -6,7 +6,7 @@ require('../BaseGrpcConsumer-Baz_ZnzI.cjs');
6
6
  require('../BaseIndexerGrpcConsumer-ChilNYlV.cjs');
7
7
  require('../BaseRestConsumer-uSzCOit7.cjs');
8
8
  const require_IndexerGrpcWeb3GwApi = require('../IndexerGrpcWeb3GwApi-BDH3Pyr6.cjs');
9
- const require_StreamManagerV2 = require('../StreamManagerV2-J45IvgwP.cjs');
9
+ const require_StreamManagerV2 = require('../StreamManagerV2-Bf-5K1vI.cjs');
10
10
  require('../types-Cn54Lzf-.cjs');
11
11
 
12
12
  exports.AccessType = require_IndexerGrpcWeb3GwApi.AccessType;
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BGCQilBY.cjs";
2
2
  import "../index-C15wCMY6.cjs";
3
- import { $ as TcDerivativeTradesStreamCallbackV2, $a as MegaVaultVolatilityStats, $c as GrpcSubaccountBalance, $i as PerpetualMarket, $l as MitoMissionLeaderboardEntry, $n as IndexerGrpcRfqTransformer, $o as Oracle, $r as GrpcTcDerivativePosition, $s as TakerStreamEvents, $t as BlocksStreamCallback, Aa as GrpcMegaVaultVolatility, Ac as GrpcPeggyWithdrawalTx, Ai as DerivativeLimitOrderParams, Al as GrpcMitoSubaccountBalance, An as IndexerDerivativeStreamTransformer, Ao as Holder, Ar as StreamStatusResponse, As as GrpcRFQExpiry, At as VaultStreamCallbackV2, Ba as MegaVaultOperatorRedemptionBucket, Bc as Transaction, Bi as GrpcBinaryOptionsMarketInfo, Bl as MitoHolders, Bn as IndexerOracleStreamTransformer, Bo as AuctionContract, Br as PortfolioSubaccountBalanceV2, Bs as RFQExpiryType, Bt as StreamManager, Ca as GrpcMegaVaultPnlStats, Cc as GasFee, Ci as TransactionFromExplorerApiResponse, Cl as GrpcMitoMissionLeaderboardEntry, Cn as SpotOrderbookV2StreamCallback, Co as GrpcLeaderboardRow, Cr as IndexerGrpcMitoApi, Cs as IndexerTokenMeta, Ct as OraclePriceStreamCallbackV2, Cu as WsReconnectConfig, Da as GrpcMegaVaultUnrealizedPnl, Dc as GrpcIBCTransferTx, Di as BatchDerivativeOrderCancelParams, Dl as GrpcMitoStakingPool, Dn as IndexerTcDerivativesStreamTransformer, Do as HistoricalBalance, Dr as GrpcWebSocketTransport, Ds as QuantityAndFees, Dt as StakingRewardByAccountStreamCallbackV2, Ea as GrpcMegaVaultTargetApr, Ec as GrpcGasFee, Ei as BaseDerivativeMarket, El as GrpcMitoStakingGauge, En as IndexerAccountPortfolioStreamTransformer, Eo as GrpcVolLeaderboard, Er as IndexerWsTakerStream, Es as PriceLevel, Et as IndexerGrpcMitoStreamV2, Fa as MegaVaultHistoricalPnL, Fc as Message, Fi as DerivativeTrade, Fl as MitoChanges, Fn as IndexerArchiverStreamTransformer, Fo as AccountAuctionStatus, Fr as GrpcAccountPortfolioV2, Fs as MakerStreamConfig, Ft as SpotTradesStreamCallbackV2, G as createStreamSubscriptionV2, Ga as MegaVaultStats, Gc as WasmCode, Gi as GrpcDerivativePositionV2, Gl as MitoIDOSubscriber, Gn as IndexerGrpcAccountTransformer, Go as GrpcAuctionCoin, Gr as ChronosLeaderboardResponse, Gs as RFQRequestType, Gt as DerivativeOrderHistoryStreamCallback, Ha as MegaVaultPnlStats, Hc as ValidatorSlashingEvent, Hi as GrpcDerivativeMarketInfo, Hl as MitoIDOClaimedCoins, Hn as IndexerGrpcExplorerTransformer, Ho as AuctionsStats, Hr as SubaccountDepositV2, Hs as RFQProcessedQuoteType, Ht as AccountPortfolioStreamCallback, Ia as MegaVaultHistoricalTVL, Ic as Paging, Ii as ExpiryFuturesMarket, Il as MitoClaimReference, In as IndexerGrpcMegaVaultTransformer, Io as AccountAuctionV2, Ir as GrpcPortfolioSubaccountBalanceV2, Is as MakerStreamEvents, It as IndexerGrpcRfqStreamV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultTargetApr, Jc as ListTradingStrategiesResponse, Ji as GrpcFundingPayment, Jl as MitoLeaderboard, Jn as IndexerRfqStreamTransformer, Jo as GrpcAuctionV2, Jr as ChronosDerivativeMarketSummary, Js as RFQSettlementUnfilledActionType, Jt as DerivativeOrdersStreamCallback, K as StreamManagerV2, Ka as MegaVaultSubscription, Kc as GridStrategyStreamResponse, Ki as GrpcDerivativeTrade, Kl as MitoIDOSubscription, Kn as IndexerSpotStreamTransformer, Ko as GrpcAuctionCoinPrices, Kr as AllChronosDerivativeMarketSummary, Ks as RFQSettlementLimitActionType, Kt as DerivativeOrderbookUpdateStreamCallback, La as MegaVaultIncentives, Lc as PeggyDepositTx, Li as ExpiryFuturesMarketInfo, Ll as MitoDenomBalance, Ln as IndexerAuctionStreamTransformer, Lo as Auction, Lr as GrpcPositionV2, Ls as RFQConditionalOrder, Lt as QuoteStreamCallbackV2, Ma as MegaVault, Mc as GrpcValidatorUptime, Mi as DerivativeMarketWithoutBinaryOptions, Ml as GrpcMitoTokenInfo, Mn as IndexerGrpcMitoStreamTransformer, Mo as PnlLeaderboard, Mr as ChronosMarketHistoryResponse, Ms as GrpcRFQQuote, Mt as SpotOrderHistoryStreamCallbackV2, Na as MegaVaultApr, Nc as IBCTransferTx, Ni as DerivativeOrderCancelParams, Nl as GrpcMitoVault, Nn as IndexerGrpcDerivativeTransformer, No as SpotAverageEntry, Nr as AccountPortfolioBalances, Ns as GrpcRFQRequest, Nt as SpotOrderbookUpdateStreamCallbackV2, Oa as GrpcMegaVaultUserStats, Oc as GrpcIndexerValidatorDescription, Oi as BinaryOptionsMarket, Ol as GrpcMitoStakingStakingActivity, On as IndexerGrpcTcDerivativesTransformer, Oo as HistoricalRPNL, Or as GrpcWebSocketCodec, Os as Route, Ot as TransfersStreamCallbackV2, Pa as MegaVaultAprStats, Pc as IndexerStreamTransaction, Pi as DerivativeOrderHistory, Pl as GrpcMitoWhitelistAccount, Pn as ExplorerStreamTransformer, Po as VolLeaderboard, Pr as AccountPortfolioV2, Ps as GrpcRFQSettlement, Pt as SpotOrdersStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as MegaVaultVolatility, Qc as GrpcAccountPortfolio, Qi as GrpcPositionDelta, Ql as MitoMissionLeaderboard, Qn as IndexerGrpcMitoTransformer, Qo as GrpcOracle, Qr as GrpcTcDerivativeOrdersResponse, Qs as TakerStreamConfig, Qt as IndexerGrpcDerivativesStream, Ra as MegaVaultMaxDrawdown, Rc as PeggyWithdrawalTx, Ri as FundingPayment, Rl as MitoGauge, Rn as IndexerAccountStreamTransformer, Ro as AuctionCoin, Rr as GrpcPositionsWithUPNL, Rs as RFQConditionalOrderInput, Rt as RequestStreamCallbackV2, Sa as GrpcMegaVaultPnl, Sc as ExplorerValidatorUptime, Si as ExplorerTransactionApiResponse, Sl as GrpcMitoMission, Sn as SpotOrderbookUpdateStreamCallback, So as GrpcHistoricalVolumes, Sr as IndexerGrpcMetaApi, Ss as GrpcTokenMeta, St as OracleListStreamCallbackV2, Su as WsDisconnectReason, Ta as GrpcMegaVaultSubscription, Tc as GrpcExplorerStats, Ti as WasmCodeExplorerApiResponse, Tl as GrpcMitoPriceSnapshot, Tn as SpotTradesStreamCallback, To as GrpcSpotAverageEntry, Tr as IndexerWsMakerStream, Ts as OrderbookWithSequence, Tt as HistoricalStakingStreamCallbackV2, Tu as WsTransportConfig, Ua as MegaVaultRedemption, Uc as ValidatorUptime, Ui as GrpcDerivativeOrderHistory, Ul as MitoIDOInitParams, Un as IndexerGrpcArchiverTransformer, Uo as GrpcAccountAuctionV2, Ur as ChronosLeaderboard, Us as RFQQuoteType, Ut as IndexerGrpcAccountPortfolioStream, Va as MegaVaultPnl, Vc as TxMessage, Vi as GrpcDerivativeLimitOrder, Vl as MitoIDO, Vn as IndexerGrpcReferralTransformer, Vo as AuctionV2, Vr as PositionsWithUPNL, Vs as RFQMakerStreamAckData, Vt as createStreamSubscription, Wa as MegaVaultRedemptionStatus, Wc as ValidatorUptimeStatus, Wi as GrpcDerivativePosition, Wl as MitoIDOProgress, Wn as IndexerGrpcAuctionTransformer, Wo as GrpcAuction, Wr as ChronosLeaderboardEntry, Ws as RFQRequestInputType, Wt as DerivativeMarketStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultUser, Xc as TradingStrategy, Xi as GrpcPerpetualMarketFunding, Xl as MitoLeaderboardEpoch, Xn as IndexerCampaignTransformer, Xo as IndexerAuctionBid, Xr as GrpcTcDerivativeLimitOrder, Xs as RFQTakerStreamAckData, Xt as DerivativePositionsV2StreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultUnrealizedPnl, Yc as MarketType, Yi as GrpcFundingRate, Yl as MitoLeaderboardEntry, Yn as IndexerGrpcRfqGwTransformer, Yo as GrpcIndexerAuctionBid, Yr as ChronosDerivativeMarketSummaryResponse, Ys as RFQStreamErrorData, Yt as DerivativePositionsStreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as MegaVaultUserStats, Zc as AccountPortfolio, Zi as GrpcPerpetualMarketInfo, Zl as MitoMission, Zn as IndexerGrpcSpotTransformer, Zo as StreamBidsResponse, Zr as GrpcTcDerivativeOrderHistory, Zs as SettlementsResponse, Zt as DerivativeTradesStreamCallback, _a as GrpcMegaVaultIncentives, _c as ExplorerTransaction, _i as ContractExplorerApiResponse, _l as GrpcMitoIDOSubscriber, _n as VaultHolderSubscriptionStreamCallback, _o as AccountStats, _r as IndexerGrpcWeb3GwApi, _s as SpotMarket, _t as BidsStreamCallbackV2, _u as IsomorphicWebSocket, aa as GrpcIndexerInsuranceFund, ac as BlockWithTxs, ai as TcDerivativeLimitOrder, al as SubaccountDeposit, an as IndexerGrpcTradingStream, ao as Campaign, ar as IndexerGrpcInsuranceFundApi, as as RFQGwPrepareAutoSignRequestType, at as DerivativePositionsStreamCallbackV2, au as MitoStakingPool, ba as GrpcMegaVaultOperator, bc as ExplorerValidator, bi as ExplorerApiResponseWithPagination, bl as GrpcMitoLeaderboardEntry, bn as MarketsStreamCallback, bo as GrpcHistoricalBalance, br as IndexerGrpcRfqGwApi, bs as SpotTrade, bt as IndexerGrpcAccountStreamV2, bu as TransportEventType, ca as InsuranceFundCreateParams, cc as ContractTransaction, ci as TcDerivativePosition, cl as TradingReward, cn as BalanceStreamCallback, co as GrpcCampaign, cr as IndexerGrpcDerivativesApi, cs as AtomicSwap, ct as IndexerGrpcDerivativesStreamV2, cu as MitoSubscription, da as IncentivesCampaign, dc as CosmWasmPermission, di as TcDerivativesOrdersHistoryResponse, dl as GrpcMitoClaimReference, dn as OraclePriceStreamCallback, do as GrpcGuild, dr as IndexerGrpcArchiverApi, ds as GrpcSpotLimitOrder, dt as IndexerGrpcExplorerStreamV2, du as MitoVault, ea as PerpetualMarketFunding, ec as AccessType, ei as GrpcTcDerivativeTradeHistory, el as GrpcSubaccountBalanceTransfer, en as BlocksWithTxsStreamCallback, eo as OperationStatusLogEntry, er as IndexerRestLeaderboardChronosApi, es as CosmosPubKeyType, et as DerivativeMarketStreamCallbackV2, eu as MitoPagination, fa as IncentivesRound, fc as EventLog, fi as TcDerivativesPositionsResponse, fl as GrpcMitoDenomBalance, fn as OraclePricesByMarketsStreamCallback, fo as GrpcGuildMember, fr as IndexerGrpcCampaignApi, fs as GrpcSpotMarketInfo, ft as TransactionsStreamCallbackV2, fu as MitoVestingConfig, ga as GrpcMegaVaultHistoricalTVL, gc as ExplorerStats, gi as CW20BalanceExplorerApiResponse, gl as GrpcMitoIDOProgress, gn as TransfersStreamCallback, go as ReferralDetails, gr as IndexerGrpcAccountApi, gs as SpotLimitOrderParams, gt as IndexerGrpcTradingStreamV2, gu as GrpcFrame, ha as GrpcMegaVaultHistoricalPnL, hc as ExplorerCW20BalanceWithToken, hi as BlockFromExplorerApiResponse, hl as GrpcMitoIDOClaimedCoins, hn as StakingRewardByAccountStreamCallback, ho as GuildMember, hr as IndexerGrpcAuctionApi, hs as SpotLimitOrder, ht as GridStrategyStreamCallbackV2, hu as GrpcDecodeError, ia as PositionV2, ic as Block, ii as GrpcTcPositionDelta, il as SubaccountBalance, in as SpotAverageEntriesStreamCallback, io as ChronosSpotMarketSummaryResponse, ir as IndexerRestExplorerApi, is as GrpcRFQGwPrepareQuoteResult, it as DerivativeOrdersStreamCallbackV2, iu as MitoStakingActivity, ja as GrpcMegaVaultVolatilityStats, jc as GrpcValidatorSlashingEvent, ji as DerivativeMarket, jl as GrpcMitoSubscription, jn as IndexerGrpcAccountPortfolioTransformer, jo as LeaderboardRow, jr as AllChronosMarketHistory, js as GrpcRFQProcessedQuote, jt as IndexerGrpcSpotStreamV2, ka as GrpcMegaVaultVaultStats, kc as GrpcPeggyDepositTx, ki as DerivativeLimitOrder, kl as GrpcMitoStakingStakingReward, kn as IndexerGrpcInsuranceFundTransformer, ko as HistoricalVolumes, kr as IndexerModule, ks as GrpcRFQConditionalOrder, kt as VaultHolderSubscriptionStreamCallbackV2, la as Redemption, lc as ContractTransactionWithMessages, li as TcDerivativeTradeHistory, ll as TransferType, ln as IndexerGrpcAccountStream, lo as GrpcCampaignUser, lr as IndexerGrpcMegaVaultApi, ls as BatchSpotOrderCancelParams, lt as BlocksStreamCallbackV2, lu as MitoTokenInfo, ma as GrpcMegaVaultAprStats, mc as ExplorerBlockWithTxs, mi as BankTransferFromExplorerApiResponse, ml as GrpcMitoIDO, mn as IndexerGrpcMitoStream, mo as GuildCampaignSummary, mr as IndexerGrpcTradingApi, ms as GrpcSpotTrade, mt as SpotAverageEntriesStreamCallbackV2, mu as MitoWhitelistAccount, na as Position, nc as BankMsgSendTransaction, ni as GrpcTcDerivativesOrdersHistoryResponse, nl as GrpcSubaccountPortfolio, nn as TransactionsStreamCallback, no as AllSpotMarketSummaryResponse, nr as IndexerRestMarketChronosApi, ns as GrpcRFQGwPrepareAutoSignRequest, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as MitoPriceSnapshot, oa as GrpcIndexerRedemptionSchedule, oc as CW20Message, oi as TcDerivativeOrderHistory, ol as SubaccountPortfolio, on as BidsStreamCallback, oo as CampaignUser, or as IndexerGrpcTcDerivativesApi, os as RFQGwPrepareAutoSignResponseType, ot as DerivativePositionsV2StreamCallbackV2, ou as MitoStakingReward, pa as GrpcMegaVaultApr, pc as EventLogEvent, pi as TcPositionDelta, pl as GrpcMitoHolders, pn as HistoricalStakingStreamCallback, po as Guild, pr as IndexerGrpcExplorerApi, ps as GrpcSpotOrderHistory, pt as IndexerGrpcArchiverStreamV2, pu as MitoVestingConfigMap, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultSubscriptionStatus, qc as GridStrategyType, qi as GrpcExpiryFuturesMarketInfo, ql as MitoIDOSubscriptionActivity, qn as IndexerGrpcOracleTransformer, qo as GrpcAuctionContract, qr as AllDerivativeMarketSummaryResponse, qs as RFQSettlementType, qt as DerivativeOrderbookV2StreamCallback, ra as PositionDelta, rc as BankTransfer, ri as GrpcTcDerivativesPositionsResponse, rl as GrpcTradingReward, rn as IndexerGrpcArchiverStream, ro as ChronosSpotMarketSummary, rr as IndexerRestSpotChronosApi, rs as GrpcRFQGwPrepareAutoSignResponse, rt as DerivativeOrderbookV2StreamCallbackV2, ru as MitoStakeToSubscription, sa as IndexerInsuranceFund, sc as Contract, si as TcDerivativeOrdersResponse, sl as SubaccountTransfer, sn as IndexerGrpcAuctionStream, so as CampaignV2, sr as IndexerGrpcAccountPortfolioApi, ss as RFQGwPrepareQuoteResultType, st as DerivativeTradesStreamCallbackV2, su as MitoSubaccountBalance, ta as PerpetualMarketInfo, tc as AccessTypeCode, ti as GrpcTcDerivativeTradesResponse, tl as GrpcSubaccountDeposit, tn as IndexerGrpcExplorerStream, to as AllChronosSpotMarketSummary, tr as IndexerRestDerivativesChronosApi, ts as GrpcCosmosPubKey, tt as DerivativeOrderHistoryStreamCallbackV2, tu as MitoPortfolio, ua as RedemptionStatus, uc as CosmWasmChecksum, ui as TcDerivativeTradesResponse, ul as GrpcMitoChanges, un as IndexerGrpcOracleStream, uo as GrpcCampaignV2, ur as IndexerGrpcReferralApi, us as GrpcAtomicSwap, ut as BlocksWithTxsStreamCallbackV2, uu as MitoTransfer, va as GrpcMegaVaultMaxDrawdown, vc as ExplorerTransactionV2, vi as ContractTransactionExplorerApiResponse, vl as GrpcMitoIDOSubscription, vn as VaultStreamCallback, vo as DenomHolders, vr as IndexerGrpcTransactionApi, vs as SpotOrderCancelParams, vt as IndexerGrpcAuctionStreamV2, vu as ResolvedWsTransportConfig, wa as GrpcMegaVaultRedemption, wc as GrpcBankMsgSendMessage, wi as ValidatorUptimeFromExplorerApiResponse, wl as GrpcMitoPagination, wn as SpotOrdersStreamCallback, wo as GrpcPnlLeaderboard, wr as IndexerGrpcRFQApi, ws as Orderbook, wt as OraclePricesByMarketsStreamCallbackV2, wu as WsState, xa as GrpcMegaVaultOperatorRedemptionBucket, xc as ExplorerValidatorDescription, xi as ExplorerBlockApiResponse, xl as GrpcMitoLeaderboardEpoch, xn as SpotOrderHistoryStreamCallback, xo as GrpcHistoricalRPNL, xr as IndexerGrpcSpotApi, xs as GrpcPriceLevel, xt as IndexerGrpcOracleStreamV2, xu as TransportEvents, ya as GrpcMegaVaultOperationStatusLogEntry, yc as ExplorerTxsV2Response, yi as ExplorerApiResponse, yl as GrpcMitoIDOSubscriptionActivity, yn as IndexerGrpcSpotStream, yo as GrpcDenomHolders, yr as IndexerGrpcOracleApi, ys as SpotOrderHistory, yt as BalanceStreamCallbackV2, yu as TransportEventListener, za as MegaVaultOperator, zc as Signature, zi as FundingRate, zl as MitoGaugeStatus, zn as IndexerRestExplorerTransformer, zo as AuctionCoinPrices, zr as GrpcSubaccountDepositV2, zs as RFQConditionalOrdersResponse, zt as SettlementStreamCallbackV2 } from "../index-D0DwgN6e.cjs";
3
+ import { $ as TcDerivativeTradesStreamCallbackV2, $a as MegaVaultVolatilityStats, $c as GrpcSubaccountBalance, $i as PerpetualMarket, $l as MitoMissionLeaderboardEntry, $n as IndexerGrpcRfqTransformer, $o as Oracle, $r as GrpcTcDerivativePosition, $s as TakerStreamEvents, $t as BlocksStreamCallback, Aa as GrpcMegaVaultVolatility, Ac as GrpcPeggyWithdrawalTx, Ai as DerivativeLimitOrderParams, Al as GrpcMitoSubaccountBalance, An as IndexerDerivativeStreamTransformer, Ao as Holder, Ar as StreamStatusResponse, As as GrpcRFQExpiry, At as VaultStreamCallbackV2, Ba as MegaVaultOperatorRedemptionBucket, Bc as Transaction, Bi as GrpcBinaryOptionsMarketInfo, Bl as MitoHolders, Bn as IndexerOracleStreamTransformer, Bo as AuctionContract, Br as PortfolioSubaccountBalanceV2, Bs as RFQExpiryType, Bt as StreamManager, Ca as GrpcMegaVaultPnlStats, Cc as GasFee, Ci as TransactionFromExplorerApiResponse, Cl as GrpcMitoMissionLeaderboardEntry, Cn as SpotOrderbookV2StreamCallback, Co as GrpcLeaderboardRow, Cr as IndexerGrpcMitoApi, Cs as IndexerTokenMeta, Ct as OraclePriceStreamCallbackV2, Cu as WsReconnectConfig, Da as GrpcMegaVaultUnrealizedPnl, Dc as GrpcIBCTransferTx, Di as BatchDerivativeOrderCancelParams, Dl as GrpcMitoStakingPool, Dn as IndexerTcDerivativesStreamTransformer, Do as HistoricalBalance, Dr as GrpcWebSocketTransport, Ds as QuantityAndFees, Dt as StakingRewardByAccountStreamCallbackV2, Ea as GrpcMegaVaultTargetApr, Ec as GrpcGasFee, Ei as BaseDerivativeMarket, El as GrpcMitoStakingGauge, En as IndexerAccountPortfolioStreamTransformer, Eo as GrpcVolLeaderboard, Er as IndexerWsTakerStream, Es as PriceLevel, Et as IndexerGrpcMitoStreamV2, Fa as MegaVaultHistoricalPnL, Fc as Message, Fi as DerivativeTrade, Fl as MitoChanges, Fn as IndexerArchiverStreamTransformer, Fo as AccountAuctionStatus, Fr as GrpcAccountPortfolioV2, Fs as MakerStreamConfig, Ft as SpotTradesStreamCallbackV2, G as createStreamSubscriptionV2, Ga as MegaVaultStats, Gc as WasmCode, Gi as GrpcDerivativePositionV2, Gl as MitoIDOSubscriber, Gn as IndexerGrpcAccountTransformer, Go as GrpcAuctionCoin, Gr as ChronosLeaderboardResponse, Gs as RFQRequestType, Gt as DerivativeOrderHistoryStreamCallback, Ha as MegaVaultPnlStats, Hc as ValidatorSlashingEvent, Hi as GrpcDerivativeMarketInfo, Hl as MitoIDOClaimedCoins, Hn as IndexerGrpcExplorerTransformer, Ho as AuctionsStats, Hr as SubaccountDepositV2, Hs as RFQProcessedQuoteType, Ht as AccountPortfolioStreamCallback, Ia as MegaVaultHistoricalTVL, Ic as Paging, Ii as ExpiryFuturesMarket, Il as MitoClaimReference, In as IndexerGrpcMegaVaultTransformer, Io as AccountAuctionV2, Ir as GrpcPortfolioSubaccountBalanceV2, Is as MakerStreamEvents, It as IndexerGrpcRfqStreamV2, J as IndexerGrpcAccountPortfolioStreamV2, Ja as MegaVaultTargetApr, Jc as ListTradingStrategiesResponse, Ji as GrpcFundingPayment, Jl as MitoLeaderboard, Jn as IndexerRfqStreamTransformer, Jo as GrpcAuctionV2, Jr as ChronosDerivativeMarketSummary, Js as RFQSettlementUnfilledActionType, Jt as DerivativeOrdersStreamCallback, K as StreamManagerV2, Ka as MegaVaultSubscription, Kc as GridStrategyStreamResponse, Ki as GrpcDerivativeTrade, Kl as MitoIDOSubscription, Kn as IndexerSpotStreamTransformer, Ko as GrpcAuctionCoinPrices, Kr as AllChronosDerivativeMarketSummary, Ks as RFQSettlementLimitActionType, Kt as DerivativeOrderbookUpdateStreamCallback, La as MegaVaultIncentives, Lc as PeggyDepositTx, Li as ExpiryFuturesMarketInfo, Ll as MitoDenomBalance, Ln as IndexerAuctionStreamTransformer, Lo as Auction, Lr as GrpcPositionV2, Ls as RFQConditionalOrder, Lt as QuoteStreamCallbackV2, Ma as MegaVault, Mc as GrpcValidatorUptime, Mi as DerivativeMarketWithoutBinaryOptions, Ml as GrpcMitoTokenInfo, Mn as IndexerGrpcMitoStreamTransformer, Mo as PnlLeaderboard, Mr as ChronosMarketHistoryResponse, Ms as GrpcRFQQuote, Mt as SpotOrderHistoryStreamCallbackV2, Na as MegaVaultApr, Nc as IBCTransferTx, Ni as DerivativeOrderCancelParams, Nl as GrpcMitoVault, Nn as IndexerGrpcDerivativeTransformer, No as SpotAverageEntry, Nr as AccountPortfolioBalances, Ns as GrpcRFQRequest, Nt as SpotOrderbookUpdateStreamCallbackV2, Oa as GrpcMegaVaultUserStats, Oc as GrpcIndexerValidatorDescription, Oi as BinaryOptionsMarket, Ol as GrpcMitoStakingStakingActivity, On as IndexerGrpcTcDerivativesTransformer, Oo as HistoricalRPNL, Or as GrpcWebSocketCodec, Os as Route, Ot as TransfersStreamCallbackV2, Pa as MegaVaultAprStats, Pc as IndexerStreamTransaction, Pi as DerivativeOrderHistory, Pl as GrpcMitoWhitelistAccount, Pn as ExplorerStreamTransformer, Po as VolLeaderboard, Pr as AccountPortfolioV2, Ps as GrpcRFQSettlement, Pt as SpotOrdersStreamCallbackV2, Q as TcDerivativePositionsStreamCallbackV2, Qa as MegaVaultVolatility, Qc as GrpcAccountPortfolio, Qi as GrpcPositionDelta, Ql as MitoMissionLeaderboard, Qn as IndexerGrpcMitoTransformer, Qo as GrpcOracle, Qr as GrpcTcDerivativeOrdersResponse, Qs as TakerStreamConfig, Qt as IndexerGrpcDerivativesStream, Ra as MegaVaultMaxDrawdown, Rc as PeggyWithdrawalTx, Ri as FundingPayment, Rl as MitoGauge, Rn as IndexerAccountStreamTransformer, Ro as AuctionCoin, Rr as GrpcPositionsWithUPNL, Rs as RFQConditionalOrderInput, Rt as RequestStreamCallbackV2, Sa as GrpcMegaVaultPnl, Sc as ExplorerValidatorUptime, Si as ExplorerTransactionApiResponse, Sl as GrpcMitoMission, Sn as SpotOrderbookUpdateStreamCallback, So as GrpcHistoricalVolumes, Sr as IndexerGrpcMetaApi, Ss as GrpcTokenMeta, St as OracleListStreamCallbackV2, Su as WsDisconnectReason, Ta as GrpcMegaVaultSubscription, Tc as GrpcExplorerStats, Ti as WasmCodeExplorerApiResponse, Tl as GrpcMitoPriceSnapshot, Tn as SpotTradesStreamCallback, To as GrpcSpotAverageEntry, Tr as IndexerWsMakerStream, Ts as OrderbookWithSequence, Tt as HistoricalStakingStreamCallbackV2, Tu as WsTransportConfig, Ua as MegaVaultRedemption, Uc as ValidatorUptime, Ui as GrpcDerivativeOrderHistory, Ul as MitoIDOInitParams, Un as IndexerGrpcArchiverTransformer, Uo as GrpcAccountAuctionV2, Ur as ChronosLeaderboard, Us as RFQQuoteType, Ut as IndexerGrpcAccountPortfolioStream, Va as MegaVaultPnl, Vc as TxMessage, Vi as GrpcDerivativeLimitOrder, Vl as MitoIDO, Vn as IndexerGrpcReferralTransformer, Vo as AuctionV2, Vr as PositionsWithUPNL, Vs as RFQMakerStreamAckData, Vt as createStreamSubscription, Wa as MegaVaultRedemptionStatus, Wc as ValidatorUptimeStatus, Wi as GrpcDerivativePosition, Wl as MitoIDOProgress, Wn as IndexerGrpcAuctionTransformer, Wo as GrpcAuction, Wr as ChronosLeaderboardEntry, Ws as RFQRequestInputType, Wt as DerivativeMarketStreamCallback, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as MegaVaultUser, Xc as TradingStrategy, Xi as GrpcPerpetualMarketFunding, Xl as MitoLeaderboardEpoch, Xn as IndexerCampaignTransformer, Xo as IndexerAuctionBid, Xr as GrpcTcDerivativeLimitOrder, Xs as RFQTakerStreamAckData, Xt as DerivativePositionsV2StreamCallback, Y as IndexerGrpcTcDerivativesStreamV2, Ya as MegaVaultUnrealizedPnl, Yc as MarketType, Yi as GrpcFundingRate, Yl as MitoLeaderboardEntry, Yn as IndexerGrpcRfqGwTransformer, Yo as GrpcIndexerAuctionBid, Yr as ChronosDerivativeMarketSummaryResponse, Ys as RFQStreamErrorData, Yt as DerivativePositionsStreamCallback, Z as TcDerivativeOrdersStreamCallbackV2, Za as MegaVaultUserStats, Zc as AccountPortfolio, Zi as GrpcPerpetualMarketInfo, Zl as MitoMission, Zn as IndexerGrpcSpotTransformer, Zo as StreamBidsResponse, Zr as GrpcTcDerivativeOrderHistory, Zs as SettlementsResponse, Zt as DerivativeTradesStreamCallback, _a as GrpcMegaVaultIncentives, _c as ExplorerTransaction, _i as ContractExplorerApiResponse, _l as GrpcMitoIDOSubscriber, _n as VaultHolderSubscriptionStreamCallback, _o as AccountStats, _r as IndexerGrpcWeb3GwApi, _s as SpotMarket, _t as BidsStreamCallbackV2, _u as IsomorphicWebSocket, aa as GrpcIndexerInsuranceFund, ac as BlockWithTxs, ai as TcDerivativeLimitOrder, al as SubaccountDeposit, an as IndexerGrpcTradingStream, ao as Campaign, ar as IndexerGrpcInsuranceFundApi, as as RFQGwPrepareAutoSignRequestType, at as DerivativePositionsStreamCallbackV2, au as MitoStakingPool, ba as GrpcMegaVaultOperator, bc as ExplorerValidator, bi as ExplorerApiResponseWithPagination, bl as GrpcMitoLeaderboardEntry, bn as MarketsStreamCallback, bo as GrpcHistoricalBalance, br as IndexerGrpcRfqGwApi, bs as SpotTrade, bt as IndexerGrpcAccountStreamV2, bu as TransportEventType, ca as InsuranceFundCreateParams, cc as ContractTransaction, ci as TcDerivativePosition, cl as TradingReward, cn as BalanceStreamCallback, co as GrpcCampaign, cr as IndexerGrpcDerivativesApi, cs as AtomicSwap, ct as IndexerGrpcDerivativesStreamV2, cu as MitoSubscription, da as IncentivesCampaign, dc as CosmWasmPermission, di as TcDerivativesOrdersHistoryResponse, dl as GrpcMitoClaimReference, dn as OraclePriceStreamCallback, do as GrpcGuild, dr as IndexerGrpcArchiverApi, ds as GrpcSpotLimitOrder, dt as IndexerGrpcExplorerStreamV2, du as MitoVault, ea as PerpetualMarketFunding, ec as AccessType, ei as GrpcTcDerivativeTradeHistory, el as GrpcSubaccountBalanceTransfer, en as BlocksWithTxsStreamCallback, eo as OperationStatusLogEntry, er as IndexerRestLeaderboardChronosApi, es as CosmosPubKeyType, et as DerivativeMarketStreamCallbackV2, eu as MitoPagination, fa as IncentivesRound, fc as EventLog, fi as TcDerivativesPositionsResponse, fl as GrpcMitoDenomBalance, fn as OraclePricesByMarketsStreamCallback, fo as GrpcGuildMember, fr as IndexerGrpcCampaignApi, fs as GrpcSpotMarketInfo, ft as TransactionsStreamCallbackV2, fu as MitoVestingConfig, ga as GrpcMegaVaultHistoricalTVL, gc as ExplorerStats, gi as CW20BalanceExplorerApiResponse, gl as GrpcMitoIDOProgress, gn as TransfersStreamCallback, go as ReferralDetails, gr as IndexerGrpcAccountApi, gs as SpotLimitOrderParams, gt as IndexerGrpcTradingStreamV2, gu as GrpcFrame, ha as GrpcMegaVaultHistoricalPnL, hc as ExplorerCW20BalanceWithToken, hi as BlockFromExplorerApiResponse, hl as GrpcMitoIDOClaimedCoins, hn as StakingRewardByAccountStreamCallback, ho as GuildMember, hr as IndexerGrpcAuctionApi, hs as SpotLimitOrder, ht as GridStrategyStreamCallbackV2, hu as GrpcDecodeError, ia as PositionV2, ic as Block, ii as GrpcTcPositionDelta, il as SubaccountBalance, in as SpotAverageEntriesStreamCallback, io as ChronosSpotMarketSummaryResponse, ir as IndexerRestExplorerApi, is as GrpcRFQGwPrepareQuoteResult, it as DerivativeOrdersStreamCallbackV2, iu as MitoStakingActivity, ja as GrpcMegaVaultVolatilityStats, jc as GrpcValidatorSlashingEvent, ji as DerivativeMarket, jl as GrpcMitoSubscription, jn as IndexerGrpcAccountPortfolioTransformer, jo as LeaderboardRow, jr as AllChronosMarketHistory, js as GrpcRFQProcessedQuote, jt as IndexerGrpcSpotStreamV2, ka as GrpcMegaVaultVaultStats, kc as GrpcPeggyDepositTx, ki as DerivativeLimitOrder, kl as GrpcMitoStakingStakingReward, kn as IndexerGrpcInsuranceFundTransformer, ko as HistoricalVolumes, kr as IndexerModule, ks as GrpcRFQConditionalOrder, kt as VaultHolderSubscriptionStreamCallbackV2, la as Redemption, lc as ContractTransactionWithMessages, li as TcDerivativeTradeHistory, ll as TransferType, ln as IndexerGrpcAccountStream, lo as GrpcCampaignUser, lr as IndexerGrpcMegaVaultApi, ls as BatchSpotOrderCancelParams, lt as BlocksStreamCallbackV2, lu as MitoTokenInfo, ma as GrpcMegaVaultAprStats, mc as ExplorerBlockWithTxs, mi as BankTransferFromExplorerApiResponse, ml as GrpcMitoIDO, mn as IndexerGrpcMitoStream, mo as GuildCampaignSummary, mr as IndexerGrpcTradingApi, ms as GrpcSpotTrade, mt as SpotAverageEntriesStreamCallbackV2, mu as MitoWhitelistAccount, na as Position, nc as BankMsgSendTransaction, ni as GrpcTcDerivativesOrdersHistoryResponse, nl as GrpcSubaccountPortfolio, nn as TransactionsStreamCallback, no as AllSpotMarketSummaryResponse, nr as IndexerRestMarketChronosApi, ns as GrpcRFQGwPrepareAutoSignRequest, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as MitoPriceSnapshot, oa as GrpcIndexerRedemptionSchedule, oc as CW20Message, oi as TcDerivativeOrderHistory, ol as SubaccountPortfolio, on as BidsStreamCallback, oo as CampaignUser, or as IndexerGrpcTcDerivativesApi, os as RFQGwPrepareAutoSignResponseType, ot as DerivativePositionsV2StreamCallbackV2, ou as MitoStakingReward, pa as GrpcMegaVaultApr, pc as EventLogEvent, pi as TcPositionDelta, pl as GrpcMitoHolders, pn as HistoricalStakingStreamCallback, po as Guild, pr as IndexerGrpcExplorerApi, ps as GrpcSpotOrderHistory, pt as IndexerGrpcArchiverStreamV2, pu as MitoVestingConfigMap, q as AccountPortfolioStreamCallbackV2, qa as MegaVaultSubscriptionStatus, qc as GridStrategyType, qi as GrpcExpiryFuturesMarketInfo, ql as MitoIDOSubscriptionActivity, qn as IndexerGrpcOracleTransformer, qo as GrpcAuctionContract, qr as AllDerivativeMarketSummaryResponse, qs as RFQSettlementType, qt as DerivativeOrderbookV2StreamCallback, ra as PositionDelta, rc as BankTransfer, ri as GrpcTcDerivativesPositionsResponse, rl as GrpcTradingReward, rn as IndexerGrpcArchiverStream, ro as ChronosSpotMarketSummary, rr as IndexerRestSpotChronosApi, rs as GrpcRFQGwPrepareAutoSignResponse, rt as DerivativeOrderbookV2StreamCallbackV2, ru as MitoStakeToSubscription, sa as IndexerInsuranceFund, sc as Contract, si as TcDerivativeOrdersResponse, sl as SubaccountTransfer, sn as IndexerGrpcAuctionStream, so as CampaignV2, sr as IndexerGrpcAccountPortfolioApi, ss as RFQGwPrepareQuoteResultType, st as DerivativeTradesStreamCallbackV2, su as MitoSubaccountBalance, ta as PerpetualMarketInfo, tc as AccessTypeCode, ti as GrpcTcDerivativeTradesResponse, tl as GrpcSubaccountDeposit, tn as IndexerGrpcExplorerStream, to as AllChronosSpotMarketSummary, tr as IndexerRestDerivativesChronosApi, ts as GrpcCosmosPubKey, tt as DerivativeOrderHistoryStreamCallbackV2, tu as MitoPortfolio, ua as RedemptionStatus, uc as CosmWasmChecksum, ui as TcDerivativeTradesResponse, ul as GrpcMitoChanges, un as IndexerGrpcOracleStream, uo as GrpcCampaignV2, ur as IndexerGrpcReferralApi, us as GrpcAtomicSwap, ut as BlocksWithTxsStreamCallbackV2, uu as MitoTransfer, va as GrpcMegaVaultMaxDrawdown, vc as ExplorerTransactionV2, vi as ContractTransactionExplorerApiResponse, vl as GrpcMitoIDOSubscription, vn as VaultStreamCallback, vo as DenomHolders, vr as IndexerGrpcTransactionApi, vs as SpotOrderCancelParams, vt as IndexerGrpcAuctionStreamV2, vu as ResolvedWsTransportConfig, wa as GrpcMegaVaultRedemption, wc as GrpcBankMsgSendMessage, wi as ValidatorUptimeFromExplorerApiResponse, wl as GrpcMitoPagination, wn as SpotOrdersStreamCallback, wo as GrpcPnlLeaderboard, wr as IndexerGrpcRFQApi, ws as Orderbook, wt as OraclePricesByMarketsStreamCallbackV2, wu as WsState, xa as GrpcMegaVaultOperatorRedemptionBucket, xc as ExplorerValidatorDescription, xi as ExplorerBlockApiResponse, xl as GrpcMitoLeaderboardEpoch, xn as SpotOrderHistoryStreamCallback, xo as GrpcHistoricalRPNL, xr as IndexerGrpcSpotApi, xs as GrpcPriceLevel, xt as IndexerGrpcOracleStreamV2, xu as TransportEvents, ya as GrpcMegaVaultOperationStatusLogEntry, yc as ExplorerTxsV2Response, yi as ExplorerApiResponse, yl as GrpcMitoIDOSubscriptionActivity, yn as IndexerGrpcSpotStream, yo as GrpcDenomHolders, yr as IndexerGrpcOracleApi, ys as SpotOrderHistory, yt as BalanceStreamCallbackV2, yu as TransportEventListener, za as MegaVaultOperator, zc as Signature, zi as FundingRate, zl as MitoGaugeStatus, zn as IndexerRestExplorerTransformer, zo as AuctionCoinPrices, zr as GrpcSubaccountDepositV2, zs as RFQConditionalOrdersResponse, zt as SettlementStreamCallbackV2 } from "../index-B7UsSUbZ.cjs";
4
4
  import "../BaseGrpcConsumer-CZTAcNtS.cjs";
5
5
  import "../index-C00Yswov.cjs";
6
6
  import "../index-Dvfd07fs.cjs";
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BGCQilBY.cjs";
2
2
  import "../index-C15wCMY6.cjs";
3
- import { ap as PrivateKey, ip as BaseAccount, op as PublicKey, sp as Address } from "../index-D0DwgN6e.cjs";
3
+ import { ap as PrivateKey, ip as BaseAccount, op as PublicKey, sp as Address } from "../index-B7UsSUbZ.cjs";
4
4
  import "../BaseGrpcConsumer-CZTAcNtS.cjs";
5
5
  import "../index-C00Yswov.cjs";
6
6
  import "../index-Dvfd07fs.cjs";
@@ -1,6 +1,6 @@
1
1
  import "../tx_pb-BGCQilBY.cjs";
2
2
  import "../index-C15wCMY6.cjs";
3
- import { $f as getGenericAuthorizationFromMessageType, $m as MsgAdminUpdateBinaryOptionsMarket, $y as MsgWithdraw, Ay as MsgRequestRedemption, Bm as FeegrantMsgs, By as MsgRemoveRateLimit, Cb as MsgBid, Cy as MsgCreateInsuranceFund, Dy as MsgReclaimLockedFunds, Ey as MsgUpdateSpotMarketV2, Fm as DistributionMsgs, Fy as MsgRevokeAllowance, Gf as MsgUpdateParams, Gm as OracleMsgs, Gy as MsgCreateDenom, Hf as MsgUpdateActorRoles, Hm as IbcMsgs, Hy as MsgCreateRateLimit, Im as Erc20Msgs, Iy as MsgCancelSpotOrder, Jf as MsgInstantBinaryOptionsMarketLaunch, Jm as TokenFactoryMsgs, Jy as MsgPrivilegedExecuteContract, Kf as MsgClaimVoucher, Km as PeggyMsgs, Ky as MsgChangeAdmin, Lm as ExchangeMsgs, Ly as MsgCreateValidator, Mm as AuctionMsgs, My as MsgLiquidatePosition, Nm as AuthzMsgs, Ny as MsgBatchUpdateOrders, Oy as MsgRelayProviderPrices, Pm as BankMsgs, Py as MsgExternalTransfer, Qf as GrantAuthorizationType, Qm as MsgBatchCancelBinaryOptionsOrders, Qy as MsgUpdateAdmin, Rm as ExchangeV1Msgs, Ry as MsgBeginRedelegate, Sb as MsgGrant, Sy as MsgAuthorizeStakeGrants, Tb as MsgVote, Ty as MsgSetDenomMetadata, Uf as MsgUpdateNamespace, Um as InsuranceMsgs, Uy as MsgMigrateContract, Vm as GovMsgs, Vy as MsgUpdateRateLimit, Wf as MsgCreateNamespace, Wm as Msgs, Wy as MsgExecuteContract, Xf as ContractExecutionAuthorization, Xm as MsgSetDelegationTransferReceivers, Xy as MsgUnderwrite, Yf as ContractExecutionCompatAuthorization, Ym as WasmMsgs, Yy as MsgEditValidator, Zf as GenericAuthorization, Zm as MsgCreateBinaryOptionsMarketOrder, Zy as MsgUndelegate, _b as MsgSubmitProposalSpotMarketLaunch, _y as MsgCancelDerivativeOrder, ab as MsgMultiSend, ay as MsgWithdrawValidatorCommission, bb as MsgDeposit$1, by as MsgCancelPostOnlyModeV2, cb as MsgTransfer, cy as MsgCreateDerivativeLimitOrder, db as ProposalDecomposer, dy as MsgUpdateDerivativeMarketV2, eb as MsgSignData, ep as msgsOrMsgExecMsgs, fb as MsgSubmitProposalExpiryFuturesMarketLaunch, fy as MsgCancelBinaryOptionsOrder, gb as MsgGrantProviderPrivilegeProposal, gy as MsgCreateSpotMarketOrder, hb as MsgSubmitProposalPerpetualMarketLaunch, hy as MsgIncreasePositionMargin, ib as MsgDeposit, iy as MsgCreateBinaryOptionsLimitOrder, jy as MsgInstantiateContract, ky as MsgTransferDelegation, lb as MsgExec, ly as MsgWithdrawDelegatorReward, mb as MsgSubmitProposalSpotMarketParamUpdate, my as MsgDecreasePositionMargin, nb as MsgSendToEth, np as ExecArgNeptuneDeposit, ob as MsgMint, oy as MsgCreateDerivativeMarketOrder, pb as MsgSubmitProposalPerpetualMarketLaunchV2, py as MsgInstantSpotMarketLaunch, qf as OrderHashManager, qm as StakingMsgs, qy as MsgRewardsOptOut, rb as MsgStoreCode, sb as MsgBurn, sy as MsgBatchCancelDerivativeOrders, tb as MsgDelegate, tp as ExecArgNeptuneWithdraw, ub as MsgSubmitProposal, uy as MsgCancelUnbondingDelegation, vb as MsgSubmitGenericProposal, vy as MsgBatchCancelSpotOrders, wb as MsgSend, wy as MsgFundCommunityPool, xb as MsgRevoke, xy as MsgCreateSpotLimitOrder, yb as MsgSubmitTextProposal, yy as MsgGrantWithAuthorization, zm as ExchangeV2Msgs, zy as MsgGrantAllowance } from "../index-D0DwgN6e.cjs";
3
+ import { $f as getGenericAuthorizationFromMessageType, $m as MsgAdminUpdateBinaryOptionsMarket, $y as MsgWithdraw, Ay as MsgRequestRedemption, Bm as FeegrantMsgs, By as MsgRemoveRateLimit, Cb as MsgBid, Cy as MsgCreateInsuranceFund, Dy as MsgReclaimLockedFunds, Ey as MsgUpdateSpotMarketV2, Fm as DistributionMsgs, Fy as MsgRevokeAllowance, Gf as MsgUpdateParams, Gm as OracleMsgs, Gy as MsgCreateDenom, Hf as MsgUpdateActorRoles, Hm as IbcMsgs, Hy as MsgCreateRateLimit, Im as Erc20Msgs, Iy as MsgCancelSpotOrder, Jf as MsgInstantBinaryOptionsMarketLaunch, Jm as TokenFactoryMsgs, Jy as MsgPrivilegedExecuteContract, Kf as MsgClaimVoucher, Km as PeggyMsgs, Ky as MsgChangeAdmin, Lm as ExchangeMsgs, Ly as MsgCreateValidator, Mm as AuctionMsgs, My as MsgLiquidatePosition, Nm as AuthzMsgs, Ny as MsgBatchUpdateOrders, Oy as MsgRelayProviderPrices, Pm as BankMsgs, Py as MsgExternalTransfer, Qf as GrantAuthorizationType, Qm as MsgBatchCancelBinaryOptionsOrders, Qy as MsgUpdateAdmin, Rm as ExchangeV1Msgs, Ry as MsgBeginRedelegate, Sb as MsgGrant, Sy as MsgAuthorizeStakeGrants, Tb as MsgVote, Ty as MsgSetDenomMetadata, Uf as MsgUpdateNamespace, Um as InsuranceMsgs, Uy as MsgMigrateContract, Vm as GovMsgs, Vy as MsgUpdateRateLimit, Wf as MsgCreateNamespace, Wm as Msgs, Wy as MsgExecuteContract, Xf as ContractExecutionAuthorization, Xm as MsgSetDelegationTransferReceivers, Xy as MsgUnderwrite, Yf as ContractExecutionCompatAuthorization, Ym as WasmMsgs, Yy as MsgEditValidator, Zf as GenericAuthorization, Zm as MsgCreateBinaryOptionsMarketOrder, Zy as MsgUndelegate, _b as MsgSubmitProposalSpotMarketLaunch, _y as MsgCancelDerivativeOrder, ab as MsgMultiSend, ay as MsgWithdrawValidatorCommission, bb as MsgDeposit$1, by as MsgCancelPostOnlyModeV2, cb as MsgTransfer, cy as MsgCreateDerivativeLimitOrder, db as ProposalDecomposer, dy as MsgUpdateDerivativeMarketV2, eb as MsgSignData, ep as msgsOrMsgExecMsgs, fb as MsgSubmitProposalExpiryFuturesMarketLaunch, fy as MsgCancelBinaryOptionsOrder, gb as MsgGrantProviderPrivilegeProposal, gy as MsgCreateSpotMarketOrder, hb as MsgSubmitProposalPerpetualMarketLaunch, hy as MsgIncreasePositionMargin, ib as MsgDeposit, iy as MsgCreateBinaryOptionsLimitOrder, jy as MsgInstantiateContract, ky as MsgTransferDelegation, lb as MsgExec, ly as MsgWithdrawDelegatorReward, mb as MsgSubmitProposalSpotMarketParamUpdate, my as MsgDecreasePositionMargin, nb as MsgSendToEth, np as ExecArgNeptuneDeposit, ob as MsgMint, oy as MsgCreateDerivativeMarketOrder, pb as MsgSubmitProposalPerpetualMarketLaunchV2, py as MsgInstantSpotMarketLaunch, qf as OrderHashManager, qm as StakingMsgs, qy as MsgRewardsOptOut, rb as MsgStoreCode, sb as MsgBurn, sy as MsgBatchCancelDerivativeOrders, tb as MsgDelegate, tp as ExecArgNeptuneWithdraw, ub as MsgSubmitProposal, uy as MsgCancelUnbondingDelegation, vb as MsgSubmitGenericProposal, vy as MsgBatchCancelSpotOrders, wb as MsgSend, wy as MsgFundCommunityPool, xb as MsgRevoke, xy as MsgCreateSpotLimitOrder, yb as MsgSubmitTextProposal, yy as MsgGrantWithAuthorization, zm as ExchangeV2Msgs, zy as MsgGrantAllowance } from "../index-B7UsSUbZ.cjs";
4
4
  import "../BaseGrpcConsumer-CZTAcNtS.cjs";
5
5
  import "../index-C00Yswov.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-Dvfd07fs.cjs";
@@ -1,6 +1,6 @@
1
1
  import { c as tx_pb_d_exports } from "../tx_pb-BGCQilBY.cjs";
2
2
  import "../index-C15wCMY6.cjs";
3
- import { $p as createTransaction, Am as TxConcreteApi, Ap as createAny, Bp as createSignDoc, Cm as CreateTransactionWithSignersArgs, Cp as protoTypeToAminoType, Dm as TxClientBroadcastResponse, Dp as SIGN_DIRECT, Em as TxClientBroadcastOptions, Ep as SIGN_AMINO, Fp as isTxNotFoundError, Gp as createWeb3Extension, Hp as createSignerInfo, Ip as createAuthInfo, Jp as getTransactionPartsFromTxRaw, Kp as getAminoStdSignDoc, Lp as createBody, Mp as getEthereumSignerAddress, Np as getInjectiveSignerAddress, Om as TxClientMode, Op as SIGN_EIP712, Pp as errorToErrorMessage, Qp as waitTxBroadcasted, Rp as createFee, Sm as CreateTransactionResult, Sp as objectKeysToEip712Types, Tm as SignerDetails, Tp as TxClient, Up as createSigners, Vp as createSignDocFromTransaction, Wp as createTxRawEIP712, Xp as TxRestApi, Yp as generateArbitrarySignDoc, Zp as TxGrpcApi, _m as TxResult, _p as getEipTxContext, am as createTxRawFromSigResponse, bm as TxSearchResultParams, bp as getObjectEip712PropertyType, cm as BroadcastModeKeplr, cp as MsgDecoder, dm as RestTx, dp as getDefaultEip712Types, em as createTransactionAndCosmosSignDoc, fm as RestTxBody, fp as getDefaultEip712TypesV2, gm as TxInfoResponse, gp as getEip712FeeV2, hm as TxInfo, hp as getEip712Fee, im as createTransactionWithSigners, jm as TxResponse, jp as createAnyMessage, km as TxClientSimulateResponse, kp as SIGN_EIP712_V2, lm as RestAuthInfo, lp as getEip712TypedData, mm as SimulationResponse, mp as getEip712DomainV2, nm as createTransactionForAddressAndMsg, om as getTxRawFromTxRawOrDirectSignResponse, pm as RestTxLog, pp as getEip712Domain, qp as getPublicKey, rm as createTransactionFromMsg, rp as MsgBroadcasterWithPk, sm as BroadcastMode, tm as createTransactionAndCosmosSignDocForAddressAndMsg, um as RestSignerInfo, up as getEip712TypedDataV2, vm as TxResultResponse, vp as getEipTxDetails, wm as MsgArg, wp as stringTypeToReflectionStringType, xm as CreateTransactionArgs, xp as numberTypeToReflectionNumberType, ym as TxSearchResult, yp as getTypesIncludingFeePayer, zp as createNonCriticalExtensionFromObject } from "../index-D0DwgN6e.cjs";
3
+ import { $p as createTransaction, Am as TxConcreteApi, Ap as createAny, Bp as createSignDoc, Cm as CreateTransactionWithSignersArgs, Cp as protoTypeToAminoType, Dm as TxClientBroadcastResponse, Dp as SIGN_DIRECT, Em as TxClientBroadcastOptions, Ep as SIGN_AMINO, Fp as isTxNotFoundError, Gp as createWeb3Extension, Hp as createSignerInfo, Ip as createAuthInfo, Jp as getTransactionPartsFromTxRaw, Kp as getAminoStdSignDoc, Lp as createBody, Mp as getEthereumSignerAddress, Np as getInjectiveSignerAddress, Om as TxClientMode, Op as SIGN_EIP712, Pp as errorToErrorMessage, Qp as waitTxBroadcasted, Rp as createFee, Sm as CreateTransactionResult, Sp as objectKeysToEip712Types, Tm as SignerDetails, Tp as TxClient, Up as createSigners, Vp as createSignDocFromTransaction, Wp as createTxRawEIP712, Xp as TxRestApi, Yp as generateArbitrarySignDoc, Zp as TxGrpcApi, _m as TxResult, _p as getEipTxContext, am as createTxRawFromSigResponse, bm as TxSearchResultParams, bp as getObjectEip712PropertyType, cm as BroadcastModeKeplr, cp as MsgDecoder, dm as RestTx, dp as getDefaultEip712Types, em as createTransactionAndCosmosSignDoc, fm as RestTxBody, fp as getDefaultEip712TypesV2, gm as TxInfoResponse, gp as getEip712FeeV2, hm as TxInfo, hp as getEip712Fee, im as createTransactionWithSigners, jm as TxResponse, jp as createAnyMessage, km as TxClientSimulateResponse, kp as SIGN_EIP712_V2, lm as RestAuthInfo, lp as getEip712TypedData, mm as SimulationResponse, mp as getEip712DomainV2, nm as createTransactionForAddressAndMsg, om as getTxRawFromTxRawOrDirectSignResponse, pm as RestTxLog, pp as getEip712Domain, qp as getPublicKey, rm as createTransactionFromMsg, rp as MsgBroadcasterWithPk, sm as BroadcastMode, tm as createTransactionAndCosmosSignDocForAddressAndMsg, um as RestSignerInfo, up as getEip712TypedDataV2, vm as TxResultResponse, vp as getEipTxDetails, wm as MsgArg, wp as stringTypeToReflectionStringType, xm as CreateTransactionArgs, xp as numberTypeToReflectionNumberType, ym as TxSearchResult, yp as getTypesIncludingFeePayer, zp as createNonCriticalExtensionFromObject } from "../index-B7UsSUbZ.cjs";
4
4
  import "../BaseGrpcConsumer-CZTAcNtS.cjs";
5
5
  import "../index-C00Yswov.cjs";
6
6
  import { St as TypedDataField, bt as Eip712ConvertTxArgs, xt as MapOfTypedDataField, yt as Eip712ConvertFeeArgs } from "../index-Dvfd07fs.cjs";
@@ -18742,7 +18742,7 @@ declare const BECH32_ADDR_VAL_PREFIX = "injvaloper";
18742
18742
  declare const BECH32_ADDR_CONS_PREFIX = "injvalcons";
18743
18743
  declare const DEFAULT_DERIVATION_PATH = "m/44'/60'/0'/0/0";
18744
18744
  //#endregion
18745
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
18745
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_accounts_rpc_pb.d.ts
18746
18746
  /**
18747
18747
  * @generated from protobuf message injective_accounts_rpc.PortfolioResponse
18748
18748
  */
@@ -19258,7 +19258,7 @@ declare const Reward = new Reward$Type();
19258
19258
  */
19259
19259
  declare const Coin$7 = new Coin$Type();
19260
19260
  //#endregion
19261
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
19261
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_explorer_rpc_pb.d.ts
19262
19262
  /**
19263
19263
  * @generated from protobuf message injective_explorer_rpc.GetAccountTxsResponse
19264
19264
  */
@@ -20692,7 +20692,7 @@ declare const fetchAllWithPagination: <T extends {
20692
20692
  //#region src/utils/transaction.d.ts
20693
20693
  declare const recoverTypedSignaturePubKey: (data: TypedDataDefinition, signature: string) => Promise<string>;
20694
20694
  //#endregion
20695
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
20695
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb.d.ts
20696
20696
  /**
20697
20697
  * @generated from protobuf message injective_rfq_rpc.StreamRequestResponse
20698
20698
  */
@@ -20918,9 +20918,9 @@ interface RFQQuoteType$1 {
20918
20918
  /**
20919
20919
  * Maker subaccount nonce used in quote signature
20920
20920
  *
20921
- * @generated from protobuf field: uint64 maker_subaccount_nonce = 19
20921
+ * @generated from protobuf field: uint32 maker_subaccount_nonce = 19
20922
20922
  */
20923
- makerSubaccountNonce: bigint;
20923
+ makerSubaccountNonce: number;
20924
20924
  /**
20925
20925
  * Optional minimum fill quantity used in quote signature
20926
20926
  *
@@ -20939,6 +20939,13 @@ interface RFQQuoteType$1 {
20939
20939
  * @generated from protobuf field: string client_id = 22
20940
20940
  */
20941
20941
  clientId: string;
20942
+ /**
20943
+ * Signature scheme used for the quote: "v1" (raw JSON keccak256) or "v2"
20944
+ * (EIP-712).
20945
+ *
20946
+ * @generated from protobuf field: string sign_mode = 23
20947
+ */
20948
+ signMode: string;
20942
20949
  }
20943
20950
  /**
20944
20951
  * Expiry with timestamp and block height
@@ -21111,9 +21118,9 @@ interface RFQProcessedQuoteType$1 {
21111
21118
  /**
21112
21119
  * Maker subaccount nonce used in quote signature
21113
21120
  *
21114
- * @generated from protobuf field: uint64 maker_subaccount_nonce = 19
21121
+ * @generated from protobuf field: uint32 maker_subaccount_nonce = 19
21115
21122
  */
21116
- makerSubaccountNonce: bigint;
21123
+ makerSubaccountNonce: number;
21117
21124
  /**
21118
21125
  * Optional minimum fill quantity used in quote signature
21119
21126
  *
@@ -21132,6 +21139,13 @@ interface RFQProcessedQuoteType$1 {
21132
21139
  * @generated from protobuf field: string client_id = 22
21133
21140
  */
21134
21141
  clientId: string;
21142
+ /**
21143
+ * Signature scheme used for the quote: "v1" (raw JSON keccak256) or "v2"
21144
+ * (EIP-712).
21145
+ *
21146
+ * @generated from protobuf field: string sign_mode = 23
21147
+ */
21148
+ signMode: string;
21135
21149
  }
21136
21150
  /**
21137
21151
  * @generated from protobuf message injective_rfq_rpc.ListSettlementResponse
@@ -21410,6 +21424,12 @@ interface ConditionalOrderResponseType {
21410
21424
  * @generated from protobuf field: string error = 16
21411
21425
  */
21412
21426
  error: string;
21427
+ /**
21428
+ * Settlement transaction hash, if any
21429
+ *
21430
+ * @generated from protobuf field: string tx_hash = 17
21431
+ */
21432
+ txHash: string;
21413
21433
  }
21414
21434
  /**
21415
21435
  * @generated from protobuf message injective_rfq_rpc.ListConditionalOrdersResponse
@@ -23828,7 +23848,7 @@ type GrpcSubaccountBalance = SubaccountBalance$2;
23828
23848
  type GrpcSubaccountPortfolio = SubaccountPortfolio$1;
23829
23849
  type GrpcSubaccountBalanceTransfer = SubaccountBalanceTransfer;
23830
23850
  //#endregion
23831
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
23851
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_trading_rpc_pb.d.ts
23832
23852
  /**
23833
23853
  * @generated from protobuf message injective_trading_rpc.ListTradingStrategiesResponse
23834
23854
  */
@@ -24833,6 +24853,7 @@ interface RFQQuoteType {
24833
24853
  marketId: string;
24834
24854
  quantity: string;
24835
24855
  clientId: string;
24856
+ signMode: string;
24836
24857
  signature: string;
24837
24858
  createdAt: number;
24838
24859
  updatedAt: number;
@@ -24857,6 +24878,7 @@ interface RFQProcessedQuoteType {
24857
24878
  chainId: string;
24858
24879
  marketId: string;
24859
24880
  quantity: string;
24881
+ signMode: string;
24860
24882
  signature: string;
24861
24883
  createdAt: number;
24862
24884
  updatedAt: number;
@@ -24926,6 +24948,7 @@ interface RFQConditionalOrderInput {
24926
24948
  interface RFQConditionalOrder {
24927
24949
  rfqId: number;
24928
24950
  error?: string;
24951
+ txHash: string;
24929
24952
  margin: string;
24930
24953
  status: string;
24931
24954
  marketId: string;
@@ -25052,7 +25075,7 @@ interface QuantityAndFees {
25052
25075
  resultQuantity: string;
25053
25076
  }
25054
25077
  //#endregion
25055
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
25078
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_spot_exchange_rpc_pb.d.ts
25056
25079
  /**
25057
25080
  * @generated from protobuf message injective_spot_exchange_rpc.MarketsResponse
25058
25081
  */
@@ -26208,7 +26231,7 @@ type GrpcSpotLimitOrder = SpotLimitOrder$1;
26208
26231
  type GrpcSpotOrderHistory = SpotOrderHistory$1;
26209
26232
  type GrpcAtomicSwap = AtomicSwap$1;
26210
26233
  //#endregion
26211
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_gw_rpc_pb.d.ts
26234
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_gw_rpc_pb.d.ts
26212
26235
  /**
26213
26236
  * @generated from protobuf message injective_rfq_gw_rpc.RFQGwPrepareAutoSignRequestType
26214
26237
  */
@@ -26437,6 +26460,13 @@ interface PrepareAutoSignResponse {
26437
26460
  * @generated from protobuf field: uint64 quotes_wait_ms = 13
26438
26461
  */
26439
26462
  quotesWaitMs: bigint;
26463
+ /**
26464
+ * Number of quotes that expired after being received and were excluded from
26465
+ * selection
26466
+ *
26467
+ * @generated from protobuf field: uint64 expired_quotes_count = 14
26468
+ */
26469
+ expiredQuotesCount: bigint;
26440
26470
  }
26441
26471
  /**
26442
26472
  * @generated from protobuf message injective_rfq_gw_rpc.CosmosPubKey
@@ -26552,6 +26582,7 @@ interface RFQGwPrepareAutoSignResponseType {
26552
26582
  pubKeyType: string;
26553
26583
  feePayerSig: string;
26554
26584
  quotesWaitMs: number;
26585
+ expiredQuotesCount: number;
26555
26586
  autosignAccountNumber: number;
26556
26587
  feePayerAccountNumber: number;
26557
26588
  autosignAccountSequence: number;
@@ -26564,7 +26595,7 @@ type GrpcRFQGwPrepareQuoteResult = RFQGwPrepareQuoteResult;
26564
26595
  type GrpcRFQGwPrepareAutoSignResponse = PrepareAutoSignResponse;
26565
26596
  type GrpcRFQGwPrepareAutoSignRequest = RFQGwPrepareAutoSignRequestType$1;
26566
26597
  //#endregion
26567
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
26598
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_oracle_rpc_pb.d.ts
26568
26599
  /**
26569
26600
  * @generated from protobuf message injective_oracle_rpc.OracleListResponse
26570
26601
  */
@@ -26726,7 +26757,7 @@ declare const StreamPricesByMarketsResponse = new StreamPricesByMarketsResponse$
26726
26757
  type GrpcOracle = Oracle$1;
26727
26758
  interface Oracle extends GrpcOracle {}
26728
26759
  //#endregion
26729
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
26760
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_auction_rpc_pb.d.ts
26730
26761
  /**
26731
26762
  * @generated from protobuf message injective_auction_rpc.AuctionEndpointResponse
26732
26763
  */
@@ -27223,7 +27254,7 @@ type GrpcAccountAuctionV2 = AccountAuctionV2$1;
27223
27254
  type GrpcAuctionContract = AuctionContract$1;
27224
27255
  type StreamBidsResponse = StreamBidsResponse$1;
27225
27256
  //#endregion
27226
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
27257
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_archiver_rpc_pb.d.ts
27227
27258
  /**
27228
27259
  * @generated from protobuf message injective_archiver_rpc.BalanceResponse
27229
27260
  */
@@ -27745,7 +27776,7 @@ type GrpcHistoricalVolumes = HistoricalVolumes$1;
27745
27776
  type GrpcPnlLeaderboard = PnlLeaderboardResponse | PnlLeaderboardFixedResolutionResponse;
27746
27777
  type GrpcVolLeaderboard = VolLeaderboardResponse | VolLeaderboardFixedResolutionResponse;
27747
27778
  //#endregion
27748
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
27779
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_referral_rpc_pb.d.ts
27749
27780
  /**
27750
27781
  * @generated from protobuf message injective_referral_rpc.GetReferrerDetailsResponse
27751
27782
  */
@@ -27876,7 +27907,7 @@ interface ReferralDetails {
27876
27907
  invitees: ReferralInvitee[];
27877
27908
  }
27878
27909
  //#endregion
27879
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
27910
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_campaign_rpc_pb.d.ts
27880
27911
  /**
27881
27912
  * @generated from protobuf message injective_campaign_rpc.RankingResponse
27882
27913
  */
@@ -28713,7 +28744,7 @@ interface AllSpotMarketSummaryResponse {
28713
28744
  data: AllChronosSpotMarketSummary[];
28714
28745
  }
28715
28746
  //#endregion
28716
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
28747
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_megavault_rpc_pb.d.ts
28717
28748
  /**
28718
28749
  * @generated from protobuf message injective_megavault_rpc.GetVaultResponse
28719
28750
  */
@@ -29832,7 +29863,7 @@ interface IncentivesCampaign {
29832
29863
  subaccountIdSuffix: string;
29833
29864
  }
29834
29865
  //#endregion
29835
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
29866
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_insurance_rpc_pb.d.ts
29836
29867
  /**
29837
29868
  * @generated from protobuf message injective_insurance_rpc.FundsResponse
29838
29869
  */
@@ -30094,7 +30125,7 @@ interface InsuranceFundCreateParams {
30094
30125
  type GrpcIndexerInsuranceFund = InsuranceFund$2;
30095
30126
  type GrpcIndexerRedemptionSchedule = RedemptionSchedule;
30096
30127
  //#endregion
30097
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
30128
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_derivative_exchange_rpc_pb.d.ts
30098
30129
  /**
30099
30130
  * @generated from protobuf message injective_derivative_exchange_rpc.MarketsResponse
30100
30131
  */
@@ -32184,7 +32215,7 @@ interface BankTransferFromExplorerApiResponse {
32184
32215
  block_timestamp: string;
32185
32216
  }
32186
32217
  //#endregion
32187
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
32218
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_tc_derivatives_rpc_pb.d.ts
32188
32219
  /**
32189
32220
  * @generated from protobuf message injective_tc_derivatives_rpc.OrdersHistoryResponse
32190
32221
  */
@@ -32660,6 +32691,12 @@ interface TCDerivativeTrade {
32660
32691
  * @generated from protobuf field: string position_entry_price = 17
32661
32692
  */
32662
32693
  positionEntryPrice: string;
32694
+ /**
32695
+ * True if the position is closed by this trade
32696
+ *
32697
+ * @generated from protobuf field: bool is_position_closed = 18
32698
+ */
32699
+ isPositionClosed: boolean;
32663
32700
  }
32664
32701
  /**
32665
32702
  * @generated from protobuf message injective_tc_derivatives_rpc.PositionDelta
@@ -32951,6 +32988,7 @@ interface TcDerivativeTradeHistory {
32951
32988
  executionPrice: string;
32952
32989
  positionIsLong: boolean;
32953
32990
  executionMargin: string;
32991
+ isPositionClosed: boolean;
32954
32992
  positionOpenedAt: number;
32955
32993
  executionQuantity: string;
32956
32994
  positionEntryPrice: string;
@@ -33066,7 +33104,7 @@ interface ChronosLeaderboardResponse {
33066
33104
  data: ChronosLeaderboard;
33067
33105
  }
33068
33106
  //#endregion
33069
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
33107
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_portfolio_rpc_pb.d.ts
33070
33108
  /**
33071
33109
  * @generated from protobuf message injective_portfolio_rpc.AccountPortfolioResponse
33072
33110
  */
@@ -33685,8 +33723,10 @@ declare class IndexerGrpcRFQApi extends BaseIndexerGrpcConsumer {
33685
33723
  }): Promise<SettlementsResponse>;
33686
33724
  createConditionalOrder({
33687
33725
  order,
33726
+ signMode,
33688
33727
  signature
33689
33728
  }: {
33729
+ signMode: string;
33690
33730
  signature: string;
33691
33731
  order: {
33692
33732
  cid?: string;
@@ -33981,7 +34021,7 @@ declare class IndexerGrpcMitoApi extends BaseIndexerGrpcConsumer {
33981
34021
  }>;
33982
34022
  }
33983
34023
  //#endregion
33984
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
34024
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_meta_rpc_pb.d.ts
33985
34025
  /**
33986
34026
  * @generated from protobuf message injective_meta_rpc.PingResponse
33987
34027
  */
@@ -34241,7 +34281,7 @@ declare class IndexerGrpcOracleApi extends BaseIndexerGrpcConsumer {
34241
34281
  }): Promise<PriceResponse>;
34242
34282
  }
34243
34283
  //#endregion
34244
- //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.16/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
34284
+ //#region ../../node_modules/.pnpm/@injectivelabs+indexer-proto-ts-v2@1.18.17/node_modules/@injectivelabs/indexer-proto-ts-v2/generated/injective_exchange_rpc_pb.d.ts
34245
34285
  /**
34246
34286
  * @generated from protobuf message injective_exchange_rpc.PrepareTxResponse
34247
34287
  */
@@ -35371,6 +35411,7 @@ declare class IndexerGrpcTcDerivativesApi extends BaseIndexerGrpcConsumer {
35371
35411
  fetchTradesHistory(params?: {
35372
35412
  token?: string;
35373
35413
  sortBy?: string;
35414
+ withPnl?: boolean;
35374
35415
  endTime?: number;
35375
35416
  perPage?: number;
35376
35417
  marketId?: string;
@@ -17,7 +17,7 @@ require('./BaseRestConsumer-uSzCOit7.cjs');
17
17
  const require_ExecArgNeptuneWithdraw = require('./ExecArgNeptuneWithdraw-DJWhAi2w.cjs');
18
18
  const require_AbacusGrpcApi = require('./AbacusGrpcApi-U-0XgIsS.cjs');
19
19
  const require_IndexerGrpcWeb3GwApi = require('./IndexerGrpcWeb3GwApi-BDH3Pyr6.cjs');
20
- const require_StreamManagerV2 = require('./StreamManagerV2-J45IvgwP.cjs');
20
+ const require_StreamManagerV2 = require('./StreamManagerV2-Bf-5K1vI.cjs');
21
21
  const require_types = require('./types-Cn54Lzf-.cjs');
22
22
  const require_TcAbacusGrpcApi = require('./TcAbacusGrpcApi-D81-wnP0.cjs');
23
23
  const require_tx = require('./tx-D7F4nbJj.cjs');