@chainstream-io/sdk 0.2.15 → 0.2.16

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.
@@ -865,94 +865,6 @@ interface TokenStat {
865
865
  /** DTO.TOKEN.TRADE_STAT.PERIODS */
866
866
  periods: TokenStatPeriods;
867
867
  }
868
- interface DexPoolTokenLiquidity {
869
- /** DTO.DEXPOOL.TOKEN_ADDRESS */
870
- tokenAddress: string;
871
- /** DTO.DEXPOOL.TOKEN_DECIMALS */
872
- decimals: number;
873
- /** DTO.DEXPOOL.VAULT_AMOUNT */
874
- vaultAmount: string;
875
- /** DTO.DEXPOOL.AMOUNT_IN_USD */
876
- amountInUsd: string;
877
- /** DTO.DEXPOOL.AMOUNT_IN_NATIVE */
878
- amountInNative: string;
879
- /** DTO.DEXPOOL.PRICE_USD */
880
- priceUsd: string;
881
- /** DTO.DEXPOOL.PRICE_NATIVE */
882
- priceNative: string;
883
- }
884
- /**
885
- * DTO.DEXPOOL.TYPE
886
- */
887
- type DexPoolDTOType = (typeof DexPoolDTOType)[keyof typeof DexPoolDTOType];
888
- declare const DexPoolDTOType: {
889
- readonly NUMBER_0: 0;
890
- readonly NUMBER_1: 1;
891
- readonly NUMBER_2: 2;
892
- readonly NUMBER_3: 3;
893
- readonly NUMBER_4: 4;
894
- };
895
- /**
896
- * DTO.DEXPOOL.VERSION
897
- */
898
- type DexPoolDTOVersion = (typeof DexPoolDTOVersion)[keyof typeof DexPoolDTOVersion];
899
- declare const DexPoolDTOVersion: {
900
- readonly NUMBER_0: 0;
901
- readonly NUMBER_1: 1;
902
- readonly NUMBER_2: 2;
903
- readonly NUMBER_3: 3;
904
- };
905
- /**
906
- * DTO.DEXPOOL.LIQUIDITY_MODEL
907
- */
908
- type DexPoolDTOLiquidityModel = (typeof DexPoolDTOLiquidityModel)[keyof typeof DexPoolDTOLiquidityModel];
909
- declare const DexPoolDTOLiquidityModel: {
910
- readonly NUMBER_0: 0;
911
- readonly NUMBER_1: 1;
912
- readonly NUMBER_2: 2;
913
- readonly NUMBER_3: 3;
914
- readonly NUMBER_4: 4;
915
- };
916
- interface DexPoolDTO {
917
- /** DTO.DEX.PROGRAM_ADDRESS */
918
- programAddress?: string;
919
- /** DTO.DEX.PROTOCOL_FAMILY */
920
- protocolFamily?: string;
921
- /** DTO.DEX.IMAGE */
922
- image?: string;
923
- /** DTO.DEX.CHAIN */
924
- chain: string;
925
- /** DTO.DEXPOOL.POOL_ADDRESS */
926
- poolAddress: string;
927
- /** DTO.DEXPOOL.PROTOCOL_NAME */
928
- protocolName?: string;
929
- /** DTO.DEXPOOL.TOKEN_A */
930
- tokenAAddress: string;
931
- /** DTO.DEXPOOL.TOKEN_B */
932
- tokenBAddress: string;
933
- /** DTO.DEXPOOL.TVL_USD */
934
- tvlInUsd?: string;
935
- /** DTO.DEXPOOL.TVL_SOL */
936
- tvlInSol?: string;
937
- /** DTO.DEXPOOL.TYPE */
938
- type?: DexPoolDTOType;
939
- /** DTO.DEXPOOL.VERSION */
940
- version?: DexPoolDTOVersion;
941
- /** DTO.DEXPOOL.LIQUIDITY_MODEL */
942
- liquidityModel?: DexPoolDTOLiquidityModel;
943
- /** DTO.DEXPOOL.FEE_RATE */
944
- feeRate?: string;
945
- /** DTO.DEXPOOL.TICK_SPACING */
946
- tickSpacing?: number;
947
- /** DTO.DEXPOOL.TOKEN_COUNT */
948
- tokenCount?: number;
949
- /** DTO.DEXPOOL.CREATED_BLOCK_TIMESTAMP */
950
- createdBlockTimestamp?: string;
951
- /** DTO.DEXPOOL.TOKEN_A_LIQUIDITY */
952
- tokenALiquidity?: DexPoolTokenLiquidity;
953
- /** DTO.DEXPOOL.TOKEN_B_LIQUIDITY */
954
- tokenBLiquidity?: DexPoolTokenLiquidity;
955
- }
956
868
  interface TokenMarketData {
957
869
  /** DTO.TOKEN.MARKET_CAP.TOTAL_SUPPLY */
958
870
  totalSupply: string;
@@ -1094,8 +1006,6 @@ interface Token {
1094
1006
  extension?: TokenExtension;
1095
1007
  /** DTO.TOKEN.STATS */
1096
1008
  stats?: TokenStat;
1097
- /** DTO.TOKEN.LIQUIDITY */
1098
- liquidity?: DexPoolDTO[];
1099
1009
  /** DTO.TOKEN.MARKET_CAP_INFO */
1100
1010
  marketData: TokenMarketData;
1101
1011
  }
@@ -1221,6 +1131,94 @@ interface TokenMetadata {
1221
1131
  /** DTO.TOKEN.METADATA.DEV_LAST_TOKEN_CREATED_AT */
1222
1132
  devLastTokenCreatedAt?: string;
1223
1133
  }
1134
+ interface DexPoolTokenLiquidity {
1135
+ /** DTO.DEXPOOL.TOKEN_ADDRESS */
1136
+ tokenAddress: string;
1137
+ /** DTO.DEXPOOL.TOKEN_DECIMALS */
1138
+ decimals: number;
1139
+ /** DTO.DEXPOOL.VAULT_AMOUNT */
1140
+ vaultAmount: string;
1141
+ /** DTO.DEXPOOL.AMOUNT_IN_USD */
1142
+ amountInUsd: string;
1143
+ /** DTO.DEXPOOL.AMOUNT_IN_NATIVE */
1144
+ amountInNative: string;
1145
+ /** DTO.DEXPOOL.PRICE_USD */
1146
+ priceUsd: string;
1147
+ /** DTO.DEXPOOL.PRICE_NATIVE */
1148
+ priceNative: string;
1149
+ }
1150
+ /**
1151
+ * DTO.DEXPOOL.TYPE
1152
+ */
1153
+ type DexPoolDTOType = (typeof DexPoolDTOType)[keyof typeof DexPoolDTOType];
1154
+ declare const DexPoolDTOType: {
1155
+ readonly NUMBER_0: 0;
1156
+ readonly NUMBER_1: 1;
1157
+ readonly NUMBER_2: 2;
1158
+ readonly NUMBER_3: 3;
1159
+ readonly NUMBER_4: 4;
1160
+ };
1161
+ /**
1162
+ * DTO.DEXPOOL.VERSION
1163
+ */
1164
+ type DexPoolDTOVersion = (typeof DexPoolDTOVersion)[keyof typeof DexPoolDTOVersion];
1165
+ declare const DexPoolDTOVersion: {
1166
+ readonly NUMBER_0: 0;
1167
+ readonly NUMBER_1: 1;
1168
+ readonly NUMBER_2: 2;
1169
+ readonly NUMBER_3: 3;
1170
+ };
1171
+ /**
1172
+ * DTO.DEXPOOL.LIQUIDITY_MODEL
1173
+ */
1174
+ type DexPoolDTOLiquidityModel = (typeof DexPoolDTOLiquidityModel)[keyof typeof DexPoolDTOLiquidityModel];
1175
+ declare const DexPoolDTOLiquidityModel: {
1176
+ readonly NUMBER_0: 0;
1177
+ readonly NUMBER_1: 1;
1178
+ readonly NUMBER_2: 2;
1179
+ readonly NUMBER_3: 3;
1180
+ readonly NUMBER_4: 4;
1181
+ };
1182
+ interface DexPoolDTO {
1183
+ /** DTO.DEX.PROGRAM_ADDRESS */
1184
+ programAddress?: string;
1185
+ /** DTO.DEX.PROTOCOL_FAMILY */
1186
+ protocolFamily?: string;
1187
+ /** DTO.DEX.IMAGE */
1188
+ image?: string;
1189
+ /** DTO.DEX.CHAIN */
1190
+ chain: string;
1191
+ /** DTO.DEXPOOL.POOL_ADDRESS */
1192
+ poolAddress: string;
1193
+ /** DTO.DEXPOOL.PROTOCOL_NAME */
1194
+ protocolName?: string;
1195
+ /** DTO.DEXPOOL.TOKEN_A */
1196
+ tokenAAddress: string;
1197
+ /** DTO.DEXPOOL.TOKEN_B */
1198
+ tokenBAddress: string;
1199
+ /** DTO.DEXPOOL.TVL_USD */
1200
+ tvlInUsd?: string;
1201
+ /** DTO.DEXPOOL.TVL_SOL */
1202
+ tvlInSol?: string;
1203
+ /** DTO.DEXPOOL.TYPE */
1204
+ type?: DexPoolDTOType;
1205
+ /** DTO.DEXPOOL.VERSION */
1206
+ version?: DexPoolDTOVersion;
1207
+ /** DTO.DEXPOOL.LIQUIDITY_MODEL */
1208
+ liquidityModel?: DexPoolDTOLiquidityModel;
1209
+ /** DTO.DEXPOOL.FEE_RATE */
1210
+ feeRate?: string;
1211
+ /** DTO.DEXPOOL.TICK_SPACING */
1212
+ tickSpacing?: number;
1213
+ /** DTO.DEXPOOL.TOKEN_COUNT */
1214
+ tokenCount?: number;
1215
+ /** DTO.DEXPOOL.CREATED_BLOCK_TIMESTAMP */
1216
+ createdBlockTimestamp?: string;
1217
+ /** DTO.DEXPOOL.TOKEN_A_LIQUIDITY */
1218
+ tokenALiquidity?: DexPoolTokenLiquidity;
1219
+ /** DTO.DEXPOOL.TOKEN_B_LIQUIDITY */
1220
+ tokenBLiquidity?: DexPoolTokenLiquidity;
1221
+ }
1224
1222
  interface DexPoolPage {
1225
1223
  /** DTO.PAGE.HAS_NEXT */
1226
1224
  hasNext?: boolean;
@@ -6629,4 +6627,4 @@ interface PostOptions {
6629
6627
  idempotencyKey?: string;
6630
6628
  }
6631
6629
 
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 };
6630
+ 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 TokenMarketData as aF, type TokenExtension as aG, type Token as aH, type TokenPageCountsByProtocols as aI, type TokenPage as aJ, FilterConditionField as aK, type FilterCondition as aL, type TokenMetadata as aM, type DexPoolTokenLiquidity as aN, DexPoolDTOType as aO, DexPoolDTOVersion as aP, DexPoolDTOLiquidityModel as aQ, type DexPoolDTO 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 };
@@ -865,94 +865,6 @@ interface TokenStat {
865
865
  /** DTO.TOKEN.TRADE_STAT.PERIODS */
866
866
  periods: TokenStatPeriods;
867
867
  }
