@orderly.network/hooks 2.0.1-preview.3 → 2.0.1

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.
package/dist/index.d.mts CHANGED
@@ -7,12 +7,13 @@ import * as swr__internal from 'swr/_internal';
7
7
  import * as _orderly_network_core from '@orderly.network/core';
8
8
  import { AccountState, Account, EventEmitter, ConfigStore, ConfigKey, SimpleDI, OrderlyKeyStore, WalletAdapter, IContract, DefaultConfigStore } from '@orderly.network/core';
9
9
  export { WalletAdapter } from '@orderly.network/core';
10
+ import * as _orderly_network_types from '@orderly.network/types';
11
+ import { NetworkId, API, Chain as Chain$1, ChainNamespace, WSMessage, OrderStatus, OrderSide, AlgoOrderRootType, OrderEntity, AlgoOrderEntity, OrderlyOrder, AlgoOrderType, RequireKeys, OrderType } from '@orderly.network/types';
10
12
  export { default as useConstant } from 'use-constant';
11
13
  import { WS } from '@orderly.network/net';
12
14
  import * as react from 'react';
13
15
  import { PropsWithChildren, FC } from 'react';
14
- import * as _orderly_network_types from '@orderly.network/types';
15
- import { API, NetworkId, Chain as Chain$1, ChainNamespace, WSMessage, OrderStatus, OrderSide, AlgoOrderRootType, OrderEntity, AlgoOrderEntity, OrderlyOrder, AlgoOrderType, RequireKeys, OrderType } from '@orderly.network/types';
16
+ import * as react_jsx_runtime from 'react/jsx-runtime';
16
17
  import { EIP1193Provider } from '@web3-onboard/common';
17
18
  import * as swr_subscription from 'swr/subscription';
18
19
  import * as _orderly_network_utils from '@orderly.network/utils';
@@ -27,7 +28,7 @@ declare global {
27
28
  };
28
29
  }
29
30
  }
30
- declare const _default: "2.0.1-preview.3";
31
+ declare const _default: "2.0.1";
31
32
 
