@chainstream-io/sdk 0.2.10 → 0.2.12

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 */
@@ -1559,11 +1583,15 @@ interface DexPoolSnapshotPage {
1559
1583
  /** DTO.PAGE.HAS_PREV */
1560
1584
  hasPrev: boolean;
1561
1585
  }
1586
+ interface WalletNetWorthSummaryValueDTO {
1587
+ /** DTO.WALLET.NET_WORTH_SUMMARY.VALUE */
1588
+ value: string;
1589
+ }
1562
1590
  /**
1563
1591
  * DTO.WALLET.NET_WORTH_SUMMARY.WALLETS
1564
1592
  */
1565
1593
  type WalletNetWorthSummaryDTOWallets = {
1566
- [key: string]: unknown;
1594
+ [key: string]: WalletNetWorthSummaryValueDTO;
1567
1595
  };
1568
1596
  interface WalletNetWorthSummaryDTO {
1569
1597
  /** DTO.WALLET.NET_WORTH_SUMMARY.CURRENT_TIMESTAMP */
@@ -1673,11 +1701,25 @@ interface PnlDetailsPage {
1673
1701
  /** DTO.PAGE.DATA */
1674
1702
  data: PnlDetailItemDTO[];
1675
1703
  }
1704
+ interface WalletFirstTxItemDTO {
1705
+ /** DTO.WALLET.FIRST_TX.TX_HASH */
1706
+ txHash: string;
1707
+ /** DTO.WALLET.FIRST_TX.BLOCK_TIME */
1708
+ blockTime: number;
1709
+ /** DTO.WALLET.FIRST_TX.BLOCK_NUMBER */
1710
+ blockNumber: number;
1711
+ /** DTO.WALLET.FIRST_TX.BALANCE_CHANGE */
1712
+ balanceChange: string;
1713
+ /** DTO.WALLET.FIRST_TX.TOKEN_ADDRESS */
1714
+ tokenAddress: string;
1715
+ /** DTO.WALLET.FIRST_TX.TOKEN_DECIMALS */
1716
+ decimals: number;
1717
+ }
1676
1718
  /**
1677
1719
  * DTO.WALLET.FIRST_TX.TX_HASH
1678
1720
  */
1679
1721
  type WalletFirstTxDTOWallets = {
1680
- [key: string]: unknown;
1722
+ [key: string]: WalletFirstTxItemDTO;
1681
1723
  };
1682
1724
  interface WalletFirstTxDTO {
1683
1725
  /** DTO.WALLET.FIRST_TX.TX_HASH */
@@ -1940,8 +1982,6 @@ declare const BalanceChangeType: {
1940
1982
  readonly DECREASE: "DECREASE";
1941
1983
  };
1942
1984
  interface BalanceUpdateDTO {
1943
- /** DTO.WALLET.BALANCE_UPDATE.ID */
1944
- id: number;
1945
1985
  /** DTO.WALLET.BALANCE_UPDATE.BLOCK_HASH */
1946
1986
  blockHash: string;
1947
1987
  /** DTO.WALLET.BALANCE_UPDATE.BLOCK_HEIGHT */
@@ -4557,6 +4597,22 @@ type GetWalletTransfersParams = {
4557
4597
  * DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
4558
4598
  */
4559
4599
  afterTimestamp?: number;
4600
+ /**
4601
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT
4602
+ */
4603
+ minTokenAmount?: string;
4604
+ /**
4605
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT
4606
+ */
4607
+ maxTokenAmount?: string;
4608
+ /**
4609
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT_IN_USD
4610
+ */
4611
+ minTokenAmountInUsd?: string;
4612
+ /**
4613
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT_IN_USD
4614
+ */
4615
+ maxTokenAmountInUsd?: string;
4560
4616
  };
4561
4617
  type GetWalletTransfersDirection = (typeof GetWalletTransfersDirection)[keyof typeof GetWalletTransfersDirection];
4562
4618
  declare const GetWalletTransfersDirection: {
@@ -4588,6 +4644,22 @@ type GetWalletTransferTotalParams = {
4588
4644
  * DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
4589
4645
  */
4590
4646
  afterTimestamp?: number;
4647
+ /**
4648
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT
4649
+ */
4650
+ minTokenAmount?: string;
4651
+ /**
4652
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT
4653
+ */
4654
+ maxTokenAmount?: string;
4655
+ /**
4656
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT_IN_USD
4657
+ */
4658
+ minTokenAmountInUsd?: string;
4659
+ /**
4660
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT_IN_USD
4661
+ */
4662
+ maxTokenAmountInUsd?: string;
4591
4663
  };
4592
4664
  type GetWalletTransferTotalDirection = (typeof GetWalletTransferTotalDirection)[keyof typeof GetWalletTransferTotalDirection];
4593
4665
  declare const GetWalletTransferTotalDirection: {
@@ -6042,7 +6114,12 @@ interface WsNewToken {
6042
6114
  name: string;
6043
6115
  symbol: string;
6044
6116
  decimals?: number;
6117
+ imageUrl?: string;
6118
+ description?: string;
6119
+ socialMedia?: WsSocialMedia;
6120
+ coingeckoCoinId?: string;
6045
6121
  launchFrom?: WsDexProtocol;
6122
+ migratedTo?: WsDexProtocol;
6046
6123
  createdAtMs: number;
6047
6124
  }
6048
6125
  interface WsTokenSupply {
@@ -6096,6 +6173,7 @@ interface WsTokenMetadata {
6096
6173
  description?: string;
6097
6174
  socialMedia?: WsSocialMedia;
6098
6175
  createdAtMs?: number;
6176
+ coingeckoCoinId?: string;
6099
6177
  launchFrom?: WsDexProtocol;
6100
6178
  migratedTo?: WsDexProtocol;
6101
6179
  }
@@ -6316,6 +6394,18 @@ declare class StreamApi {
6316
6394
  * @param suffix - Time window suffix (e.g., "1m", "5m", "1h", "1W", "1M")
6317
6395
  */
6318
6396
  private parseTokenStatWindow;
6397
+ /**
6398
+ * Parse social media data from short field names
6399
+ */
6400
+ private parseSocialMedia;
6401
+ /**
6402
+ * Parse DEX protocol data from short field names
6403
+ */
6404
+ private parseDexProtocol;
6405
+ /**
6406
+ * Parse a TokenMetadataTimeEvent from raw WebSocket data
6407
+ */
6408
+ private parseTokenMetadata;
6319
6409
  /**
6320
6410
  * Subscribe to token trade statistics
6321
6411
  * Channel: dex-token-stats:{chain}_{tokenAddress}
@@ -6333,15 +6423,33 @@ declare class StreamApi {
6333
6423
  callback: (data: WsTokenHolder) => void;
6334
6424
  filter?: string;
6335
6425
  }): Unsubscribable;
6426
+ /**
6427
+ * Subscribe to new token events (single token per event, supports CEL filter)
6428
+ * Channel: dex-new-token:{chain}
6429
+ */
6336
6430
  subscribeNewToken({ chain, callback, filter, }: {
6337
6431
  chain: string;
6338
6432
  callback: (data: WsNewToken) => void;
6339
6433
  filter?: string;
6340
6434
  }): Unsubscribable;
6435
+ /**
6436
+ * Subscribe to new tokens metadata (batch, aggregated every 1 second)
6437
+ * Channel: dex-new-tokens-metadata:{chain}
6438
+ * No CEL filter support
6439
+ */
6341
6440
  subscribeNewTokensMetadata({ chain, callback, }: {
6342
6441
  chain: string;
6343
6442
  callback: (data: WsTokenMetadata[]) => void;
6344
6443
  }): Unsubscribable;
6444
+ /**
6445
+ * Subscribe to new tokens list (batch from token-created-to-realtime-pipeline)
6446
+ * Channel: dex-new-tokens:{chain}
6447
+ * No CEL filter support
6448
+ */
6449
+ subscribeNewTokens({ chain, callback, }: {
6450
+ chain: string;
6451
+ callback: (data: WsTokenMetadata[]) => void;
6452
+ }): Unsubscribable;
6345
6453
  subscribeTokenSupply({ chain, tokenAddress, callback, filter, }: {
6346
6454
  chain: string;
6347
6455
  tokenAddress: string;
@@ -6495,4 +6603,4 @@ interface PostOptions {
6495
6603
  idempotencyKey?: string;
6496
6604
  }
6497
6605
 
6498
- 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 TransferNetworkIdentificationsResponseDTO 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, type TransactionHistoryPage as bA, BalanceTokenType as bB, BalanceChangeType as bC, type BalanceUpdateDTO as bD, type BalanceUpdatePage as bE, CreateRedPacketInputChain as bF, type CreateRedPacketInput as bG, type CreateRedPacketReply as bH, ClaimRedPacketInputChain as bI, type ClaimRedPacketInput as bJ, type RedPacketReply as bK, Chain as bL, type RedPacketDTO as bM, type RedPacketClaimDTO as bN, type RedPacketClaimsPage as bO, type RedPacketsPage as bP, type RedPacketSendTxInput as bQ, type RedPacketSendTxResponse as bR, KYTRegisterTransferRequestNetwork as bS, KYTRegisterTransferRequestDirection as bT, type KYTRegisterTransferRequest as bU, type TransferBaseResponseDTO as bV, type DirectExposureDetail as bW, type TransferDirectExposureResponseDTO as bX, type AlertDetail as bY, type TransferAlertsResponseDTO as bZ, type NetworkIdentificationOrg as b_, type TokenTransferPage as ba, type TokenTransferTotalDTO as bb, type DexPoolTokenSnapshotDTO as bc, type DexPoolSnapshotDTO as bd, type DexPoolSnapshotPage as be, type WalletNetWorthSummaryDTOWallets as bf, type WalletNetWorthSummaryDTO as bg, type PnlDetailSummaryDTO as bh, type PnlDetailItemDTO as bi, type PnlDetailsPage as bj, type WalletFirstTxDTOWallets as bk, type WalletFirstTxDTO as bl, type CalculatePnlInput as bm, type BooleanResultDTO as bn, type WalletNetWorthItemDTO as bo, type WalletNetWorthPage as bp, type TokensBalancePage as bq, type WalletNetWorthHistoryItemDTO as br, type WalletNetWorthChartDTO as bs, type WalletNetWorthDetailsPage as bt, PnlResolution as bu, WalletPnlSummaryDTOResolution as bv, type WalletPnlSummaryDTO as bw, TransactionHistoryItemDTOStatus as bx, TransactionHistoryItemDTOMainAction as by, type TransactionHistoryItemDTO as bz, type WsTokenActivity as c, type GetPoolCandlesParams as c$, KYTRegisterWithdrawalRequestNetwork as c0, type KYTRegisterWithdrawalRequest as c1, type WithdrawalBaseResponseDTO as c2, type ChainalysisAddressIdentification as c3, type WithdrawalAddressIdentificationsResponseDTO as c4, type OnChainActivity as c5, type AlteryaIdentification as c6, type WithdrawalFraudAssessmentResponseDTO as c7, type RegisterAddressRequest as c8, type RegisterAddressResponseDTO as c9, type GetTopTradersParams as cA, GetTopTradersDirection as cB, GetTopTradersTimeFrame as cC, GetTopTradersSortType as cD, GetTopTradersSortBy as cE, type GetTraderGainersLosersParams as cF, GetTraderGainersLosersDirection as cG, GetTraderGainersLosersSortType as cH, type SearchParams as cI, SearchDirection as cJ, SearchSort as cK, SearchSortBy as cL, type GetTokensParams as cM, GetTokensSortBy as cN, GetTokensSortDirection as cO, type GetMetadataMultiParams as cP, type GetMetadataMulti200 as cQ, type GetPoolsParams as cR, GetPoolsDirection as cS, GetPoolsSortBy as cT, GetPoolsSortDirection as cU, type GetStatsMultiParams as cV, type GetStatsMulti200 as cW, type GetHoldersParams as cX, GetHoldersDirection as cY, type GetHoldersMultiParams as cZ, type GetCandlesParams as c_, type AddressExposure as ca, type AddressRiskResponseDTO as cb, EndpointResponseChannelsItem as cc, type EndpointResponseMetadata as cd, type EndpointResponse as ce, type EndpointListResponse as cf, type EndpointSecretResponse as cg, type EndpointOperationResponse as ch, CreateEndpointInputChannelsItem as ci, type CreateEndpointInputMetadata as cj, type CreateEndpointInput as ck, UpdateEndpointInputChannelsItem as cl, type UpdateEndpointInputMetadata as cm, type UpdateEndpointInput as cn, TradeType as co, type TradeEvent as cp, type QuoteParams as cq, QuoteDex as cr, type ListDexParams as cs, type MoonshotSubmitCreateToken200 as ct, type GetTradesParams as cu, GetTradesDirection as cv, GetTradesType as cw, type GetActivitiesParams as cx, GetActivitiesDirection as cy, GetActivitiesType as cz, type WsTokenStat as d, type GetBalanceUpdatesParams as d$, type GetPairCandlesParams as d0, type GetMarketDataMultiParams as d1, type GetMarketDataMulti200 as d2, type GetPricesParams as d3, GetPricesDirection as d4, type GetPriceByTimeParams as d5, type GetMintAndBurnParams as d6, GetMintAndBurnDirection as d7, GetMintAndBurnType as d8, type ListTokenParams as d9, GetFinalStretchTokensSortBy as dA, GetFinalStretchTokensSortDirection as dB, GetFinalStretchTokensTag as dC, type GetMigratedTokensParams as dD, GetMigratedTokensSortBy as dE, GetMigratedTokensSortDirection as dF, GetMigratedTokensTag as dG, type GetNetWorthSummaryParams as dH, type GetPnlByWalletParams as dI, GetPnlByWalletDirection as dJ, type GetWalletFirstTxParams as dK, type GetNetWorthParams as dL, GetNetWorthDirection as dM, type GetTokensBalanceParams as dN, GetTokensBalanceDirection as dO, type GetNetWorthChartParams as dP, type GetNetWorthDetailsParams as dQ, GetNetWorthDetailsDirection as dR, type GetPnlParams as dS, type GetPnlDetailsParams as dT, GetPnlDetailsDirection as dU, type GetPnlByTokenParams as dV, GetPnlByTokenDirection as dW, type GetWalletTransfersParams as dX, GetWalletTransfersDirection as dY, type GetWalletTransferTotalParams as dZ, GetWalletTransferTotalDirection as d_, ListTokenDirection as da, ListTokenSort as db, ListTokenSortBy as dc, type GetSecurity200 as dd, type GetTokenLiquiditySnapshotsParams as de, GetTokenLiquiditySnapshotsDirection as df, type GetTokenTransfersParams as dg, GetTokenTransfersDirection as dh, type GetTokenTransferTotalParams as di, GetTokenTransferTotalDirection as dj, type GetDexpoolSnapshotsParams as dk, GetDexpoolSnapshotsDirection as dl, type GetHotTokensParams as dm, GetHotTokensSortBy as dn, GetHotTokensSortDirection as dp, GetHotTokensTag as dq, type GetNewTokensParams as dr, GetNewTokensSortBy as ds, GetNewTokensSortDirection as dt, GetNewTokensTag as du, type GetStocksTokensParams as dv, GetStocksTokensSortBy as dw, GetStocksTokensSortDirection as dx, GetStocksTokensTag as dy, type GetFinalStretchTokensParams as dz, type WsTokenHolder as e, getMintAndBurn as e$, GetBalanceUpdatesDirection as e0, type GetClaimsParams as e1, type GetRedpacketsParams as e2, GetRedpacketsChain as e3, type GetClaimsByAddressParams as e4, type GetRedpacketsByAddressParams as e5, type ListEndpointsParams as e6, ListEndpointsOrder as e7, presign as e8, type PresignResult as e9, getTrades as eA, getActivities as eB, getTopTraders as eC, getTraderGainersLosers as eD, type GetTradesResult as eE, type GetActivitiesResult as eF, type GetTopTradersResult as eG, type GetTraderGainersLosersResult as eH, search as eI, getTokens as eJ, getToken as eK, getMetadata as eL, getMetadataMulti as eM, getPools as eN, getStats as eO, getStatsMulti as eP, getHolders as eQ, getHoldersMulti as eR, getCandles as eS, getPoolCandles as eT, getPairCandles as eU, getTopHolders as eV, getMarketData as eW, getMarketDataMulti as eX, getPrices as eY, getPriceByTime as eZ, getCreation as e_, getSupportedBlockchains as ea, getLatestBlock as eb, type GetSupportedBlockchainsResult as ec, type GetLatestBlockResult as ed, send as ee, getGasPrice as ef, getGasLimit as eg, type SendResult as eh, type GetGasPriceResult as ei, type GetGasLimitResult as ej, swap as ek, route as el, quote as em, createToken as en, listDex as eo, type SwapResult as ep, type RouteResult as eq, type QuoteResult as er, type CreateTokenResult as es, type ListDexResult as et, moonshotCreateToken as eu, moonshotSubmitCreateToken as ev, type MoonshotCreateTokenResult as ew, type MoonshotSubmitCreateTokenResult as ex, pumpfunCreateToken as ey, type PumpfunCreateTokenResult as ez, type WsWalletBalance as f, type GetPnlByWalletResult as f$, listToken as f0, getSecurity as f1, getDevTokens as f2, getTokenTraders as f3, getTokenLiquiditySnapshots as f4, getTokenTransfers as f5, getTokenTransferTotal as f6, type SearchResult as f7, type GetTokensResult as f8, type GetTokenResult as f9, type GetDexpoolResult as fA, type GetDexpoolSnapshotsResult as fB, getHotTokens as fC, getNewTokens as fD, getStocksTokens as fE, getFinalStretchTokens as fF, getMigratedTokens as fG, type GetHotTokensResult as fH, type GetNewTokensResult as fI, type GetStocksTokensResult as fJ, type GetFinalStretchTokensResult as fK, type GetMigratedTokensResult as fL, getNetWorthSummary as fM, getPnlByWallet as fN, getWalletFirstTx as fO, calculatePnl as fP, getNetWorth as fQ, getTokensBalance as fR, getNetWorthChart as fS, getNetWorthDetails as fT, getPnl as fU, getPnlDetails as fV, getPnlByToken as fW, getWalletTransfers as fX, getWalletTransferTotal as fY, getBalanceUpdates as fZ, type GetNetWorthSummaryResult as f_, type GetMetadataResult as fa, type GetMetadataMultiResult as fb, type GetPoolsResult as fc, type GetStatsResult as fd, type GetStatsMultiResult as fe, type GetHoldersResult as ff, type GetHoldersMultiResult as fg, type GetCandlesResult as fh, type GetPoolCandlesResult as fi, type GetPairCandlesResult as fj, type GetTopHoldersResult as fk, type GetMarketDataResult as fl, type GetMarketDataMultiResult as fm, type GetPricesResult as fn, type GetPriceByTimeResult as fo, type GetCreationResult as fp, type GetMintAndBurnResult as fq, type ListTokenResult as fr, type GetSecurityResult as fs, type GetDevTokensResult as ft, type GetTokenTradersResult as fu, type GetTokenLiquiditySnapshotsResult as fv, type GetTokenTransfersResult as fw, type GetTokenTransferTotalResult as fx, getDexpool as fy, getDexpoolSnapshots as fz, type WsWalletPnl as g, getEndpointSecret as g$, type GetWalletFirstTxResult as g0, type CalculatePnlResult as g1, type GetNetWorthResult as g2, type GetTokensBalanceResult as g3, type GetNetWorthChartResult as g4, type GetNetWorthDetailsResult as g5, type GetPnlResult as g6, type GetPnlDetailsResult as g7, type GetPnlByTokenResult as g8, type GetWalletTransfersResult as g9, getWithdrawalSummary as gA, getWithdrawalDirectExposure as gB, getWithdrawalAlerts as gC, getWithdrawalAddressIdentifications as gD, getWithdrawalNetworkIdentifications as gE, getWithdrawalFraudAssessment as gF, registerAddress as gG, getAddressRisk as gH, type RegisterTransferResult as gI, type GetTransferSummaryResult as gJ, type GetTransferDirectExposureResult as gK, type GetTransferAlertsResult as gL, type GetTransferNetworkIdentificationsResult as gM, type RegisterWithdrawalResult as gN, type GetWithdrawalSummaryResult as gO, type GetWithdrawalDirectExposureResult as gP, type GetWithdrawalAlertsResult as gQ, type GetWithdrawalAddressIdentificationsResult as gR, type GetWithdrawalNetworkIdentificationsResult as gS, type GetWithdrawalFraudAssessmentResult as gT, type RegisterAddressResult as gU, type GetAddressRiskResult as gV, listEndpoints as gW, createEndpoint as gX, updateEndpoint as gY, getEndpoint as gZ, deleteEndpoint as g_, type GetWalletTransferTotalResult as ga, type GetBalanceUpdatesResult as gb, createRedpacket as gc, claimRedpacket as gd, getRedpacket as ge, getClaims as gf, getRedpackets as gg, getClaimsByAddress as gh, getRedpacketsByAddress as gi, redpacketSend as gj, type CreateRedpacketResult as gk, type ClaimRedpacketResult as gl, type GetRedpacketResult as gm, type GetClaimsResult as gn, type GetRedpacketsResult as go, type GetClaimsByAddressResult as gp, type GetRedpacketsByAddressResult as gq, type RedpacketSendResult as gr, watchlistAdd as gs, type WatchlistAddResult as gt, registerTransfer as gu, getTransferSummary as gv, getTransferDirectExposure as gw, getTransferAlerts as gx, getTransferNetworkIdentifications as gy, registerWithdrawal as gz, type WsNewToken as h, rotateEndpointSecret as h0, type ListEndpointsResult as h1, type CreateEndpointResult as h2, type UpdateEndpointResult as h3, type GetEndpointResult as h4, type DeleteEndpointResult as h5, type GetEndpointSecretResult as h6, type RotateEndpointSecretResult as h7, type PostOptions as h8, 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 };
6606
+ 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 };
@@ -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 */
@@ -1559,11 +1583,15 @@ interface DexPoolSnapshotPage {
1559
1583
  /** DTO.PAGE.HAS_PREV */
1560
1584
  hasPrev: boolean;
1561
1585
  }
1586
+ interface WalletNetWorthSummaryValueDTO {
1587
+ /** DTO.WALLET.NET_WORTH_SUMMARY.VALUE */
1588
+ value: string;
1589
+ }
1562
1590
  /**
1563
1591
  * DTO.WALLET.NET_WORTH_SUMMARY.WALLETS
1564
1592
  */
1565
1593
  type WalletNetWorthSummaryDTOWallets = {
1566
- [key: string]: unknown;
1594
+ [key: string]: WalletNetWorthSummaryValueDTO;
1567
1595
  };
1568
1596
  interface WalletNetWorthSummaryDTO {
1569
1597
  /** DTO.WALLET.NET_WORTH_SUMMARY.CURRENT_TIMESTAMP */
@@ -1673,11 +1701,25 @@ interface PnlDetailsPage {
1673
1701
  /** DTO.PAGE.DATA */
1674
1702
  data: PnlDetailItemDTO[];
1675
1703
  }
1704
+ interface WalletFirstTxItemDTO {
1705
+ /** DTO.WALLET.FIRST_TX.TX_HASH */
1706
+ txHash: string;
1707
+ /** DTO.WALLET.FIRST_TX.BLOCK_TIME */
1708
+ blockTime: number;
1709
+ /** DTO.WALLET.FIRST_TX.BLOCK_NUMBER */
1710
+ blockNumber: number;
1711
+ /** DTO.WALLET.FIRST_TX.BALANCE_CHANGE */
1712
+ balanceChange: string;
1713
+ /** DTO.WALLET.FIRST_TX.TOKEN_ADDRESS */
1714
+ tokenAddress: string;
1715
+ /** DTO.WALLET.FIRST_TX.TOKEN_DECIMALS */
1716
+ decimals: number;
1717
+ }
1676
1718
  /**
1677
1719
  * DTO.WALLET.FIRST_TX.TX_HASH
1678
1720
  */
1679
1721
  type WalletFirstTxDTOWallets = {
1680
- [key: string]: unknown;
1722
+ [key: string]: WalletFirstTxItemDTO;
1681
1723
  };
1682
1724
  interface WalletFirstTxDTO {
1683
1725
  /** DTO.WALLET.FIRST_TX.TX_HASH */
@@ -1940,8 +1982,6 @@ declare const BalanceChangeType: {
1940
1982
  readonly DECREASE: "DECREASE";
1941
1983
  };
1942
1984
  interface BalanceUpdateDTO {
1943
- /** DTO.WALLET.BALANCE_UPDATE.ID */
1944
- id: number;
1945
1985
  /** DTO.WALLET.BALANCE_UPDATE.BLOCK_HASH */
1946
1986
  blockHash: string;
1947
1987
  /** DTO.WALLET.BALANCE_UPDATE.BLOCK_HEIGHT */
@@ -4557,6 +4597,22 @@ type GetWalletTransfersParams = {
4557
4597
  * DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
4558
4598
  */
4559
4599
  afterTimestamp?: number;
4600
+ /**
4601
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT
4602
+ */
4603
+ minTokenAmount?: string;
4604
+ /**
4605
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT
4606
+ */
4607
+ maxTokenAmount?: string;
4608
+ /**
4609
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT_IN_USD
4610
+ */
4611
+ minTokenAmountInUsd?: string;
4612
+ /**
4613
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT_IN_USD
4614
+ */
4615
+ maxTokenAmountInUsd?: string;
4560
4616
  };
4561
4617
  type GetWalletTransfersDirection = (typeof GetWalletTransfersDirection)[keyof typeof GetWalletTransfersDirection];
4562
4618
  declare const GetWalletTransfersDirection: {
@@ -4588,6 +4644,22 @@ type GetWalletTransferTotalParams = {
4588
4644
  * DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
4589
4645
  */
4590
4646
  afterTimestamp?: number;
4647
+ /**
4648
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT
4649
+ */
4650
+ minTokenAmount?: string;
4651
+ /**
4652
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT
4653
+ */
4654
+ maxTokenAmount?: string;
4655
+ /**
4656
+ * DTO.WALLET.TRANSFER.QUERY.MIN_TOKEN_AMOUNT_IN_USD
4657
+ */
4658
+ minTokenAmountInUsd?: string;
4659
+ /**
4660
+ * DTO.WALLET.TRANSFER.QUERY.MAX_TOKEN_AMOUNT_IN_USD
4661
+ */
4662
+ maxTokenAmountInUsd?: string;
4591
4663
  };
4592
4664
  type GetWalletTransferTotalDirection = (typeof GetWalletTransferTotalDirection)[keyof typeof GetWalletTransferTotalDirection];
4593
4665
  declare const GetWalletTransferTotalDirection: {
@@ -6042,7 +6114,12 @@ interface WsNewToken {
6042
6114
  name: string;
6043
6115
  symbol: string;
6044
6116
  decimals?: number;
6117
+ imageUrl?: string;
6118
+ description?: string;
6119
+ socialMedia?: WsSocialMedia;
6120
+ coingeckoCoinId?: string;
6045
6121
  launchFrom?: WsDexProtocol;
6122
+ migratedTo?: WsDexProtocol;
6046
6123
  createdAtMs: number;
6047
6124
  }
6048
6125
  interface WsTokenSupply {
@@ -6096,6 +6173,7 @@ interface WsTokenMetadata {
6096
6173
  description?: string;
6097
6174
  socialMedia?: WsSocialMedia;
6098
6175
  createdAtMs?: number;
6176
+ coingeckoCoinId?: string;
6099
6177
  launchFrom?: WsDexProtocol;
6100
6178
  migratedTo?: WsDexProtocol;
6101
6179
  }
@@ -6316,6 +6394,18 @@ declare class StreamApi {
6316
6394
  * @param suffix - Time window suffix (e.g., "1m", "5m", "1h", "1W", "1M")
6317
6395
  */
6318
6396
  private parseTokenStatWindow;
6397
+ /**
6398
+ * Parse social media data from short field names
6399
+ */
6400
+ private parseSocialMedia;
6401
+ /**
6402
+ * Parse DEX protocol data from short field names
6403
+ */
6404
+ private parseDexProtocol;
6405
+ /**
6406
+ * Parse a TokenMetadataTimeEvent from raw WebSocket data
6407
+ */
6408
+ private parseTokenMetadata;
6319
6409
  /**
6320
6410
  * Subscribe to token trade statistics
6321
6411
  * Channel: dex-token-stats:{chain}_{tokenAddress}
@@ -6333,15 +6423,33 @@ declare class StreamApi {
6333
6423
  callback: (data: WsTokenHolder) => void;
6334
6424
  filter?: string;
6335
6425
  }): Unsubscribable;
6426
+ /**
6427
+ * Subscribe to new token events (single token per event, supports CEL filter)
6428
+ * Channel: dex-new-token:{chain}
6429
+ */
6336
6430
  subscribeNewToken({ chain, callback, filter, }: {
6337
6431
  chain: string;
6338
6432
  callback: (data: WsNewToken) => void;
6339
6433
  filter?: string;
6340
6434
  }): Unsubscribable;
6435
+ /**
6436
+ * Subscribe to new tokens metadata (batch, aggregated every 1 second)
6437
+ * Channel: dex-new-tokens-metadata:{chain}
6438
+ * No CEL filter support
6439
+ */
6341
6440
  subscribeNewTokensMetadata({ chain, callback, }: {
6342
6441
  chain: string;
6343
6442
  callback: (data: WsTokenMetadata[]) => void;
6344
6443
  }): Unsubscribable;
6444
+ /**
6445
+ * Subscribe to new tokens list (batch from token-created-to-realtime-pipeline)
6446
+ * Channel: dex-new-tokens:{chain}
6447
+ * No CEL filter support
6448
+ */
6449
+ subscribeNewTokens({ chain, callback, }: {
6450
+ chain: string;
6451
+ callback: (data: WsTokenMetadata[]) => void;
6452
+ }): Unsubscribable;
6345
6453
  subscribeTokenSupply({ chain, tokenAddress, callback, filter, }: {
6346
6454
  chain: string;
6347
6455
  tokenAddress: string;
@@ -6495,4 +6603,4 @@ interface PostOptions {
6495
6603
  idempotencyKey?: string;
6496
6604
  }
6497
6605
 
6498
- 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 TransferNetworkIdentificationsResponseDTO 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, type TransactionHistoryPage as bA, BalanceTokenType as bB, BalanceChangeType as bC, type BalanceUpdateDTO as bD, type BalanceUpdatePage as bE, CreateRedPacketInputChain as bF, type CreateRedPacketInput as bG, type CreateRedPacketReply as bH, ClaimRedPacketInputChain as bI, type ClaimRedPacketInput as bJ, type RedPacketReply as bK, Chain as bL, type RedPacketDTO as bM, type RedPacketClaimDTO as bN, type RedPacketClaimsPage as bO, type RedPacketsPage as bP, type RedPacketSendTxInput as bQ, type RedPacketSendTxResponse as bR, KYTRegisterTransferRequestNetwork as bS, KYTRegisterTransferRequestDirection as bT, type KYTRegisterTransferRequest as bU, type TransferBaseResponseDTO as bV, type DirectExposureDetail as bW, type TransferDirectExposureResponseDTO as bX, type AlertDetail as bY, type TransferAlertsResponseDTO as bZ, type NetworkIdentificationOrg as b_, type TokenTransferPage as ba, type TokenTransferTotalDTO as bb, type DexPoolTokenSnapshotDTO as bc, type DexPoolSnapshotDTO as bd, type DexPoolSnapshotPage as be, type WalletNetWorthSummaryDTOWallets as bf, type WalletNetWorthSummaryDTO as bg, type PnlDetailSummaryDTO as bh, type PnlDetailItemDTO as bi, type PnlDetailsPage as bj, type WalletFirstTxDTOWallets as bk, type WalletFirstTxDTO as bl, type CalculatePnlInput as bm, type BooleanResultDTO as bn, type WalletNetWorthItemDTO as bo, type WalletNetWorthPage as bp, type TokensBalancePage as bq, type WalletNetWorthHistoryItemDTO as br, type WalletNetWorthChartDTO as bs, type WalletNetWorthDetailsPage as bt, PnlResolution as bu, WalletPnlSummaryDTOResolution as bv, type WalletPnlSummaryDTO as bw, TransactionHistoryItemDTOStatus as bx, TransactionHistoryItemDTOMainAction as by, type TransactionHistoryItemDTO as bz, type WsTokenActivity as c, type GetPoolCandlesParams as c$, KYTRegisterWithdrawalRequestNetwork as c0, type KYTRegisterWithdrawalRequest as c1, type WithdrawalBaseResponseDTO as c2, type ChainalysisAddressIdentification as c3, type WithdrawalAddressIdentificationsResponseDTO as c4, type OnChainActivity as c5, type AlteryaIdentification as c6, type WithdrawalFraudAssessmentResponseDTO as c7, type RegisterAddressRequest as c8, type RegisterAddressResponseDTO as c9, type GetTopTradersParams as cA, GetTopTradersDirection as cB, GetTopTradersTimeFrame as cC, GetTopTradersSortType as cD, GetTopTradersSortBy as cE, type GetTraderGainersLosersParams as cF, GetTraderGainersLosersDirection as cG, GetTraderGainersLosersSortType as cH, type SearchParams as cI, SearchDirection as cJ, SearchSort as cK, SearchSortBy as cL, type GetTokensParams as cM, GetTokensSortBy as cN, GetTokensSortDirection as cO, type GetMetadataMultiParams as cP, type GetMetadataMulti200 as cQ, type GetPoolsParams as cR, GetPoolsDirection as cS, GetPoolsSortBy as cT, GetPoolsSortDirection as cU, type GetStatsMultiParams as cV, type GetStatsMulti200 as cW, type GetHoldersParams as cX, GetHoldersDirection as cY, type GetHoldersMultiParams as cZ, type GetCandlesParams as c_, type AddressExposure as ca, type AddressRiskResponseDTO as cb, EndpointResponseChannelsItem as cc, type EndpointResponseMetadata as cd, type EndpointResponse as ce, type EndpointListResponse as cf, type EndpointSecretResponse as cg, type EndpointOperationResponse as ch, CreateEndpointInputChannelsItem as ci, type CreateEndpointInputMetadata as cj, type CreateEndpointInput as ck, UpdateEndpointInputChannelsItem as cl, type UpdateEndpointInputMetadata as cm, type UpdateEndpointInput as cn, TradeType as co, type TradeEvent as cp, type QuoteParams as cq, QuoteDex as cr, type ListDexParams as cs, type MoonshotSubmitCreateToken200 as ct, type GetTradesParams as cu, GetTradesDirection as cv, GetTradesType as cw, type GetActivitiesParams as cx, GetActivitiesDirection as cy, GetActivitiesType as cz, type WsTokenStat as d, type GetBalanceUpdatesParams as d$, type GetPairCandlesParams as d0, type GetMarketDataMultiParams as d1, type GetMarketDataMulti200 as d2, type GetPricesParams as d3, GetPricesDirection as d4, type GetPriceByTimeParams as d5, type GetMintAndBurnParams as d6, GetMintAndBurnDirection as d7, GetMintAndBurnType as d8, type ListTokenParams as d9, GetFinalStretchTokensSortBy as dA, GetFinalStretchTokensSortDirection as dB, GetFinalStretchTokensTag as dC, type GetMigratedTokensParams as dD, GetMigratedTokensSortBy as dE, GetMigratedTokensSortDirection as dF, GetMigratedTokensTag as dG, type GetNetWorthSummaryParams as dH, type GetPnlByWalletParams as dI, GetPnlByWalletDirection as dJ, type GetWalletFirstTxParams as dK, type GetNetWorthParams as dL, GetNetWorthDirection as dM, type GetTokensBalanceParams as dN, GetTokensBalanceDirection as dO, type GetNetWorthChartParams as dP, type GetNetWorthDetailsParams as dQ, GetNetWorthDetailsDirection as dR, type GetPnlParams as dS, type GetPnlDetailsParams as dT, GetPnlDetailsDirection as dU, type GetPnlByTokenParams as dV, GetPnlByTokenDirection as dW, type GetWalletTransfersParams as dX, GetWalletTransfersDirection as dY, type GetWalletTransferTotalParams as dZ, GetWalletTransferTotalDirection as d_, ListTokenDirection as da, ListTokenSort as db, ListTokenSortBy as dc, type GetSecurity200 as dd, type GetTokenLiquiditySnapshotsParams as de, GetTokenLiquiditySnapshotsDirection as df, type GetTokenTransfersParams as dg, GetTokenTransfersDirection as dh, type GetTokenTransferTotalParams as di, GetTokenTransferTotalDirection as dj, type GetDexpoolSnapshotsParams as dk, GetDexpoolSnapshotsDirection as dl, type GetHotTokensParams as dm, GetHotTokensSortBy as dn, GetHotTokensSortDirection as dp, GetHotTokensTag as dq, type GetNewTokensParams as dr, GetNewTokensSortBy as ds, GetNewTokensSortDirection as dt, GetNewTokensTag as du, type GetStocksTokensParams as dv, GetStocksTokensSortBy as dw, GetStocksTokensSortDirection as dx, GetStocksTokensTag as dy, type GetFinalStretchTokensParams as dz, type WsTokenHolder as e, getMintAndBurn as e$, GetBalanceUpdatesDirection as e0, type GetClaimsParams as e1, type GetRedpacketsParams as e2, GetRedpacketsChain as e3, type GetClaimsByAddressParams as e4, type GetRedpacketsByAddressParams as e5, type ListEndpointsParams as e6, ListEndpointsOrder as e7, presign as e8, type PresignResult as e9, getTrades as eA, getActivities as eB, getTopTraders as eC, getTraderGainersLosers as eD, type GetTradesResult as eE, type GetActivitiesResult as eF, type GetTopTradersResult as eG, type GetTraderGainersLosersResult as eH, search as eI, getTokens as eJ, getToken as eK, getMetadata as eL, getMetadataMulti as eM, getPools as eN, getStats as eO, getStatsMulti as eP, getHolders as eQ, getHoldersMulti as eR, getCandles as eS, getPoolCandles as eT, getPairCandles as eU, getTopHolders as eV, getMarketData as eW, getMarketDataMulti as eX, getPrices as eY, getPriceByTime as eZ, getCreation as e_, getSupportedBlockchains as ea, getLatestBlock as eb, type GetSupportedBlockchainsResult as ec, type GetLatestBlockResult as ed, send as ee, getGasPrice as ef, getGasLimit as eg, type SendResult as eh, type GetGasPriceResult as ei, type GetGasLimitResult as ej, swap as ek, route as el, quote as em, createToken as en, listDex as eo, type SwapResult as ep, type RouteResult as eq, type QuoteResult as er, type CreateTokenResult as es, type ListDexResult as et, moonshotCreateToken as eu, moonshotSubmitCreateToken as ev, type MoonshotCreateTokenResult as ew, type MoonshotSubmitCreateTokenResult as ex, pumpfunCreateToken as ey, type PumpfunCreateTokenResult as ez, type WsWalletBalance as f, type GetPnlByWalletResult as f$, listToken as f0, getSecurity as f1, getDevTokens as f2, getTokenTraders as f3, getTokenLiquiditySnapshots as f4, getTokenTransfers as f5, getTokenTransferTotal as f6, type SearchResult as f7, type GetTokensResult as f8, type GetTokenResult as f9, type GetDexpoolResult as fA, type GetDexpoolSnapshotsResult as fB, getHotTokens as fC, getNewTokens as fD, getStocksTokens as fE, getFinalStretchTokens as fF, getMigratedTokens as fG, type GetHotTokensResult as fH, type GetNewTokensResult as fI, type GetStocksTokensResult as fJ, type GetFinalStretchTokensResult as fK, type GetMigratedTokensResult as fL, getNetWorthSummary as fM, getPnlByWallet as fN, getWalletFirstTx as fO, calculatePnl as fP, getNetWorth as fQ, getTokensBalance as fR, getNetWorthChart as fS, getNetWorthDetails as fT, getPnl as fU, getPnlDetails as fV, getPnlByToken as fW, getWalletTransfers as fX, getWalletTransferTotal as fY, getBalanceUpdates as fZ, type GetNetWorthSummaryResult as f_, type GetMetadataResult as fa, type GetMetadataMultiResult as fb, type GetPoolsResult as fc, type GetStatsResult as fd, type GetStatsMultiResult as fe, type GetHoldersResult as ff, type GetHoldersMultiResult as fg, type GetCandlesResult as fh, type GetPoolCandlesResult as fi, type GetPairCandlesResult as fj, type GetTopHoldersResult as fk, type GetMarketDataResult as fl, type GetMarketDataMultiResult as fm, type GetPricesResult as fn, type GetPriceByTimeResult as fo, type GetCreationResult as fp, type GetMintAndBurnResult as fq, type ListTokenResult as fr, type GetSecurityResult as fs, type GetDevTokensResult as ft, type GetTokenTradersResult as fu, type GetTokenLiquiditySnapshotsResult as fv, type GetTokenTransfersResult as fw, type GetTokenTransferTotalResult as fx, getDexpool as fy, getDexpoolSnapshots as fz, type WsWalletPnl as g, getEndpointSecret as g$, type GetWalletFirstTxResult as g0, type CalculatePnlResult as g1, type GetNetWorthResult as g2, type GetTokensBalanceResult as g3, type GetNetWorthChartResult as g4, type GetNetWorthDetailsResult as g5, type GetPnlResult as g6, type GetPnlDetailsResult as g7, type GetPnlByTokenResult as g8, type GetWalletTransfersResult as g9, getWithdrawalSummary as gA, getWithdrawalDirectExposure as gB, getWithdrawalAlerts as gC, getWithdrawalAddressIdentifications as gD, getWithdrawalNetworkIdentifications as gE, getWithdrawalFraudAssessment as gF, registerAddress as gG, getAddressRisk as gH, type RegisterTransferResult as gI, type GetTransferSummaryResult as gJ, type GetTransferDirectExposureResult as gK, type GetTransferAlertsResult as gL, type GetTransferNetworkIdentificationsResult as gM, type RegisterWithdrawalResult as gN, type GetWithdrawalSummaryResult as gO, type GetWithdrawalDirectExposureResult as gP, type GetWithdrawalAlertsResult as gQ, type GetWithdrawalAddressIdentificationsResult as gR, type GetWithdrawalNetworkIdentificationsResult as gS, type GetWithdrawalFraudAssessmentResult as gT, type RegisterAddressResult as gU, type GetAddressRiskResult as gV, listEndpoints as gW, createEndpoint as gX, updateEndpoint as gY, getEndpoint as gZ, deleteEndpoint as g_, type GetWalletTransferTotalResult as ga, type GetBalanceUpdatesResult as gb, createRedpacket as gc, claimRedpacket as gd, getRedpacket as ge, getClaims as gf, getRedpackets as gg, getClaimsByAddress as gh, getRedpacketsByAddress as gi, redpacketSend as gj, type CreateRedpacketResult as gk, type ClaimRedpacketResult as gl, type GetRedpacketResult as gm, type GetClaimsResult as gn, type GetRedpacketsResult as go, type GetClaimsByAddressResult as gp, type GetRedpacketsByAddressResult as gq, type RedpacketSendResult as gr, watchlistAdd as gs, type WatchlistAddResult as gt, registerTransfer as gu, getTransferSummary as gv, getTransferDirectExposure as gw, getTransferAlerts as gx, getTransferNetworkIdentifications as gy, registerWithdrawal as gz, type WsNewToken as h, rotateEndpointSecret as h0, type ListEndpointsResult as h1, type CreateEndpointResult as h2, type UpdateEndpointResult as h3, type GetEndpointResult as h4, type DeleteEndpointResult as h5, type GetEndpointSecretResult as h6, type RotateEndpointSecretResult as h7, type PostOptions as h8, 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 };
6606
+ 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 };