868
- interface DexPoolTokenLiquidity {
869
- /** DTO.DEXPOOL.TOKEN_ADDRESS */
870
- tokenAddress: string;
871
- /** DTO.DEXPOOL.TOKEN_DECIMALS */
872
- decimals: number;
873
- /** DTO.DEXPOOL.VAULT_AMOUNT */
874
- vaultAmount: string;
875
- /** DTO.DEXPOOL.AMOUNT_IN_USD */
876
- amountInUsd: string;
877
- /** DTO.DEXPOOL.AMOUNT_IN_NATIVE */
878
- amountInNative: string;
879
- /** DTO.DEXPOOL.PRICE_USD */
880
- priceUsd: string;
881
- /** DTO.DEXPOOL.PRICE_NATIVE */
882
- priceNative: string;
883
- }
884
- /**
885
- * DTO.DEXPOOL.TYPE
886
- */
887
- type DexPoolDTOType = (typeof DexPoolDTOType)[keyof typeof DexPoolDTOType];
888
- declare const DexPoolDTOType: {
889
- readonly NUMBER_0: 0;
890
- readonly NUMBER_1: 1;
891
- readonly NUMBER_2: 2;
892
- readonly NUMBER_3: 3;
893
- readonly NUMBER_4: 4;
894
- };
895
- /**
896
- * DTO.DEXPOOL.VERSION
897
- */
898
- type DexPoolDTOVersion = (typeof DexPoolDTOVersion)[keyof typeof DexPoolDTOVersion];
899
- declare const DexPoolDTOVersion: {
900
- readonly NUMBER_0: 0;
901
- readonly NUMBER_1: 1;
902
- readonly NUMBER_2: 2;
903
- readonly NUMBER_3: 3;
904
- };
905
- /**
906
- * DTO.DEXPOOL.LIQUIDITY_MODEL
907
- */
908
- type DexPoolDTOLiquidityModel = (typeof DexPoolDTOLiquidityModel)[keyof typeof DexPoolDTOLiquidityModel];
909
- declare const DexPoolDTOLiquidityModel: {
910
- readonly NUMBER_0: 0;
911
- readonly NUMBER_1: 1;
912
- readonly NUMBER_2: 2;
913
- readonly NUMBER_3: 3;
914
- readonly NUMBER_4: 4;
915
- };
916
- interface DexPoolDTO {
917
- /** DTO.DEX.PROGRAM_ADDRESS */
918
- programAddress?: string;
919
- /** DTO.DEX.PROTOCOL_FAMILY */
920
- protocolFamily?: string;
921
- /** DTO.DEX.IMAGE */
922
- image?: string;
923
- /** DTO.DEX.CHAIN */
924
- chain: string;
925
- /** DTO.DEXPOOL.POOL_ADDRESS */
926
- poolAddress: string;
927
- /** DTO.DEXPOOL.PROTOCOL_NAME */
928
- protocolName?: string;
929
- /** DTO.DEXPOOL.TOKEN_A */
930
- tokenAAddress: string;
931
- /** DTO.DEXPOOL.TOKEN_B */
932
- tokenBAddress: string;
933
- /** DTO.DEXPOOL.TVL_USD */
934
- tvlInUsd?: string;
935
- /** DTO.DEXPOOL.TVL_SOL */
936
- tvlInSol?: string;
937
- /** DTO.DEXPOOL.TYPE */
938
- type?: DexPoolDTOType;
939
- /** DTO.DEXPOOL.VERSION */
940
- version?: DexPoolDTOVersion;
941
- /** DTO.DEXPOOL.LIQUIDITY_MODEL */
942
- liquidityModel?: DexPoolDTOLiquidityModel;
943
- /** DTO.DEXPOOL.FEE_RATE */
944
- feeRate?: string;
945
- /** DTO.DEXPOOL.TICK_SPACING */
946
- tickSpacing?: number;
947
- /** DTO.DEXPOOL.TOKEN_COUNT */
948
- tokenCount?: number;
949
- /** DTO.DEXPOOL.CREATED_BLOCK_TIMESTAMP */
950
- createdBlockTimestamp?: string;
951
- /** DTO.DEXPOOL.TOKEN_A_LIQUIDITY */
952
- tokenALiquidity?: DexPoolTokenLiquidity;
953
- /** DTO.DEXPOOL.TOKEN_B_LIQUIDITY */
954
- tokenBLiquidity?: DexPoolTokenLiquidity;
955
- }
956
868
  interface TokenMarketData {
957
869
  /** DTO.TOKEN.MARKET_CAP.TOTAL_SUPPLY */
958
870
  totalSupply: string;
@@ -1094,8 +1006,6 @@ interface Token {
1094
1006
  extension?: TokenExtension;
1095
1007
  /** DTO.TOKEN.STATS */
1096
1008
  stats?: TokenStat;
1097
- /** DTO.TOKEN.LIQUIDITY */
1098
- liquidity?: DexPoolDTO[];
1099
1009
  /** DTO.TOKEN.MARKET_CAP_INFO */
1100
1010
  marketData: TokenMarketData;
1101
1011
  }
@@ -1221,6 +1131,94 @@ interface TokenMetadata {
1221
1131
  /** DTO.TOKEN.METADATA.DEV_LAST_TOKEN_CREATED_AT */
1222
1132
  devLastTokenCreatedAt?: string;
1223
1133
  }
1134
+ interface DexPoolTokenLiquidity {
1135
+ /** DTO.DEXPOOL.TOKEN_ADDRESS */
1136
+ tokenAddress: string;
1137
+ /** DTO.DEXPOOL.TOKEN_DECIMALS */
1138
+ decimals: number;
1139
+ /** DTO.DEXPOOL.VAULT_AMOUNT */
1140
+ vaultAmount: string;
1141
+ /** DTO.DEXPOOL.AMOUNT_IN_USD */
1142
+ amountInUsd: string;
1143
+ /** DTO.DEXPOOL.AMOUNT_IN_NATIVE */
1144
+ amountInNative: string;
1145
+ /** DTO.DEXPOOL.PRICE_USD */
1146
+ priceUsd: string;
1147
+ /** DTO.DEXPOOL.PRICE_NATIVE */
1148
+ priceNative: string;
1149
+ }
1150
+ /**
1151
+ * DTO.DEXPOOL.TYPE
1152
+ */
1153
+ type DexPoolDTOType = (typeof DexPoolDTOType)[keyof typeof DexPoolDTOType];
1154
+ declare const DexPoolDTOType: {
1155
+ readonly NUMBER_0: 0;
1156
+ readonly NUMBER_1: 1;
1157
+ readonly NUMBER_2: 2;
1158
+ readonly NUMBER_3: 3;
1159
+ readonly NUMBER_4: 4;
1160
+ };
1161
+ /**
1162
+ * DTO.DEXPOOL.VERSION
1163
+ */
1164
+ type DexPoolDTOVersion = (typeof DexPoolDTOVersion)[keyof typeof DexPoolDTOVersion];
1165
+ declare const DexPoolDTOVersion: {
1166
+ readonly NUMBER_0: 0;
1167
+ readonly NUMBER_1: 1;
1168
+ readonly NUMBER_2: 2;
1169
+ readonly NUMBER_3: 3;
1170
+ };
1171
+ /**
1172
+ * DTO.DEXPOOL.LIQUIDITY_MODEL
1173
+ */
1174
+ type DexPoolDTOLiquidityModel = (typeof DexPoolDTOLiquidityModel)[keyof typeof DexPoolDTOLiquidityModel];
1175
+ declare const DexPoolDTOLiquidityModel: {
1176
+ readonly NUMBER_0: 0;
1177
+ readonly NUMBER_1: 1;
1178
+ readonly NUMBER_2: 2;
1179
+ readonly NUMBER_3: 3;
1180
+ readonly NUMBER_4: 4;
1181
+ };
1182
+ interface DexPoolDTO {
1183
+ /** DTO.DEX.PROGRAM_ADDRESS */
1184
+ programAddress?: string;
1185
+ /** DTO.DEX.PROTOCOL_FAMILY */
1186
+ protocolFamily?: string;
1187
+ /** DTO.DEX.IMAGE */
1188
+ image?: string;
1189
+ /** DTO.DEX.CHAIN */
1190
+ chain: string;
1191
+ /** DTO.DEXPOOL.POOL_ADDRESS */
1192
+ poolAddress: string;
1193
+ /** DTO.DEXPOOL.PROTOCOL_NAME */
1194
+ protocolName?: string;
1195
+ /** DTO.DEXPOOL.TOKEN_A */
1196
+ tokenAAddress: string;
1197
+ /** DTO.DEXPOOL.TOKEN_B */
1198
+ tokenBAddress: string;
1199
+ /** DTO.DEXPOOL.TVL_USD */
1200
+ tvlInUsd?: string;
1201
+ /** DTO.DEXPOOL.TVL_SOL */
1202
+ tvlInSol?: string;
1203
+ /** DTO.DEXPOOL.TYPE */
1204
+ type?: DexPoolDTOType;
1205
+ /** DTO.DEXPOOL.VERSION */
1206
+ version?: DexPoolDTOVersion;
1207
+ /** DTO.DEXPOOL.LIQUIDITY_MODEL */
1208
+ liquidityModel?: DexPoolDTOLiquidityModel;
1209
+ /** DTO.DEXPOOL.FEE_RATE */
1210
+ feeRate?: string;
1211
+ /** DTO.DEXPOOL.TICK_SPACING */
1212
+ tickSpacing?: number;
1213
+ /** DTO.DEXPOOL.TOKEN_COUNT */
1214
+ tokenCount?: number;
1215
+ /** DTO.DEXPOOL.CREATED_BLOCK_TIMESTAMP */
1216
+ createdBlockTimestamp?: string;
1217
+ /** DTO.DEXPOOL.TOKEN_A_LIQUIDITY */
1218
+ tokenALiquidity?: DexPoolTokenLiquidity;
1219
+ /** DTO.DEXPOOL.TOKEN_B_LIQUIDITY */
1220
+ tokenBLiquidity?: DexPoolTokenLiquidity;
1221
+ }
1224
1222
  interface DexPoolPage {
1225
1223
  /** DTO.PAGE.HAS_NEXT */
1226
1224
  hasNext?: boolean;
@@ -6629,4 +6627,4 @@ interface PostOptions {
6629
6627
  idempotencyKey?: string;
6630
6628
  }
6631
6629
 
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 };
6630
+ 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 TokenMarketData as aF, type TokenExtension as aG, type Token as aH, type TokenPageCountsByProtocols as aI, type TokenPage as aJ, FilterConditionField as aK, type FilterCondition as aL, type TokenMetadata as aM, type DexPoolTokenLiquidity as aN, DexPoolDTOType as aO, DexPoolDTOVersion as aP, DexPoolDTOLiquidityModel as aQ, type DexPoolDTO 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 };
@@ -1,2 +1,2 @@
1
- export { C as ChainStreamClient, y as ChainStreamClientOptions, z as ChainStreamRequestContext, he as PostOptions, T as TokenProvider } from './chainstream-wxRA8ApP.cjs';
1
+ export { C as ChainStreamClient, y as ChainStreamClientOptions, z as ChainStreamRequestContext, he as PostOptions, T as TokenProvider } from './chainstream-Z6RPi494.cjs';
2
2
  import 'axios';