32
33
  type useQueryOptions<T> = SWRConfiguration & {
33
34
  formatter?: (data: any) => T;
@@ -101,6 +102,12 @@ declare function useSessionStorage<T>(key: string, initialValue: T): [T, (data:
101
102
 
102
103
  declare function useLocalStorage<T>(key: string, initialValue: T): [any, (value: T) => void];
103
104
 
105
+ type CurrentChain = {
106
+ id: number;
107
+ info?: Chain;
108
+ };
109
+ declare const useNetworkInfo: (networkId: NetworkId) => (chainId: number) => CurrentChain;
110
+
104
111
  declare function parseJSON<T>(value: string | null): T | undefined;
105
112
 
106
113
  declare const useWS: () => WS;
@@ -203,6 +210,8 @@ type ConfigProviderExclusionProps = {
203
210
  type ConfigProviderProps = BaseConfigProviderProps & ConfigProviderExclusionProps;
204
211
  declare const OrderlyConfigProvider: FC<PropsWithChildren<ConfigProviderProps>>;
205
212
 
213
+ declare const OrderlyTrackerProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
214
+
206
215
  declare class ExtendedConfigStore extends DefaultConfigStore {
207
216
  constructor(init: Partial<Record<ConfigKey, any>>);
208
217
  get<T>(key: ConfigKey): T;
@@ -298,7 +307,8 @@ declare const useMarketsStream: () => {
298
307
  declare enum MarketsType$1 {
299
308
  FAVORITES = 0,
300
309
  RECENT = 1,
301
- ALL = 2
310
+ ALL = 2,
311
+ NEW_LISTING = 3
302
312
  }
303
313
  interface FavoriteTab$1 {
304
314
  name: string;
@@ -341,7 +351,8 @@ declare const useMarket: (type: MarketsType$1) => readonly [any[], {
341
351
  declare enum MarketsType {
342
352
  FAVORITES = 0,
343
353
  RECENT = 1,
344
- ALL = 2
354
+ ALL = 2,
355
+ NEW_LISTING = 3
345
356
  }
346
357
  interface FavoriteTab {
347
358
  name: string;
@@ -354,6 +365,9 @@ interface Favorite {
354
365
  interface Recent {
355
366
  name: string;
356
367
  }
368
+ interface NewListing {
369
+ name: string;
370
+ }
357
371
  type TabSort = Record<string, {
358
372
  sortKey: string;
359
373
  sortOrder: string;
@@ -390,6 +404,7 @@ declare const useMarketsStore: () => {
390
404
  name: string;
391
405
  }[];
392
406
  recent: Recent[];
407
+ newListing: NewListing[];
393
408
  tabSort: TabSort;
394
409
  selectedFavoriteTab: FavoriteTab;
395
410
  updateFavorites: react.Dispatch<react.SetStateAction<{
@@ -414,6 +429,7 @@ declare const useMarkets: (type?: MarketsType) => readonly [MarketsItem[], {
414
429
  name: string;
415
430
  }[];
416
431
  recent: Recent[];
432
+ newListing: NewListing[];
417
433
  tabSort: TabSort;
418
434
  selectedFavoriteTab: FavoriteTab;
419
435
  updateFavorites: react.Dispatch<react.SetStateAction<{
@@ -466,6 +482,13 @@ declare const useFundingRates: () => {
466
482
  isNil: boolean;
467
483
  };
468
484
 
485
+ type PeriodKey = "1d" | "3d" | "7d" | "14d" | "30d" | "90d";
486
+ declare const useFundingRateHistory: () => {
487
+ data: API.FundingHistory[];
488
+ isLoading: boolean;
489
+ getPositiveRates: (data: API.FundingHistory[], period: PeriodKey) => Record<string, number>;
490
+ };
491
+
469
492
  type PriceMode = "markPrice" | "lastPrice";
470
493
  declare const usePositionStream: (symbol?: string, options?: SWRConfiguration & {
471
494
  calcMode?: PriceMode;
@@ -1417,7 +1440,7 @@ declare const useApiKeyManager: (queryParams?: {
1417
1440
  keyInfo?: {
1418
1441
  page?: number;
1419
1442
  size?: number;
1420
- keyStatus?: string;
1443
+ key_status?: string;
1421
1444
  };
1422
1445
  }) => readonly [APIKeyItem[] | undefined, {
1423
1446
  readonly refresh: swr__internal.KeyedMutator<APIKeyItem[]>;
@@ -1650,4 +1673,4 @@ declare const useOrderEntity: (order: {
1650
1673
  };
1651
1674
  };
1652
1675
 
1653
- export { type APIKeyItem, type AccountRewardsHistory, type AccountRewardsHistoryRow, AssetHistoryStatusEnum, type Brokers, type Chain, type Chains, type CheckReferralCodeReturns, type CollateralOutputs, type ComputedAlgoOrder, type ConfigProviderExclusionProps, type ConfigProviderProps, type ConnectedChain, type CurrentEpochEstimate, DefaultLayoutConfig, DistributionId, type DrawOptions, ENVType, type EpochInfoItem, type EpochInfoType, ExtendedConfigStore, type Favorite, type FavoriteTab, MarketsStorageKey, MarketsType, type OrderBookItem, type OrderParams, type OrderbookData, type OrderbookOptions, type OrderlyConfigContextState, OrderlyConfigProvider, OrderlyContext, OrderlyProvider, type PosterLayoutConfig, type PriceMode, type Recent, RefferalAPI, ScopeType, StatusContext, type StatusContextState, StatusProvider, type SymbolInfo, TWType, type UseChainsOptions, type UseChainsReturnObject, type UseOrderEntryMetaState, WalletConnectorContext, type WalletRewards, type WalletRewardsHistoryReturns, type WalletRewardsItem, type WalletState, WsNetworkStatus, type chainFilter, type chainFilterFunc, checkNotional, cleanStringStyle, type filteredChains$1 as filteredChains, parseJSON, useAccount, useAccountInfo, useAccountInstance, useAccountRewardsHistory, useAllBrokers, useApiKeyManager, useAssetsHistory, useBoolean, useChain, useChains, useCheckReferralCode, useCollateral, useCommission, useConfig, useCurEpochEstimate, useDaily, useDeposit, useDistribution, useDistributionHistory, useEpochInfo, useEventEmitter, useFundingFeeHistory, useFundingRate, useFundingRates, useGetClaimed, useGetEnv, useGetReferralCode, useHoldingStream, useIndexPrice, useKeyStore, useLazyQuery, useLeverage, useLocalStorage, useMaintenanceStatus, useMarginRatio, useMarkPrice, useMarkPriceBySymbol, useMarkPricesStream, useMarket, useMarketTradeStream, useMarkets, useMarketsStore, useMarketsStream, useMaxQty, useMediaQuery, useMutation, useOrderEntity, useOrderEntry, useOrderEntry$1 as useOrderEntry_deprecated, useOrderStore, useOrderStream, useOrderbookStream, usePositionActions, usePositionStream, usePoster, usePreLoadData, usePrivateDataObserver, usePrivateInfiniteQuery, usePrivateQuery, useQuery, useRefereeHistory, useRefereeInfo, useRefereeRebateSummary, useReferralInfo, useReferralRebateSummary, useSessionStorage, useSettleSubscription, useSimpleDI, useStatisticsDaily, useSymbolLeverage, useSymbolPriceRange, useSymbolsInfo, useTPSLOrder, useTickerStream, useWS, useWalletConnector, useWalletRewardsHistory, useWalletSubscription, useWithdraw, useWsStatus, index as utils, _default as version };
1676
+ export { type APIKeyItem, type AccountRewardsHistory, type AccountRewardsHistoryRow, AssetHistoryStatusEnum, type Brokers, type Chain, type Chains, type CheckReferralCodeReturns, type CollateralOutputs, type ComputedAlgoOrder, type ConfigProviderExclusionProps, type ConfigProviderProps, type ConnectedChain, type CurrentEpochEstimate, DefaultLayoutConfig, DistributionId, type DrawOptions, ENVType, type EpochInfoItem, type EpochInfoType, ExtendedConfigStore, type Favorite, type FavoriteTab, MarketsStorageKey, MarketsType, type NewListing, type OrderBookItem, type OrderParams, type OrderbookData, type OrderbookOptions, type OrderlyConfigContextState, OrderlyConfigProvider, OrderlyContext, OrderlyProvider, OrderlyTrackerProvider, type PosterLayoutConfig, type PriceMode, type Recent, RefferalAPI, ScopeType, StatusContext, type StatusContextState, StatusProvider, type SymbolInfo, TWType, type UseChainsOptions, type UseChainsReturnObject, type UseOrderEntryMetaState, WalletConnectorContext, type WalletRewards, type WalletRewardsHistoryReturns, type WalletRewardsItem, type WalletState, WsNetworkStatus, type chainFilter, type chainFilterFunc, checkNotional, cleanStringStyle, type filteredChains$1 as filteredChains, parseJSON, useAccount, useAccountInfo, useAccountInstance, useAccountRewardsHistory, useAllBrokers, useApiKeyManager, useAssetsHistory, useBoolean, useChain, useChains, useCheckReferralCode, useCollateral, useCommission, useConfig, useCurEpochEstimate, useDaily, useDeposit, useDistribution, useDistributionHistory, useEpochInfo, useEventEmitter, useFundingFeeHistory, useFundingRate, useFundingRateHistory, useFundingRates, useGetClaimed, useGetEnv, useGetReferralCode, useHoldingStream, useIndexPrice, useKeyStore, useLazyQuery, useLeverage, useLocalStorage, useMaintenanceStatus, useMarginRatio, useMarkPrice, useMarkPriceBySymbol, useMarkPricesStream, useMarket, useMarketTradeStream, useMarkets, useMarketsStore, useMarketsStream, useMaxQty, useMediaQuery, useMutation, useNetworkInfo, useOrderEntity, useOrderEntry, useOrderEntry$1 as useOrderEntry_deprecated, useOrderStore, useOrderStream, useOrderbookStream, usePositionActions, usePositionStream, usePoster, usePreLoadData, usePrivateDataObserver, usePrivateInfiniteQuery, usePrivateQuery, useQuery, useRefereeHistory, useRefereeInfo, useRefereeRebateSummary, useReferralInfo, useReferralRebateSummary, useSessionStorage, useSettleSubscription, useSimpleDI, useStatisticsDaily, useSymbolLeverage, useSymbolPriceRange, useSymbolsInfo, useTPSLOrder, useTickerStream, useWS, useWalletConnector, useWalletRewardsHistory, useWalletSubscription, useWithdraw, useWsStatus, index as utils, _default as version };
package/dist/index.d.ts CHANGED
@@ -7,12 +7,13 @@ import * as swr__internal from 'swr/_internal';
7
7
  import * as _orderly_network_core from '@orderly.network/core';
8
8
  import { AccountState, Account, EventEmitter, ConfigStore, ConfigKey, SimpleDI, OrderlyKeyStore, WalletAdapter, IContract, DefaultConfigStore } from '@orderly.network/core';
9
9
  export { WalletAdapter } from '@orderly.network/core';
10
+ import * as _orderly_network_types from '@orderly.network/types';
11
+ import { NetworkId, API, Chain as Chain$1, ChainNamespace, WSMessage, OrderStatus, OrderSide, AlgoOrderRootType, OrderEntity, AlgoOrderEntity, OrderlyOrder, AlgoOrderType, RequireKeys, OrderType } from '@orderly.network/types';
10
12
  export { default as useConstant } from 'use-constant';
11
13
  import { WS } from '@orderly.network/net';
12
14
  import * as react from 'react';
13
15
  import { PropsWithChildren, FC } from 'react';
14
- import * as _orderly_network_types from '@orderly.network/types';
15
- import { API, NetworkId, Chain as Chain$1, ChainNamespace, WSMessage, OrderStatus, OrderSide, AlgoOrderRootType, OrderEntity, AlgoOrderEntity, OrderlyOrder, AlgoOrderType, RequireKeys, OrderType } from '@orderly.network/types';
16
+ import * as react_jsx_runtime from 'react/jsx-runtime';
16
17
  import { EIP1193Provider } from '@web3-onboard/common';
17
18
  import * as swr_subscription from 'swr/subscription';
18
19
  import * as _orderly_network_utils from '@orderly.network/utils';
@@ -27,7 +28,7 @@ declare global {
27
28
  };
28
29
  }
29
30
  }
30
- declare const _default: "2.0.1-preview.3";
31
+ declare const _default: "2.0.1";
31
32
 
32
33
  type useQueryOptions<T> = SWRConfiguration & {
33
34
  formatter?: (data: any) => T;
@@ -101,6 +102,12 @@ declare function useSessionStorage<T>(key: string, initialValue: T): [T, (data:
101
102
 
102
103
  declare function useLocalStorage<T>(key: string, initialValue: T): [any, (value: T) => void];
103
104
 
105
+ type CurrentChain = {
106
+ id: number;
107
+ info?: Chain;
108
+ };
109
+ declare const useNetworkInfo: (networkId: NetworkId) => (chainId: number) => CurrentChain;
110
+
104
111
  declare function parseJSON<T>(value: string | null): T | undefined;
105
112
 
106
113
  declare const useWS: () => WS;
@@ -203,6 +210,8 @@ type ConfigProviderExclusionProps = {
203
210
  type ConfigProviderProps = BaseConfigProviderProps & ConfigProviderExclusionProps;
204
211
  declare const OrderlyConfigProvider: FC<PropsWithChildren<ConfigProviderProps>>;
205
212
 
213
+ declare const OrderlyTrackerProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
214
+
206
215
  declare class ExtendedConfigStore extends DefaultConfigStore {
207
216
  constructor(init: Partial<Record<ConfigKey, any>>);
208
217
  get<T>(key: ConfigKey): T;
@@ -298,7 +307,8 @@ declare const useMarketsStream: () => {
298
307
  declare enum MarketsType$1 {
299
308
  FAVORITES = 0,
300
309
  RECENT = 1,
301
- ALL = 2
310
+ ALL = 2,
311
+ NEW_LISTING = 3
302
312
  }
303
313
  interface FavoriteTab$1 {
304
314
  name: string;
@@ -341,7 +351,8 @@ declare const useMarket: (type: MarketsType$1) => readonly [any[], {
341
351
  declare enum MarketsType {
342
352
  FAVORITES = 0,
343
353
  RECENT = 1,
344
- ALL = 2
354
+ ALL = 2,
355
+ NEW_LISTING = 3
345
356
  }
346
357
  interface FavoriteTab {
347
358
  name: string;
@@ -354,6 +365,9 @@ interface Favorite {
354
365
  interface Recent {
355
366
  name: string;
356
367
  }
368
+ interface NewListing {
369
+ name: string;
370
+ }
357
371
  type TabSort = Record<string, {
358
372
  sortKey: string;
359
373
  sortOrder: string;
@@ -390,6 +404,7 @@ declare const useMarketsStore: () => {
390
404
  name: string;
391
405
  }[];
392
406
  recent: Recent[];
407
+ newListing: NewListing[];
393
408
  tabSort: TabSort;
394
409
  selectedFavoriteTab: FavoriteTab;
395
410
  updateFavorites: react.Dispatch<react.SetStateAction<{
@@ -414,6 +429,7 @@ declare const useMarkets: (type?: MarketsType) => readonly [MarketsItem[], {
414
429
  name: string;
415
430
  }[];
416
431
  recent: Recent[];
432
+ newListing: NewListing[];
417
433
  tabSort: TabSort;
418
434
  selectedFavoriteTab: FavoriteTab;
419
435
  updateFavorites: react.Dispatch<react.SetStateAction<{
@@ -466,6 +482,13 @@ declare const useFundingRates: () => {
466
482
  isNil: boolean;
467
483
  };
468
484
 
485
+ type PeriodKey = "1d" | "3d" | "7d" | "14d" | "30d" | "90d";
486
+ declare const useFundingRateHistory: () => {
487
+ data: API.FundingHistory[];
488
+ isLoading: boolean;
489
+ getPositiveRates: (data: API.FundingHistory[], period: PeriodKey) => Record<string, number>;
490
+ };
491
+
469
492
  type PriceMode = "markPrice" | "lastPrice";
470
493
  declare const usePositionStream: (symbol?: string, options?: SWRConfiguration & {
471
494
  calcMode?: PriceMode;
@@ -1417,7 +1440,7 @@ declare const useApiKeyManager: (queryParams?: {
1417
1440
  keyInfo?: {
1418
1441
  page?: number;
1419
1442
  size?: number;
1420
- keyStatus?: string;
1443
+ key_status?: string;
1421
1444
  };
1422
1445
  }) => readonly [APIKeyItem[] | undefined, {
1423
1446
  readonly refresh: swr__internal.KeyedMutator<APIKeyItem[]>;
@@ -1650,4 +1673,4 @@ declare const useOrderEntity: (order: {
1650
1673
  };
1651
1674
  };
1652
1675
 
1653
- export { type APIKeyItem, type AccountRewardsHistory, type AccountRewardsHistoryRow, AssetHistoryStatusEnum, type Brokers, type Chain, type Chains, type CheckReferralCodeReturns, type CollateralOutputs, type ComputedAlgoOrder, type ConfigProviderExclusionProps, type ConfigProviderProps, type ConnectedChain, type CurrentEpochEstimate, DefaultLayoutConfig, DistributionId, type DrawOptions, ENVType, type EpochInfoItem, type EpochInfoType, ExtendedConfigStore, type Favorite, type FavoriteTab, MarketsStorageKey, MarketsType, type OrderBookItem, type OrderParams, type OrderbookData, type OrderbookOptions, type OrderlyConfigContextState, OrderlyConfigProvider, OrderlyContext, OrderlyProvider, type PosterLayoutConfig, type PriceMode, type Recent, RefferalAPI, ScopeType, StatusContext, type StatusContextState, StatusProvider, type SymbolInfo, TWType, type UseChainsOptions, type UseChainsReturnObject, type UseOrderEntryMetaState, WalletConnectorContext, type WalletRewards, type WalletRewardsHistoryReturns, type WalletRewardsItem, type WalletState, WsNetworkStatus, type chainFilter, type chainFilterFunc, checkNotional, cleanStringStyle, type filteredChains$1 as filteredChains, parseJSON, useAccount, useAccountInfo, useAccountInstance, useAccountRewardsHistory, useAllBrokers, useApiKeyManager, useAssetsHistory, useBoolean, useChain, useChains, useCheckReferralCode, useCollateral, useCommission, useConfig, useCurEpochEstimate, useDaily, useDeposit, useDistribution, useDistributionHistory, useEpochInfo, useEventEmitter, useFundingFeeHistory, useFundingRate, useFundingRates, useGetClaimed, useGetEnv, useGetReferralCode, useHoldingStream, useIndexPrice, useKeyStore, useLazyQuery, useLeverage, useLocalStorage, useMaintenanceStatus, useMarginRatio, useMarkPrice, useMarkPriceBySymbol, useMarkPricesStream, useMarket, useMarketTradeStream, useMarkets, useMarketsStore, useMarketsStream, useMaxQty, useMediaQuery, useMutation, useOrderEntity, useOrderEntry, useOrderEntry$1 as useOrderEntry_deprecated, useOrderStore, useOrderStream, useOrderbookStream, usePositionActions, usePositionStream, usePoster, usePreLoadData, usePrivateDataObserver, usePrivateInfiniteQuery, usePrivateQuery, useQuery, useRefereeHistory, useRefereeInfo, useRefereeRebateSummary, useReferralInfo, useReferralRebateSummary, useSessionStorage, useSettleSubscription, useSimpleDI, useStatisticsDaily, useSymbolLeverage, useSymbolPriceRange, useSymbolsInfo, useTPSLOrder, useTickerStream, useWS, useWalletConnector, useWalletRewardsHistory, useWalletSubscription, useWithdraw, useWsStatus, index as utils, _default as version };
1676
+ export { type APIKeyItem, type AccountRewardsHistory, type AccountRewardsHistoryRow, AssetHistoryStatusEnum, type Brokers, type Chain, type Chains, type CheckReferralCodeReturns, type CollateralOutputs, type ComputedAlgoOrder, type ConfigProviderExclusionProps, type ConfigProviderProps, type ConnectedChain, type CurrentEpochEstimate, DefaultLayoutConfig, DistributionId, type DrawOptions, ENVType, type EpochInfoItem, type EpochInfoType, ExtendedConfigStore, type Favorite, type FavoriteTab, MarketsStorageKey, MarketsType, type NewListing, type OrderBookItem, type OrderParams, type OrderbookData, type OrderbookOptions, type OrderlyConfigContextState, OrderlyConfigProvider, OrderlyContext, OrderlyProvider, OrderlyTrackerProvider, type PosterLayoutConfig, type PriceMode, type Recent, RefferalAPI, ScopeType, StatusContext, type StatusContextState, StatusProvider, type SymbolInfo, TWType, type UseChainsOptions, type UseChainsReturnObject, type UseOrderEntryMetaState, WalletConnectorContext, type WalletRewards, type WalletRewardsHistoryReturns, type WalletRewardsItem, type WalletState, WsNetworkStatus, type chainFilter, type chainFilterFunc, checkNotional, cleanStringStyle, type filteredChains$1 as filteredChains, parseJSON, useAccount, useAccountInfo, useAccountInstance, useAccountRewardsHistory, useAllBrokers, useApiKeyManager, useAssetsHistory, useBoolean, useChain, useChains, useCheckReferralCode, useCollateral, useCommission, useConfig, useCurEpochEstimate, useDaily, useDeposit, useDistribution, useDistributionHistory, useEpochInfo, useEventEmitter, useFundingFeeHistory, useFundingRate, useFundingRateHistory, useFundingRates, useGetClaimed, useGetEnv, useGetReferralCode, useHoldingStream, useIndexPrice, useKeyStore, useLazyQuery, useLeverage, useLocalStorage, useMaintenanceStatus, useMarginRatio, useMarkPrice, useMarkPriceBySymbol, useMarkPricesStream, useMarket, useMarketTradeStream, useMarkets, useMarketsStore, useMarketsStream, useMaxQty, useMediaQuery, useMutation, useNetworkInfo, useOrderEntity, useOrderEntry, useOrderEntry$1 as useOrderEntry_deprecated, useOrderStore, useOrderStream, useOrderbookStream, usePositionActions, usePositionStream, usePoster, usePreLoadData, usePrivateDataObserver, usePrivateInfiniteQuery, usePrivateQuery, useQuery, useRefereeHistory, useRefereeInfo, useRefereeRebateSummary, useReferralInfo, useReferralRebateSummary, useSessionStorage, useSettleSubscription, useSimpleDI, useStatisticsDaily, useSymbolLeverage, useSymbolPriceRange, useSymbolsInfo, useTPSLOrder, useTickerStream, useWS, useWalletConnector, useWalletRewardsHistory, useWalletSubscription, useWithdraw, useWsStatus, index as utils, _default as version };