@injectivelabs/sdk-ts 1.20.31 → 1.20.33

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.
Files changed (43) hide show
  1. package/dist/cjs/{IndexerGrpcWeb3GwApi-B0NB3Clo.cjs → IndexerGrpcWeb3GwApi-VEchf_hB.cjs} +15 -0
  2. package/dist/cjs/{SocialTradingGrpcApi-CiT0EoLU.cjs → SocialTradingGrpcApi-D4VP25kb.cjs} +25 -3
  3. package/dist/cjs/{StreamManagerV2-3BcgVpl3.cjs → StreamManagerV2-Bq9P6V0s.cjs} +1 -1
  4. package/dist/cjs/client/chain.d.cts +2 -2
  5. package/dist/cjs/client/indexer.cjs +2 -2
  6. package/dist/cjs/client/indexer.d.cts +2 -2
  7. package/dist/cjs/client/platformServices.cjs +1 -1
  8. package/dist/cjs/client/platformServices.d.cts +2 -2
  9. package/dist/cjs/core/accounts.d.cts +2 -2
  10. package/dist/cjs/core/modules.cjs +2 -2
  11. package/dist/cjs/core/modules.d.cts +2 -2
  12. package/dist/cjs/core/tx.cjs +2 -2
  13. package/dist/cjs/core/tx.d.cts +2 -2
  14. package/dist/cjs/cosmjs.cjs +2 -2
  15. package/dist/cjs/exports.cjs +2 -2
  16. package/dist/cjs/{index-Cf3narUx.d.cts → index-CqL8tEwj.d.cts} +34 -2
  17. package/dist/cjs/{index-o1rahmwv.d.cts → index-F9ARLsW8.d.cts} +332 -20
  18. package/dist/cjs/index.cjs +4 -4
  19. package/dist/cjs/index.d.cts +3 -3
  20. package/dist/cjs/{tx-D7mGFmK_.cjs → tx-BS1bJRvK.cjs} +1 -1
  21. package/dist/cjs/utils.d.cts +2 -2
  22. package/dist/esm/{IndexerGrpcWeb3GwApi-BzVMyGlG.js → IndexerGrpcWeb3GwApi-C7LLie_g.js} +15 -0
  23. package/dist/esm/{SocialTradingGrpcApi-BuYKOLta.js → SocialTradingGrpcApi-B6GPo0bs.js} +25 -3
  24. package/dist/esm/{StreamManagerV2-CdI4fJG6.js → StreamManagerV2-BDE-93GO.js} +1 -1
  25. package/dist/esm/client/chain.d.ts +2 -2
  26. package/dist/esm/client/indexer.d.ts +2 -2
  27. package/dist/esm/client/indexer.js +2 -2
  28. package/dist/esm/client/platformServices.d.ts +2 -2
  29. package/dist/esm/client/platformServices.js +1 -1
  30. package/dist/esm/core/accounts.d.ts +2 -2
  31. package/dist/esm/core/modules.d.ts +2 -2
  32. package/dist/esm/core/modules.js +2 -2
  33. package/dist/esm/core/tx.d.ts +2 -2
  34. package/dist/esm/core/tx.js +2 -2
  35. package/dist/esm/cosmjs.js +2 -2
  36. package/dist/esm/exports.js +2 -2
  37. package/dist/esm/{index-AjiuRw6d.d.ts → index-CVozxeeD.d.ts} +34 -2
  38. package/dist/esm/{index-ULBL1VE9.d.ts → index-Dg3F9Nqn.d.ts} +332 -20
  39. package/dist/esm/index.d.ts +3 -3
  40. package/dist/esm/index.js +4 -4
  41. package/dist/esm/{tx-C84JAU3p.js → tx-7vGzWhsj.js} +1 -1
  42. package/dist/esm/utils.d.ts +2 -2
  43. package/package.json +7 -7
@@ -229,6 +229,21 @@ var IndexerGrpcWeb3GwApi = class extends IndexerGrpcTransactionApi {
229
229
  request.granteeAddress = granteeAddress;
230
230
  return await this.executeGrpcCall(request, this.client.prepareFeeGrant.bind(this.client));
231
231
  }
232
+ async prepareTxPrerequisites({ schemaVersion = "1", chainId, address, timeoutInBlocks, requestFeeGrant, knownRevision, rejectedFeeGrant }) {
233
+ const request = __injectivelabs_indexer_proto_ts_v2_generated_injective_exchange_rpc_pb.PrepareTxPrerequisitesRequest.create();
234
+ request.schemaVersion = schemaVersion;
235
+ request.address = address;
236
+ if (chainId) request.chainId = chainId;
237
+ if (timeoutInBlocks !== void 0) request.timeoutInBlocks = BigInt(timeoutInBlocks);
238
+ if (requestFeeGrant !== void 0) request.requestFeeGrant = requestFeeGrant;
239
+ if (knownRevision) request.knownRevision = knownRevision;
240
+ if (rejectedFeeGrant) request.rejectedFeeGrant = __injectivelabs_indexer_proto_ts_v2_generated_injective_exchange_rpc_pb.TxPrerequisitesRejectedFeeGrant.create({
241
+ revision: rejectedFeeGrant.revision,
242
+ chainCode: rejectedFeeGrant.chainCode,
243
+ transactionHash: rejectedFeeGrant.transactionHash
244
+ });
245
+ return await this.executeGrpcCall(request, this.client.prepareTxPrerequisites.bind(this.client));
246
+ }
232
247
  async prepareEip712Request({ address, chainId, message, memo, sequence, accountNumber, estimateGas = false, gasLimit = __injectivelabs_utils.DEFAULT_GAS_LIMIT, feeDenom = __injectivelabs_utils.DEFAULT_BRIDGE_FEE_DENOM, feePrice = __injectivelabs_utils.DEFAULT_BRIDGE_FEE_PRICE, timeoutHeight, eip712Version = "v1" }) {
233
248
  const txFeeAmount = __injectivelabs_core_proto_ts_v2_generated_cosmos_base_v1beta1_coin_pb.Coin.create({
234
249
  denom: feeDenom,
@@ -30,6 +30,7 @@ var PlatformServicesGrpcPositionsTransformer = class PlatformServicesGrpcPositio
30
30
  initialMargin: position.initialMargin,
31
31
  avgEntryPrice: position.avgEntryPrice,
32
32
  accountAddress: position.accountAddress,
33
+ exitPrice: position.exitPrice,
33
34
  totalTrades: position.totalTrades.toString(),
34
35
  openedHeight: position.openedHeight.toString(),
35
36
  closedHeight: (_position$closedHeigh = position.closedHeight) === null || _position$closedHeigh === void 0 ? void 0 : _position$closedHeigh.toString(),
@@ -70,13 +71,15 @@ var PlatformServicesGrpcPositionsTransformer = class PlatformServicesGrpcPositio
70
71
  leverage: stats.leverage,
71
72
  rank: (_stats$rank = stats.rank) === null || _stats$rank === void 0 ? void 0 : _stats$rank.toString(),
72
73
  wins: stats.wins.toString(),
74
+ totalVolume: stats.totalVolume,
73
75
  maxDrawdown: stats.maxDrawdown,
74
76
  equityCurve: stats.equityCurve,
75
77
  losses: stats.losses.toString(),
76
78
  pnlPercentage: stats.pnlPercentage,
77
79
  accountAddress: stats.accountAddress,
78
80
  tradeCount: stats.tradeCount.toString(),
79
- closedPositions: stats.closedPositions.toString()
81
+ closedPositions: stats.closedPositions.toString(),
82
+ avgHoldDurationInSeconds: stats.avgHoldDurationInSeconds.toString()
80
83
  };
81
84
  }
82
85
  static grpcGetAccountPositionStatsToAccountPositionStats(response) {
@@ -88,15 +91,23 @@ var PlatformServicesGrpcPositionsTransformer = class PlatformServicesGrpcPositio
88
91
  leverage: response.leverage,
89
92
  rank: (_response$rank = response.rank) === null || _response$rank === void 0 ? void 0 : _response$rank.toString(),
90
93
  wins: response.wins.toString(),
94
+ totalVolume: response.totalVolume,
91
95
  maxDrawdown: response.maxDrawdown,
92
96
  equityCurve: response.equityCurve,
93
97
  losses: response.losses.toString(),
94
98
  pnlPercentage: response.pnlPercentage,
95
99
  accountAddress: response.accountAddress,
96
100
  tradeCount: response.tradeCount.toString(),
97
- closedPositions: response.closedPositions.toString()
101
+ closedPositions: response.closedPositions.toString(),
102
+ avgHoldDurationInSeconds: response.avgHoldDurationInSeconds.toString()
98
103
  };
99
104
  }