@@ -1,2 +1,2 @@
1
- export { C as ChainStreamClient, y as ChainStreamClientOptions, z as ChainStreamRequestContext, he as PostOptions, T as TokenProvider } from './chainstream-wxRA8ApP.js';
1
+ export { C as ChainStreamClient, y as ChainStreamClientOptions, z as ChainStreamRequestContext, he as PostOptions, T as TokenProvider } from './chainstream-Z6RPi494.js';
2
2
  import 'axios';
package/dist/index.cjs CHANGED
@@ -2762,26 +2762,6 @@ var TraderPnlResolution = {
2762
2762
  "7d": "7d",
2763
2763
  "30d": "30d"
2764
2764
  };
2765
- var DexPoolDTOType = {
2766
- NUMBER_0: 0,
2767
- NUMBER_1: 1,
2768
- NUMBER_2: 2,
2769
- NUMBER_3: 3,
2770
- NUMBER_4: 4
2771
- };
2772
- var DexPoolDTOVersion = {
2773
- NUMBER_0: 0,
2774
- NUMBER_1: 1,
2775
- NUMBER_2: 2,
2776
- NUMBER_3: 3
2777
- };
2778
- var DexPoolDTOLiquidityModel = {
2779
- NUMBER_0: 0,
2780
- NUMBER_1: 1,
2781
- NUMBER_2: 2,
2782
- NUMBER_3: 3,
2783
- NUMBER_4: 4
2784
- };
2785
2765
  var FilterConditionField = {
2786
2766
  marketDatapriceInUsd: "marketData.priceInUsd",
2787
2767
  statspriceChangeRatioInUsd1m: "stats.priceChangeRatioInUsd1m",
@@ -2830,6 +2810,26 @@ var FilterConditionField = {
2830
2810
  statsvolumesInUsd24h: "stats.volumesInUsd24h",
2831
2811
  tokenCreatedAt: "tokenCreatedAt"
2832
2812
  };
2813
+ var DexPoolDTOType = {
2814
+ NUMBER_0: 0,
2815
+ NUMBER_1: 1,
2816
+ NUMBER_2: 2,
2817
+ NUMBER_3: 3,
2818
+ NUMBER_4: 4
2819
+ };
2820
+ var DexPoolDTOVersion = {
2821
+ NUMBER_0: 0,
2822
+ NUMBER_1: 1,
2823
+ NUMBER_2: 2,
2824
+ NUMBER_3: 3
2825
+ };
2826
+ var DexPoolDTOLiquidityModel = {
2827
+ NUMBER_0: 0,
2828
+ NUMBER_1: 1,
2829
+ NUMBER_2: 2,
2830
+ NUMBER_3: 3,
2831
+ NUMBER_4: 4
2832
+ };
2833
2833
  var Resolution = {
2834
2834
  "1s": "1s",
2835
2835
  "15s": "15s",