@chainstream-io/sdk 0.2.11 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -530,8 +530,12 @@ interface TradeDetailDTO {
530
530
  tokenAmount: string;
531
531
  /** DTO.TRADE.DETAIL.TOKEN_PRICE_IN_USD */
532
532
  tokenPriceInUsd: string;
533
+ /** DTO.TRADE.DETAIL.TOKEN_PRICE_IN_NATIVE */
534
+ tokenPriceInNative: string;
533
535
  /** DTO.TRADE.DETAIL.TOKEN_AMOUNT_IN_USD */
534
536
  tokenAmountInUsd: string;
537
+ /** DTO.TRADE.DETAIL.TOKEN_AMOUNT_IN_NATIVE */
538
+ tokenAmountInNative: string;
535
539
  /** DTO.TRADE.DETAIL.TYPE */
536
540
  type: string;
537
541
  /** DTO.TRADE.DETAIL.SIDE_TOKEN_NAME */
@@ -544,10 +548,14 @@ interface TradeDetailDTO {
544
548
  sideTokenAddress: string;
545
549
  /** DTO.TRADE.DETAIL.SIDE_TOKEN_PRICE_IN_USD */
546
550
  sideTokenPriceInUsd: string;
551
+ /** DTO.TRADE.DETAIL.SIDE_TOKEN_PRICE_IN_NATIVE */
552
+ sideTokenPriceInNative: string;
547
553
  /** DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT */
548
554
  sideTokenAmount: string;
549
555
  /** DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT_IN_USD */
550
556
  sideTokenAmountInUsd: string;
557
+ /** DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT_IN_NATIVE */
558
+ sideTokenAmountInNative: string;
551
559
  /** DTO.TRADE.DETAIL.STATUS */
552
560
  status: string;
553
561
  }
@@ -1066,8 +1074,16 @@ interface Token {
1066
1074
  socialMedias?: TokenSocialMediasDTO;
1067
1075
  /** DTO.TOKEN.METADATA.TOKEN_CREATED_AT */
1068
1076
  tokenCreatedAt?: number;
1077
+ /** DTO.TOKEN.METADATA.TOKEN_CREATED_SLOT */
1078
+ tokenCreatedSlot?: string;
1079
+ /** DTO.TOKEN.METADATA.TOKEN_CREATED_BLOCK_HEIGHT */
1080
+ tokenCreatedBlockHeight?: string;
1081
+ /** DTO.TOKEN.METADATA.TOKEN_CREATED_TX_SIGNATURE */
1082
+ tokenCreatedTxSignature?: string;
1069
1083
  /** DTO.TOKEN.METADATA.DESCRIPTION */
1070
1084
  description?: string;
1085
+ /** DTO.TOKEN.METADATA.COINGECKO_COIN_ID */
1086
+ coingeckoCoinId?: string;
1071
1087
  /** DTO.TOKEN.METADATA.DEV_TOTAL_TOKENS */
1072
1088
  devTotalTokens?: string;
1073
1089
  /** DTO.TOKEN.METADATA.DEV_LAST_TOKEN_CREATED_AT */
@@ -1190,8 +1206,16 @@ interface TokenMetadata {
1190
1206
  socialMedias?: TokenSocialMediasDTO;
1191
1207
  /** DTO.TOKEN.METADATA.TOKEN_CREATED_AT */
1192
1208
  tokenCreatedAt?: number;
1209
+ /** DTO.TOKEN.METADATA.TOKEN_CREATED_SLOT */
1210
+ tokenCreatedSlot?: string;
1211
+ /** DTO.TOKEN.METADATA.TOKEN_CREATED_BLOCK_HEIGHT */
1212
+ tokenCreatedBlockHeight?: string;
1213
+ /** DTO.TOKEN.METADATA.TOKEN_CREATED_TX_SIGNATURE */
1214
+ tokenCreatedTxSignature?: string;
1193
1215
  /** DTO.TOKEN.METADATA.DESCRIPTION */
1194
1216
  description?: string;
1217
+ /** DTO.TOKEN.METADATA.COINGECKO_COIN_ID */
1218
+ coingeckoCoinId?: string;
1195
1219
  /** DTO.TOKEN.METADATA.DEV_TOTAL_TOKENS */
1196
1220
  devTotalTokens?: string;
1197
1221
  /** DTO.TOKEN.METADATA.DEV_LAST_TOKEN_CREATED_AT */
@@ -1755,6 +1779,18 @@ interface WalletNetWorthPage {
1755
1779
  /** DTO.PAGE.DATA */
1756
1780
  data: WalletNetWorthItemDTO[];
1757
1781
  }
1782
+ interface WalletNetWorthByTokensResult {
1783
+ /** DTO.WALLET.NET_WORTH.WALLET_ADDRESS */
1784
+ walletAddress: string;
1785
+ /** DTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_USD */
1786
+ totalValueInUsd: string;
1787
+ /** DTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_NATIVE */
1788
+ totalValueInNative: string;
1789
+ /** DTO.WALLET.NET_WORTH.CURRENT_TIMESTAMP */
1790
+ currentTimestamp: string;
1791
+ /** DTO.PAGE.DATA */
1792
+ data: WalletNetWorthItemDTO[];
1793
+ }
1758
1794
  interface TokensBalancePage {
1759
1795
  /** DTO.PAGE.HAS_NEXT */
1760
1796
  hasNext?: boolean;
@@ -1958,8 +1994,6 @@ declare const BalanceChangeType: {
1958
1994
  readonly DECREASE: "DECREASE";
1959
1995
  };
1960
1996
  interface BalanceUpdateDTO {
1961
- /** DTO.WALLET.BALANCE_UPDATE.ID */
1962
- id: number;
1963
1997
  /** DTO.WALLET.BALANCE_UPDATE.BLOCK_HASH */
1964
1998
  blockHash: string;
1965
1999
  /** DTO.WALLET.BALANCE_UPDATE.BLOCK_HEIGHT */
@@ -4454,6 +4488,12 @@ declare const GetNetWorthDirection: {
4454
4488
  readonly next: "next";
4455
4489
  readonly prev: "prev";
4456
4490
  };
4491
+ type GetNetWorthByTokensParams = {
4492
+ /**
4493
+ * DTO.WALLET.NET_WORTH_BY_TOKENS.QUERY.TOKEN_ADDRESSES
4494
+ */
4495
+ tokenAddresses: string;
4496
+ };
4457
4497
  type GetTokensBalanceParams = {
4458
4498
  /**
4459
4499
  * DTO.PAGE.CURSOR.DESCRIPTION
@@ -4575,6 +4615,22 @@ type GetWalletTransfersParams = {
4575
4615
  * DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
4576
4616
  */
4577
4617
  afterTimestamp?: number;
4618
+ /**
4619
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT
4620
+ */
4621
+ minTokenAmount?: string;
4622
+ /**
4623
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT
4624
+ */
4625
+ maxTokenAmount?: string;
4626
+ /**
4627
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT_IN_USD
4628
+ */
4629
+ minTokenAmountInUsd?: string;
4630
+ /**
4631
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT_IN_USD
4632
+ */
4633
+ maxTokenAmountInUsd?: string;
4578
4634
  };
4579
4635
  type GetWalletTransfersDirection = (typeof GetWalletTransfersDirection)[keyof typeof GetWalletTransfersDirection];
4580
4636
  declare const GetWalletTransfersDirection: {
@@ -4606,6 +4662,22 @@ type GetWalletTransferTotalParams = {
4606
4662
  * DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
4607
4663
  */
4608
4664
  afterTimestamp?: number;
4665
+ /**
4666
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT
4667
+ */
4668
+ minTokenAmount?: string;
4669
+ /**
4670
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT
4671
+ */
4672
+ maxTokenAmount?: string;
4673
+ /**
4674
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT_IN_USD
4675
+ */
4676
+ minTokenAmountInUsd?: string;
4677
+ /**
4678
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT_IN_USD
4679
+ */
4680
+ maxTokenAmountInUsd?: string;
4609
4681
  };
4610
4682
  type GetWalletTransferTotalDirection = (typeof GetWalletTransferTotalDirection)[keyof typeof GetWalletTransferTotalDirection];
4611
4683
  declare const GetWalletTransferTotalDirection: {
@@ -5371,6 +5443,11 @@ declare const calculatePnl: (chain: ChainSymbol, walletAddress: string, calculat
5371
5443
  * @summary CONTROLLER.WALLET.GET_NET_WORTH.SUMMARY
5372
5444
  */
5373
5445
  declare const getNetWorth: (chain: ChainSymbol, walletAddress: string, params?: GetNetWorthParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthPage>;
5446
+ /**
5447
+ * CONTROLLER.WALLET.GET_NET_WORTH_BY_TOKENS.DESCRIPTION
5448
+ * @summary CONTROLLER.WALLET.GET_NET_WORTH_BY_TOKENS.SUMMARY
5449
+ */
5450
+ declare const getNetWorthByTokens: (chain: ChainSymbol, walletAddress: string, params: GetNetWorthByTokensParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthByTokensResult>;
5374
5451
  /**
5375
5452
  * CONTROLLER.WALLET.GET_TOKENS_BALANCE.DESCRIPTION
5376
5453
  * @summary CONTROLLER.WALLET.GET_TOKENS_BALANCE.SUMMARY
@@ -5421,6 +5498,7 @@ type GetPnlByWalletResult = NonNullable<Awaited<ReturnType<typeof getPnlByWallet
5421
5498
  type GetWalletFirstTxResult = NonNullable<Awaited<ReturnType<typeof getWalletFirstTx>>>;
5422
5499
  type CalculatePnlResult = NonNullable<Awaited<ReturnType<typeof calculatePnl>>>;
5423
5500
  type GetNetWorthResult = NonNullable<Awaited<ReturnType<typeof getNetWorth>>>;
5501
+ type GetNetWorthByTokensResult = NonNullable<Awaited<ReturnType<typeof getNetWorthByTokens>>>;
5424
5502
  type GetTokensBalanceResult = NonNullable<Awaited<ReturnType<typeof getTokensBalance>>>;
5425
5503
  type GetNetWorthChartResult = NonNullable<Awaited<ReturnType<typeof getNetWorthChart>>>;
5426
5504
  type GetNetWorthDetailsResult = NonNullable<Awaited<ReturnType<typeof getNetWorthDetails>>>;
@@ -5433,6 +5511,7 @@ type GetBalanceUpdatesResult = NonNullable<Awaited<ReturnType<typeof getBalanceU
5433
5511
 
5434
5512
  type walletApi_CalculatePnlResult = CalculatePnlResult;
5435
5513
  type walletApi_GetBalanceUpdatesResult = GetBalanceUpdatesResult;
5514
+ type walletApi_GetNetWorthByTokensResult = GetNetWorthByTokensResult;
5436
5515
  type walletApi_GetNetWorthChartResult = GetNetWorthChartResult;
5437
5516
  type walletApi_GetNetWorthDetailsResult = GetNetWorthDetailsResult;
5438
5517
  type walletApi_GetNetWorthResult = GetNetWorthResult;
@@ -5448,6 +5527,7 @@ type walletApi_GetWalletTransfersResult = GetWalletTransfersResult;
5448
5527
  declare const walletApi_calculatePnl: typeof calculatePnl;
5449
5528
  declare const walletApi_getBalanceUpdates: typeof getBalanceUpdates;
5450
5529
  declare const walletApi_getNetWorth: typeof getNetWorth;
5530
+ declare const walletApi_getNetWorthByTokens: typeof getNetWorthByTokens;
5451
5531
  declare const walletApi_getNetWorthChart: typeof getNetWorthChart;
5452
5532
  declare const walletApi_getNetWorthDetails: typeof getNetWorthDetails;
5453
5533
  declare const walletApi_getNetWorthSummary: typeof getNetWorthSummary;
@@ -5460,7 +5540,7 @@ declare const walletApi_getWalletFirstTx: typeof getWalletFirstTx;
5460
5540
  declare const walletApi_getWalletTransferTotal: typeof getWalletTransferTotal;
5461
5541
  declare const walletApi_getWalletTransfers: typeof getWalletTransfers;
5462
5542
  declare namespace walletApi {
5463
- export { type walletApi_CalculatePnlResult as CalculatePnlResult, type walletApi_GetBalanceUpdatesResult as GetBalanceUpdatesResult, type walletApi_GetNetWorthChartResult as GetNetWorthChartResult, type walletApi_GetNetWorthDetailsResult as GetNetWorthDetailsResult, type walletApi_GetNetWorthResult as GetNetWorthResult, type walletApi_GetNetWorthSummaryResult as GetNetWorthSummaryResult, type walletApi_GetPnlByTokenResult as GetPnlByTokenResult, type walletApi_GetPnlByWalletResult as GetPnlByWalletResult, type walletApi_GetPnlDetailsResult as GetPnlDetailsResult, type walletApi_GetPnlResult as GetPnlResult, type walletApi_GetTokensBalanceResult as GetTokensBalanceResult, type walletApi_GetWalletFirstTxResult as GetWalletFirstTxResult, type walletApi_GetWalletTransferTotalResult as GetWalletTransferTotalResult, type walletApi_GetWalletTransfersResult as GetWalletTransfersResult, walletApi_calculatePnl as calculatePnl, walletApi_getBalanceUpdates as getBalanceUpdates, walletApi_getNetWorth as getNetWorth, walletApi_getNetWorthChart as getNetWorthChart, walletApi_getNetWorthDetails as getNetWorthDetails, walletApi_getNetWorthSummary as getNetWorthSummary, walletApi_getPnl as getPnl, walletApi_getPnlByToken as getPnlByToken, walletApi_getPnlByWallet as getPnlByWallet, walletApi_getPnlDetails as getPnlDetails, walletApi_getTokensBalance as getTokensBalance, walletApi_getWalletFirstTx as getWalletFirstTx, walletApi_getWalletTransferTotal as getWalletTransferTotal, walletApi_getWalletTransfers as getWalletTransfers };
5543
+ export { type walletApi_CalculatePnlResult as CalculatePnlResult, type walletApi_GetBalanceUpdatesResult as GetBalanceUpdatesResult, type walletApi_GetNetWorthByTokensResult as GetNetWorthByTokensResult, type walletApi_GetNetWorthChartResult as GetNetWorthChartResult, type walletApi_GetNetWorthDetailsResult as GetNetWorthDetailsResult, type walletApi_GetNetWorthResult as GetNetWorthResult, type walletApi_GetNetWorthSummaryResult as GetNetWorthSummaryResult, type walletApi_GetPnlByTokenResult as GetPnlByTokenResult, type walletApi_GetPnlByWalletResult as GetPnlByWalletResult, type walletApi_GetPnlDetailsResult as GetPnlDetailsResult, type walletApi_GetPnlResult as GetPnlResult, type walletApi_GetTokensBalanceResult as GetTokensBalanceResult, type walletApi_GetWalletFirstTxResult as GetWalletFirstTxResult, type walletApi_GetWalletTransferTotalResult as GetWalletTransferTotalResult, type walletApi_GetWalletTransfersResult as GetWalletTransfersResult, walletApi_calculatePnl as calculatePnl, walletApi_getBalanceUpdates as getBalanceUpdates, walletApi_getNetWorth as getNetWorth, walletApi_getNetWorthByTokens as getNetWorthByTokens, walletApi_getNetWorthChart as getNetWorthChart, walletApi_getNetWorthDetails as getNetWorthDetails, walletApi_getNetWorthSummary as getNetWorthSummary, walletApi_getPnl as getPnl, walletApi_getPnlByToken as getPnlByToken, walletApi_getPnlByWallet as getPnlByWallet, walletApi_getPnlDetails as getPnlDetails, walletApi_getTokensBalance as getTokensBalance, walletApi_getWalletFirstTx as getWalletFirstTx, walletApi_getWalletTransferTotal as getWalletTransferTotal, walletApi_getWalletTransfers as getWalletTransfers };
5464
5544
  }
5465
5545
 
5466
5546
  /**
@@ -6060,7 +6140,12 @@ interface WsNewToken {
6060
6140
  name: string;
6061
6141
  symbol: string;
6062
6142
  decimals?: number;
6143
+ imageUrl?: string;
6144
+ description?: string;
6145
+ socialMedia?: WsSocialMedia;
6146
+ coingeckoCoinId?: string;
6063
6147
  launchFrom?: WsDexProtocol;
6148
+ migratedTo?: WsDexProtocol;
6064
6149
  createdAtMs: number;
6065
6150
  }
6066
6151
  interface WsTokenSupply {
@@ -6114,6 +6199,7 @@ interface WsTokenMetadata {
6114
6199
  description?: string;
6115
6200
  socialMedia?: WsSocialMedia;
6116
6201
  createdAtMs?: number;
6202
+ coingeckoCoinId?: string;
6117
6203
  launchFrom?: WsDexProtocol;
6118
6204
  migratedTo?: WsDexProtocol;
6119
6205
  }
@@ -6334,6 +6420,18 @@ declare class StreamApi {
6334
6420
  * @param suffix - Time window suffix (e.g., "1m", "5m", "1h", "1W", "1M")
6335
6421
  */
6336
6422
  private parseTokenStatWindow;
6423
+ /**
6424
+ * Parse social media data from short field names
6425
+ */
6426
+ private parseSocialMedia;
6427
+ /**
6428
+ * Parse DEX protocol data from short field names
6429
+ */
6430
+ private parseDexProtocol;
6431
+ /**
6432
+ * Parse a TokenMetadataTimeEvent from raw WebSocket data
6433
+ */
6434
+ private parseTokenMetadata;
6337
6435
  /**
6338
6436
  * Subscribe to token trade statistics
6339
6437
  * Channel: dex-token-stats:{chain}_{tokenAddress}
@@ -6351,15 +6449,33 @@ declare class StreamApi {
6351
6449
  callback: (data: WsTokenHolder) => void;
6352
6450
  filter?: string;
6353
6451
  }): Unsubscribable;
6452
+ /**
6453
+ * Subscribe to new token events (single token per event, supports CEL filter)
6454
+ * Channel: dex-new-token:{chain}
6455
+ */
6354
6456
  subscribeNewToken({ chain, callback, filter, }: {
6355
6457
  chain: string;
6356
6458
  callback: (data: WsNewToken) => void;
6357
6459
  filter?: string;
6358
6460
  }): Unsubscribable;
6461
+ /**
6462
+ * Subscribe to new tokens metadata (batch, aggregated every 1 second)
6463
+ * Channel: dex-new-tokens-metadata:{chain}
6464
+ * No CEL filter support
6465
+ */
6359
6466
  subscribeNewTokensMetadata({ chain, callback, }: {
6360
6467
  chain: string;
6361
6468
  callback: (data: WsTokenMetadata[]) => void;
6362
6469
  }): Unsubscribable;
6470
+ /**
6471
+ * Subscribe to new tokens list (batch from token-created-to-realtime-pipeline)
6472
+ * Channel: dex-new-tokens:{chain}
6473
+ * No CEL filter support
6474
+ */
6475
+ subscribeNewTokens({ chain, callback, }: {
6476
+ chain: string;
6477
+ callback: (data: WsTokenMetadata[]) => void;
6478
+ }): Unsubscribable;
6363
6479
  subscribeTokenSupply({ chain, tokenAddress, callback, filter, }: {
6364
6480
  chain: string;
6365
6481
  tokenAddress: string;
@@ -6513,4 +6629,4 @@ interface PostOptions {
6513
6629
  idempotencyKey?: string;
6514
6630
  }
6515
6631
 
6516
- export { SwapRouteInputDex as $, get as A, streaming as B, ChainStreamClient as C, type StreamingResult as D, type JobDTO as E, type JobStreamingDTOData as F, type GetResult as G, type JobStreamingDTO as H, type BlockchainDTO as I, type JobDTOResult as J, ChainSymbol as K, type BlockchainLatestBlockDTO as L, SendTxInputSubmitType as M, type SendTxInputOptions as N, type SendTxInput as O, type SendTxResponse as P, type GasPriceResponse as Q, type EstimateGasLimitInput as R, StreamApi as S, type TokenProvider as T, type Unsubscribable as U, type EstimateGasLimitResponse as V, WsTokenActivityType as W, SwapInputDex as X, SwapInputSwapMode as Y, type SwapInput as Z, type SwapReply as _, WsChannelType as a, type TokenCreationDTO as a$, SwapRouteInputSwapMode as a0, type SwapRouteInput as a1, type SwapRouteResponseRouteInfo as a2, type SwapRouteResponse as a3, type DexQuoteResponse as a4, CreateTokenInputDex as a5, type CreateTokenInputExtra as a6, type CreateTokenInput as a7, type CreateTokenReply as a8, type DexDTO as a9, type TokenTradeStatPeriodLiquidityChangeRatio as aA, type TokenTradeStatPeriodBuySellRatio as aB, type TokenTradeStatPeriod as aC, type TokenStatPeriods as aD, type TokenStat as aE, type DexPoolTokenLiquidity as aF, DexPoolDTOType as aG, DexPoolDTOVersion as aH, DexPoolDTOLiquidityModel as aI, type DexPoolDTO as aJ, type TokenMarketData as aK, type TokenExtension as aL, type Token as aM, type TokenPageCountsByProtocols as aN, type TokenPage as aO, FilterConditionField as aP, type FilterCondition as aQ, type TokenMetadata as aR, type DexPoolPage as aS, type TokenHolder as aT, type TokenHolderPage as aU, Resolution as aV, PriceType as aW, type Candle as aX, type TokenPriceDTO as aY, type TokenPricePage as aZ, TokenCreationDTOType as a_, type DexPage as aa, LinkLabel as ab, type Link as ac, MoonshotCreateTokenInputDex as ad, MoonshotCreateTokenInputMigrationDex as ae, type MoonshotCreateTokenInput as af, type MoonshotCreateTokenReplyExtra as ag, type MoonshotCreateTokenReply as ah, type MoonshotSubmitCreateTokenInputExtra as ai, type MoonshotSubmitCreateTokenInput as aj, PumpCreateTokenInputDex as ak, PumpCreateTokenInputMigrationDex as al, type PumpCreateTokenInput as am, type PumpCreateTokenReplyExtra as an, type PumpCreateTokenReply as ao, type TradeDetailDTO as ap, type TradePage as aq, type TopTradersDTO as ar, type TopTradersPage as as, TraderPnlResolution as at, type TraderGainersLosersItemDTO as au, type TraderGainersLosersPage as av, type TokenCreatorsDTO as aw, type TokenExtraDTO as ax, type TokenSocialMediasDTO as ay, type TokenTradeStatPeriodVolumeChangeRatio as az, WsMetricType as b, type TransferAlertsResponseDTO as b$, type TokenCreationPage as b0, type TokenListPage as b1, type DevTokenDTO as b2, TokenTraderTag as b3, type TokenTraderOnchainCreatedAt as b4, type TokenTrader as b5, type TokenLiquiditySnapshotDTO as b6, type TokenLiquiditySnapshotPage as b7, TokenTransferItemDTOFlow as b8, type TokenTransferItemDTO as b9, TransactionHistoryItemDTOMainAction as bA, type TransactionHistoryItemDTO as bB, type TransactionHistoryPage as bC, BalanceTokenType as bD, BalanceChangeType as bE, type BalanceUpdateDTO as bF, type BalanceUpdatePage as bG, CreateRedPacketInputChain as bH, type CreateRedPacketInput as bI, type CreateRedPacketReply as bJ, ClaimRedPacketInputChain as bK, type ClaimRedPacketInput as bL, type RedPacketReply as bM, Chain as bN, type RedPacketDTO as bO, type RedPacketClaimDTO as bP, type RedPacketClaimsPage as bQ, type RedPacketsPage as bR, type RedPacketSendTxInput as bS, type RedPacketSendTxResponse as bT, KYTRegisterTransferRequestNetwork as bU, KYTRegisterTransferRequestDirection as bV, type KYTRegisterTransferRequest as bW, type TransferBaseResponseDTO as bX, type DirectExposureDetail as bY, type TransferDirectExposureResponseDTO as bZ, type AlertDetail as b_, type TokenTransferPage as ba, type TokenTransferTotalDTO as bb, type DexPoolTokenSnapshotDTO as bc, type DexPoolSnapshotDTO as bd, type DexPoolSnapshotPage as be, type WalletNetWorthSummaryValueDTO as bf, type WalletNetWorthSummaryDTOWallets as bg, type WalletNetWorthSummaryDTO as bh, type PnlDetailSummaryDTO as bi, type PnlDetailItemDTO as bj, type PnlDetailsPage as bk, type WalletFirstTxItemDTO as bl, type WalletFirstTxDTOWallets as bm, type WalletFirstTxDTO as bn, type CalculatePnlInput as bo, type BooleanResultDTO as bp, type WalletNetWorthItemDTO as bq, type WalletNetWorthPage as br, type TokensBalancePage as bs, type WalletNetWorthHistoryItemDTO as bt, type WalletNetWorthChartDTO as bu, type WalletNetWorthDetailsPage as bv, PnlResolution as bw, WalletPnlSummaryDTOResolution as bx, type WalletPnlSummaryDTO as by, TransactionHistoryItemDTOStatus as bz, type WsTokenActivity as c, type GetHoldersMultiParams as c$, type NetworkIdentificationOrg as c0, type TransferNetworkIdentificationsResponseDTO as c1, KYTRegisterWithdrawalRequestNetwork as c2, type KYTRegisterWithdrawalRequest as c3, type WithdrawalBaseResponseDTO as c4, type ChainalysisAddressIdentification as c5, type WithdrawalAddressIdentificationsResponseDTO as c6, type OnChainActivity as c7, type AlteryaIdentification as c8, type WithdrawalFraudAssessmentResponseDTO as c9, GetActivitiesDirection as cA, GetActivitiesType as cB, type GetTopTradersParams as cC, GetTopTradersDirection as cD, GetTopTradersTimeFrame as cE, GetTopTradersSortType as cF, GetTopTradersSortBy as cG, type GetTraderGainersLosersParams as cH, GetTraderGainersLosersDirection as cI, GetTraderGainersLosersSortType as cJ, type SearchParams as cK, SearchDirection as cL, SearchSort as cM, SearchSortBy as cN, type GetTokensParams as cO, GetTokensSortBy as cP, GetTokensSortDirection as cQ, type GetMetadataMultiParams as cR, type GetMetadataMulti200 as cS, type GetPoolsParams as cT, GetPoolsDirection as cU, GetPoolsSortBy as cV, GetPoolsSortDirection as cW, type GetStatsMultiParams as cX, type GetStatsMulti200 as cY, type GetHoldersParams as cZ, GetHoldersDirection as c_, type RegisterAddressRequest as ca, type RegisterAddressResponseDTO as cb, type AddressExposure as cc, type AddressRiskResponseDTO as cd, EndpointResponseChannelsItem as ce, type EndpointResponseMetadata as cf, type EndpointResponse as cg, type EndpointListResponse as ch, type EndpointSecretResponse as ci, type EndpointOperationResponse as cj, CreateEndpointInputChannelsItem as ck, type CreateEndpointInputMetadata as cl, type CreateEndpointInput as cm, UpdateEndpointInputChannelsItem as cn, type UpdateEndpointInputMetadata as co, type UpdateEndpointInput as cp, TradeType as cq, type TradeEvent as cr, type QuoteParams as cs, QuoteDex as ct, type ListDexParams as cu, type MoonshotSubmitCreateToken200 as cv, type GetTradesParams as cw, GetTradesDirection as cx, GetTradesType as cy, type GetActivitiesParams as cz, type WsTokenStat as d, type GetWalletTransferTotalParams as d$, type GetCandlesParams as d0, type GetPoolCandlesParams as d1, type GetPairCandlesParams as d2, type GetMarketDataMultiParams as d3, type GetMarketDataMulti200 as d4, type GetPricesParams as d5, GetPricesDirection as d6, type GetPriceByTimeParams as d7, type GetMintAndBurnParams as d8, GetMintAndBurnDirection as d9, GetStocksTokensTag as dA, type GetFinalStretchTokensParams as dB, GetFinalStretchTokensSortBy as dC, GetFinalStretchTokensSortDirection as dD, GetFinalStretchTokensTag as dE, type GetMigratedTokensParams as dF, GetMigratedTokensSortBy as dG, GetMigratedTokensSortDirection as dH, GetMigratedTokensTag as dI, type GetNetWorthSummaryParams as dJ, type GetPnlByWalletParams as dK, GetPnlByWalletDirection as dL, type GetWalletFirstTxParams as dM, type GetNetWorthParams as dN, GetNetWorthDirection as dO, type GetTokensBalanceParams as dP, GetTokensBalanceDirection as dQ, type GetNetWorthChartParams as dR, type GetNetWorthDetailsParams as dS, GetNetWorthDetailsDirection as dT, type GetPnlParams as dU, type GetPnlDetailsParams as dV, GetPnlDetailsDirection as dW, type GetPnlByTokenParams as dX, GetPnlByTokenDirection as dY, type GetWalletTransfersParams as dZ, GetWalletTransfersDirection as d_, GetMintAndBurnType as da, type ListTokenParams as db, ListTokenDirection as dc, ListTokenSort as dd, ListTokenSortBy as de, type GetSecurity200 as df, type GetTokenLiquiditySnapshotsParams as dg, GetTokenLiquiditySnapshotsDirection as dh, type GetTokenTransfersParams as di, GetTokenTransfersDirection as dj, type GetTokenTransferTotalParams as dk, GetTokenTransferTotalDirection as dl, type GetDexpoolSnapshotsParams as dm, GetDexpoolSnapshotsDirection as dn, type GetHotTokensParams as dp, GetHotTokensSortBy as dq, GetHotTokensSortDirection as dr, GetHotTokensTag as ds, type GetNewTokensParams as dt, GetNewTokensSortBy as du, GetNewTokensSortDirection as dv, GetNewTokensTag as dw, type GetStocksTokensParams as dx, GetStocksTokensSortBy as dy, GetStocksTokensSortDirection as dz, type WsTokenHolder as e, getPriceByTime as e$, GetWalletTransferTotalDirection as e0, type GetBalanceUpdatesParams as e1, GetBalanceUpdatesDirection as e2, type GetClaimsParams as e3, type GetRedpacketsParams as e4, GetRedpacketsChain as e5, type GetClaimsByAddressParams as e6, type GetRedpacketsByAddressParams as e7, type ListEndpointsParams as e8, ListEndpointsOrder as e9, pumpfunCreateToken as eA, type PumpfunCreateTokenResult as eB, getTrades as eC, getActivities as eD, getTopTraders as eE, getTraderGainersLosers as eF, type GetTradesResult as eG, type GetActivitiesResult as eH, type GetTopTradersResult as eI, type GetTraderGainersLosersResult as eJ, search as eK, getTokens as eL, getToken as eM, getMetadata as eN, getMetadataMulti as eO, getPools as eP, getStats as eQ, getStatsMulti as eR, getHolders as eS, getHoldersMulti as eT, getCandles as eU, getPoolCandles as eV, getPairCandles as eW, getTopHolders as eX, getMarketData as eY, getMarketDataMulti as eZ, getPrices as e_, presign as ea, type PresignResult as eb, getSupportedBlockchains as ec, getLatestBlock as ed, type GetSupportedBlockchainsResult as ee, type GetLatestBlockResult as ef, send as eg, getGasPrice as eh, getGasLimit as ei, type SendResult as ej, type GetGasPriceResult as ek, type GetGasLimitResult as el, swap as em, route as en, quote as eo, createToken as ep, listDex as eq, type SwapResult as er, type RouteResult as es, type QuoteResult as et, type CreateTokenResult as eu, type ListDexResult as ev, moonshotCreateToken as ew, moonshotSubmitCreateToken as ex, type MoonshotCreateTokenResult as ey, type MoonshotSubmitCreateTokenResult as ez, type WsWalletBalance as f, getBalanceUpdates as f$, getCreation as f0, getMintAndBurn as f1, listToken as f2, getSecurity as f3, getDevTokens as f4, getTokenTraders as f5, getTokenLiquiditySnapshots as f6, getTokenTransfers as f7, getTokenTransferTotal as f8, type SearchResult as f9, getDexpool as fA, getDexpoolSnapshots as fB, type GetDexpoolResult as fC, type GetDexpoolSnapshotsResult as fD, getHotTokens as fE, getNewTokens as fF, getStocksTokens as fG, getFinalStretchTokens as fH, getMigratedTokens as fI, type GetHotTokensResult as fJ, type GetNewTokensResult as fK, type GetStocksTokensResult as fL, type GetFinalStretchTokensResult as fM, type GetMigratedTokensResult as fN, getNetWorthSummary as fO, getPnlByWallet as fP, getWalletFirstTx as fQ, calculatePnl as fR, getNetWorth as fS, getTokensBalance as fT, getNetWorthChart as fU, getNetWorthDetails as fV, getPnl as fW, getPnlDetails as fX, getPnlByToken as fY, getWalletTransfers as fZ, getWalletTransferTotal as f_, type GetTokensResult as fa, type GetTokenResult as fb, type GetMetadataResult as fc, type GetMetadataMultiResult as fd, type GetPoolsResult as fe, type GetStatsResult as ff, type GetStatsMultiResult as fg, type GetHoldersResult as fh, type GetHoldersMultiResult as fi, type GetCandlesResult as fj, type GetPoolCandlesResult as fk, type GetPairCandlesResult as fl, type GetTopHoldersResult as fm, type GetMarketDataResult as fn, type GetMarketDataMultiResult as fo, type GetPricesResult as fp, type GetPriceByTimeResult as fq, type GetCreationResult as fr, type GetMintAndBurnResult as fs, type ListTokenResult as ft, type GetSecurityResult as fu, type GetDevTokensResult as fv, type GetTokenTradersResult as fw, type GetTokenLiquiditySnapshotsResult as fx, type GetTokenTransfersResult as fy, type GetTokenTransferTotalResult as fz, type WsWalletPnl as g, getEndpoint as g$, type GetNetWorthSummaryResult as g0, type GetPnlByWalletResult as g1, type GetWalletFirstTxResult as g2, type CalculatePnlResult as g3, type GetNetWorthResult as g4, type GetTokensBalanceResult as g5, type GetNetWorthChartResult as g6, type GetNetWorthDetailsResult as g7, type GetPnlResult as g8, type GetPnlDetailsResult as g9, getTransferNetworkIdentifications as gA, registerWithdrawal as gB, getWithdrawalSummary as gC, getWithdrawalDirectExposure as gD, getWithdrawalAlerts as gE, getWithdrawalAddressIdentifications as gF, getWithdrawalNetworkIdentifications as gG, getWithdrawalFraudAssessment as gH, registerAddress as gI, getAddressRisk as gJ, type RegisterTransferResult as gK, type GetTransferSummaryResult as gL, type GetTransferDirectExposureResult as gM, type GetTransferAlertsResult as gN, type GetTransferNetworkIdentificationsResult as gO, type RegisterWithdrawalResult as gP, type GetWithdrawalSummaryResult as gQ, type GetWithdrawalDirectExposureResult as gR, type GetWithdrawalAlertsResult as gS, type GetWithdrawalAddressIdentificationsResult as gT, type GetWithdrawalNetworkIdentificationsResult as gU, type GetWithdrawalFraudAssessmentResult as gV, type RegisterAddressResult as gW, type GetAddressRiskResult as gX, listEndpoints as gY, createEndpoint as gZ, updateEndpoint as g_, type GetPnlByTokenResult as ga, type GetWalletTransfersResult as gb, type GetWalletTransferTotalResult as gc, type GetBalanceUpdatesResult as gd, createRedpacket as ge, claimRedpacket as gf, getRedpacket as gg, getClaims as gh, getRedpackets as gi, getClaimsByAddress as gj, getRedpacketsByAddress as gk, redpacketSend as gl, type CreateRedpacketResult as gm, type ClaimRedpacketResult as gn, type GetRedpacketResult as go, type GetClaimsResult as gp, type GetRedpacketsResult as gq, type GetClaimsByAddressResult as gr, type GetRedpacketsByAddressResult as gs, type RedpacketSendResult as gt, watchlistAdd as gu, type WatchlistAddResult as gv, registerTransfer as gw, getTransferSummary as gx, getTransferDirectExposure as gy, getTransferAlerts as gz, type WsNewToken as h, deleteEndpoint as h0, getEndpointSecret as h1, rotateEndpointSecret as h2, type ListEndpointsResult as h3, type CreateEndpointResult as h4, type UpdateEndpointResult as h5, type GetEndpointResult as h6, type DeleteEndpointResult as h7, type GetEndpointSecretResult as h8, type RotateEndpointSecretResult as h9, type PostOptions as ha, type WsTokenSupply as i, type WsDexPoolBalance as j, type WsTokenLiquidity as k, type WsTokenMaxLiquidity as l, type WsTokenTotalLiquidity as m, type WsDexProtocol as n, type WsTokenBondingCurve as o, type WsTokenMetadata as p, type WsSocialMedia as q, type WsCandle as r, type WsPriceType as s, type WsTradeActivity as t, type WsWalletTokenPnl as u, WsRankingType as v, WsDex as w, type WsRankingTokenList as x, type ChainStreamClientOptions as y, type ChainStreamRequestContext as z };
6632
+ export { SwapRouteInputDex as $, get as A, streaming as B, ChainStreamClient as C, type StreamingResult as D, type JobDTO as E, type JobStreamingDTOData as F, type GetResult as G, type JobStreamingDTO as H, type BlockchainDTO as I, type JobDTOResult as J, ChainSymbol as K, type BlockchainLatestBlockDTO as L, SendTxInputSubmitType as M, type SendTxInputOptions as N, type SendTxInput as O, type SendTxResponse as P, type GasPriceResponse as Q, type EstimateGasLimitInput as R, StreamApi as S, type TokenProvider as T, type Unsubscribable as U, type EstimateGasLimitResponse as V, WsTokenActivityType as W, SwapInputDex as X, SwapInputSwapMode as Y, type SwapInput as Z, type SwapReply as _, WsChannelType as a, type TokenCreationDTO as a$, SwapRouteInputSwapMode as a0, type SwapRouteInput as a1, type SwapRouteResponseRouteInfo as a2, type SwapRouteResponse as a3, type DexQuoteResponse as a4, CreateTokenInputDex as a5, type CreateTokenInputExtra as a6, type CreateTokenInput as a7, type CreateTokenReply as a8, type DexDTO as a9, type TokenTradeStatPeriodLiquidityChangeRatio as aA, type TokenTradeStatPeriodBuySellRatio as aB, type TokenTradeStatPeriod as aC, type TokenStatPeriods as aD, type TokenStat as aE, type DexPoolTokenLiquidity as aF, DexPoolDTOType as aG, DexPoolDTOVersion as aH, DexPoolDTOLiquidityModel as aI, type DexPoolDTO as aJ, type TokenMarketData as aK, type TokenExtension as aL, type Token as aM, type TokenPageCountsByProtocols as aN, type TokenPage as aO, FilterConditionField as aP, type FilterCondition as aQ, type TokenMetadata as aR, type DexPoolPage as aS, type TokenHolder as aT, type TokenHolderPage as aU, Resolution as aV, PriceType as aW, type Candle as aX, type TokenPriceDTO as aY, type TokenPricePage as aZ, TokenCreationDTOType as a_, type DexPage as aa, LinkLabel as ab, type Link as ac, MoonshotCreateTokenInputDex as ad, MoonshotCreateTokenInputMigrationDex as ae, type MoonshotCreateTokenInput as af, type MoonshotCreateTokenReplyExtra as ag, type MoonshotCreateTokenReply as ah, type MoonshotSubmitCreateTokenInputExtra as ai, type MoonshotSubmitCreateTokenInput as aj, PumpCreateTokenInputDex as ak, PumpCreateTokenInputMigrationDex as al, type PumpCreateTokenInput as am, type PumpCreateTokenReplyExtra as an, type PumpCreateTokenReply as ao, type TradeDetailDTO as ap, type TradePage as aq, type TopTradersDTO as ar, type TopTradersPage as as, TraderPnlResolution as at, type TraderGainersLosersItemDTO as au, type TraderGainersLosersPage as av, type TokenCreatorsDTO as aw, type TokenExtraDTO as ax, type TokenSocialMediasDTO as ay, type TokenTradeStatPeriodVolumeChangeRatio as az, WsMetricType as b, type AlertDetail as b$, type TokenCreationPage as b0, type TokenListPage as b1, type DevTokenDTO as b2, TokenTraderTag as b3, type TokenTraderOnchainCreatedAt as b4, type TokenTrader as b5, type TokenLiquiditySnapshotDTO as b6, type TokenLiquiditySnapshotPage as b7, TokenTransferItemDTOFlow as b8, type TokenTransferItemDTO as b9, TransactionHistoryItemDTOStatus as bA, TransactionHistoryItemDTOMainAction as bB, type TransactionHistoryItemDTO as bC, type TransactionHistoryPage as bD, BalanceTokenType as bE, BalanceChangeType as bF, type BalanceUpdateDTO as bG, type BalanceUpdatePage as bH, CreateRedPacketInputChain as bI, type CreateRedPacketInput as bJ, type CreateRedPacketReply as bK, ClaimRedPacketInputChain as bL, type ClaimRedPacketInput as bM, type RedPacketReply as bN, Chain as bO, type RedPacketDTO as bP, type RedPacketClaimDTO as bQ, type RedPacketClaimsPage as bR, type RedPacketsPage as bS, type RedPacketSendTxInput as bT, type RedPacketSendTxResponse as bU, KYTRegisterTransferRequestNetwork as bV, KYTRegisterTransferRequestDirection as bW, type KYTRegisterTransferRequest as bX, type TransferBaseResponseDTO as bY, type DirectExposureDetail as bZ, type TransferDirectExposureResponseDTO as b_, type TokenTransferPage as ba, type TokenTransferTotalDTO as bb, type DexPoolTokenSnapshotDTO as bc, type DexPoolSnapshotDTO as bd, type DexPoolSnapshotPage as be, type WalletNetWorthSummaryValueDTO as bf, type WalletNetWorthSummaryDTOWallets as bg, type WalletNetWorthSummaryDTO as bh, type PnlDetailSummaryDTO as bi, type PnlDetailItemDTO as bj, type PnlDetailsPage as bk, type WalletFirstTxItemDTO as bl, type WalletFirstTxDTOWallets as bm, type WalletFirstTxDTO as bn, type CalculatePnlInput as bo, type BooleanResultDTO as bp, type WalletNetWorthItemDTO as bq, type WalletNetWorthPage as br, type WalletNetWorthByTokensResult as bs, type TokensBalancePage as bt, type WalletNetWorthHistoryItemDTO as bu, type WalletNetWorthChartDTO as bv, type WalletNetWorthDetailsPage as bw, PnlResolution as bx, WalletPnlSummaryDTOResolution as by, type WalletPnlSummaryDTO as bz, type WsTokenActivity as c, GetHoldersDirection as c$, type TransferAlertsResponseDTO as c0, type NetworkIdentificationOrg as c1, type TransferNetworkIdentificationsResponseDTO as c2, KYTRegisterWithdrawalRequestNetwork as c3, type KYTRegisterWithdrawalRequest as c4, type WithdrawalBaseResponseDTO as c5, type ChainalysisAddressIdentification as c6, type WithdrawalAddressIdentificationsResponseDTO as c7, type OnChainActivity as c8, type AlteryaIdentification as c9, type GetActivitiesParams as cA, GetActivitiesDirection as cB, GetActivitiesType as cC, type GetTopTradersParams as cD, GetTopTradersDirection as cE, GetTopTradersTimeFrame as cF, GetTopTradersSortType as cG, GetTopTradersSortBy as cH, type GetTraderGainersLosersParams as cI, GetTraderGainersLosersDirection as cJ, GetTraderGainersLosersSortType as cK, type SearchParams as cL, SearchDirection as cM, SearchSort as cN, SearchSortBy as cO, type GetTokensParams as cP, GetTokensSortBy as cQ, GetTokensSortDirection as cR, type GetMetadataMultiParams as cS, type GetMetadataMulti200 as cT, type GetPoolsParams as cU, GetPoolsDirection as cV, GetPoolsSortBy as cW, GetPoolsSortDirection as cX, type GetStatsMultiParams as cY, type GetStatsMulti200 as cZ, type GetHoldersParams as c_, type WithdrawalFraudAssessmentResponseDTO as ca, type RegisterAddressRequest as cb, type RegisterAddressResponseDTO as cc, type AddressExposure as cd, type AddressRiskResponseDTO as ce, EndpointResponseChannelsItem as cf, type EndpointResponseMetadata as cg, type EndpointResponse as ch, type EndpointListResponse as ci, type EndpointSecretResponse as cj, type EndpointOperationResponse as ck, CreateEndpointInputChannelsItem as cl, type CreateEndpointInputMetadata as cm, type CreateEndpointInput as cn, UpdateEndpointInputChannelsItem as co, type UpdateEndpointInputMetadata as cp, type UpdateEndpointInput as cq, TradeType as cr, type TradeEvent as cs, type QuoteParams as ct, QuoteDex as cu, type ListDexParams as cv, type MoonshotSubmitCreateToken200 as cw, type GetTradesParams as cx, GetTradesDirection as cy, GetTradesType as cz, type WsTokenStat as d, type GetWalletTransfersParams as d$, type GetHoldersMultiParams as d0, type GetCandlesParams as d1, type GetPoolCandlesParams as d2, type GetPairCandlesParams as d3, type GetMarketDataMultiParams as d4, type GetMarketDataMulti200 as d5, type GetPricesParams as d6, GetPricesDirection as d7, type GetPriceByTimeParams as d8, type GetMintAndBurnParams as d9, GetStocksTokensSortDirection as dA, GetStocksTokensTag as dB, type GetFinalStretchTokensParams as dC, GetFinalStretchTokensSortBy as dD, GetFinalStretchTokensSortDirection as dE, GetFinalStretchTokensTag as dF, type GetMigratedTokensParams as dG, GetMigratedTokensSortBy as dH, GetMigratedTokensSortDirection as dI, GetMigratedTokensTag as dJ, type GetNetWorthSummaryParams as dK, type GetPnlByWalletParams as dL, GetPnlByWalletDirection as dM, type GetWalletFirstTxParams as dN, type GetNetWorthParams as dO, GetNetWorthDirection as dP, type GetNetWorthByTokensParams as dQ, type GetTokensBalanceParams as dR, GetTokensBalanceDirection as dS, type GetNetWorthChartParams as dT, type GetNetWorthDetailsParams as dU, GetNetWorthDetailsDirection as dV, type GetPnlParams as dW, type GetPnlDetailsParams as dX, GetPnlDetailsDirection as dY, type GetPnlByTokenParams as dZ, GetPnlByTokenDirection as d_, GetMintAndBurnDirection as da, GetMintAndBurnType as db, type ListTokenParams as dc, ListTokenDirection as dd, ListTokenSort as de, ListTokenSortBy as df, type GetSecurity200 as dg, type GetTokenLiquiditySnapshotsParams as dh, GetTokenLiquiditySnapshotsDirection as di, type GetTokenTransfersParams as dj, GetTokenTransfersDirection as dk, type GetTokenTransferTotalParams as dl, GetTokenTransferTotalDirection as dm, type GetDexpoolSnapshotsParams as dn, GetDexpoolSnapshotsDirection as dp, type GetHotTokensParams as dq, GetHotTokensSortBy as dr, GetHotTokensSortDirection as ds, GetHotTokensTag as dt, type GetNewTokensParams as du, GetNewTokensSortBy as dv, GetNewTokensSortDirection as dw, GetNewTokensTag as dx, type GetStocksTokensParams as dy, GetStocksTokensSortBy as dz, type WsTokenHolder as e, getMarketDataMulti as e$, GetWalletTransfersDirection as e0, type GetWalletTransferTotalParams as e1, GetWalletTransferTotalDirection as e2, type GetBalanceUpdatesParams as e3, GetBalanceUpdatesDirection as e4, type GetClaimsParams as e5, type GetRedpacketsParams as e6, GetRedpacketsChain as e7, type GetClaimsByAddressParams as e8, type GetRedpacketsByAddressParams as e9, type MoonshotCreateTokenResult as eA, type MoonshotSubmitCreateTokenResult as eB, pumpfunCreateToken as eC, type PumpfunCreateTokenResult as eD, getTrades as eE, getActivities as eF, getTopTraders as eG, getTraderGainersLosers as eH, type GetTradesResult as eI, type GetActivitiesResult as eJ, type GetTopTradersResult as eK, type GetTraderGainersLosersResult as eL, search as eM, getTokens as eN, getToken as eO, getMetadata as eP, getMetadataMulti as eQ, getPools as eR, getStats as eS, getStatsMulti as eT, getHolders as eU, getHoldersMulti as eV, getCandles as eW, getPoolCandles as eX, getPairCandles as eY, getTopHolders as eZ, getMarketData as e_, type ListEndpointsParams as ea, ListEndpointsOrder as eb, presign as ec, type PresignResult as ed, getSupportedBlockchains as ee, getLatestBlock as ef, type GetSupportedBlockchainsResult as eg, type GetLatestBlockResult as eh, send as ei, getGasPrice as ej, getGasLimit as ek, type SendResult as el, type GetGasPriceResult as em, type GetGasLimitResult as en, swap as eo, route as ep, quote as eq, createToken as er, listDex as es, type SwapResult as et, type RouteResult as eu, type QuoteResult as ev, type CreateTokenResult as ew, type ListDexResult as ex, moonshotCreateToken as ey, moonshotSubmitCreateToken as ez, type WsWalletBalance as f, getPnlByToken as f$, getPrices as f0, getPriceByTime as f1, getCreation as f2, getMintAndBurn as f3, listToken as f4, getSecurity as f5, getDevTokens as f6, getTokenTraders as f7, getTokenLiquiditySnapshots as f8, getTokenTransfers as f9, type GetTokenTransfersResult as fA, type GetTokenTransferTotalResult as fB, getDexpool as fC, getDexpoolSnapshots as fD, type GetDexpoolResult as fE, type GetDexpoolSnapshotsResult as fF, getHotTokens as fG, getNewTokens as fH, getStocksTokens as fI, getFinalStretchTokens as fJ, getMigratedTokens as fK, type GetHotTokensResult as fL, type GetNewTokensResult as fM, type GetStocksTokensResult as fN, type GetFinalStretchTokensResult as fO, type GetMigratedTokensResult as fP, getNetWorthSummary as fQ, getPnlByWallet as fR, getWalletFirstTx as fS, calculatePnl as fT, getNetWorth as fU, getNetWorthByTokens as fV, getTokensBalance as fW, getNetWorthChart as fX, getNetWorthDetails as fY, getPnl as fZ, getPnlDetails as f_, getTokenTransferTotal as fa, type SearchResult as fb, type GetTokensResult as fc, type GetTokenResult as fd, type GetMetadataResult as fe, type GetMetadataMultiResult as ff, type GetPoolsResult as fg, type GetStatsResult as fh, type GetStatsMultiResult as fi, type GetHoldersResult as fj, type GetHoldersMultiResult as fk, type GetCandlesResult as fl, type GetPoolCandlesResult as fm, type GetPairCandlesResult as fn, type GetTopHoldersResult as fo, type GetMarketDataResult as fp, type GetMarketDataMultiResult as fq, type GetPricesResult as fr, type GetPriceByTimeResult as fs, type GetCreationResult as ft, type GetMintAndBurnResult as fu, type ListTokenResult as fv, type GetSecurityResult as fw, type GetDevTokensResult as fx, type GetTokenTradersResult as fy, type GetTokenLiquiditySnapshotsResult as fz, type WsWalletPnl as g, type GetAddressRiskResult as g$, getWalletTransfers as g0, getWalletTransferTotal as g1, getBalanceUpdates as g2, type GetNetWorthSummaryResult as g3, type GetPnlByWalletResult as g4, type GetWalletFirstTxResult as g5, type CalculatePnlResult as g6, type GetNetWorthResult as g7, type GetNetWorthByTokensResult as g8, type GetTokensBalanceResult as g9, registerTransfer as gA, getTransferSummary as gB, getTransferDirectExposure as gC, getTransferAlerts as gD, getTransferNetworkIdentifications as gE, registerWithdrawal as gF, getWithdrawalSummary as gG, getWithdrawalDirectExposure as gH, getWithdrawalAlerts as gI, getWithdrawalAddressIdentifications as gJ, getWithdrawalNetworkIdentifications as gK, getWithdrawalFraudAssessment as gL, registerAddress as gM, getAddressRisk as gN, type RegisterTransferResult as gO, type GetTransferSummaryResult as gP, type GetTransferDirectExposureResult as gQ, type GetTransferAlertsResult as gR, type GetTransferNetworkIdentificationsResult as gS, type RegisterWithdrawalResult as gT, type GetWithdrawalSummaryResult as gU, type GetWithdrawalDirectExposureResult as gV, type GetWithdrawalAlertsResult as gW, type GetWithdrawalAddressIdentificationsResult as gX, type GetWithdrawalNetworkIdentificationsResult as gY, type GetWithdrawalFraudAssessmentResult as gZ, type RegisterAddressResult as g_, type GetNetWorthChartResult as ga, type GetNetWorthDetailsResult as gb, type GetPnlResult as gc, type GetPnlDetailsResult as gd, type GetPnlByTokenResult as ge, type GetWalletTransfersResult as gf, type GetWalletTransferTotalResult as gg, type GetBalanceUpdatesResult as gh, createRedpacket as gi, claimRedpacket as gj, getRedpacket as gk, getClaims as gl, getRedpackets as gm, getClaimsByAddress as gn, getRedpacketsByAddress as go, redpacketSend as gp, type CreateRedpacketResult as gq, type ClaimRedpacketResult as gr, type GetRedpacketResult as gs, type GetClaimsResult as gt, type GetRedpacketsResult as gu, type GetClaimsByAddressResult as gv, type GetRedpacketsByAddressResult as gw, type RedpacketSendResult as gx, watchlistAdd as gy, type WatchlistAddResult as gz, type WsNewToken as h, listEndpoints as h0, createEndpoint as h1, updateEndpoint as h2, getEndpoint as h3, deleteEndpoint as h4, getEndpointSecret as h5, rotateEndpointSecret as h6, type ListEndpointsResult as h7, type CreateEndpointResult as h8, type UpdateEndpointResult as h9, type GetEndpointResult as ha, type DeleteEndpointResult as hb, type GetEndpointSecretResult as hc, type RotateEndpointSecretResult as hd, type PostOptions as he, type WsTokenSupply as i, type WsDexPoolBalance as j, type WsTokenLiquidity as k, type WsTokenMaxLiquidity as l, type WsTokenTotalLiquidity as m, type WsDexProtocol as n, type WsTokenBondingCurve as o, type WsTokenMetadata as p, type WsSocialMedia as q, type WsCandle as r, type WsPriceType as s, type WsTradeActivity as t, type WsWalletTokenPnl as u, WsRankingType as v, WsDex as w, type WsRankingTokenList as x, type ChainStreamClientOptions as y, type ChainStreamRequestContext as z };