105
+ static grpcListAccountTagsToListAccountTags(response) {
106
+ return { tags: response.tags };
107
+ }
108
+ static grpcGetAccountCountToGetAccountCount(response) {
109
+ return { totalAccounts: response.totalAccounts.toString() };
110
+ }
100
111
  static grpcDailyPNLToDailyPNL(dailyPnl) {
101
112
  return {
102
113
  date: dailyPnl.date,
@@ -168,11 +179,22 @@ var SocialTradingGrpcApi = class extends require_BaseGrpcConsumer.BaseGrpcConsum
168
179
  const response = await this.executeGrpcCall(request, this.client.getAccountDailyPNL.bind(this.client));
169
180
  return PlatformServicesGrpcPositionsTransformer.grpcGetAccountDailyPNLToGetAccountDailyPNL(response);
170
181
  }
182
+ async fetchAccountTags() {
183
+ const request = __injectivelabs_platform_services_proto_ts_v2_generated_goagen_api_positions_service_pb.ListAccountTagsRequest.create();
184
+ const response = await this.executeGrpcCall(request, this.client.listAccountTags.bind(this.client));
185
+ return PlatformServicesGrpcPositionsTransformer.grpcListAccountTagsToListAccountTags(response);
186
+ }
187
+ async fetchAccountCount() {
188
+ const request = __injectivelabs_platform_services_proto_ts_v2_generated_goagen_api_positions_service_pb.GetAccountCountRequest.create();
189
+ const response = await this.executeGrpcCall(request, this.client.getAccountCount.bind(this.client));
190
+ return PlatformServicesGrpcPositionsTransformer.grpcGetAccountCountToGetAccountCount(response);
191
+ }
171
192
  async fetchAccountPositionStatsList(params) {
172
- const { to, from, window, sortBy, pageSize, nextToken, sortDirection, accountAddress = [] } = params || {};
193
+ const { to, from, tag, window, sortBy, pageSize, nextToken, sortDirection, accountAddress = [] } = params || {};
173
194
  const request = __injectivelabs_platform_services_proto_ts_v2_generated_goagen_api_positions_service_pb.ListAccountPositionStatsRequest.create({
174
195
  to,
175
196
  from,
197
+ tag,
176
198
  window,
177
199
  sortBy,
178
200
  pageSize,
@@ -7,7 +7,7 @@ const require_stream = require('./stream-NLunNFnw.cjs');
7
7
  const require_BaseGrpcConsumer = require('./BaseGrpcConsumer-Ppsh5NLZ.cjs');
8
8
  const require_BaseIndexerGrpcConsumer = require('./BaseIndexerGrpcConsumer-BYur8R3D.cjs');
9
9
  const require_BaseRestConsumer = require('./BaseRestConsumer-BcHgNcNh.cjs');
10
- const require_IndexerGrpcWeb3GwApi = require('./IndexerGrpcWeb3GwApi-B0NB3Clo.cjs');
10
+ const require_IndexerGrpcWeb3GwApi = require('./IndexerGrpcWeb3GwApi-VEchf_hB.cjs');
11
11
  let __injectivelabs_utils = require("@injectivelabs/utils");
12
12
  let __injectivelabs_exceptions = require("@injectivelabs/exceptions");
13
13
  let __injectivelabs_indexer_proto_ts_v2_generated_injective_rfq_rpc_pb = require("@injectivelabs/indexer-proto-ts-v2/generated/injective_rfq_rpc_pb");
@@ -1,7 +1,7 @@
1
1
  import "../tx_pb-BzYfNmn2.cjs";
2
2
  import { tt as OracleType } from "../index-B674D7pD.cjs";
3
3
  import "../light-B-3BDUJ7.cjs";
4
- import { $_ as ChainPosition, $g as GrpcParams, $h as DenomOwnersResponse, $v as GrpcValidatorCommissionRates, A as ChainGrpcAuctionApi, A_ as GrpcSupply, Ag as GrpcPermissionsNamespace, Av as GrpcTradeRewardCampaign, Ay as GrpcProposalDeposit, B as ChainGrpcAuthApi, B_ as EvmBlobScheduleConfig, Bg as PermissionPolicyStatus, Bh as BlockLatestRestResponse, Bv as BondStatus, By as VoteOptionMap, C as ChainGrpcInsuranceFundApi, C_ as InsuranceFund, Cg as GrpcPermissionNamespace, Cv as GrpcOrderInfo, Cy as TokenInfo, D as ChainGrpcTendermintApi, D_ as MinModuleParams, Dg as GrpcPermissionRoleActors, Dv as GrpcSpotMarket, Dy as GrpcGovernanceTallyParams, E as ChainGrpcPermissionsApi, E_ as GrpcMintParams, Eg as GrpcPermissionRole, Ev as GrpcPointsMultiplier, Ey as GrpcGovernanceDepositParams, F as ChainGrpcPeggyApi, F_ as AuthBaseAccount, Fg as PermissionAddressVoucher, Fv as OrderTypeMap, Fy as ProposalStatus, G_ as GrpcEvmBlobScheduleConfig, Gg as PermissionVoucher, Gh as TokenFactoryModuleState, Gv as GrpcReDelegation, H as ChainGrpcIbcApi, H_ as EvmLog, Hg as PermissionRoleActors, Hh as AuthorityMetadata, Hv as GrpcDelegation, I as ChainGrpcAuthZApi, I_ as AuthModuleParams, Ig as PermissionGenesisState, Iv as PointsMultiplier, Iy as ProposalStatusMap, J_ as GrpcEvmParams, Jg as OracleModuleParams, Jh as GrpcDelegationDelegatorReward, Jv as GrpcStakingParams, K_ as GrpcEvmChainConfig, Kg as PermissionsModuleParams, Kh as DistributionModuleParams, Kv as GrpcReDelegationEntryResponse, L as ChainGrpcWasmApi, L_ as EthAccount, Lg as PermissionNamespace, Lv as TradeRewardCampaign, Ly as TallyResult, M as ChainGrpcOracleApi, M_ as SendEnabled, Mg as PermissionActionMap, Mv as GrpcTradingRewardCampaignInfo, My as GrpcVote, N as ChainGrpcErc20Api, N_ as TotalSupply, Ng as PermissionActorRoles, Nv as IsOptedOutOfRewards, Ny as Proposal, O as ChainGrpcExchangeApi, O_ as BankModuleParams, Og as GrpcPermissionRoleIDs, Ov as GrpcSpotMarketOrder, Oy as GrpcGovernanceVotingParams, P as ChainGrpcWasmXApi, P_ as Account, Pg as PermissionAddressRoles, Pv as OrderType, Py as ProposalDeposit, Q_ as ChainDerivativePosition, Qg as TxFeesModuleStateParams, Qh as DenomBalance, Qv as GrpcValidatorCommission, R as ChainGrpcMintApi, R_ as PubKey, Rg as PermissionParams, Rh as ChainModule, Rv as TradingRewardCampaignBoostInfo, Ry as Vote, S as ChainRestBankApi, S_ as GrpcRedemptionSchedule, Sg as GrpcPermissionAddressVoucher, Sv as GrpcMarketStatusMap, Sy as MarketingInfo, T as ChainGrpcDistributionApi, T_ as OracleTypeMap, Tg as GrpcPermissionPolicyStatusManagerCapability, Tv as GrpcOrderTypeMap, Ty as GovModuleStateParams, U as ChainGrpcGovApi, U_ as EvmParams, Ug as PermissionRoleIDs, Uh as FactoryDenomWithMetadata, Uv as GrpcDelegationResponse, V as ChainGrpcEvmApi, V_ as EvmChainConfig, Vg as PermissionRole, Vh as NodeInfoRestResponse, Vv as Delegation, Vy as WeightedVoteOption, W_ as GrpcEvmBlobConfig, Wg as PermissionRoleManager, Wh as TokenFactoryModuleParams, Wv as GrpcPool, X_ as ChainDenomDecimal, Xg as GrpcTxFeesParams, Xh as ValidatorRewards, Xv as GrpcUnbondingDelegationEntry, Y_ as CampaignRewardPool, Yg as GrpcTxFeesEipBaseFee, Yh as GrpcDistributionParams, Yv as GrpcUnbondingDelegation, Z_ as ChainDenomMinNotional, Zg as TxFeesEipBaseFee, Zh as BalancesResponse, Zv as GrpcValidator, _ as ChainGrpcEvmTransformer, __ as GrantAuthorization, _g as GrpcAuctionEventAuctionStart, _v as GrpcFeeDiscountAccountInfo, _y as GoogleProtoBufAny, a as ChainGrpcExchangeTransformer, a_ as BatchCancelDerivativeOrdersAuthz, ag as AuctionCurrentBasket, av as FeeDiscountTierInfo, ay as Validator, b as ChainRestWasmApi, b_ as GrpcInsuranceFund, bg as GrpcAuctionParams, bv as GrpcFeeDiscountTierTTL, by as GrpcContractCodeHistoryEntry, c as ChainGrpcCommonTransformer, c_ as BatchCreateSpotLimitOrdersAuthz, cg as AuctionEventBid, cv as GrpcChainDerivativeMarket, cy as AbsoluteTxPosition, d as ChainGrpcPeggyTransformer, d_ as CreateDerivativeLimitOrderAuthz, dg as AuctionModuleState, dv as GrpcChainFullSpotMarket, dy as ContractAccountsBalanceWithPagination, e_ as GrpcTokenPair, eg as AccountResponse, ev as DepositProposalParams, ey as GrpcValidatorDescription, f as ChainGrpcAuthZTransformer, f_ as CreateDerivativeMarketOrderAuthz, fg as AuctionModuleStateParams, fv as GrpcChainPosition, fy as ContractCodeHistoryEntry, g as ChainGrpcAuthTransformer, g_ as Grant, gg as GrpcAuctionEventAuctionResult, gv as GrpcExchangeParams, gy as ContractStateWithPagination, h as ChainGrpcBankTransformer, h_ as GenericAuthorization, hg as GrpcAuctionBid, hv as GrpcDenomMinNotional, hy as ContractInfo, i as ChainGrpcPermissionsTransformer, i_ as PeggyModuleParams, ig as AuctionBid, iv as FeeDiscountSchedule, iy as UnBondingDelegation, j as ChainGrpcTxFeesApi, j_ as Metadata, jg as GrpcPermissionsParams, jv as GrpcTradingRewardCampaignBoostInfo, jy as GrpcTallyResult, k as ChainGrpcStakingApi, k_ as GrpcBankParams, kg as GrpcPermissionRoleManager, kv as GrpcSpotOrder, ky as GrpcProposal, l as ChainGrpcTxFeesTransformer, l_ as CancelDerivativeOrderAuthz, lg as AuctionLastAuctionResult, lv as GrpcChainDerivativePosition, ly as CodeInfoResponse, m as ChainGrpcMintTransformer, m_ as CreateSpotMarketOrderAuthz, mg as AuctionParams, mv as GrpcDenomDecimals, my as ContractCodeHistoryOperationTypeMap, n as ChainGrpcTokenFactoryTransformer, n_ as TokenPair, ng as BaseAccountRestResponse, nv as ExchangeParams, ny as ReDelegation, o as ChainGrpcStakingTransformer, o_ as BatchCancelSpotOrdersAuthz, og as AuctionEventAuctionResult, ov as FeeDiscountTierTTL, oy as ValidatorCommission, p as ChainGrpcWasmTransformer, p_ as CreateSpotLimitOrderAuthz, pg as AuctionModuleStateResponse, pv as GrpcChainSpotMarket, py as ContractCodeHistoryOperationType, q_ as GrpcEvmLog, qg as GrpcOracleParams, qh as GrpcDecCoin, qv as GrpcReDelegationResponse, r as ChainGrpcDistributionTransformer, r_ as GrpcPeggyParams, rg as CosmosAccountRestResponse, rv as FeeDiscountAccountInfo, ry as StakingModuleParams, s as ChainGrpcAuctionTransformer, s_ as BatchCreateDerivativeLimitOrdersAuthz, sg as AuctionEventAuctionStart, sv as GrpcCampaignRewardPool, sy as ValidatorDescription, t as ChainGrpcInsuranceFundTransformer, t_ as Params, tg as AccountsResponse, tv as ExchangeModuleParams, ty as Pool, u as ChainGrpcErc20Transformer, u_ as CancelSpotOrderAuthz, ug as AuctionModuleParams, uv as GrpcChainFullDerivativeMarket, uy as ContractAccountBalance, v as ChainGrpcGovTransformer, v_ as GrantAuthorizationWithDecodedAuthorization, vg as GrpcAuctionEventBid, vv as GrpcFeeDiscountSchedule, vy as GrpcAbsoluteTxPosition, w as ChainGrpcTokenFactoryApi, w_ as InsuranceModuleParams, wg as GrpcPermissionPolicyStatus, wv as GrpcOrderType, wy as grpcContractInfo, x as ChainRestAuthApi, x_ as GrpcInsuranceParams, xg as GrpcPermissionActorRoles, xv as GrpcMarketStatus, xy as GrpcContractInfo, y as ChainRestTendermintApi, y_ as GrantWithDecodedAuthorization, yg as GrpcAuctionLastAuctionResult, yv as GrpcFeeDiscountTierInfo, yy as GrpcCodeInfoResponse, z as ChainGrpcBankApi, z_ as EvmBlobConfig, zg as PermissionPolicyManagerCapability, zh as RestApiResponse, zv as TradingRewardCampaignInfo, zy as VoteOption } from "../index-o1rahmwv.cjs";
4
+ import { $_ as ChainPosition, $g as GrpcParams, $h as DenomOwnersResponse, $v as GrpcValidatorCommissionRates, A as ChainGrpcAuctionApi, A_ as GrpcSupply, Ag as GrpcPermissionsNamespace, Av as GrpcTradeRewardCampaign, Ay as GrpcProposalDeposit, B as ChainGrpcAuthApi, B_ as EvmBlobScheduleConfig, Bg as PermissionPolicyStatus, Bh as BlockLatestRestResponse, Bv as BondStatus, By as VoteOptionMap, C as ChainGrpcInsuranceFundApi, C_ as InsuranceFund, Cg as GrpcPermissionNamespace, Cv as GrpcOrderInfo, Cy as TokenInfo, D as ChainGrpcTendermintApi, D_ as MinModuleParams, Dg as GrpcPermissionRoleActors, Dv as GrpcSpotMarket, Dy as GrpcGovernanceTallyParams, E as ChainGrpcPermissionsApi, E_ as GrpcMintParams, Eg as GrpcPermissionRole, Ev as GrpcPointsMultiplier, Ey as GrpcGovernanceDepositParams, F as ChainGrpcPeggyApi, F_ as AuthBaseAccount, Fg as PermissionAddressVoucher, Fv as OrderTypeMap, Fy as ProposalStatus, G_ as GrpcEvmBlobScheduleConfig, Gg as PermissionVoucher, Gh as TokenFactoryModuleState, Gv as GrpcReDelegation, H as ChainGrpcIbcApi, H_ as EvmLog, Hg as PermissionRoleActors, Hh as AuthorityMetadata, Hv as GrpcDelegation, I as ChainGrpcAuthZApi, I_ as AuthModuleParams, Ig as PermissionGenesisState, Iv as PointsMultiplier, Iy as ProposalStatusMap, J_ as GrpcEvmParams, Jg as OracleModuleParams, Jh as GrpcDelegationDelegatorReward, Jv as GrpcStakingParams, K_ as GrpcEvmChainConfig, Kg as PermissionsModuleParams, Kh as DistributionModuleParams, Kv as GrpcReDelegationEntryResponse, L as ChainGrpcWasmApi, L_ as EthAccount, Lg as PermissionNamespace, Lv as TradeRewardCampaign, Ly as TallyResult, M as ChainGrpcOracleApi, M_ as SendEnabled, Mg as PermissionActionMap, Mv as GrpcTradingRewardCampaignInfo, My as GrpcVote, N as ChainGrpcErc20Api, N_ as TotalSupply, Ng as PermissionActorRoles, Nv as IsOptedOutOfRewards, Ny as Proposal, O as ChainGrpcExchangeApi, O_ as BankModuleParams, Og as GrpcPermissionRoleIDs, Ov as GrpcSpotMarketOrder, Oy as GrpcGovernanceVotingParams, P as ChainGrpcWasmXApi, P_ as Account, Pg as PermissionAddressRoles, Pv as OrderType, Py as ProposalDeposit, Q_ as ChainDerivativePosition, Qg as TxFeesModuleStateParams, Qh as DenomBalance, Qv as GrpcValidatorCommission, R as ChainGrpcMintApi, R_ as PubKey, Rg as PermissionParams, Rh as ChainModule, Rv as TradingRewardCampaignBoostInfo, Ry as Vote, S as ChainRestBankApi, S_ as GrpcRedemptionSchedule, Sg as GrpcPermissionAddressVoucher, Sv as GrpcMarketStatusMap, Sy as MarketingInfo, T as ChainGrpcDistributionApi, T_ as OracleTypeMap, Tg as GrpcPermissionPolicyStatusManagerCapability, Tv as GrpcOrderTypeMap, Ty as GovModuleStateParams, U as ChainGrpcGovApi, U_ as EvmParams, Ug as PermissionRoleIDs, Uh as FactoryDenomWithMetadata, Uv as GrpcDelegationResponse, V as ChainGrpcEvmApi, V_ as EvmChainConfig, Vg as PermissionRole, Vh as NodeInfoRestResponse, Vv as Delegation, Vy as WeightedVoteOption, W_ as GrpcEvmBlobConfig, Wg as PermissionRoleManager, Wh as TokenFactoryModuleParams, Wv as GrpcPool, X_ as ChainDenomDecimal, Xg as GrpcTxFeesParams, Xh as ValidatorRewards, Xv as GrpcUnbondingDelegationEntry, Y_ as CampaignRewardPool, Yg as GrpcTxFeesEipBaseFee, Yh as GrpcDistributionParams, Yv as GrpcUnbondingDelegation, Z_ as ChainDenomMinNotional, Zg as TxFeesEipBaseFee, Zh as BalancesResponse, Zv as GrpcValidator, _ as ChainGrpcEvmTransformer, __ as GrantAuthorization, _g as GrpcAuctionEventAuctionStart, _v as GrpcFeeDiscountAccountInfo, _y as GoogleProtoBufAny, a as ChainGrpcExchangeTransformer, a_ as BatchCancelDerivativeOrdersAuthz, ag as AuctionCurrentBasket, av as FeeDiscountTierInfo, ay as Validator, b as ChainRestWasmApi, b_ as GrpcInsuranceFund, bg as GrpcAuctionParams, bv as GrpcFeeDiscountTierTTL, by as GrpcContractCodeHistoryEntry, c as ChainGrpcCommonTransformer, c_ as BatchCreateSpotLimitOrdersAuthz, cg as AuctionEventBid, cv as GrpcChainDerivativeMarket, cy as AbsoluteTxPosition, d as ChainGrpcPeggyTransformer, d_ as CreateDerivativeLimitOrderAuthz, dg as AuctionModuleState, dv as GrpcChainFullSpotMarket, dy as ContractAccountsBalanceWithPagination, e_ as GrpcTokenPair, eg as AccountResponse, ev as DepositProposalParams, ey as GrpcValidatorDescription, f as ChainGrpcAuthZTransformer, f_ as CreateDerivativeMarketOrderAuthz, fg as AuctionModuleStateParams, fv as GrpcChainPosition, fy as ContractCodeHistoryEntry, g as ChainGrpcAuthTransformer, g_ as Grant, gg as GrpcAuctionEventAuctionResult, gv as GrpcExchangeParams, gy as ContractStateWithPagination, h as ChainGrpcBankTransformer, h_ as GenericAuthorization, hg as GrpcAuctionBid, hv as GrpcDenomMinNotional, hy as ContractInfo, i as ChainGrpcPermissionsTransformer, i_ as PeggyModuleParams, ig as AuctionBid, iv as FeeDiscountSchedule, iy as UnBondingDelegation, j as ChainGrpcTxFeesApi, j_ as Metadata, jg as GrpcPermissionsParams, jv as GrpcTradingRewardCampaignBoostInfo, jy as GrpcTallyResult, k as ChainGrpcStakingApi, k_ as GrpcBankParams, kg as GrpcPermissionRoleManager, kv as GrpcSpotOrder, ky as GrpcProposal, l as ChainGrpcTxFeesTransformer, l_ as CancelDerivativeOrderAuthz, lg as AuctionLastAuctionResult, lv as GrpcChainDerivativePosition, ly as CodeInfoResponse, m as ChainGrpcMintTransformer, m_ as CreateSpotMarketOrderAuthz, mg as AuctionParams, mv as GrpcDenomDecimals, my as ContractCodeHistoryOperationTypeMap, n as ChainGrpcTokenFactoryTransformer, n_ as TokenPair, ng as BaseAccountRestResponse, nv as ExchangeParams, ny as ReDelegation, o as ChainGrpcStakingTransformer, o_ as BatchCancelSpotOrdersAuthz, og as AuctionEventAuctionResult, ov as FeeDiscountTierTTL, oy as ValidatorCommission, p as ChainGrpcWasmTransformer, p_ as CreateSpotLimitOrderAuthz, pg as AuctionModuleStateResponse, pv as GrpcChainSpotMarket, py as ContractCodeHistoryOperationType, q_ as GrpcEvmLog, qg as GrpcOracleParams, qh as GrpcDecCoin, qv as GrpcReDelegationResponse, r as ChainGrpcDistributionTransformer, r_ as GrpcPeggyParams, rg as CosmosAccountRestResponse, rv as FeeDiscountAccountInfo, ry as StakingModuleParams, s as ChainGrpcAuctionTransformer, s_ as BatchCreateDerivativeLimitOrdersAuthz, sg as AuctionEventAuctionStart, sv as GrpcCampaignRewardPool, sy as ValidatorDescription, t as ChainGrpcInsuranceFundTransformer, t_ as Params, tg as AccountsResponse, tv as ExchangeModuleParams, ty as Pool, u as ChainGrpcErc20Transformer, u_ as CancelSpotOrderAuthz, ug as AuctionModuleParams, uv as GrpcChainFullDerivativeMarket, uy as ContractAccountBalance, v as ChainGrpcGovTransformer, v_ as GrantAuthorizationWithDecodedAuthorization, vg as GrpcAuctionEventBid, vv as GrpcFeeDiscountSchedule, vy as GrpcAbsoluteTxPosition, w as ChainGrpcTokenFactoryApi, w_ as InsuranceModuleParams, wg as GrpcPermissionPolicyStatus, wv as GrpcOrderType, wy as grpcContractInfo, x as ChainRestAuthApi, x_ as GrpcInsuranceParams, xg as GrpcPermissionActorRoles, xv as GrpcMarketStatus, xy as GrpcContractInfo, y as ChainRestTendermintApi, y_ as GrantWithDecodedAuthorization, yg as GrpcAuctionLastAuctionResult, yv as GrpcFeeDiscountTierInfo, yy as GrpcCodeInfoResponse, z as ChainGrpcBankApi, z_ as EvmBlobConfig, zg as PermissionPolicyManagerCapability, zh as RestApiResponse, zv as TradingRewardCampaignInfo, zy as VoteOption } from "../index-F9ARLsW8.cjs";
5
5
  import "../BaseGrpcConsumer-BoWkMu4k.cjs";
6
6
  import "../index-DuSabiqc.cjs";
7
7
  import "../index-C9A-6Kpk.cjs";
@@ -11,6 +11,6 @@ import "../encoding-light-D-6m9tHO.cjs";
11
11
  import "../constants-DQTrjP5R.cjs";
12
12
  import "../index-CiWsZ0Bw.cjs";
13
13
  import "../index-BT6ry_uf.cjs";
14
- import "../index-Cf3narUx.cjs";
14
+ import "../index-CqL8tEwj.cjs";
15
15
  import "../index-BZDon-tA.cjs";
16
16
  export { AbsoluteTxPosition, Account, AccountResponse, AccountsResponse, AuctionBid, AuctionCurrentBasket, AuctionEventAuctionResult, AuctionEventAuctionStart, AuctionEventBid, AuctionLastAuctionResult, AuctionModuleParams, AuctionModuleState, AuctionModuleStateParams, AuctionModuleStateResponse, AuctionParams, AuthBaseAccount, AuthModuleParams, AuthorityMetadata, BalancesResponse, BankModuleParams, BaseAccountRestResponse, BatchCancelDerivativeOrdersAuthz, BatchCancelSpotOrdersAuthz, BatchCreateDerivativeLimitOrdersAuthz, BatchCreateSpotLimitOrdersAuthz, BlockLatestRestResponse, BondStatus, CampaignRewardPool, CancelDerivativeOrderAuthz, CancelSpotOrderAuthz, ChainDenomDecimal, ChainDenomMinNotional, ChainDerivativePosition, ChainGrpcAuctionApi, ChainGrpcAuctionTransformer, ChainGrpcAuthApi, ChainGrpcAuthTransformer, ChainGrpcAuthZApi, ChainGrpcAuthZTransformer, ChainGrpcBankApi, ChainGrpcBankTransformer, ChainGrpcCommonTransformer, ChainGrpcDistributionApi, ChainGrpcDistributionTransformer, ChainGrpcErc20Api, ChainGrpcErc20Transformer, ChainGrpcEvmApi, ChainGrpcEvmTransformer, ChainGrpcExchangeApi, ChainGrpcExchangeTransformer, ChainGrpcGovApi, ChainGrpcGovTransformer, ChainGrpcIbcApi, ChainGrpcInsuranceFundApi, ChainGrpcInsuranceFundTransformer, ChainGrpcMintApi, ChainGrpcMintTransformer, ChainGrpcOracleApi, ChainGrpcPeggyApi, ChainGrpcPeggyTransformer, ChainGrpcPermissionsApi, ChainGrpcPermissionsTransformer, ChainGrpcStakingApi, ChainGrpcStakingTransformer, ChainGrpcTendermintApi, ChainGrpcTokenFactoryApi, ChainGrpcTokenFactoryTransformer, ChainGrpcTxFeesApi, ChainGrpcTxFeesTransformer, ChainGrpcWasmApi, ChainGrpcWasmTransformer, ChainGrpcWasmXApi, ChainModule, ChainPosition, ChainRestAuthApi, ChainRestBankApi, ChainRestTendermintApi, ChainRestWasmApi, CodeInfoResponse, ContractAccountBalance, ContractAccountsBalanceWithPagination, ContractCodeHistoryEntry, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeMap, ContractInfo, ContractStateWithPagination, CosmosAccountRestResponse, CreateDerivativeLimitOrderAuthz, CreateDerivativeMarketOrderAuthz, CreateSpotLimitOrderAuthz, CreateSpotMarketOrderAuthz, Delegation, DenomBalance, DenomOwnersResponse, DepositProposalParams, DistributionModuleParams, EthAccount, EvmBlobConfig, EvmBlobScheduleConfig, EvmChainConfig, EvmLog, EvmParams, ExchangeModuleParams, ExchangeParams, FactoryDenomWithMetadata, FeeDiscountAccountInfo, FeeDiscountSchedule, FeeDiscountTierInfo, FeeDiscountTierTTL, GenericAuthorization, GoogleProtoBufAny, GovModuleStateParams, Grant, GrantAuthorization, GrantAuthorizationWithDecodedAuthorization, GrantWithDecodedAuthorization, GrpcAbsoluteTxPosition, GrpcAuctionBid, GrpcAuctionEventAuctionResult, GrpcAuctionEventAuctionStart, GrpcAuctionEventBid, GrpcAuctionLastAuctionResult, GrpcAuctionParams, GrpcBankParams, GrpcCampaignRewardPool, GrpcChainDerivativeMarket, GrpcChainDerivativePosition, GrpcChainFullDerivativeMarket, GrpcChainFullSpotMarket, GrpcChainPosition, GrpcChainSpotMarket, GrpcCodeInfoResponse, GrpcContractCodeHistoryEntry, GrpcContractInfo, GrpcDecCoin, GrpcDelegation, GrpcDelegationDelegatorReward, GrpcDelegationResponse, GrpcDenomDecimals, GrpcDenomMinNotional, GrpcDistributionParams, GrpcEvmBlobConfig, GrpcEvmBlobScheduleConfig, GrpcEvmChainConfig, GrpcEvmLog, GrpcEvmParams, GrpcExchangeParams, GrpcFeeDiscountAccountInfo, GrpcFeeDiscountSchedule, GrpcFeeDiscountTierInfo, GrpcFeeDiscountTierTTL, GrpcGovernanceDepositParams, GrpcGovernanceTallyParams, GrpcGovernanceVotingParams, GrpcInsuranceFund, GrpcInsuranceParams, GrpcMarketStatus, GrpcMarketStatusMap, GrpcMintParams, GrpcOracleParams, GrpcOrderInfo, GrpcOrderType, GrpcOrderTypeMap, GrpcParams, GrpcPeggyParams, GrpcPermissionActorRoles, GrpcPermissionAddressVoucher, GrpcPermissionNamespace, GrpcPermissionPolicyStatus, GrpcPermissionPolicyStatusManagerCapability, GrpcPermissionRole, GrpcPermissionRoleActors, GrpcPermissionRoleIDs, GrpcPermissionRoleManager, GrpcPermissionsNamespace, GrpcPermissionsParams, GrpcPointsMultiplier, GrpcPool, GrpcProposal, GrpcProposalDeposit, ProposalStatus as GrpcProposalStatus, ProposalStatus, GrpcReDelegation, GrpcReDelegationEntryResponse, GrpcReDelegationResponse, GrpcRedemptionSchedule, GrpcSpotMarket, GrpcSpotMarketOrder, GrpcSpotOrder, GrpcStakingParams, GrpcSupply, GrpcTallyResult, GrpcTokenPair, GrpcTradeRewardCampaign, GrpcTradingRewardCampaignBoostInfo, GrpcTradingRewardCampaignInfo, GrpcTxFeesEipBaseFee, GrpcTxFeesParams, GrpcUnbondingDelegation, GrpcUnbondingDelegationEntry, GrpcValidator, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcValidatorDescription, GrpcVote, InsuranceFund, InsuranceModuleParams, IsOptedOutOfRewards, MarketingInfo, Metadata, MinModuleParams, NodeInfoRestResponse, OracleModuleParams, OracleType, OracleTypeMap, OrderType, OrderTypeMap, Params, PeggyModuleParams, PermissionActionMap, PermissionActorRoles, PermissionAddressRoles, PermissionAddressVoucher, PermissionGenesisState, PermissionNamespace, PermissionParams, PermissionPolicyManagerCapability, PermissionPolicyStatus, PermissionRole, PermissionRoleActors, PermissionRoleIDs, PermissionRoleManager, PermissionVoucher, PermissionsModuleParams, PointsMultiplier, Pool, Proposal, ProposalDeposit, ProposalStatusMap, PubKey, ReDelegation, RestApiResponse, SendEnabled, StakingModuleParams, TallyResult, TokenFactoryModuleParams, TokenFactoryModuleState, TokenInfo, TokenPair, TotalSupply, TradeRewardCampaign, TradingRewardCampaignBoostInfo, TradingRewardCampaignInfo, TxFeesEipBaseFee, TxFeesModuleStateParams, UnBondingDelegation, Validator, ValidatorCommission, ValidatorDescription, ValidatorRewards, Vote, VoteOption, VoteOptionMap, WeightedVoteOption, grpcContractInfo };
@@ -10,8 +10,8 @@ require('../stream-NLunNFnw.cjs');
10
10
  require('../BaseGrpcConsumer-Ppsh5NLZ.cjs');
11
11
  require('../BaseIndexerGrpcConsumer-BYur8R3D.cjs');
12
12
  require('../BaseRestConsumer-BcHgNcNh.cjs');
13
- const require_IndexerGrpcWeb3GwApi = require('../IndexerGrpcWeb3GwApi-B0NB3Clo.cjs');
14
- const require_StreamManagerV2 = require('../StreamManagerV2-3BcgVpl3.cjs');
13
+ const require_IndexerGrpcWeb3GwApi = require('../IndexerGrpcWeb3GwApi-VEchf_hB.cjs');
14
+ const require_StreamManagerV2 = require('../StreamManagerV2-Bq9P6V0s.cjs');
15
15
  require('../types-BJpWW-Rx.cjs');
16
16
 
17
17
  exports.AccessType = require_IndexerGrpcWeb3GwApi.AccessType;
@@ -1,7 +1,7 @@
1
1
  import "../tx_pb-BzYfNmn2.cjs";
2
2
  import "../index-B674D7pD.cjs";
3
3
  import "../light-B-3BDUJ7.cjs";
4
- import { $ as TcDerivativeTradesStreamCallbackV2, $a as GrpcMegaVaultOperator, $c as AccessTypeCode, $i as ExplorerBlockApiResponse, $l as GrpcSubaccountDeposit, $n as IndexerSpotStreamTransformer, $o as GrpcHistoricalBalance, $r as ChronosLeaderboardResponse, $s as Oracle, $t as DerivativePositionsV2StreamCallback, $u as MitoPortfolio, Aa as GrpcPositionDelta, Ac as MakerStreamEvents, Ai as GrpcTcDerivativesOrdersHistoryResponse, Al as GrpcValidatorUptime, An as SpotOrdersStreamCallback, Ao as MegaVaultUserStats, Ar as IndexerGrpcMetaApi, As as StreamBidsResponse, At as StakingRewardByAccountStreamCallbackV2, Au as GrpcMitoTokenInfo, Ba as IndexerInsuranceFund, Bc as RFQRequestInputType, Bi as TcDerivativeTradesResponse, Bl as ValidatorSlashingEvent, Bn as IndexerGrpcDerivativeTransformer, Bo as CampaignV2, Br as ChronosMarketHistoryResponse, Bs as GrpcRFQGwPrepareRequest, Bt as QuoteStreamCallbackV2, Bu as MitoIDOClaimedCoins, Ca as GrpcDerivativePositionV2, Cc as GrpcRFQConditionalOrder, Cd as WsTransportConfig, Ci as WsPriceOracleStreamMarketsV2Response, Cl as GrpcExplorerStats, Cn as VaultHolderSubscriptionStreamCallback, Co as MegaVaultRedemptionStatus, Cr as IndexerGrpcAuctionApi, Cs as GrpcAuction, Ct as IndexerGrpcAccountStreamV2, Cu as GrpcMitoPriceSnapshot, Da as GrpcFundingRate, Dc as GrpcRFQRequest, Di as GrpcTcDerivativePosition, Dl as GrpcPeggyDepositTx, Dn as SpotOrderHistoryStreamCallback, Do as MegaVaultTargetApr, Dr as IndexerGrpcOracleApi, Ds as GrpcAuctionV2, Dt as OraclePricesByMarketsStreamCallbackV2, Du as GrpcMitoStakingStakingReward, Ea as GrpcFundingPayment, Ec as GrpcRFQQuote, Ei as GrpcTcDerivativeOrdersResponse, El as GrpcIndexerValidatorDescription, En as MarketsStreamCallback, Eo as MegaVaultSubscriptionStatus, Er as IndexerGrpcTransactionApi, Es as GrpcAuctionContract, Et as OraclePriceStreamCallbackV2, Eu as GrpcMitoStakingStakingActivity, Fa as Position, Fc as RFQMakerAuth, Fi as TcDerivativeLimitOrder, Fl as PeggyDepositTx, Fn as IndexerGrpcTcDerivativesTransformer, Fo as AllSpotMarketSummaryResponse, Fr as GrpcWebSocketTransport, Fs as GrpcRFQGwPrepareEip712AutoSignRequest, Ft as SpotOrderHistoryStreamCallbackV2, Fu as MitoDenomBalance, G as createStreamSubscriptionV2, Ga as IncentivesRound, Gc as RFQSignMode, Gi as TcPositionDelta, Gl as GridStrategyType, Gn as IndexerAccountStreamTransformer, Go as GrpcGuildMember, Gr as GrpcPositionV2, Gs as RFQGwPrepareEip712AutoSignResponseType, Gt as AccountPortfolioStreamCallback, Gu as MitoIDOSubscriptionActivity, Ha as Redemption, Hc as RFQSettlementLimitActionType, Hi as TcDerivativesPositionsResponse, Hl as ValidatorUptimeStatus, Hn as IndexerArchiverStreamTransformer, Ho as GrpcCampaignUser, Hr as AccountPortfolioV2, Hs as RFQGwPrepareAutoSignRequestType, Ht as SettlementStreamCallbackV2, Hu as MitoIDOProgress, Ia as PositionDelta, Ic as RFQMakerChallenge, Ii as TcDerivativeOrderHistory, Il as PeggyWithdrawalTx, In as IndexerGrpcInsuranceFundTransformer, Io as ChronosSpotMarketSummary, Ir as GrpcWebSocketCodec, Is as GrpcRFQGwPrepareEip712AutoSignResponse, It as SpotOrderbookUpdateStreamCallbackV2, Iu as MitoGauge, J as IndexerGrpcAccountPortfolioStreamV2, Ja as GrpcMegaVaultHistoricalPnL, Jc as RFQTakerStreamAckData, Ji as CW20BalanceExplorerApiResponse, Jl as TradingStrategy, Jn as IndexerGrpcReferralTransformer, Jo as GuildMember, Jr as PortfolioSubaccountBalanceV2, Js as RFQGwPrepareQuoteResultType, Jt as DerivativeOrderHistoryStreamCallback, Ju as MitoLeaderboardEpoch, K as StreamManagerV2, Ka as GrpcMegaVaultApr, Kc as RFQStreamErrorData, Ki as BankTransferFromExplorerApiResponse, Kl as ListTradingStrategiesResponse, Kn as IndexerRestExplorerTransformer, Ko as Guild, Kr as GrpcPositionsWithUPNL, Ks as RFQGwPrepareEip712RequestType, Kt as IndexerGrpcAccountPortfolioStream, Ku as MitoLeaderboard, La as PositionV2, Lc as RFQMakerStreamAckData, Li as TcDerivativeOrdersResponse, Ll as Signature, Ln as IndexerDerivativeStreamTransformer, Lo as ChronosSpotMarketSummaryResponse, Lr as IndexerModule, Ls as GrpcRFQGwPrepareEip712Request, Lt as SpotOrdersStreamCallbackV2, Lu as MitoGaugeStatus, Ma as PerpetualMarket, Mc as RFQConditionalOrderInput, Mi as GrpcTcFundingPayment, Ml as IndexerStreamTransaction, Mn as IndexerAccountPortfolioStreamTransformer, Mo as MegaVaultVolatilityStats, Mr as IndexerGrpcRFQApi, Ms as GrpcCosmosPubKey, Mt as VaultHolderSubscriptionStreamCallbackV2, Mu as GrpcMitoWhitelistAccount, Na as PerpetualMarketFunding, Nc as RFQConditionalOrdersResponse, Ni as GrpcTcFundingPaymentsResponse, Nl as Message, Nn as IndexerTcDerivativesStreamTransformer, No as OperationStatusLogEntry, Nr as IndexerWsMakerStream, Ns as GrpcRFQGwPrepareAutoSignRequest, Nt as VaultStreamCallbackV2, Nu as MitoChanges, Oa as GrpcPerpetualMarketFunding, Oc as GrpcRFQSettlement, Oi as GrpcTcDerivativeTradeHistory, Ol as GrpcPeggyWithdrawalTx, On as SpotOrderbookUpdateStreamCallback, Oo as MegaVaultUnrealizedPnl, Or as IndexerGrpcRfqGwApi, Os as GrpcIndexerAuctionBid, Ot as HistoricalStakingStreamCallbackV2, Ou as GrpcMitoSubaccountBalance, Pa as PerpetualMarketInfo, Pc as RFQExpiryType, Pi as GrpcTcPositionDelta, Pl as Paging, Pn as IndexerWsPriceOracleStreamTransformer, Po as AllChronosSpotMarketSummary, Pr as IndexerWsTakerStream, Ps as GrpcRFQGwPrepareAutoSignResponse, Pt as IndexerGrpcSpotStreamV2, Pu as MitoClaimReference, Q as TcDerivativePositionsStreamCallbackV2, Qa as GrpcMegaVaultOperationStatusLogEntry, Qc as AccessType, Qi as ExplorerApiResponseWithPagination, Ql as GrpcSubaccountBalanceTransfer, Qn as IndexerGrpcAccountTransformer, Qo as GrpcDenomHolders, Qr as ChronosLeaderboardEntry, Qs as GrpcOraclePriceV2, Qt as DerivativePositionsStreamCallback, Qu as MitoPagination, Ra as GrpcIndexerInsuranceFund, Rc as RFQProcessedQuoteType, Ri as TcDerivativePosition, Rl as Transaction, Rn as IndexerGrpcAccountPortfolioTransformer, Ro as Campaign, Rr as StreamStatusResponse, Rs as GrpcRFQGwPrepareEip712Response, Rt as SpotTradesStreamCallbackV2, Ru as MitoHolders, Sa as GrpcDerivativePosition, Sc as Route, Sd as WsState, Si as WsPriceOracleStreamMarketsResponse, Sl as GrpcBankMsgSendMessage, Sn as TransfersStreamCallback, So as MegaVaultRedemption, Sr as IndexerGrpcTradingApi, Ss as GrpcAccountAuctionV2, St as BalanceStreamCallbackV2, Su as GrpcMitoPagination, Ta as GrpcExpiryFuturesMarketInfo, Tc as GrpcRFQProcessedQuote, Ti as GrpcTcDerivativeOrderHistory, Tl as GrpcIBCTransferTx, Tn as IndexerGrpcSpotStream, To as MegaVaultSubscription, Tr as IndexerGrpcWeb3GwApi, Ts as GrpcAuctionCoinPrices, Tt as OracleListStreamCallbackV2, Tu as GrpcMitoStakingPool, Ua as RedemptionStatus, Uc as RFQSettlementType, Ui as TcFundingPayment, Ul as WasmCode, Un as IndexerGrpcMegaVaultTransformer, Uo as GrpcCampaignV2, Ur as GrpcAccountPortfolioV2, Us as RFQGwPrepareAutoSignResponseType, Ut as StreamManager, Uu as MitoIDOSubscriber, Va as InsuranceFundCreateParams, Vc as RFQRequestType, Vi as TcDerivativesOrdersHistoryResponse, Vl as ValidatorUptime, Vn as ExplorerStreamTransformer, Vo as GrpcCampaign, Vr as AccountPortfolioBalances, Vs as GrpcRFQGwPrepareResponse, Vt as RequestStreamCallbackV2, Vu as MitoIDOInitParams, Wa as IncentivesCampaign, Wc as RFQSettlementUnfilledActionType, Wi as TcFundingPaymentsResponse, Wl as GridStrategyStreamResponse, Wn as IndexerAuctionStreamTransformer, Wo as GrpcGuild, Wr as GrpcPortfolioSubaccountBalanceV2, Ws as RFQGwPrepareEip712AutoSignRequestType, Wt as createStreamSubscription, Wu as MitoIDOSubscription, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as GrpcMegaVaultIncentives, Xc as TakerStreamConfig, Xi as ContractTransactionExplorerApiResponse, Xl as GrpcAccountPortfolio, Xn as IndexerGrpcArchiverTransformer, Xo as AccountStats, Xr as SubaccountDepositV2, Xs as RFQGwPrepareResponseType, Xt as DerivativeOrderbookV2StreamCallback, Xu as MitoMissionLeaderboard, Y as IndexerGrpcTcDerivativesStreamV2, Ya as GrpcMegaVaultHistoricalTVL, Yc as SettlementsResponse, Yi as ContractExplorerApiResponse, Yl as AccountPortfolio, Yn as IndexerGrpcExplorerTransformer, Yo as ReferralDetails, Yr as PositionsWithUPNL, Ys as RFQGwPrepareRequestType, Yt as DerivativeOrderbookUpdateStreamCallback, Yu as MitoMission, Z as TcDerivativeOrdersStreamCallbackV2, Za as GrpcMegaVaultMaxDrawdown, Zc as TakerStreamEvents, Zi as ExplorerApiResponse, Zl as GrpcSubaccountBalance, Zn as IndexerGrpcAuctionTransformer, Zo as DenomHolders, Zr as ChronosLeaderboard, Zs as GrpcOracle, Zt as DerivativeOrdersStreamCallback, Zu as MitoMissionLeaderboardEntry, _a as FundingRate, _c as IndexerTokenMeta, _d as TransportEventListener, _i as WsPriceOracleMarketPrice, _l as ExplorerTxsV2Response, _n as OraclePriceStreamCallback, _o as MegaVaultMaxDrawdown, _r as IndexerGrpcMegaVaultApi, _s as AuctionCoin, _t as SpotAverageEntriesStreamCallbackV2, _u as GrpcMitoIDOSubscriptionActivity, aa as BatchDerivativeOrderCancelParams, ac as GrpcSpotLimitOrder, ad as MitoSubaccountBalance, ai as GrpcWsPriceOracleLatestMarketPricesV2Response, al as Contract, an as BlocksStreamCallback, ao as GrpcMegaVaultTargetApr, ar as IndexerGrpcMitoTransformer, as as GrpcVolLeaderboard, at as DerivativePositionsStreamCallbackV2, au as SubaccountTransfer, ba as GrpcDerivativeMarketInfo, bc as PriceLevel, bd as WsDisconnectReason, bi as WsPriceOracleResponseMode, bl as ExplorerValidatorUptime, bn as IndexerGrpcMitoStream, bo as MegaVaultPnl, br as IndexerGrpcCampaignApi, bs as AuctionV2, bt as BidsStreamCallbackV2, bu as GrpcMitoMission, ca as DerivativeLimitOrderParams, cc as GrpcSpotTrade, cd as MitoTransfer, ci as GrpcWsPriceOracleMarketStreamMessage, cl as CosmWasmChecksum, cn as TransactionsStreamCallback, co as GrpcMegaVaultVaultStats, cr as IndexerRestDerivativesChronosApi, cs as HistoricalVolumes, ct as IndexerGrpcDerivativesStreamV2, cu as GrpcMitoChanges, da as DerivativeOrderCancelParams, dc as SpotMarket, dd as MitoVestingConfigMap, di as GrpcWsPriceOracleStreamMarketsV2Response, dl as EventLogEvent, dn as IndexerGrpcTradingStream, do as MegaVault, dr as IndexerRestExplorerApi, ds as PnlLeaderboard, dt as WsPriceOracleMarketsV2StreamCallbackV2, du as GrpcMitoHolders, ea as ExplorerTransactionApiResponse, ec as OraclePriceV2, ed as MitoPriceSnapshot, ei as AllChronosDerivativeMarketSummary, el as BankMsgSendTransaction, en as DerivativeTradesStreamCallback, eo as GrpcMegaVaultOperatorRedemptionBucket, er as IndexerGrpcOracleTransformer, es as GrpcHistoricalRPNL, et as DerivativeMarketStreamCallbackV2, eu as GrpcSubaccountPortfolio, fa as DerivativeOrderHistory, fc as SpotOrderCancelParams, fd as MitoWhitelistAccount, fi as WsPriceOracleLatestMarketPricesParams, fl as ExplorerBlockWithTxs, fn as BidsStreamCallback, fo as MegaVaultApr, fr as IndexerGrpcInsuranceFundApi, fs as SpotAverageEntry, ft as BlocksStreamCallbackV2, fu as GrpcMitoIDO, ga as FundingPayment, gc as GrpcTokenMeta, gd as ResolvedWsTransportConfig, gi as WsPriceOracleLightMarketStreamMessage, gl as ExplorerTransactionV2, gn as IndexerGrpcOracleStream, go as MegaVaultIncentives, gr as IndexerGrpcDerivativesApi, gs as Auction, gt as IndexerGrpcArchiverStreamV2, gu as GrpcMitoIDOSubscription, ha as ExpiryFuturesMarketInfo, hc as GrpcPriceLevel, hd as IsomorphicWebSocket, hi as WsPriceOracleLatestMarketPricesV2Response, hl as ExplorerTransaction, hn as IndexerGrpcAccountStream, ho as MegaVaultHistoricalTVL, hr as IndexerGrpcAccountPortfolioApi, hs as AccountAuctionV2, ht as TransactionsStreamCallbackV2, hu as GrpcMitoIDOSubscriber, ia as BaseDerivativeMarket, ic as GrpcAtomicSwap, id as MitoStakingReward, ii as GrpcWsPriceOracleLatestMarketPricesResponse, il as CW20Message, in as WsPriceOracleMarketsV2StreamCallback, io as GrpcMegaVaultSubscription, ir as IndexerGrpcSpotTransformer, is as GrpcSpotAverageEntry, it as DerivativeOrdersStreamCallbackV2, iu as SubaccountPortfolio, ja as OpenNotionalCap, jc as RFQConditionalOrder, ji as GrpcTcDerivativesPositionsResponse, jl as IBCTransferTx, jn as SpotTradesStreamCallback, jo as MegaVaultVolatility, jr as IndexerGrpcMitoApi, js as CosmosPubKeyType, jt as TransfersStreamCallbackV2, ju as GrpcMitoVault, ka as GrpcPerpetualMarketInfo, kc as MakerStreamConfig, ki as GrpcTcDerivativeTradesResponse, kl as GrpcValidatorSlashingEvent, kn as SpotOrderbookV2StreamCallback, ko as MegaVaultUser, kr as IndexerGrpcSpotApi, ks as IndexerAuctionBid, kt as IndexerGrpcMitoStreamV2, ku as GrpcMitoSubscription, la as DerivativeMarket, lc as SpotLimitOrder, ld as MitoVault, li as GrpcWsPriceOracleMarketStreamRawPayload, ll as CosmWasmPermission, ln as IndexerGrpcArchiverStream, lo as GrpcMegaVaultVolatility, lr as IndexerRestMarketChronosApi, ls as Holder, lt as IndexerGrpcWsPriceOracleStreamV2, lu as GrpcMitoClaimReference, ma as ExpiryFuturesMarket, mc as SpotTrade, md as GrpcFrame, mi as WsPriceOracleLatestMarketPricesV2Params, ml as ExplorerStats, mn as BalanceStreamCallback, mo as MegaVaultHistoricalPnL, mr as IndexerGrpcWsPriceOracleApi, ms as AccountAuctionStatus, mt as IndexerGrpcExplorerStreamV2, mu as GrpcMitoIDOProgress, na as ValidatorUptimeFromExplorerApiResponse, nc as AtomicSwap, nd as MitoStakingActivity, ni as ChronosDerivativeMarketSummary, nl as Block, nn as IndexerGrpcWsPriceOracleStream, no as GrpcMegaVaultPnlStats, nr as IndexerGrpcRfqGwTransformer, ns as GrpcLeaderboardRow, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as SubaccountBalance, oa as BinaryOptionsMarket, oc as GrpcSpotMarketInfo, od as MitoSubscription, oi as GrpcWsPriceOracleLightMarketStreamMessage, ol as ContractTransaction, on as BlocksWithTxsStreamCallback, oo as GrpcMegaVaultUnrealizedPnl, or as IndexerGrpcRfqTransformer, os as HistoricalBalance, ot as DerivativePositionsV2StreamCallbackV2, ou as TradingReward, pa as DerivativeTrade, pc as SpotOrderHistory, pd as GrpcDecodeError, pi as WsPriceOracleLatestMarketPricesResponse, pl as ExplorerCW20BalanceWithToken, pn as IndexerGrpcAuctionStream, po as MegaVaultAprStats, pr as IndexerGrpcTcDerivativesApi, ps as VolLeaderboard, pt as BlocksWithTxsStreamCallbackV2, pu as GrpcMitoIDOClaimedCoins, q as AccountPortfolioStreamCallbackV2, qa as GrpcMegaVaultAprStats, qc as RFQStreamPingData, qi as BlockFromExplorerApiResponse, ql as MarketType, qn as IndexerOracleStreamTransformer, qo as GuildCampaignSummary, qr as GrpcSubaccountDepositV2, qs as RFQGwPrepareEip712ResponseType, qt as DerivativeMarketStreamCallback, qu as MitoLeaderboardEntry, ra as WasmCodeExplorerApiResponse, rc as BatchSpotOrderCancelParams, rd as MitoStakingPool, ri as ChronosDerivativeMarketSummaryResponse, rl as BlockWithTxs, rn as WsPriceOracleMarketsStreamCallback, ro as GrpcMegaVaultRedemption, rr as IndexerCampaignTransformer, rs as GrpcPnlLeaderboard, rt as DerivativeOrderbookV2StreamCallbackV2, ru as SubaccountDeposit, sa as DerivativeLimitOrder, sc as GrpcSpotOrderHistory, sd as MitoTokenInfo, si as GrpcWsPriceOracleMarketStreamLeg, sl as ContractTransactionWithMessages, sn as IndexerGrpcExplorerStream, so as GrpcMegaVaultUserStats, sr as IndexerRestLeaderboardChronosApi, ss as HistoricalRPNL, st as DerivativeTradesStreamCallbackV2, su as TransferType, ta as TransactionFromExplorerApiResponse, tc as OraclePriceV2Filter, td as MitoStakeToSubscription, ti as AllDerivativeMarketSummaryResponse, tl as BankTransfer, tn as IndexerGrpcDerivativesStream, to as GrpcMegaVaultPnl, tr as IndexerRfqStreamTransformer, ts as GrpcHistoricalVolumes, tt as DerivativeOrderHistoryStreamCallbackV2, tu as GrpcTradingReward, ua as DerivativeMarketWithoutBinaryOptions, uc as SpotLimitOrderParams, ud as MitoVestingConfig, ui as GrpcWsPriceOracleStreamMarketsResponse, ul as EventLog, un as SpotAverageEntriesStreamCallback, uo as GrpcMegaVaultVolatilityStats, ur as IndexerRestSpotChronosApi, us as LeaderboardRow, ut as WsPriceOracleMarketsStreamCallbackV2, uu as GrpcMitoDenomBalance, va as GrpcBinaryOptionsMarketInfo, vc as Orderbook, vd as TransportEventType, vi as WsPriceOracleMarketStreamLeg, vl as ExplorerValidator, vn as OraclePricesByMarketsStreamCallback, vo as MegaVaultOperator, vr as IndexerGrpcReferralApi, vs as AuctionCoinPrices, vt as GridStrategyStreamCallbackV2, vu as GrpcMitoLeaderboardEntry, wa as GrpcDerivativeTrade, wc as GrpcRFQExpiry, wi as GrpcTcDerivativeLimitOrder, wl as GrpcGasFee, wn as VaultStreamCallback, wo as MegaVaultStats, wr as IndexerGrpcAccountApi, ws as GrpcAuctionCoin, wt as IndexerGrpcOracleStreamV2, wu as GrpcMitoStakingGauge, xa as GrpcDerivativeOrderHistory, xc as QuantityAndFees, xd as WsReconnectConfig, xi as WsPriceOracleSlimPrices, xl as GasFee, xn as StakingRewardByAccountStreamCallback, xo as MegaVaultPnlStats, xr as IndexerGrpcExplorerApi, xs as AuctionsStats, xt as IndexerGrpcAuctionStreamV2, xu as GrpcMitoMissionLeaderboardEntry, ya as GrpcDerivativeLimitOrder, yc as OrderbookWithSequence, yd as TransportEvents, yi as WsPriceOracleMarketStreamRawPayload, yl as ExplorerValidatorDescription, yn as HistoricalStakingStreamCallback, yo as MegaVaultOperatorRedemptionBucket, yr as IndexerGrpcArchiverApi, ys as AuctionContract, yt as IndexerGrpcTradingStreamV2, yu as GrpcMitoLeaderboardEpoch, za as GrpcIndexerRedemptionSchedule, zc as RFQQuoteType, zi as TcDerivativeTradeHistory, zl as TxMessage, zn as IndexerGrpcMitoStreamTransformer, zo as CampaignUser, zr as AllChronosMarketHistory, zs as GrpcRFQGwPrepareQuoteResult, zt as IndexerGrpcRfqStreamV2, zu as MitoIDO } from "../index-o1rahmwv.cjs";
4
+ import { $ as TcDerivativeTradesStreamCallbackV2, $a as GrpcMegaVaultOperator, $c as AccessTypeCode, $i as ExplorerBlockApiResponse, $l as GrpcSubaccountDeposit, $n as IndexerSpotStreamTransformer, $o as GrpcHistoricalBalance, $r as ChronosLeaderboardResponse, $s as Oracle, $t as DerivativePositionsV2StreamCallback, $u as MitoPortfolio, Aa as GrpcPositionDelta, Ac as MakerStreamEvents, Ai as GrpcTcDerivativesOrdersHistoryResponse, Al as GrpcValidatorUptime, An as SpotOrdersStreamCallback, Ao as MegaVaultUserStats, Ar as IndexerGrpcMetaApi, As as StreamBidsResponse, At as StakingRewardByAccountStreamCallbackV2, Au as GrpcMitoTokenInfo, Ba as IndexerInsuranceFund, Bc as RFQRequestInputType, Bi as TcDerivativeTradesResponse, Bl as ValidatorSlashingEvent, Bn as IndexerGrpcDerivativeTransformer, Bo as CampaignV2, Br as ChronosMarketHistoryResponse, Bs as GrpcRFQGwPrepareRequest, Bt as QuoteStreamCallbackV2, Bu as MitoIDOClaimedCoins, Ca as GrpcDerivativePositionV2, Cc as GrpcRFQConditionalOrder, Cd as WsTransportConfig, Ci as WsPriceOracleStreamMarketsV2Response, Cl as GrpcExplorerStats, Cn as VaultHolderSubscriptionStreamCallback, Co as MegaVaultRedemptionStatus, Cr as IndexerGrpcAuctionApi, Cs as GrpcAuction, Ct as IndexerGrpcAccountStreamV2, Cu as GrpcMitoPriceSnapshot, Da as GrpcFundingRate, Dc as GrpcRFQRequest, Di as GrpcTcDerivativePosition, Dl as GrpcPeggyDepositTx, Dn as SpotOrderHistoryStreamCallback, Do as MegaVaultTargetApr, Dr as IndexerGrpcOracleApi, Ds as GrpcAuctionV2, Dt as OraclePricesByMarketsStreamCallbackV2, Du as GrpcMitoStakingStakingReward, Ea as GrpcFundingPayment, Ec as GrpcRFQQuote, Ei as GrpcTcDerivativeOrdersResponse, El as GrpcIndexerValidatorDescription, En as MarketsStreamCallback, Eo as MegaVaultSubscriptionStatus, Er as IndexerGrpcTransactionApi, Es as GrpcAuctionContract, Et as OraclePriceStreamCallbackV2, Eu as GrpcMitoStakingStakingActivity, Fa as Position, Fc as RFQMakerAuth, Fi as TcDerivativeLimitOrder, Fl as PeggyDepositTx, Fn as IndexerGrpcTcDerivativesTransformer, Fo as AllSpotMarketSummaryResponse, Fr as GrpcWebSocketTransport, Fs as GrpcRFQGwPrepareEip712AutoSignRequest, Ft as SpotOrderHistoryStreamCallbackV2, Fu as MitoDenomBalance, G as createStreamSubscriptionV2, Ga as IncentivesRound, Gc as RFQSignMode, Gi as TcPositionDelta, Gl as GridStrategyType, Gn as IndexerAccountStreamTransformer, Go as GrpcGuildMember, Gr as GrpcPositionV2, Gs as RFQGwPrepareEip712AutoSignResponseType, Gt as AccountPortfolioStreamCallback, Gu as MitoIDOSubscriptionActivity, Ha as Redemption, Hc as RFQSettlementLimitActionType, Hi as TcDerivativesPositionsResponse, Hl as ValidatorUptimeStatus, Hn as IndexerArchiverStreamTransformer, Ho as GrpcCampaignUser, Hr as AccountPortfolioV2, Hs as RFQGwPrepareAutoSignRequestType, Ht as SettlementStreamCallbackV2, Hu as MitoIDOProgress, Ia as PositionDelta, Ic as RFQMakerChallenge, Ii as TcDerivativeOrderHistory, Il as PeggyWithdrawalTx, In as IndexerGrpcInsuranceFundTransformer, Io as ChronosSpotMarketSummary, Ir as GrpcWebSocketCodec, Is as GrpcRFQGwPrepareEip712AutoSignResponse, It as SpotOrderbookUpdateStreamCallbackV2, Iu as MitoGauge, J as IndexerGrpcAccountPortfolioStreamV2, Ja as GrpcMegaVaultHistoricalPnL, Jc as RFQTakerStreamAckData, Ji as CW20BalanceExplorerApiResponse, Jl as TradingStrategy, Jn as IndexerGrpcReferralTransformer, Jo as GuildMember, Jr as PortfolioSubaccountBalanceV2, Js as RFQGwPrepareQuoteResultType, Jt as DerivativeOrderHistoryStreamCallback, Ju as MitoLeaderboardEpoch, K as StreamManagerV2, Ka as GrpcMegaVaultApr, Kc as RFQStreamErrorData, Ki as BankTransferFromExplorerApiResponse, Kl as ListTradingStrategiesResponse, Kn as IndexerRestExplorerTransformer, Ko as Guild, Kr as GrpcPositionsWithUPNL, Ks as RFQGwPrepareEip712RequestType, Kt as IndexerGrpcAccountPortfolioStream, Ku as MitoLeaderboard, La as PositionV2, Lc as RFQMakerStreamAckData, Li as TcDerivativeOrdersResponse, Ll as Signature, Ln as IndexerDerivativeStreamTransformer, Lo as ChronosSpotMarketSummaryResponse, Lr as IndexerModule, Ls as GrpcRFQGwPrepareEip712Request, Lt as SpotOrdersStreamCallbackV2, Lu as MitoGaugeStatus, Ma as PerpetualMarket, Mc as RFQConditionalOrderInput, Mi as GrpcTcFundingPayment, Ml as IndexerStreamTransaction, Mn as IndexerAccountPortfolioStreamTransformer, Mo as MegaVaultVolatilityStats, Mr as IndexerGrpcRFQApi, Ms as GrpcCosmosPubKey, Mt as VaultHolderSubscriptionStreamCallbackV2, Mu as GrpcMitoWhitelistAccount, Na as PerpetualMarketFunding, Nc as RFQConditionalOrdersResponse, Ni as GrpcTcFundingPaymentsResponse, Nl as Message, Nn as IndexerTcDerivativesStreamTransformer, No as OperationStatusLogEntry, Nr as IndexerWsMakerStream, Ns as GrpcRFQGwPrepareAutoSignRequest, Nt as VaultStreamCallbackV2, Nu as MitoChanges, Oa as GrpcPerpetualMarketFunding, Oc as GrpcRFQSettlement, Oi as GrpcTcDerivativeTradeHistory, Ol as GrpcPeggyWithdrawalTx, On as SpotOrderbookUpdateStreamCallback, Oo as MegaVaultUnrealizedPnl, Or as IndexerGrpcRfqGwApi, Os as GrpcIndexerAuctionBid, Ot as HistoricalStakingStreamCallbackV2, Ou as GrpcMitoSubaccountBalance, Pa as PerpetualMarketInfo, Pc as RFQExpiryType, Pi as GrpcTcPositionDelta, Pl as Paging, Pn as IndexerWsPriceOracleStreamTransformer, Po as AllChronosSpotMarketSummary, Pr as IndexerWsTakerStream, Ps as GrpcRFQGwPrepareAutoSignResponse, Pt as IndexerGrpcSpotStreamV2, Pu as MitoClaimReference, Q as TcDerivativePositionsStreamCallbackV2, Qa as GrpcMegaVaultOperationStatusLogEntry, Qc as AccessType, Qi as ExplorerApiResponseWithPagination, Ql as GrpcSubaccountBalanceTransfer, Qn as IndexerGrpcAccountTransformer, Qo as GrpcDenomHolders, Qr as ChronosLeaderboardEntry, Qs as GrpcOraclePriceV2, Qt as DerivativePositionsStreamCallback, Qu as MitoPagination, Ra as GrpcIndexerInsuranceFund, Rc as RFQProcessedQuoteType, Ri as TcDerivativePosition, Rl as Transaction, Rn as IndexerGrpcAccountPortfolioTransformer, Ro as Campaign, Rr as StreamStatusResponse, Rs as GrpcRFQGwPrepareEip712Response, Rt as SpotTradesStreamCallbackV2, Ru as MitoHolders, Sa as GrpcDerivativePosition, Sc as Route, Sd as WsState, Si as WsPriceOracleStreamMarketsResponse, Sl as GrpcBankMsgSendMessage, Sn as TransfersStreamCallback, So as MegaVaultRedemption, Sr as IndexerGrpcTradingApi, Ss as GrpcAccountAuctionV2, St as BalanceStreamCallbackV2, Su as GrpcMitoPagination, Ta as GrpcExpiryFuturesMarketInfo, Tc as GrpcRFQProcessedQuote, Ti as GrpcTcDerivativeOrderHistory, Tl as GrpcIBCTransferTx, Tn as IndexerGrpcSpotStream, To as MegaVaultSubscription, Tr as IndexerGrpcWeb3GwApi, Ts as GrpcAuctionCoinPrices, Tt as OracleListStreamCallbackV2, Tu as GrpcMitoStakingPool, Ua as RedemptionStatus, Uc as RFQSettlementType, Ui as TcFundingPayment, Ul as WasmCode, Un as IndexerGrpcMegaVaultTransformer, Uo as GrpcCampaignV2, Ur as GrpcAccountPortfolioV2, Us as RFQGwPrepareAutoSignResponseType, Ut as StreamManager, Uu as MitoIDOSubscriber, Va as InsuranceFundCreateParams, Vc as RFQRequestType, Vi as TcDerivativesOrdersHistoryResponse, Vl as ValidatorUptime, Vn as ExplorerStreamTransformer, Vo as GrpcCampaign, Vr as AccountPortfolioBalances, Vs as GrpcRFQGwPrepareResponse, Vt as RequestStreamCallbackV2, Vu as MitoIDOInitParams, Wa as IncentivesCampaign, Wc as RFQSettlementUnfilledActionType, Wi as TcFundingPaymentsResponse, Wl as GridStrategyStreamResponse, Wn as IndexerAuctionStreamTransformer, Wo as GrpcGuild, Wr as GrpcPortfolioSubaccountBalanceV2, Ws as RFQGwPrepareEip712AutoSignRequestType, Wt as createStreamSubscription, Wu as MitoIDOSubscription, X as TcDerivativeOrderHistoryStreamCallbackV2, Xa as GrpcMegaVaultIncentives, Xc as TakerStreamConfig, Xi as ContractTransactionExplorerApiResponse, Xl as GrpcAccountPortfolio, Xn as IndexerGrpcArchiverTransformer, Xo as AccountStats, Xr as SubaccountDepositV2, Xs as RFQGwPrepareResponseType, Xt as DerivativeOrderbookV2StreamCallback, Xu as MitoMissionLeaderboard, Y as IndexerGrpcTcDerivativesStreamV2, Ya as GrpcMegaVaultHistoricalTVL, Yc as SettlementsResponse, Yi as ContractExplorerApiResponse, Yl as AccountPortfolio, Yn as IndexerGrpcExplorerTransformer, Yo as ReferralDetails, Yr as PositionsWithUPNL, Ys as RFQGwPrepareRequestType, Yt as DerivativeOrderbookUpdateStreamCallback, Yu as MitoMission, Z as TcDerivativeOrdersStreamCallbackV2, Za as GrpcMegaVaultMaxDrawdown, Zc as TakerStreamEvents, Zi as ExplorerApiResponse, Zl as GrpcSubaccountBalance, Zn as IndexerGrpcAuctionTransformer, Zo as DenomHolders, Zr as ChronosLeaderboard, Zs as GrpcOracle, Zt as DerivativeOrdersStreamCallback, Zu as MitoMissionLeaderboardEntry, _a as FundingRate, _c as IndexerTokenMeta, _d as TransportEventListener, _i as WsPriceOracleMarketPrice, _l as ExplorerTxsV2Response, _n as OraclePriceStreamCallback, _o as MegaVaultMaxDrawdown, _r as IndexerGrpcMegaVaultApi, _s as AuctionCoin, _t as SpotAverageEntriesStreamCallbackV2, _u as GrpcMitoIDOSubscriptionActivity, aa as BatchDerivativeOrderCancelParams, ac as GrpcSpotLimitOrder, ad as MitoSubaccountBalance, ai as GrpcWsPriceOracleLatestMarketPricesV2Response, al as Contract, an as BlocksStreamCallback, ao as GrpcMegaVaultTargetApr, ar as IndexerGrpcMitoTransformer, as as GrpcVolLeaderboard, at as DerivativePositionsStreamCallbackV2, au as SubaccountTransfer, ba as GrpcDerivativeMarketInfo, bc as PriceLevel, bd as WsDisconnectReason, bi as WsPriceOracleResponseMode, bl as ExplorerValidatorUptime, bn as IndexerGrpcMitoStream, bo as MegaVaultPnl, br as IndexerGrpcCampaignApi, bs as AuctionV2, bt as BidsStreamCallbackV2, bu as GrpcMitoMission, ca as DerivativeLimitOrderParams, cc as GrpcSpotTrade, cd as MitoTransfer, ci as GrpcWsPriceOracleMarketStreamMessage, cl as CosmWasmChecksum, cn as TransactionsStreamCallback, co as GrpcMegaVaultVaultStats, cr as IndexerRestDerivativesChronosApi, cs as HistoricalVolumes, ct as IndexerGrpcDerivativesStreamV2, cu as GrpcMitoChanges, da as DerivativeOrderCancelParams, dc as SpotMarket, dd as MitoVestingConfigMap, di as GrpcWsPriceOracleStreamMarketsV2Response, dl as EventLogEvent, dn as IndexerGrpcTradingStream, do as MegaVault, dr as IndexerRestExplorerApi, ds as PnlLeaderboard, dt as WsPriceOracleMarketsV2StreamCallbackV2, du as GrpcMitoHolders, ea as ExplorerTransactionApiResponse, ec as OraclePriceV2, ed as MitoPriceSnapshot, ei as AllChronosDerivativeMarketSummary, el as BankMsgSendTransaction, en as DerivativeTradesStreamCallback, eo as GrpcMegaVaultOperatorRedemptionBucket, er as IndexerGrpcOracleTransformer, es as GrpcHistoricalRPNL, et as DerivativeMarketStreamCallbackV2, eu as GrpcSubaccountPortfolio, fa as DerivativeOrderHistory, fc as SpotOrderCancelParams, fd as MitoWhitelistAccount, fi as WsPriceOracleLatestMarketPricesParams, fl as ExplorerBlockWithTxs, fn as BidsStreamCallback, fo as MegaVaultApr, fr as IndexerGrpcInsuranceFundApi, fs as SpotAverageEntry, ft as BlocksStreamCallbackV2, fu as GrpcMitoIDO, ga as FundingPayment, gc as GrpcTokenMeta, gd as ResolvedWsTransportConfig, gi as WsPriceOracleLightMarketStreamMessage, gl as ExplorerTransactionV2, gn as IndexerGrpcOracleStream, go as MegaVaultIncentives, gr as IndexerGrpcDerivativesApi, gs as Auction, gt as IndexerGrpcArchiverStreamV2, gu as GrpcMitoIDOSubscription, ha as ExpiryFuturesMarketInfo, hc as GrpcPriceLevel, hd as IsomorphicWebSocket, hi as WsPriceOracleLatestMarketPricesV2Response, hl as ExplorerTransaction, hn as IndexerGrpcAccountStream, ho as MegaVaultHistoricalTVL, hr as IndexerGrpcAccountPortfolioApi, hs as AccountAuctionV2, ht as TransactionsStreamCallbackV2, hu as GrpcMitoIDOSubscriber, ia as BaseDerivativeMarket, ic as GrpcAtomicSwap, id as MitoStakingReward, ii as GrpcWsPriceOracleLatestMarketPricesResponse, il as CW20Message, in as WsPriceOracleMarketsV2StreamCallback, io as GrpcMegaVaultSubscription, ir as IndexerGrpcSpotTransformer, is as GrpcSpotAverageEntry, it as DerivativeOrdersStreamCallbackV2, iu as SubaccountPortfolio, ja as OpenNotionalCap, jc as RFQConditionalOrder, ji as GrpcTcDerivativesPositionsResponse, jl as IBCTransferTx, jn as SpotTradesStreamCallback, jo as MegaVaultVolatility, jr as IndexerGrpcMitoApi, js as CosmosPubKeyType, jt as TransfersStreamCallbackV2, ju as GrpcMitoVault, ka as GrpcPerpetualMarketInfo, kc as MakerStreamConfig, ki as GrpcTcDerivativeTradesResponse, kl as GrpcValidatorSlashingEvent, kn as SpotOrderbookV2StreamCallback, ko as MegaVaultUser, kr as IndexerGrpcSpotApi, ks as IndexerAuctionBid, kt as IndexerGrpcMitoStreamV2, ku as GrpcMitoSubscription, la as DerivativeMarket, lc as SpotLimitOrder, ld as MitoVault, li as GrpcWsPriceOracleMarketStreamRawPayload, ll as CosmWasmPermission, ln as IndexerGrpcArchiverStream, lo as GrpcMegaVaultVolatility, lr as IndexerRestMarketChronosApi, ls as Holder, lt as IndexerGrpcWsPriceOracleStreamV2, lu as GrpcMitoClaimReference, ma as ExpiryFuturesMarket, mc as SpotTrade, md as GrpcFrame, mi as WsPriceOracleLatestMarketPricesV2Params, ml as ExplorerStats, mn as BalanceStreamCallback, mo as MegaVaultHistoricalPnL, mr as IndexerGrpcWsPriceOracleApi, ms as AccountAuctionStatus, mt as IndexerGrpcExplorerStreamV2, mu as GrpcMitoIDOProgress, na as ValidatorUptimeFromExplorerApiResponse, nc as AtomicSwap, nd as MitoStakingActivity, ni as ChronosDerivativeMarketSummary, nl as Block, nn as IndexerGrpcWsPriceOracleStream, no as GrpcMegaVaultPnlStats, nr as IndexerGrpcRfqGwTransformer, ns as GrpcLeaderboardRow, nt as DerivativeOrderbookUpdateStreamCallbackV2, nu as SubaccountBalance, oa as BinaryOptionsMarket, oc as GrpcSpotMarketInfo, od as MitoSubscription, oi as GrpcWsPriceOracleLightMarketStreamMessage, ol as ContractTransaction, on as BlocksWithTxsStreamCallback, oo as GrpcMegaVaultUnrealizedPnl, or as IndexerGrpcRfqTransformer, os as HistoricalBalance, ot as DerivativePositionsV2StreamCallbackV2, ou as TradingReward, pa as DerivativeTrade, pc as SpotOrderHistory, pd as GrpcDecodeError, pi as WsPriceOracleLatestMarketPricesResponse, pl as ExplorerCW20BalanceWithToken, pn as IndexerGrpcAuctionStream, po as MegaVaultAprStats, pr as IndexerGrpcTcDerivativesApi, ps as VolLeaderboard, pt as BlocksWithTxsStreamCallbackV2, pu as GrpcMitoIDOClaimedCoins, q as AccountPortfolioStreamCallbackV2, qa as GrpcMegaVaultAprStats, qc as RFQStreamPingData, qi as BlockFromExplorerApiResponse, ql as MarketType, qn as IndexerOracleStreamTransformer, qo as GuildCampaignSummary, qr as GrpcSubaccountDepositV2, qs as RFQGwPrepareEip712ResponseType, qt as DerivativeMarketStreamCallback, qu as MitoLeaderboardEntry, ra as WasmCodeExplorerApiResponse, rc as BatchSpotOrderCancelParams, rd as MitoStakingPool, ri as ChronosDerivativeMarketSummaryResponse, rl as BlockWithTxs, rn as WsPriceOracleMarketsStreamCallback, ro as GrpcMegaVaultRedemption, rr as IndexerCampaignTransformer, rs as GrpcPnlLeaderboard, rt as DerivativeOrderbookV2StreamCallbackV2, ru as SubaccountDeposit, sa as DerivativeLimitOrder, sc as GrpcSpotOrderHistory, sd as MitoTokenInfo, si as GrpcWsPriceOracleMarketStreamLeg, sl as ContractTransactionWithMessages, sn as IndexerGrpcExplorerStream, so as GrpcMegaVaultUserStats, sr as IndexerRestLeaderboardChronosApi, ss as HistoricalRPNL, st as DerivativeTradesStreamCallbackV2, su as TransferType, ta as TransactionFromExplorerApiResponse, tc as OraclePriceV2Filter, td as MitoStakeToSubscription, ti as AllDerivativeMarketSummaryResponse, tl as BankTransfer, tn as IndexerGrpcDerivativesStream, to as GrpcMegaVaultPnl, tr as IndexerRfqStreamTransformer, ts as GrpcHistoricalVolumes, tt as DerivativeOrderHistoryStreamCallbackV2, tu as GrpcTradingReward, ua as DerivativeMarketWithoutBinaryOptions, uc as SpotLimitOrderParams, ud as MitoVestingConfig, ui as GrpcWsPriceOracleStreamMarketsResponse, ul as EventLog, un as SpotAverageEntriesStreamCallback, uo as GrpcMegaVaultVolatilityStats, ur as IndexerRestSpotChronosApi, us as LeaderboardRow, ut as WsPriceOracleMarketsStreamCallbackV2, uu as GrpcMitoDenomBalance, va as GrpcBinaryOptionsMarketInfo, vc as Orderbook, vd as TransportEventType, vi as WsPriceOracleMarketStreamLeg, vl as ExplorerValidator, vn as OraclePricesByMarketsStreamCallback, vo as MegaVaultOperator, vr as IndexerGrpcReferralApi, vs as AuctionCoinPrices, vt as GridStrategyStreamCallbackV2, vu as GrpcMitoLeaderboardEntry, wa as GrpcDerivativeTrade, wc as GrpcRFQExpiry, wi as GrpcTcDerivativeLimitOrder, wl as GrpcGasFee, wn as VaultStreamCallback, wo as MegaVaultStats, wr as IndexerGrpcAccountApi, ws as GrpcAuctionCoin, wt as IndexerGrpcOracleStreamV2, wu as GrpcMitoStakingGauge, xa as GrpcDerivativeOrderHistory, xc as QuantityAndFees, xd as WsReconnectConfig, xi as WsPriceOracleSlimPrices, xl as GasFee, xn as StakingRewardByAccountStreamCallback, xo as MegaVaultPnlStats, xr as IndexerGrpcExplorerApi, xs as AuctionsStats, xt as IndexerGrpcAuctionStreamV2, xu as GrpcMitoMissionLeaderboardEntry, ya as GrpcDerivativeLimitOrder, yc as OrderbookWithSequence, yd as TransportEvents, yi as WsPriceOracleMarketStreamRawPayload, yl as ExplorerValidatorDescription, yn as HistoricalStakingStreamCallback, yo as MegaVaultOperatorRedemptionBucket, yr as IndexerGrpcArchiverApi, ys as AuctionContract, yt as IndexerGrpcTradingStreamV2, yu as GrpcMitoLeaderboardEpoch, za as GrpcIndexerRedemptionSchedule, zc as RFQQuoteType, zi as TcDerivativeTradeHistory, zl as TxMessage, zn as IndexerGrpcMitoStreamTransformer, zo as CampaignUser, zr as AllChronosMarketHistory, zs as GrpcRFQGwPrepareQuoteResult, zt as IndexerGrpcRfqStreamV2, zu as MitoIDO } from "../index-F9ARLsW8.cjs";
5
5
  import "../BaseGrpcConsumer-BoWkMu4k.cjs";
6
6
  import "../index-DuSabiqc.cjs";
7
7
  import "../index-C9A-6Kpk.cjs";
@@ -11,6 +11,6 @@ import "../encoding-light-D-6m9tHO.cjs";
11
11
  import "../constants-DQTrjP5R.cjs";
12
12
  import "../index-CiWsZ0Bw.cjs";
13
13
  import "../index-BT6ry_uf.cjs";
14
- import "../index-Cf3narUx.cjs";
14
+ import "../index-CqL8tEwj.cjs";
15
15
  import "../index-BZDon-tA.cjs";
16
16
  export { AccessType, AccessTypeCode, AccountAuctionStatus, AccountAuctionV2, AccountPortfolio, AccountPortfolioBalances, AccountPortfolioStreamCallback, AccountPortfolioStreamCallbackV2, AccountPortfolioV2, AccountStats, AllChronosDerivativeMarketSummary, AllChronosMarketHistory, AllChronosSpotMarketSummary, AllDerivativeMarketSummaryResponse, AllSpotMarketSummaryResponse, AtomicSwap, Auction, AuctionCoin, AuctionCoinPrices, AuctionContract, AuctionV2, AuctionsStats, BalanceStreamCallback, BalanceStreamCallbackV2, BankMsgSendTransaction, BankTransfer, BankTransferFromExplorerApiResponse, BaseDerivativeMarket, BatchDerivativeOrderCancelParams, BatchSpotOrderCancelParams, BidsStreamCallback, BidsStreamCallbackV2, BinaryOptionsMarket, Block, BlockFromExplorerApiResponse, BlockWithTxs, BlocksStreamCallback, BlocksStreamCallbackV2, BlocksWithTxsStreamCallback, BlocksWithTxsStreamCallbackV2, CW20BalanceExplorerApiResponse, CW20Message, Campaign, CampaignUser, CampaignV2, ChronosDerivativeMarketSummary, ChronosDerivativeMarketSummaryResponse, ChronosLeaderboard, ChronosLeaderboardEntry, ChronosLeaderboardResponse, ChronosMarketHistoryResponse, ChronosSpotMarketSummary, ChronosSpotMarketSummaryResponse, Contract, ContractExplorerApiResponse, ContractTransaction, ContractTransactionExplorerApiResponse, ContractTransactionWithMessages, CosmWasmChecksum, CosmWasmPermission, CosmosPubKeyType, DenomHolders, DerivativeLimitOrder, DerivativeLimitOrderParams, DerivativeMarket, DerivativeMarketStreamCallback, DerivativeMarketStreamCallbackV2, DerivativeMarketWithoutBinaryOptions, DerivativeOrderCancelParams, DerivativeOrderHistory, DerivativeOrderHistoryStreamCallback, DerivativeOrderHistoryStreamCallbackV2, DerivativeOrderbookUpdateStreamCallback, DerivativeOrderbookUpdateStreamCallbackV2, DerivativeOrderbookV2StreamCallback, DerivativeOrderbookV2StreamCallbackV2, DerivativeOrdersStreamCallback, DerivativeOrdersStreamCallbackV2, DerivativePositionsStreamCallback, DerivativePositionsStreamCallbackV2, DerivativePositionsV2StreamCallback, DerivativePositionsV2StreamCallbackV2, DerivativeTrade, DerivativeTradesStreamCallback, DerivativeTradesStreamCallbackV2, EventLog, EventLogEvent, ExpiryFuturesMarket, ExpiryFuturesMarketInfo, ExplorerApiResponse, ExplorerApiResponseWithPagination, ExplorerBlockApiResponse, ExplorerBlockWithTxs, ExplorerCW20BalanceWithToken, ExplorerStats, ExplorerStreamTransformer, ExplorerTransaction, ExplorerTransactionApiResponse, ExplorerTransactionV2, ExplorerTxsV2Response, ExplorerValidator, ExplorerValidatorDescription, ExplorerValidatorUptime, FundingPayment, FundingRate, GasFee, GridStrategyStreamCallbackV2, GridStrategyStreamResponse, GridStrategyType, GrpcAccountAuctionV2, GrpcAccountPortfolio, GrpcAccountPortfolioV2, GrpcAtomicSwap, GrpcAuction, GrpcAuctionCoin, GrpcAuctionCoinPrices, GrpcAuctionContract, GrpcAuctionV2, GrpcBankMsgSendMessage, GrpcBinaryOptionsMarketInfo, GrpcCampaign, GrpcCampaignUser, GrpcCampaignV2, GrpcCosmosPubKey, GrpcDecodeError, GrpcDenomHolders, GrpcDerivativeLimitOrder, GrpcDerivativeMarketInfo, GrpcDerivativeOrderHistory, GrpcDerivativePosition, GrpcDerivativePositionV2, GrpcDerivativeTrade, GrpcExpiryFuturesMarketInfo, GrpcExplorerStats, GrpcFrame, GrpcFundingPayment, GrpcFundingRate, GrpcGasFee, GrpcGuild, GrpcGuildMember, GrpcHistoricalBalance, GrpcHistoricalRPNL, GrpcHistoricalVolumes, GrpcIBCTransferTx, GrpcIndexerAuctionBid, GrpcIndexerInsuranceFund, GrpcIndexerRedemptionSchedule, GrpcIndexerValidatorDescription, GrpcLeaderboardRow, GrpcMegaVaultApr, GrpcMegaVaultAprStats, GrpcMegaVaultHistoricalPnL, GrpcMegaVaultHistoricalTVL, GrpcMegaVaultIncentives, GrpcMegaVaultMaxDrawdown, GrpcMegaVaultOperationStatusLogEntry, GrpcMegaVaultOperator, GrpcMegaVaultOperatorRedemptionBucket, GrpcMegaVaultPnl, GrpcMegaVaultPnlStats, GrpcMegaVaultRedemption, GrpcMegaVaultSubscription, GrpcMegaVaultTargetApr, GrpcMegaVaultUnrealizedPnl, GrpcMegaVaultUserStats, GrpcMegaVaultVaultStats, GrpcMegaVaultVolatility, GrpcMegaVaultVolatilityStats, GrpcMitoChanges, GrpcMitoClaimReference, GrpcMitoDenomBalance, GrpcMitoHolders, GrpcMitoIDO, GrpcMitoIDOClaimedCoins, GrpcMitoIDOProgress, GrpcMitoIDOSubscriber, GrpcMitoIDOSubscription, GrpcMitoIDOSubscriptionActivity, GrpcMitoLeaderboardEntry, GrpcMitoLeaderboardEpoch, GrpcMitoMission, GrpcMitoMissionLeaderboardEntry, GrpcMitoPagination, GrpcMitoPriceSnapshot, GrpcMitoStakingGauge, GrpcMitoStakingPool, GrpcMitoStakingStakingActivity, GrpcMitoStakingStakingReward, GrpcMitoSubaccountBalance, GrpcMitoSubscription, GrpcMitoTokenInfo, GrpcMitoVault, GrpcMitoWhitelistAccount, GrpcOracle, GrpcOraclePriceV2, GrpcPeggyDepositTx, GrpcPeggyWithdrawalTx, GrpcPerpetualMarketFunding, GrpcPerpetualMarketInfo, GrpcPnlLeaderboard, GrpcPortfolioSubaccountBalanceV2, GrpcPositionDelta, GrpcPositionV2, GrpcPositionsWithUPNL, GrpcPriceLevel, GrpcRFQConditionalOrder, GrpcRFQExpiry, GrpcRFQGwPrepareAutoSignRequest, GrpcRFQGwPrepareAutoSignResponse, GrpcRFQGwPrepareEip712AutoSignRequest, GrpcRFQGwPrepareEip712AutoSignResponse, GrpcRFQGwPrepareEip712Request, GrpcRFQGwPrepareEip712Response, GrpcRFQGwPrepareQuoteResult, GrpcRFQGwPrepareRequest, GrpcRFQGwPrepareResponse, GrpcRFQProcessedQuote, GrpcRFQQuote, GrpcRFQRequest, GrpcRFQSettlement, GrpcSpotAverageEntry, GrpcSpotLimitOrder, GrpcSpotMarketInfo, GrpcSpotOrderHistory, GrpcSpotTrade, GrpcSubaccountBalance, GrpcSubaccountBalanceTransfer, GrpcSubaccountDeposit, GrpcSubaccountDepositV2, GrpcSubaccountPortfolio, GrpcTcDerivativeLimitOrder, GrpcTcDerivativeOrderHistory, GrpcTcDerivativeOrdersResponse, GrpcTcDerivativePosition, GrpcTcDerivativeTradeHistory, GrpcTcDerivativeTradesResponse, GrpcTcDerivativesOrdersHistoryResponse, GrpcTcDerivativesPositionsResponse, GrpcTcFundingPayment, GrpcTcFundingPaymentsResponse, GrpcTcPositionDelta, GrpcTokenMeta, GrpcTradingReward, GrpcValidatorSlashingEvent, GrpcValidatorUptime, GrpcVolLeaderboard, GrpcWebSocketCodec, GrpcWebSocketTransport, GrpcWsPriceOracleLatestMarketPricesResponse, GrpcWsPriceOracleLatestMarketPricesV2Response, GrpcWsPriceOracleLightMarketStreamMessage, GrpcWsPriceOracleMarketStreamLeg, GrpcWsPriceOracleMarketStreamMessage, GrpcWsPriceOracleMarketStreamRawPayload, GrpcWsPriceOracleStreamMarketsResponse, GrpcWsPriceOracleStreamMarketsV2Response, Guild, GuildCampaignSummary, GuildMember, HistoricalBalance, HistoricalRPNL, HistoricalStakingStreamCallback, HistoricalStakingStreamCallbackV2, HistoricalVolumes, Holder, IBCTransferTx, IncentivesCampaign, IncentivesRound, IndexerAccountPortfolioStreamTransformer, IndexerAccountStreamTransformer, IndexerArchiverStreamTransformer, IndexerAuctionBid, IndexerAuctionStreamTransformer, IndexerCampaignTransformer, IndexerDerivativeStreamTransformer, IndexerGrpcAccountApi, IndexerGrpcAccountPortfolioApi, IndexerGrpcAccountPortfolioStream, IndexerGrpcAccountPortfolioStreamV2, IndexerGrpcAccountPortfolioTransformer, IndexerGrpcAccountStream, IndexerGrpcAccountStreamV2, IndexerGrpcAccountTransformer, IndexerGrpcArchiverApi, IndexerGrpcArchiverStream, IndexerGrpcArchiverStreamV2, IndexerGrpcArchiverTransformer, IndexerGrpcAuctionApi, IndexerGrpcAuctionStream, IndexerGrpcAuctionStreamV2, IndexerGrpcAuctionTransformer, IndexerGrpcCampaignApi, IndexerGrpcDerivativeTransformer, IndexerGrpcDerivativesApi, IndexerGrpcDerivativesStream, IndexerGrpcDerivativesStreamV2, IndexerGrpcExplorerApi, IndexerGrpcExplorerStream, IndexerGrpcExplorerStreamV2, IndexerGrpcExplorerTransformer, IndexerGrpcInsuranceFundApi, IndexerGrpcInsuranceFundTransformer, IndexerGrpcMegaVaultApi, IndexerGrpcMegaVaultTransformer, IndexerGrpcMetaApi, IndexerGrpcMitoApi, IndexerGrpcMitoStream, IndexerGrpcMitoStreamTransformer, IndexerGrpcMitoStreamV2, IndexerGrpcMitoTransformer, IndexerGrpcOracleApi, IndexerGrpcOracleStream, IndexerGrpcOracleStreamV2, IndexerGrpcOracleTransformer, IndexerGrpcRFQApi, IndexerGrpcReferralApi, IndexerGrpcReferralTransformer, IndexerGrpcRfqGwApi, IndexerGrpcRfqGwTransformer, IndexerGrpcRfqStreamV2, IndexerGrpcRfqTransformer, IndexerGrpcSpotApi, IndexerGrpcSpotStream, IndexerGrpcSpotStreamV2, IndexerGrpcSpotTransformer, IndexerGrpcTcDerivativesApi, IndexerGrpcTcDerivativesStreamV2, IndexerGrpcTcDerivativesTransformer, IndexerGrpcTradingApi, IndexerGrpcTradingStream, IndexerGrpcTradingStreamV2, IndexerGrpcTransactionApi, IndexerGrpcWeb3GwApi, IndexerGrpcWsPriceOracleApi, IndexerGrpcWsPriceOracleStream, IndexerGrpcWsPriceOracleStreamV2, IndexerInsuranceFund, IndexerModule, IndexerOracleStreamTransformer, IndexerRestDerivativesChronosApi, IndexerRestExplorerApi, IndexerRestExplorerTransformer, IndexerRestLeaderboardChronosApi, IndexerRestMarketChronosApi, IndexerRestSpotChronosApi, IndexerRfqStreamTransformer, IndexerSpotStreamTransformer, IndexerStreamTransaction, IndexerTcDerivativesStreamTransformer, IndexerTokenMeta, IndexerWsMakerStream, IndexerWsPriceOracleStreamTransformer, IndexerWsTakerStream, InsuranceFundCreateParams, IsomorphicWebSocket, LeaderboardRow, ListTradingStrategiesResponse, MakerStreamConfig, MakerStreamEvents, MarketType, MarketsStreamCallback, MegaVault, MegaVaultApr, MegaVaultAprStats, MegaVaultHistoricalPnL, MegaVaultHistoricalTVL, MegaVaultIncentives, MegaVaultMaxDrawdown, MegaVaultOperator, MegaVaultOperatorRedemptionBucket, MegaVaultPnl, MegaVaultPnlStats, MegaVaultRedemption, MegaVaultRedemptionStatus, MegaVaultStats, MegaVaultSubscription, MegaVaultSubscriptionStatus, MegaVaultTargetApr, MegaVaultUnrealizedPnl, MegaVaultUser, MegaVaultUserStats, MegaVaultVolatility, MegaVaultVolatilityStats, Message, MitoChanges, MitoClaimReference, MitoDenomBalance, MitoGauge, MitoGaugeStatus, MitoHolders, MitoIDO, MitoIDOClaimedCoins, MitoIDOInitParams, MitoIDOProgress, MitoIDOSubscriber, MitoIDOSubscription, MitoIDOSubscriptionActivity, MitoLeaderboard, MitoLeaderboardEntry, MitoLeaderboardEpoch, MitoMission, MitoMissionLeaderboard, MitoMissionLeaderboardEntry, MitoPagination, MitoPortfolio, MitoPriceSnapshot, MitoStakeToSubscription, MitoStakingActivity, MitoStakingPool, MitoStakingReward, MitoSubaccountBalance, MitoSubscription, MitoTokenInfo, MitoTransfer, MitoVault, MitoVestingConfig, MitoVestingConfigMap, MitoWhitelistAccount, OpenNotionalCap, OperationStatusLogEntry, Oracle, OracleListStreamCallbackV2, OraclePriceStreamCallback, OraclePriceStreamCallbackV2, OraclePriceV2, OraclePriceV2Filter, OraclePricesByMarketsStreamCallback, OraclePricesByMarketsStreamCallbackV2, Orderbook, OrderbookWithSequence, Paging, PeggyDepositTx, PeggyWithdrawalTx, PerpetualMarket, PerpetualMarketFunding, PerpetualMarketInfo, PnlLeaderboard, PortfolioSubaccountBalanceV2, Position, PositionDelta, PositionV2, PositionsWithUPNL, PriceLevel, QuantityAndFees, QuoteStreamCallbackV2, RFQConditionalOrder, RFQConditionalOrderInput, RFQConditionalOrdersResponse, RFQExpiryType, RFQGwPrepareAutoSignRequestType, RFQGwPrepareAutoSignResponseType, RFQGwPrepareEip712AutoSignRequestType, RFQGwPrepareEip712AutoSignResponseType, RFQGwPrepareEip712RequestType, RFQGwPrepareEip712ResponseType, RFQGwPrepareQuoteResultType, RFQGwPrepareRequestType, RFQGwPrepareResponseType, RFQMakerAuth, RFQMakerChallenge, RFQMakerStreamAckData, RFQProcessedQuoteType, RFQQuoteType, RFQRequestInputType, RFQRequestType, RFQSettlementLimitActionType, RFQSettlementType, RFQSettlementUnfilledActionType, RFQSignMode, RFQStreamErrorData, RFQStreamPingData, RFQTakerStreamAckData, Redemption, RedemptionStatus, ReferralDetails, RequestStreamCallbackV2, ResolvedWsTransportConfig, Route, SettlementStreamCallbackV2, SettlementsResponse, Signature, SpotAverageEntriesStreamCallback, SpotAverageEntriesStreamCallbackV2, SpotAverageEntry, SpotLimitOrder, SpotLimitOrderParams, SpotMarket, SpotOrderCancelParams, SpotOrderHistory, SpotOrderHistoryStreamCallback, SpotOrderHistoryStreamCallbackV2, SpotOrderbookUpdateStreamCallback, SpotOrderbookUpdateStreamCallbackV2, SpotOrderbookV2StreamCallback, SpotOrdersStreamCallback, SpotOrdersStreamCallbackV2, SpotTrade, SpotTradesStreamCallback, SpotTradesStreamCallbackV2, StakingRewardByAccountStreamCallback, StakingRewardByAccountStreamCallbackV2, StreamBidsResponse, StreamManager, StreamManagerV2, StreamStatusResponse, SubaccountBalance, SubaccountDeposit, SubaccountDepositV2, SubaccountPortfolio, SubaccountTransfer, TakerStreamConfig, TakerStreamEvents, TcDerivativeLimitOrder, TcDerivativeOrderHistory, TcDerivativeOrderHistoryStreamCallbackV2, TcDerivativeOrdersResponse, TcDerivativeOrdersStreamCallbackV2, TcDerivativePosition, TcDerivativePositionsStreamCallbackV2, TcDerivativeTradeHistory, TcDerivativeTradesResponse, TcDerivativeTradesStreamCallbackV2, TcDerivativesOrdersHistoryResponse, TcDerivativesPositionsResponse, TcFundingPayment, TcFundingPaymentsResponse, TcPositionDelta, TradingReward, TradingStrategy, Transaction, TransactionFromExplorerApiResponse, TransactionsStreamCallback, TransactionsStreamCallbackV2, TransferType, TransfersStreamCallback, TransfersStreamCallbackV2, TransportEventListener, TransportEventType, TransportEvents, TxMessage, ValidatorSlashingEvent, ValidatorUptime, ValidatorUptimeFromExplorerApiResponse, ValidatorUptimeStatus, VaultHolderSubscriptionStreamCallback, VaultHolderSubscriptionStreamCallbackV2, VaultStreamCallback, VaultStreamCallbackV2, VolLeaderboard, WasmCode, WasmCodeExplorerApiResponse, WsDisconnectReason, WsPriceOracleLatestMarketPricesParams, WsPriceOracleLatestMarketPricesResponse, WsPriceOracleLatestMarketPricesV2Params, WsPriceOracleLatestMarketPricesV2Response, WsPriceOracleLightMarketStreamMessage, WsPriceOracleMarketPrice, WsPriceOracleMarketStreamLeg, WsPriceOracleMarketStreamRawPayload, WsPriceOracleMarketsStreamCallback, WsPriceOracleMarketsStreamCallbackV2, WsPriceOracleMarketsV2StreamCallback, WsPriceOracleMarketsV2StreamCallbackV2, WsPriceOracleResponseMode, WsPriceOracleSlimPrices, WsPriceOracleStreamMarketsResponse, WsPriceOracleStreamMarketsV2Response, WsReconnectConfig, WsState, WsTransportConfig, createStreamSubscription, createStreamSubscriptionV2 };
@@ -3,6 +3,6 @@ require('../grpc-3Z8ffFdZ.cjs');
3
3
  require('../light-CrajlUvd.cjs');
4
4
  require('../stream-NLunNFnw.cjs');
5
5
  require('../BaseGrpcConsumer-Ppsh5NLZ.cjs');
6
- const require_SocialTradingGrpcApi = require('../SocialTradingGrpcApi-CiT0EoLU.cjs');
6
+ const require_SocialTradingGrpcApi = require('../SocialTradingGrpcApi-D4VP25kb.cjs');
7
7
 
8
8
  exports.SocialTradingGrpcApi = require_SocialTradingGrpcApi.SocialTradingGrpcApi;
@@ -2,5 +2,5 @@ import "../tx_pb-BzYfNmn2.cjs";
2
2
  import "../index-B674D7pD.cjs";
3
3
  import "../light-B-3BDUJ7.cjs";
4
4
  import "../BaseGrpcConsumer-BoWkMu4k.cjs";
5
- import { _ as PlatformServicesPosition, a as GrpcPlatformServicesPositionTrade, b as PlatformServicesPositionsSortDirection, c as PlatformServicesGetAccountDailyPNLParams, d as PlatformServicesListAccountPositionStatsParams, f as PlatformServicesListAccountPositionStatsResponse, g as PlatformServicesListPositionsResponse, h as PlatformServicesListPositionsParams, i as GrpcPlatformServicesPosition, l as PlatformServicesGetAccountDailyPNLResponse, m as PlatformServicesListPositionTradesResponse, n as GrpcPlatformServicesAccountPositionStats, o as PlatformServicesAccountPositionStats, p as PlatformServicesListPositionTradesParams, r as GrpcPlatformServicesDailyPNL, s as PlatformServicesDailyPNL, t as SocialTradingGrpcApi, u as PlatformServicesGetAccountPositionStatsParams, v as PlatformServicesPositionTrade, x as PlatformServicesPositionsStatsWindow, y as PlatformServicesPositionsSortBy } from "../index-Cf3narUx.cjs";
6
- export { GrpcPlatformServicesAccountPositionStats, GrpcPlatformServicesDailyPNL, GrpcPlatformServicesPosition, GrpcPlatformServicesPositionTrade, PlatformServicesAccountPositionStats, PlatformServicesDailyPNL, PlatformServicesGetAccountDailyPNLParams, PlatformServicesGetAccountDailyPNLResponse, PlatformServicesGetAccountPositionStatsParams, PlatformServicesListAccountPositionStatsParams, PlatformServicesListAccountPositionStatsResponse, PlatformServicesListPositionTradesParams, PlatformServicesListPositionTradesResponse, PlatformServicesListPositionsParams, PlatformServicesListPositionsResponse, PlatformServicesPosition, PlatformServicesPositionTrade, PlatformServicesPositionsSortBy, PlatformServicesPositionsSortDirection, PlatformServicesPositionsStatsWindow, SocialTradingGrpcApi };
5
+ import { C as PlatformServicesPositionsStatsWindow, S as PlatformServicesPositionsSortDirection, _ as PlatformServicesListPositionsParams, a as GrpcPlatformServicesPositionTrade, b as PlatformServicesPositionTrade, c as PlatformServicesGetAccountCountResponse, d as PlatformServicesGetAccountPositionStatsParams, f as PlatformServicesListAccountPositionStatsParams, g as PlatformServicesListPositionTradesResponse, h as PlatformServicesListPositionTradesParams, i as GrpcPlatformServicesPosition, l as PlatformServicesGetAccountDailyPNLParams, m as PlatformServicesListAccountTagsResponse, n as GrpcPlatformServicesAccountPositionStats, o as PlatformServicesAccountPositionStats, p as PlatformServicesListAccountPositionStatsResponse, r as GrpcPlatformServicesDailyPNL, s as PlatformServicesDailyPNL, t as SocialTradingGrpcApi, u as PlatformServicesGetAccountDailyPNLResponse, v as PlatformServicesListPositionsResponse, x as PlatformServicesPositionsSortBy, y as PlatformServicesPosition } from "../index-CqL8tEwj.cjs";
6
+ export { GrpcPlatformServicesAccountPositionStats, GrpcPlatformServicesDailyPNL, GrpcPlatformServicesPosition, GrpcPlatformServicesPositionTrade, PlatformServicesAccountPositionStats, PlatformServicesDailyPNL, PlatformServicesGetAccountCountResponse, PlatformServicesGetAccountDailyPNLParams, PlatformServicesGetAccountDailyPNLResponse, PlatformServicesGetAccountPositionStatsParams, PlatformServicesListAccountPositionStatsParams, PlatformServicesListAccountPositionStatsResponse, PlatformServicesListAccountTagsResponse, PlatformServicesListPositionTradesParams, PlatformServicesListPositionTradesResponse, PlatformServicesListPositionsParams, PlatformServicesListPositionsResponse, PlatformServicesPosition, PlatformServicesPositionTrade, PlatformServicesPositionsSortBy, PlatformServicesPositionsSortDirection, PlatformServicesPositionsStatsWindow, SocialTradingGrpcApi };
@@ -1,7 +1,7 @@
1
1
  import "../tx_pb-BzYfNmn2.cjs";
2
2
  import "../index-B674D7pD.cjs";
3
3
  import "../light-B-3BDUJ7.cjs";
4
- import { Dp as PrivateKey, Ep as BaseAccount, Op as PublicKey, kp as Address } from "../index-o1rahmwv.cjs";
4
+ import { Dp as PrivateKey, Ep as BaseAccount, Op as PublicKey, kp as Address } from "../index-F9ARLsW8.cjs";
5
5
  import "../BaseGrpcConsumer-BoWkMu4k.cjs";
6
6
  import "../index-DuSabiqc.cjs";
7
7
  import "../index-C9A-6Kpk.cjs";
@@ -11,6 +11,6 @@ import "../encoding-light-D-6m9tHO.cjs";
11
11
  import "../constants-DQTrjP5R.cjs";
12
12
  import "../index-CiWsZ0Bw.cjs";
13
13
  import "../index-BT6ry_uf.cjs";
14
- import "../index-Cf3narUx.cjs";
14
+ import "../index-CqL8tEwj.cjs";
15
15
  import "../index-BZDon-tA.cjs";
16
16
  export { Address, BaseAccount, PrivateKey, PublicKey };
@@ -16,8 +16,8 @@ require('../ChainGrpcExchangeApi-O9bXA4Wp.cjs');
16
16
  require('../BaseIndexerGrpcConsumer-BYur8R3D.cjs');
17
17
  require('../BaseRestConsumer-BcHgNcNh.cjs');
18
18
  const require_ExecArgNeptuneWithdraw = require('../ExecArgNeptuneWithdraw-Sqk_zPQx.cjs');
19
- require('../IndexerGrpcWeb3GwApi-B0NB3Clo.cjs');
20
- require('../tx-D7mGFmK_.cjs');
19
+ require('../IndexerGrpcWeb3GwApi-VEchf_hB.cjs');
20
+ require('../tx-BS1bJRvK.cjs');
21
21
 
22
22
  exports.ContractExecutionAuthz = require_MsgSetDenomMetadata.ContractExecutionAuthorization;
23
23
  exports.ContractExecutionCompatAuthz = require_MsgSetDenomMetadata.ContractExecutionCompatAuthorization;
@@ -1,7 +1,7 @@
1
1
  import "../tx_pb-BzYfNmn2.cjs";
2
2
  import "../index-B674D7pD.cjs";
3
3
  import "../light-B-3BDUJ7.cjs";
4
- import { $b as MsgCreateDenom, $y as MsgInstantSpotMarketLaunchV2, Ab as MsgSetDenomMetadata, Ah as MsgSetDelegationTransferReceiversV2, Ax as MsgSubmitTextProposal, Bb as MsgOffsetPositionV2, Cb as MsgCreateSpotLimitOrder, Ch as Msgs, Cx as MsgSubmitProposalExpiryFuturesMarketLaunch, Db as MsgBatchUpdateOrdersV2, Dh as TokenFactoryMsgs, Dx as MsgGrantProviderPrivilegeProposal, Eb as MsgLiquidatePositionV2, Eh as StakingMsgs, Ex as MsgSubmitProposalPerpetualMarketLaunch, Fb as MsgRequestRedemption, Fh as MsgCreateBinaryOptionsMarketOrder, Fx as MsgSend, Gb as MsgCreateValidator, Gy as MsgCreateBinaryOptionsLimitOrder, Hb as MsgRewardsOptOutV2, Hy as MsgUpdateSubaccountRiskProfileV2, Ib as MsgCancelSpotOrderV2, Ih as MsgBatchCancelBinaryOptionsOrders, Ix as MsgVote, Jb as MsgRemoveRateLimit, Jy as MsgCreateDerivativeMarketOrder, Kb as MsgBeginRedelegate, Ky as MsgWithdrawValidatorCommission, Lb as MsgInstantiateContract, Lh as MsgAdminUpdateBinaryOptionsMarket, Mb as MsgReclaimLockedFunds, Mh as MsgBatchCancelBinaryOptionsOrdersV2, Mx as MsgRevoke, Nb as MsgRelayProviderPrices, Nh as MsgAdminUpdateBinaryOptionsMarketV2, Nx as MsgGrant, Ob as MsgFundCommunityPool, Oh as WasmMsgs, Ox as MsgSubmitProposalSpotMarketLaunch, Pb as MsgTransferDelegation, Ph as MsgCreateBinaryOptionsLimitOrderV2, Px as MsgBid, Qb as MsgExecuteContract, Qy as MsgLiquidateCrossMarginPoolV2, Rb as MsgLiquidatePosition, Sb as MsgCancelPostOnlyModeV2, Sh as InsuranceMsgs, Sp as ExecArgNeptuneDeposit, Sx as ProposalDecomposer, Tb as MsgCreateInsuranceFund, Th as PeggyMsgs, Tx as MsgSubmitProposalSpotMarketParamUpdate, Ub as MsgRevokeAllowance, Uy as MsgCreateDerivativeMarketOrderV2, Vb as MsgExternalTransfer, Wb as MsgCancelSpotOrder, Wy as MsgBatchCancelDerivativeOrdersV2, Xb as MsgCreateRateLimit, Xy as MsgCancelBinaryOptionsOrderV2, Yb as MsgUpdateRateLimit, Yy as MsgBatchCancelDerivativeOrders, Zb as MsgMigrateContract, Zy as MsgCreateDerivativeLimitOrder, _b as MsgBatchCancelSpotOrders, _h as ExchangeV1Msgs, _p as GenericAuthorization, _x as MsgMint, ab as MsgCancelBinaryOptionsOrder, ax as MsgWithdrawV2, bb as MsgSubaccountTransferV2, bh as GovMsgs, bp as msgsOrMsgExecMsgs, bx as MsgExec, cb as MsgCancelDerivativeOrderV2, cp as MsgUpdateActorRoles, cx as MsgDepositV2, db as MsgCreateSpotLimitOrderV2, dh as AuctionMsgs, dp as MsgUpdateParams, dx as MsgSignData, eb as MsgWithdrawDelegatorReward, ex as MsgChangeAdmin, fb as MsgAuthorizeStakeGrantsV2, fh as AuthzMsgs, fp as MsgClaimVoucher, fx as MsgDelegate, gb as MsgCancelDerivativeOrder, gh as ExchangeMsgs, gp as ContractExecutionAuthorization, gx as MsgMultiSend, hb as MsgCreateSpotMarketOrder, hh as Erc20Msgs, hp as ContractExecutionCompatAuthorization, hx as MsgDeposit, ib as MsgUpdateDerivativeMarketV2, ix as MsgUnderwrite, jb as MsgUpdateSpotMarketV2, jh as MsgCreateBinaryOptionsMarketOrderV2, jx as MsgDeposit$1, kb as MsgExternalTransferV2, kh as MsgInstantBinaryOptionsMarketLaunchV2, kx as MsgSubmitGenericProposal, lb as MsgInstantSpotMarketLaunch, lp as MsgUpdateNamespace, lx as MsgUpdateAdmin, mb as MsgIncreasePositionMargin, mh as DistributionMsgs, mp as MsgInstantBinaryOptionsMarketLaunch, mx as MsgStoreCode, nb as MsgDecreasePositionMarginV2, nx as MsgPrivilegedExecuteContract, ob as MsgCreateSpotMarketOrderV2, ox as MsgSignDataV2, pb as MsgDecreasePositionMargin, ph as BankMsgs, pp as OrderHashManager, px as MsgSendToEth, qb as MsgGrantAllowance, qy as MsgCreateDerivativeLimitOrderV2, rb as MsgIncreasePositionMarginV2, rx as MsgEditValidator, sb as MsgBatchCancelSpotOrdersV2, sx as MsgUndelegate, tb as MsgCancelUnbondingDelegation, tx as MsgRewardsOptOut, ub as MsgActivatePostOnlyModeV2, up as MsgCreateNamespace, ux as MsgWithdraw, vb as MsgGrantWithAuthorization, vh as ExchangeV2Msgs, vp as GrantAuthorizationType, vx as MsgBurn, wb as MsgAuthorizeStakeGrants, wh as OracleMsgs, wx as MsgSubmitProposalPerpetualMarketLaunchV2, xb as MsgReclaimLockedFundsV2, xh as IbcMsgs, xp as ExecArgNeptuneWithdraw, xx as MsgSubmitProposal, yb as MsgActivateStakeGrantV2, yh as FeegrantMsgs, yp as getGenericAuthorizationFromMessageType, yx as MsgTransfer, zb as MsgBatchUpdateOrders } from "../index-o1rahmwv.cjs";
4
+ import { $b as MsgCreateDenom, $y as MsgInstantSpotMarketLaunchV2, Ab as MsgSetDenomMetadata, Ah as MsgSetDelegationTransferReceiversV2, Ax as MsgSubmitTextProposal, Bb as MsgOffsetPositionV2, Cb as MsgCreateSpotLimitOrder, Ch as Msgs, Cx as MsgSubmitProposalExpiryFuturesMarketLaunch, Db as MsgBatchUpdateOrdersV2, Dh as TokenFactoryMsgs, Dx as MsgGrantProviderPrivilegeProposal, Eb as MsgLiquidatePositionV2, Eh as StakingMsgs, Ex as MsgSubmitProposalPerpetualMarketLaunch, Fb as MsgRequestRedemption, Fh as MsgCreateBinaryOptionsMarketOrder, Fx as MsgSend, Gb as MsgCreateValidator, Gy as MsgCreateBinaryOptionsLimitOrder, Hb as MsgRewardsOptOutV2, Hy as MsgUpdateSubaccountRiskProfileV2, Ib as MsgCancelSpotOrderV2, Ih as MsgBatchCancelBinaryOptionsOrders, Ix as MsgVote, Jb as MsgRemoveRateLimit, Jy as MsgCreateDerivativeMarketOrder, Kb as MsgBeginRedelegate, Ky as MsgWithdrawValidatorCommission, Lb as MsgInstantiateContract, Lh as MsgAdminUpdateBinaryOptionsMarket, Mb as MsgReclaimLockedFunds, Mh as MsgBatchCancelBinaryOptionsOrdersV2, Mx as MsgRevoke, Nb as MsgRelayProviderPrices, Nh as MsgAdminUpdateBinaryOptionsMarketV2, Nx as MsgGrant, Ob as MsgFundCommunityPool, Oh as WasmMsgs, Ox as MsgSubmitProposalSpotMarketLaunch, Pb as MsgTransferDelegation, Ph as MsgCreateBinaryOptionsLimitOrderV2, Px as MsgBid, Qb as MsgExecuteContract, Qy as MsgLiquidateCrossMarginPoolV2, Rb as MsgLiquidatePosition, Sb as MsgCancelPostOnlyModeV2, Sh as InsuranceMsgs, Sp as ExecArgNeptuneDeposit, Sx as ProposalDecomposer, Tb as MsgCreateInsuranceFund, Th as PeggyMsgs, Tx as MsgSubmitProposalSpotMarketParamUpdate, Ub as MsgRevokeAllowance, Uy as MsgCreateDerivativeMarketOrderV2, Vb as MsgExternalTransfer, Wb as MsgCancelSpotOrder, Wy as MsgBatchCancelDerivativeOrdersV2, Xb as MsgCreateRateLimit, Xy as MsgCancelBinaryOptionsOrderV2, Yb as MsgUpdateRateLimit, Yy as MsgBatchCancelDerivativeOrders, Zb as MsgMigrateContract, Zy as MsgCreateDerivativeLimitOrder, _b as MsgBatchCancelSpotOrders, _h as ExchangeV1Msgs, _p as GenericAuthorization, _x as MsgMint, ab as MsgCancelBinaryOptionsOrder, ax as MsgWithdrawV2, bb as MsgSubaccountTransferV2, bh as GovMsgs, bp as msgsOrMsgExecMsgs, bx as MsgExec, cb as MsgCancelDerivativeOrderV2, cp as MsgUpdateActorRoles, cx as MsgDepositV2, db as MsgCreateSpotLimitOrderV2, dh as AuctionMsgs, dp as MsgUpdateParams, dx as MsgSignData, eb as MsgWithdrawDelegatorReward, ex as MsgChangeAdmin, fb as MsgAuthorizeStakeGrantsV2, fh as AuthzMsgs, fp as MsgClaimVoucher, fx as MsgDelegate, gb as MsgCancelDerivativeOrder, gh as ExchangeMsgs, gp as ContractExecutionAuthorization, gx as MsgMultiSend, hb as MsgCreateSpotMarketOrder, hh as Erc20Msgs, hp as ContractExecutionCompatAuthorization, hx as MsgDeposit, ib as MsgUpdateDerivativeMarketV2, ix as MsgUnderwrite, jb as MsgUpdateSpotMarketV2, jh as MsgCreateBinaryOptionsMarketOrderV2, jx as MsgDeposit$1, kb as MsgExternalTransferV2, kh as MsgInstantBinaryOptionsMarketLaunchV2, kx as MsgSubmitGenericProposal, lb as MsgInstantSpotMarketLaunch, lp as MsgUpdateNamespace, lx as MsgUpdateAdmin, mb as MsgIncreasePositionMargin, mh as DistributionMsgs, mp as MsgInstantBinaryOptionsMarketLaunch, mx as MsgStoreCode, nb as MsgDecreasePositionMarginV2, nx as MsgPrivilegedExecuteContract, ob as MsgCreateSpotMarketOrderV2, ox as MsgSignDataV2, pb as MsgDecreasePositionMargin, ph as BankMsgs, pp as OrderHashManager, px as MsgSendToEth, qb as MsgGrantAllowance, qy as MsgCreateDerivativeLimitOrderV2, rb as MsgIncreasePositionMarginV2, rx as MsgEditValidator, sb as MsgBatchCancelSpotOrdersV2, sx as MsgUndelegate, tb as MsgCancelUnbondingDelegation, tx as MsgRewardsOptOut, ub as MsgActivatePostOnlyModeV2, up as MsgCreateNamespace, ux as MsgWithdraw, vb as MsgGrantWithAuthorization, vh as ExchangeV2Msgs, vp as GrantAuthorizationType, vx as MsgBurn, wb as MsgAuthorizeStakeGrants, wh as OracleMsgs, wx as MsgSubmitProposalPerpetualMarketLaunchV2, xb as MsgReclaimLockedFundsV2, xh as IbcMsgs, xp as ExecArgNeptuneWithdraw, xx as MsgSubmitProposal, yb as MsgActivateStakeGrantV2, yh as FeegrantMsgs, yp as getGenericAuthorizationFromMessageType, yx as MsgTransfer, zb as MsgBatchUpdateOrders } from "../index-F9ARLsW8.cjs";
5
5
  import "../BaseGrpcConsumer-BoWkMu4k.cjs";
6
6
  import "../index-DuSabiqc.cjs";
7
7
  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-C9A-6Kpk.cjs";
@@ -11,6 +11,6 @@ import "../encoding-light-D-6m9tHO.cjs";
11
11
  import "../constants-DQTrjP5R.cjs";
12
12
  import "../index-CiWsZ0Bw.cjs";
13
13
  import "../index-BT6ry_uf.cjs";
14
- import "../index-Cf3narUx.cjs";
14
+ import "../index-CqL8tEwj.cjs";
15
15
  import "../index-BZDon-tA.cjs";
16
16
  export { AuctionMsgs, AuthzMsgs, BankMsgs, ContractExecutionAuthorization as ContractExecutionAuthz, ContractExecutionCompatAuthorization as ContractExecutionCompatAuthz, DistributionMsgs, Erc20Msgs, ExchangeMsgs, ExchangeV1Msgs, ExchangeV2Msgs, ExecArgCW20AdapterRedeemAndTransfer, ExecArgCW20Send, ExecArgCW20Transfer, ExecArgCreateCampaign, ExecArgCreatePerpGridStrategy, ExecArgCreateRound, ExecArgCreateSpotGridStrategy, ExecArgDepositTokens, ExecArgFundCampaign, ExecArgIncreaseAllowance, ExecArgInitiateTransfer, ExecArgNeptuneDeposit, ExecArgNeptuneWithdraw, ExecArgRemoveGridStrategy, ExecArgSubmitVaa, ExecArgSwapExactOutput, ExecArgSwapMinOutput, ExecArgUpdateGridConfig, ExecArgs, ExecPrivilegedArgOffChainVaultRedeem, ExecPrivilegedArgOffChainVaultSubscribe, ExecPrivilegedArgVaultRedeem, ExecPrivilegedArgVaultSubscribe, ExecPrivilegedArgs, ExitConfig, ExitType, FeegrantMsgs, GenericAuthorization as GenericAuthz, GovMsgs, GrantAuthorizationType, IbcMsgs, InsuranceMsgs, MsgActivatePostOnlyModeV2, MsgActivateStakeGrantV2, MsgAdminUpdateBinaryOptionsMarket, MsgAdminUpdateBinaryOptionsMarketV2, MsgAuthorizeStakeGrants, MsgAuthorizeStakeGrantsV2, MsgExec as MsgAuthzExec, MsgBatchCancelBinaryOptionsOrders, MsgBatchCancelBinaryOptionsOrdersV2, MsgBatchCancelDerivativeOrders, MsgBatchCancelDerivativeOrdersV2, MsgBatchCancelSpotOrders, MsgBatchCancelSpotOrdersV2, MsgBatchUpdateOrders, MsgBatchUpdateOrdersV2, MsgBeginRedelegate, MsgBid, MsgBurn, MsgCancelBinaryOptionsOrder, MsgCancelBinaryOptionsOrderV2, MsgCancelDerivativeOrder, MsgCancelDerivativeOrderV2, MsgCancelPostOnlyModeV2, MsgCancelSpotOrder, MsgCancelSpotOrderV2, MsgCancelUnbondingDelegation, MsgChangeAdmin, MsgClaimVoucher, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsLimitOrderV2, MsgCreateBinaryOptionsMarketOrder, MsgCreateBinaryOptionsMarketOrderV2, MsgCreateDenom, MsgCreateDerivativeLimitOrder, MsgCreateDerivativeLimitOrderV2, MsgCreateDerivativeMarketOrder, MsgCreateDerivativeMarketOrderV2, MsgCreateInsuranceFund, MsgCreateNamespace, MsgCreateRateLimit, MsgCreateSpotLimitOrder, MsgCreateSpotLimitOrderV2, MsgCreateSpotMarketOrder, MsgCreateSpotMarketOrderV2, MsgCreateValidator, MsgDecreasePositionMargin, MsgDecreasePositionMarginV2, MsgDelegate, MsgDeposit, MsgDepositV2, MsgEditValidator, MsgExecuteContract, MsgExecuteContractCompat, MsgExternalTransfer, MsgExternalTransferV2, MsgFundCommunityPool, MsgDeposit$1 as MsgGovDeposit, MsgGrant, MsgGrantAllowance, MsgGrantProviderPrivilegeProposal, MsgGrantWithAuthorization, MsgIncreasePositionMargin, MsgIncreasePositionMarginV2, MsgInstantBinaryOptionsMarketLaunch, MsgInstantBinaryOptionsMarketLaunchV2, MsgInstantSpotMarketLaunch, MsgInstantSpotMarketLaunchV2, MsgInstantiateContract, MsgLiquidateCrossMarginPoolV2, MsgLiquidatePosition, MsgLiquidatePositionV2, MsgMigrateContract, MsgMint, MsgMultiSend, MsgOffsetPositionV2, MsgPrivilegedExecuteContract, MsgReclaimLockedFunds, MsgReclaimLockedFundsV2, MsgRelayProviderPrices, MsgRemoveRateLimit, MsgRequestRedemption, MsgRevoke, MsgRevokeAllowance, MsgRewardsOptOut, MsgRewardsOptOutV2, MsgSend, MsgSendToEth, MsgSetDelegationTransferReceiversV2, MsgSetDenomMetadata, MsgSignData, MsgSignDataV2, MsgStoreCode, MsgSubaccountTransferV2, MsgSubmitGenericProposal, MsgSubmitProposal, MsgSubmitProposalExpiryFuturesMarketLaunch, MsgSubmitProposalPerpetualMarketLaunch, MsgSubmitProposalPerpetualMarketLaunchV2, MsgSubmitProposalSpotMarketLaunch, MsgSubmitProposalSpotMarketParamUpdate, MsgSubmitTextProposal, MsgTransfer, MsgTransferDelegation, MsgUndelegate, MsgUnderwrite, MsgUpdateActorRoles, MsgUpdateAdmin, MsgUpdateDerivativeMarketV2, MsgUpdateNamespace, MsgUpdateParams, MsgUpdateRateLimit, MsgUpdateSpotMarketV2, MsgUpdateSubaccountRiskProfileV2, MsgVote, MsgWithdraw, MsgWithdrawDelegatorReward, MsgWithdrawV2, MsgWithdrawValidatorCommission, Msgs, OracleMsgs, OrderHashManager, PeggyMsgs, ProposalDecomposer, StakingMsgs, StrategyType, TokenFactoryMsgs, TrailingArithmetic, TrailingArithmeticLP, WasmMsgs, getGenericAuthorizationFromMessageType, msgsOrMsgExecMsgs };
@@ -14,8 +14,8 @@ require('../stream-NLunNFnw.cjs');
14
14
  require('../BaseGrpcConsumer-Ppsh5NLZ.cjs');
15
15
  require('../BaseIndexerGrpcConsumer-BYur8R3D.cjs');
16
16
  require('../BaseRestConsumer-BcHgNcNh.cjs');
17
- require('../IndexerGrpcWeb3GwApi-B0NB3Clo.cjs');
18
- const require_tx = require('../tx-D7mGFmK_.cjs');
17
+ require('../IndexerGrpcWeb3GwApi-VEchf_hB.cjs');
18
+ const require_tx = require('../tx-BS1bJRvK.cjs');
19
19
  let __injectivelabs_core_proto_ts_v2_generated_cosmos_tx_v1beta1_tx_pb = require("@injectivelabs/core-proto-ts-v2/generated/cosmos/tx/v1beta1/tx_pb");
20
20
 
21
21
  exports.BroadcastMode = require_tx.BroadcastMode;
@@ -1,7 +1,7 @@
1
1
  import { c as tx_pb_d_exports } from "../tx_pb-BzYfNmn2.cjs";
2
2
  import "../index-B674D7pD.cjs";
3
3
  import "../light-B-3BDUJ7.cjs";
4
- import { $m as TxClientInclusionOptions, $p as createAny, Am as createTxRawFromSigResponse, Ap as MsgDecoder, Bm as TxInfo, Bp as getEipTxDetails, Cm as waitTxBroadcasted, Cp as MsgBroadcasterTxOptions, Dm as createTransactionForAddressAndMsg, Em as createTransactionAndCosmosSignDocForAddressAndMsg, Fm as RestSignerInfo, Fp as getEip712Domain, Gm as TxSearchResultParams, Gp as patchOrderTypesWithExpirationBlock, Hm as TxResult, Hp as getObjectEip712PropertyType, Im as RestTx, Ip as getEip712DomainV2, Jm as CreateTransactionWithSignersArgs, Jp as TxClient, Km as CreateTransactionArgs, Kp as protoTypeToAminoType, Lm as RestTxBody, Lp as getEip712Fee, Mm as BroadcastMode, Mp as getEip712TypedDataV2, Nm as BroadcastModeKeplr, Np as getDefaultEip712Types, Om as createTransactionFromMsg, Pm as RestAuthInfo, Pp as getDefaultEip712TypesV2, Qm as TxClientBroadcastResponse, Qp as SIGN_EIP712_V2, Rm as RestTxLog, Rp as getEip712FeeV2, Sm as TxGrpcApi, Tm as createTransactionAndCosmosSignDoc, Tp as MsgBroadcasterWithPkOptions, Um as TxResultResponse, Up as numberTypeToReflectionNumberType, Vm as TxInfoResponse, Vp as getTypesIncludingFeeOptions, Wm as TxSearchResult, Wp as objectKeysToEip712Types, Xm as SignerDetails, Xp as SIGN_DIRECT, Ym as MsgArg, Yp as SIGN_AMINO, Zm as TxClientBroadcastOptions, Zp as SIGN_EIP712, _m as getTransactionPartsFromTxRaw, ah as TxFetchTxPollArgs, am as createAuthInfo, bm as subscribeToTendermintTxEvent, ch as TxPrepareTxInclusionWaitArgs, cm as createNonCriticalExtensionFromObject, dm as createSignerInfo, eh as TxClientMode, em as createAnyMessage, fm as createSigners, gm as getPublicKey, hm as getAminoStdSignDoc, ih as TxEventWebSocketFactory, im as isTxNotFoundError, jm as getTxRawFromTxRawOrDirectSignResponse, jp as getEip712TypedData, km as createTransactionWithSigners, lh as TxResponse, lm as createSignDoc, mm as createWeb3Extension, nh as TxConcreteApi, nm as getInjectiveSignerAddress, oh as TxInclusionStrategy, om as createBody, pm as createTxRawEIP712, qm as CreateTransactionResult, qp as stringTypeToReflectionStringType, rh as TxEventInclusionOptions, rm as errorToErrorMessage, sh as TxInclusionWaiter, sm as createFee, th as TxClientSimulateResponse, tm as getEthereumSignerAddress, uh as TxWaitForTxInclusionArgs, um as createSignDocFromTransaction, vm as generateArbitrarySignDoc, wm as createTransaction, wp as MsgBroadcasterWithPk, xm as TxRestApi, ym as normalizeTendermintWebSocketEndpoint, zm as SimulationResponse, zp as getEipTxContext } from "../index-o1rahmwv.cjs";
4
+ import { $m as TxClientInclusionOptions, $p as createAny, Am as createTxRawFromSigResponse, Ap as MsgDecoder, Bm as TxInfo, Bp as getEipTxDetails, Cm as waitTxBroadcasted, Cp as MsgBroadcasterTxOptions, Dm as createTransactionForAddressAndMsg, Em as createTransactionAndCosmosSignDocForAddressAndMsg, Fm as RestSignerInfo, Fp as getEip712Domain, Gm as TxSearchResultParams, Gp as patchOrderTypesWithExpirationBlock, Hm as TxResult, Hp as getObjectEip712PropertyType, Im as RestTx, Ip as getEip712DomainV2, Jm as CreateTransactionWithSignersArgs, Jp as TxClient, Km as CreateTransactionArgs, Kp as protoTypeToAminoType, Lm as RestTxBody, Lp as getEip712Fee, Mm as BroadcastMode, Mp as getEip712TypedDataV2, Nm as BroadcastModeKeplr, Np as getDefaultEip712Types, Om as createTransactionFromMsg, Pm as RestAuthInfo, Pp as getDefaultEip712TypesV2, Qm as TxClientBroadcastResponse, Qp as SIGN_EIP712_V2, Rm as RestTxLog, Rp as getEip712FeeV2, Sm as TxGrpcApi, Tm as createTransactionAndCosmosSignDoc, Tp as MsgBroadcasterWithPkOptions, Um as TxResultResponse, Up as numberTypeToReflectionNumberType, Vm as TxInfoResponse, Vp as getTypesIncludingFeeOptions, Wm as TxSearchResult, Wp as objectKeysToEip712Types, Xm as SignerDetails, Xp as SIGN_DIRECT, Ym as MsgArg, Yp as SIGN_AMINO, Zm as TxClientBroadcastOptions, Zp as SIGN_EIP712, _m as getTransactionPartsFromTxRaw, ah as TxFetchTxPollArgs, am as createAuthInfo, bm as subscribeToTendermintTxEvent, ch as TxPrepareTxInclusionWaitArgs, cm as createNonCriticalExtensionFromObject, dm as createSignerInfo, eh as TxClientMode, em as createAnyMessage, fm as createSigners, gm as getPublicKey, hm as getAminoStdSignDoc, ih as TxEventWebSocketFactory, im as isTxNotFoundError, jm as getTxRawFromTxRawOrDirectSignResponse, jp as getEip712TypedData, km as createTransactionWithSigners, lh as TxResponse, lm as createSignDoc, mm as createWeb3Extension, nh as TxConcreteApi, nm as getInjectiveSignerAddress, oh as TxInclusionStrategy, om as createBody, pm as createTxRawEIP712, qm as CreateTransactionResult, qp as stringTypeToReflectionStringType, rh as TxEventInclusionOptions, rm as errorToErrorMessage, sh as TxInclusionWaiter, sm as createFee, th as TxClientSimulateResponse, tm as getEthereumSignerAddress, uh as TxWaitForTxInclusionArgs, um as createSignDocFromTransaction, vm as generateArbitrarySignDoc, wm as createTransaction, wp as MsgBroadcasterWithPk, xm as TxRestApi, ym as normalizeTendermintWebSocketEndpoint, zm as SimulationResponse, zp as getEipTxContext } from "../index-F9ARLsW8.cjs";
5
5
  import "../BaseGrpcConsumer-BoWkMu4k.cjs";
6
6
  import "../index-DuSabiqc.cjs";
7
7
  import { St as TypedDataField, bt as Eip712ConvertTxArgs, xt as MapOfTypedDataField, yt as Eip712ConvertFeeArgs } from "../index-C9A-6Kpk.cjs";
@@ -11,6 +11,6 @@ import "../encoding-light-D-6m9tHO.cjs";
11
11
  import "../constants-DQTrjP5R.cjs";
12
12
  import "../index-CiWsZ0Bw.cjs";
13
13
  import "../index-BT6ry_uf.cjs";
14
- import "../index-Cf3narUx.cjs";
14
+ import "../index-CqL8tEwj.cjs";
15
15
  import "../index-BZDon-tA.cjs";
16
16
  export { BroadcastMode, BroadcastModeKeplr, tx_pb_d_exports as CosmosTxV1Beta1TxPb, CreateTransactionArgs, CreateTransactionResult, CreateTransactionWithSignersArgs, Eip712ConvertFeeArgs, Eip712ConvertTxArgs, MapOfTypedDataField, MsgArg, MsgBroadcasterTxOptions, MsgBroadcasterWithPk, MsgBroadcasterWithPkOptions, MsgDecoder, RestAuthInfo, RestSignerInfo, RestTx, RestTxBody, RestTxLog, SIGN_AMINO, SIGN_DIRECT, SIGN_EIP712, SIGN_EIP712_V2, SignerDetails, SimulationResponse, TxClient, TxClientBroadcastOptions, TxClientBroadcastResponse, TxClientInclusionOptions, TxClientMode, TxClientSimulateResponse, TxConcreteApi, TxEventInclusionOptions, TxEventWebSocketFactory, TxFetchTxPollArgs, TxGrpcApi, TxInclusionStrategy, TxInclusionWaiter, TxInfo, TxInfoResponse, TxPrepareTxInclusionWaitArgs, TxResponse, TxRestApi, TxResult, TxResultResponse, TxSearchResult, TxSearchResultParams, TxWaitForTxInclusionArgs, TypedDataField, createAny, createAnyMessage, createAuthInfo, createBody, createFee, createNonCriticalExtensionFromObject, createSignDoc, createSignDocFromTransaction, createSignerInfo, createSigners, createTransaction, createTransactionAndCosmosSignDoc, createTransactionAndCosmosSignDocForAddressAndMsg, createTransactionForAddressAndMsg, createTransactionFromMsg, createTransactionWithSigners, createTxRawEIP712, createTxRawFromSigResponse, createWeb3Extension, errorToErrorMessage, generateArbitrarySignDoc, getAminoStdSignDoc, getDefaultEip712Types, getDefaultEip712TypesV2, getEip712Domain, getEip712DomainV2, getEip712Fee, getEip712FeeV2, getEip712TypedData, getEip712TypedDataV2, getEipTxContext, getEipTxDetails, getEthereumSignerAddress, getInjectiveSignerAddress, getObjectEip712PropertyType, getPublicKey, getTransactionPartsFromTxRaw, getTxRawFromTxRawOrDirectSignResponse, getTypesIncludingFeeOptions, isTxNotFoundError, normalizeTendermintWebSocketEndpoint, numberTypeToReflectionNumberType, objectKeysToEip712Types, patchOrderTypesWithExpirationBlock, protoTypeToAminoType, stringTypeToReflectionStringType, subscribeToTendermintTxEvent, waitTxBroadcasted };
@@ -13,8 +13,8 @@ require('./stream-NLunNFnw.cjs');
13
13
  require('./BaseGrpcConsumer-Ppsh5NLZ.cjs');
14
14
  require('./BaseIndexerGrpcConsumer-BYur8R3D.cjs');
15
15
  require('./BaseRestConsumer-BcHgNcNh.cjs');
16
- require('./IndexerGrpcWeb3GwApi-B0NB3Clo.cjs');
17
- require('./tx-D7mGFmK_.cjs');
16
+ require('./IndexerGrpcWeb3GwApi-VEchf_hB.cjs');
17
+ require('./tx-BS1bJRvK.cjs');
18
18
  const require_DirectEthSecp256k1Wallet = require('./DirectEthSecp256k1Wallet-DMVCWKfg.cjs');
19
19
 
20
20
  exports.InjectiveDirectEthSecp256k1Wallet = require_DirectEthSecp256k1Wallet.DirectEthSecp256k1Wallet;
@@ -13,8 +13,8 @@ require('./stream-NLunNFnw.cjs');
13
13
  require('./BaseGrpcConsumer-Ppsh5NLZ.cjs');
14
14
  require('./BaseIndexerGrpcConsumer-BYur8R3D.cjs');
15
15
  require('./BaseRestConsumer-BcHgNcNh.cjs');
16
- require('./IndexerGrpcWeb3GwApi-B0NB3Clo.cjs');
17
- require('./tx-D7mGFmK_.cjs');
16
+ require('./IndexerGrpcWeb3GwApi-VEchf_hB.cjs');
17
+ require('./tx-BS1bJRvK.cjs');
18
18
  const require_DirectEthSecp256k1Wallet = require('./DirectEthSecp256k1Wallet-DMVCWKfg.cjs');
19
19
 
20
20
  exports.InjectiveDirectEthSecp256k1Wallet = require_DirectEthSecp256k1Wallet.DirectEthSecp256k1Wallet;
@@ -1,6 +1,6 @@
1
1
  import { t as BaseGrpcConsumer } from "./BaseGrpcConsumer-BoWkMu4k.cjs";
2
2
 
3
- //#region ../../node_modules/.pnpm/@injectivelabs+platform-services-proto-ts-v2@1.0.1/node_modules/@injectivelabs/platform-services-proto-ts-v2/generated/goagen_api_positions_service_pb.d.ts
3
+ //#region ../../node_modules/.pnpm/@injectivelabs+platform-services-proto-ts-v2@1.0.2/node_modules/@injectivelabs/platform-services-proto-ts-v2/generated/goagen_api_positions_service_pb.d.ts
4
4
 
5
5
  /**
6
6
  * Persisted derivative position
@@ -116,6 +116,13 @@ interface Position {
116
116
  * @generated from protobuf field: sint64 duration_in_seconds = 27
117
117
  */
118
118
  durationInSeconds: bigint;
119
+ /**
120
+ * Quantity-weighted average execution price of reducing trades; zero before
121
+ * the first reduction
122
+ *
123
+ * @generated from protobuf field: string exit_price = 28
124
+ */
125
+ exitPrice: string;
119
126
  }
120
127
  /**
121
128
  * A trade applied to a position
@@ -235,6 +242,19 @@ interface AccountPositionStats {
235
242
  * @generated from protobuf field: optional sint64 rank = 13
236
243
  */
237
244
  rank?: bigint;
245
+ /**
246
+ * Truncated average lifetime in seconds for positions closed in the selected
247
+ * window.
248
+ *
249
+ * @generated from protobuf field: sint64 avg_hold_duration_in_seconds = 14
250
+ */
251
+ avgHoldDurationInSeconds: bigint;
252
+ /**
253
+ * Opening and closing turnover for positions closed in the selected window.
254
+ *
255
+ * @generated from protobuf field: string total_volume = 15
256
+ */
257
+ totalVolume: string;
238
258
  }
239
259
  /**
240
260
  * @generated MessageType for protobuf message positions_service.Position
@@ -276,6 +296,7 @@ interface PlatformServicesGetAccountDailyPNLParams {
276
296
  interface PlatformServicesListAccountPositionStatsParams {
277
297
  to?: string;
278
298
  from?: string;
299
+ tag?: string[];
279
300
  pageSize?: number;
280
301
  nextToken?: string;
281
302
  accountAddress?: string[];
@@ -310,6 +331,7 @@ interface PlatformServicesPosition {
310
331
  openedHeight: string;
311
332
  avgEntryPrice: string;
312
333
  initialMargin: string;
334
+ exitPrice: string;
313
335
  updatedHeight: string;
314
336
  closedHeight?: string;
315
337
  accountAddress: string;
@@ -342,11 +364,13 @@ interface PlatformServicesAccountPositionStats {
342
364
  winRate: string;
343
365
  leverage: string;
344
366
  tradeCount: string;
367
+ totalVolume: string;
345
368
  maxDrawdown: string;
346
369
  pnlPercentage: string;
347
370
  equityCurve: string[];
348
371
  accountAddress: string;
349
372
  closedPositions: string;
373
+ avgHoldDurationInSeconds: string;
350
374
  }
351
375
  interface PlatformServicesDailyPNL {
352
376
  pnl: string;
@@ -360,6 +384,12 @@ interface PlatformServicesListAccountPositionStatsResponse {
360
384
  nextToken?: string;
361
385
  accounts: PlatformServicesAccountPositionStats[];
362
386
  }
387
+ interface PlatformServicesListAccountTagsResponse {
388
+ tags: string[];
389
+ }
390
+ interface PlatformServicesGetAccountCountResponse {
391
+ totalAccounts: string;
392
+ }
363
393
  type GrpcPlatformServicesPosition = Position;
364
394
  type GrpcPlatformServicesPositionTrade = PositionTrade;
365
395
  type GrpcPlatformServicesAccountPositionStats = AccountPositionStats;
@@ -373,7 +403,9 @@ declare class SocialTradingGrpcApi extends BaseGrpcConsumer {
373
403
  fetchPositionTrades(params: PlatformServicesListPositionTradesParams): Promise<PlatformServicesListPositionTradesResponse>;
374
404
  fetchAccountPositionStats(params: PlatformServicesGetAccountPositionStatsParams): Promise<PlatformServicesAccountPositionStats>;
375
405
  fetchAccountDailyPNL(params: PlatformServicesGetAccountDailyPNLParams): Promise<PlatformServicesGetAccountDailyPNLResponse>;
406
+ fetchAccountTags(): Promise<PlatformServicesListAccountTagsResponse>;
407
+ fetchAccountCount(): Promise<PlatformServicesGetAccountCountResponse>;
376
408
  fetchAccountPositionStatsList(params?: PlatformServicesListAccountPositionStatsParams): Promise<PlatformServicesListAccountPositionStatsResponse>;
377
409
  }
378
410
  //#endregion
379
- export { PlatformServicesPosition as _, GrpcPlatformServicesPositionTrade as a, PlatformServicesPositionsSortDirection as b, PlatformServicesGetAccountDailyPNLParams as c, PlatformServicesListAccountPositionStatsParams as d, PlatformServicesListAccountPositionStatsResponse as f, PlatformServicesListPositionsResponse as g, PlatformServicesListPositionsParams as h, GrpcPlatformServicesPosition as i, PlatformServicesGetAccountDailyPNLResponse as l, PlatformServicesListPositionTradesResponse as m, GrpcPlatformServicesAccountPositionStats as n, PlatformServicesAccountPositionStats as o, PlatformServicesListPositionTradesParams as p, GrpcPlatformServicesDailyPNL as r, PlatformServicesDailyPNL as s, SocialTradingGrpcApi as t, PlatformServicesGetAccountPositionStatsParams as u, PlatformServicesPositionTrade as v, PlatformServicesPositionsStatsWindow as x, PlatformServicesPositionsSortBy as y };
411
+ export { PlatformServicesPositionsStatsWindow as C, PlatformServicesPositionsSortDirection as S, PlatformServicesListPositionsParams as _, GrpcPlatformServicesPositionTrade as a, PlatformServicesPositionTrade as b, PlatformServicesGetAccountCountResponse as c, PlatformServicesGetAccountPositionStatsParams as d, PlatformServicesListAccountPositionStatsParams as f, PlatformServicesListPositionTradesResponse as g, PlatformServicesListPositionTradesParams as h, GrpcPlatformServicesPosition as i, PlatformServicesGetAccountDailyPNLParams as l, PlatformServicesListAccountTagsResponse as m, GrpcPlatformServicesAccountPositionStats as n, PlatformServicesAccountPositionStats as o, PlatformServicesListAccountPositionStatsResponse as p, GrpcPlatformServicesDailyPNL as r, PlatformServicesDailyPNL as s, SocialTradingGrpcApi as t, PlatformServicesGetAccountDailyPNLResponse as u, PlatformServicesListPositionsResponse as v, PlatformServicesPositionsSortBy as x, PlatformServicesPosition as y };