@chainstream-io/sdk 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -553,32 +553,92 @@ var StreamApi = class {
553
553
  }
554
554
  return strValue;
555
555
  }
556
+ /**
557
+ * Parse candle data from WebSocket message
558
+ */
559
+ parseCandleData(data) {
560
+ return {
561
+ address: data.a,
562
+ open: data.o,
563
+ close: data.c,
564
+ high: data.h,
565
+ low: data.l,
566
+ volume: data.v,
567
+ resolution: data.r,
568
+ time: data.t,
569
+ number: data.n
570
+ };
571
+ }
572
+ /**
573
+ * Subscribe to token candles (K-line)
574
+ * Channel: dex-candle:{chain}_{tokenAddress}_{resolution} (USD)
575
+ * Channel: dex-candle-in-native:{chain}_{tokenAddress}_{resolution} (Native)
576
+ * @param priceType - "usd" (default) or "native"
577
+ */
556
578
  subscribeTokenCandles({
557
579
  chain,
558
580
  tokenAddress,
559
581
  resolution,
560
582
  callback,
561
- filter
583
+ filter,
584
+ priceType = "usd"
562
585
  }) {
563
- const channel = `dex-candle:${chain}_${tokenAddress}_${resolution}`;
586
+ const prefix = priceType === "native" ? "dex-candle-in-native" : "dex-candle";
587
+ const channel = `${prefix}:${chain}_${tokenAddress}_${resolution}`;
564
588
  return this.subscribe(
565
589
  channel,
566
- (data) => {
567
- callback({
568
- open: data.o,
569
- close: data.c,
570
- high: data.h,
571
- low: data.l,
572
- volume: data.v,
573
- resolution: data.r,
574
- time: data.t,
575
- number: data.n
576
- });
577
- },
590
+ (data) => callback(this.parseCandleData(data)),
578
591
  filter,
579
592
  "subscribeTokenCandles"
580
593
  );
581
594
  }
595
+ /**
596
+ * Subscribe to pool candles (K-line)
597
+ * Channel: dex-pool-candle:{chain}_{poolAddress}_{resolution} (USD)
598
+ * Channel: dex-pool-candle-in-native:{chain}_{poolAddress}_{resolution} (Native)
599
+ * @param priceType - "usd" (default) or "native"
600
+ */
601
+ subscribePoolCandles({
602
+ chain,
603
+ poolAddress,
604
+ resolution,
605
+ callback,
606
+ filter,
607
+ priceType = "usd"
608
+ }) {
609
+ const prefix = priceType === "native" ? "dex-pool-candle-in-native" : "dex-pool-candle";
610
+ const channel = `${prefix}:${chain}_${poolAddress}_${resolution}`;
611
+ return this.subscribe(
612
+ channel,
613
+ (data) => callback(this.parseCandleData(data)),
614
+ filter,
615
+ "subscribePoolCandles"
616
+ );
617
+ }
618
+ /**
619
+ * Subscribe to pair candles (K-line)
620
+ * Channel: dex-pair-candle:{chain}_{pairAddress}_{resolution} (USD)
621
+ * Channel: dex-pair-candle-in-native:{chain}_{pairAddress}_{resolution} (Native)
622
+ * @param pairAddress - format: {tokenA}-{tokenB}
623
+ * @param priceType - "usd" (default) or "native"
624
+ */
625
+ subscribePairCandles({
626
+ chain,
627
+ pairAddress,
628
+ resolution,
629
+ callback,
630
+ filter,
631
+ priceType = "usd"
632
+ }) {
633
+ const prefix = priceType === "native" ? "dex-pair-candle-in-native" : "dex-pair-candle";
634
+ const channel = `${prefix}:${chain}_${pairAddress}_${resolution}`;
635
+ return this.subscribe(
636
+ channel,
637
+ (data) => callback(this.parseCandleData(data)),
638
+ filter,
639
+ "subscribePairCandles"
640
+ );
641
+ }
582
642
  subscribeTokenStats({
583
643
  chain,
584
644
  tokenAddress,
@@ -1895,6 +1955,8 @@ __export(token_exports, {
1895
1955
  getMetadata: () => getMetadata,
1896
1956
  getMetadataMulti: () => getMetadataMulti,
1897
1957
  getMintAndBurn: () => getMintAndBurn,
1958
+ getPairCandles: () => getPairCandles,
1959
+ getPoolCandles: () => getPoolCandles,
1898
1960
  getPools: () => getPools,
1899
1961
  getPriceByTime: () => getPriceByTime,
1900
1962
  getPrices: () => getPrices,
@@ -1904,6 +1966,8 @@ __export(token_exports, {
1904
1966
  getToken: () => getToken,
1905
1967
  getTokenLiquiditySnapshots: () => getTokenLiquiditySnapshots,
1906
1968
  getTokenTraders: () => getTokenTraders,
1969
+ getTokenTransferTotal: () => getTokenTransferTotal,
1970
+ getTokenTransfers: () => getTokenTransfers,
1907
1971
  getTokens: () => getTokens,
1908
1972
  getTopHolders: () => getTopHolders,
1909
1973
  listToken: () => listToken,
@@ -1975,6 +2039,18 @@ var getCandles = (chain, tokenAddress, params, options) => {
1975
2039
  options
1976
2040
  );
1977
2041
  };
2042
+ var getPoolCandles = (chain, poolAddress, params, options) => {
2043
+ return chainstreamApiClient(
2044
+ { url: `/v1/token/${chain}/pool/${poolAddress}/candles`, method: "GET", params },
2045
+ options
2046
+ );
2047
+ };
2048
+ var getPairCandles = (chain, pair, params, options) => {
2049
+ return chainstreamApiClient(
2050
+ { url: `/v1/token/${chain}/pair/${pair}/candles`, method: "GET", params },
2051
+ options
2052
+ );
2053
+ };
1978
2054
  var getTopHolders = (chain, tokenAddress, options) => {
1979
2055
  return chainstreamApiClient(
1980
2056
  { url: `/v1/token/${chain}/${tokenAddress}/topHolders`, method: "GET" },
@@ -2047,12 +2123,25 @@ var getTokenLiquiditySnapshots = (chain, tokenAddress, params, options) => {
2047
2123
  options
2048
2124
  );
2049
2125
  };
2126
+ var getTokenTransfers = (chain, tokenAddress, params, options) => {
2127
+ return chainstreamApiClient(
2128
+ { url: `/v1/token/${chain}/${tokenAddress}/transfers`, method: "GET", params },
2129
+ options
2130
+ );
2131
+ };
2132
+ var getTokenTransferTotal = (chain, tokenAddress, params, options) => {
2133
+ return chainstreamApiClient(
2134
+ { url: `/v1/token/${chain}/${tokenAddress}/transfer-total`, method: "GET", params },
2135
+ options
2136
+ );
2137
+ };
2050
2138
 
2051
2139
  // src/openapi-client/generated/trade/trade.ts
2052
2140
  var trade_exports = {};
2053
2141
  __export(trade_exports, {
2054
2142
  getActivities: () => getActivities,
2055
2143
  getTopTraders: () => getTopTraders,
2144
+ getTraderGainersLosers: () => getTraderGainersLosers,
2056
2145
  getTrades: () => getTrades
2057
2146
  });
2058
2147
  var getTrades = (chain, params, options) => {
@@ -2073,6 +2162,12 @@ var getTopTraders = (chain, params, options) => {
2073
2162
  options
2074
2163
  );
2075
2164
  };
2165
+ var getTraderGainersLosers = (chain, params, options) => {
2166
+ return chainstreamApiClient(
2167
+ { url: `/v1/trade/${chain}/trader-gainers-losers`, method: "GET", params },
2168
+ options
2169
+ );
2170
+ };
2076
2171
 
2077
2172
  // src/openapi-client/generated/transaction/transaction.ts
2078
2173
  var transaction_exports = {};
@@ -2114,26 +2209,35 @@ var getGasLimit = (chain, estimateGasLimitInput, options) => {
2114
2209
  var wallet_exports = {};
2115
2210
  __export(wallet_exports, {
2116
2211
  calculatePnl: () => calculatePnl,
2117
- getBalance: () => getBalance,
2118
2212
  getBalanceUpdates: () => getBalanceUpdates,
2213
+ getNetWorth: () => getNetWorth,
2214
+ getNetWorthChart: () => getNetWorthChart,
2215
+ getNetWorthDetails: () => getNetWorthDetails,
2216
+ getNetWorthSummary: () => getNetWorthSummary,
2119
2217
  getPnl: () => getPnl,
2120
- getPnlStats: () => getPnlStats
2218
+ getPnlByToken: () => getPnlByToken,
2219
+ getPnlByWallet: () => getPnlByWallet,
2220
+ getPnlDetails: () => getPnlDetails,
2221
+ getTokensBalance: () => getTokensBalance,
2222
+ getWalletFirstTx: () => getWalletFirstTx,
2223
+ getWalletTransferTotal: () => getWalletTransferTotal,
2224
+ getWalletTransfers: () => getWalletTransfers
2121
2225
  });
2122
- var getPnl = (chain, walletAddress, params, options) => {
2226
+ var getNetWorthSummary = (chain, params, options) => {
2123
2227
  return chainstreamApiClient(
2124
- { url: `/v1/wallet/${chain}/${walletAddress}/pnl`, method: "GET", params },
2228
+ { url: `/v1/wallet/${chain}/net-worth-summary`, method: "GET", params },
2125
2229
  options
2126
2230
  );
2127
2231
  };
2128
- var getPnlStats = (chain, walletAddress, options) => {
2232
+ var getPnlByWallet = (chain, params, options) => {
2129
2233
  return chainstreamApiClient(
2130
- { url: `/v1/wallet/${chain}/${walletAddress}/stats`, method: "GET" },
2234
+ { url: `/v1/wallet/${chain}/pnl-by-wallet`, method: "GET", params },
2131
2235
  options
2132
2236
  );
2133
2237
  };
2134
- var getBalance = (chain, walletAddress, params, options) => {
2238
+ var getWalletFirstTx = (chain, params, options) => {
2135
2239
  return chainstreamApiClient(
2136
- { url: `/v1/wallet/${chain}/${walletAddress}/balance`, method: "GET", params },
2240
+ { url: `/v1/wallet/${chain}/first-tx`, method: "GET", params },
2137
2241
  options
2138
2242
  );
2139
2243
  };
@@ -2148,6 +2252,60 @@ var calculatePnl = (chain, walletAddress, calculatePnlInput, options) => {
2148
2252
  options
2149
2253
  );
2150
2254
  };
2255
+ var getNetWorth = (chain, walletAddress, params, options) => {
2256
+ return chainstreamApiClient(
2257
+ { url: `/v1/wallet/${chain}/${walletAddress}/net-worth`, method: "GET", params },
2258
+ options
2259
+ );
2260
+ };
2261
+ var getTokensBalance = (chain, walletAddress, params, options) => {
2262
+ return chainstreamApiClient(
2263
+ { url: `/v1/wallet/${chain}/${walletAddress}/tokens-balance`, method: "GET", params },
2264
+ options
2265
+ );
2266
+ };
2267
+ var getNetWorthChart = (chain, walletAddress, params, options) => {
2268
+ return chainstreamApiClient(
2269
+ { url: `/v1/wallet/${chain}/${walletAddress}/net-worth-chart`, method: "GET", params },
2270
+ options
2271
+ );
2272
+ };
2273
+ var getNetWorthDetails = (chain, walletAddress, params, options) => {
2274
+ return chainstreamApiClient(
2275
+ { url: `/v1/wallet/${chain}/${walletAddress}/net-worth-details`, method: "GET", params },
2276
+ options
2277
+ );
2278
+ };
2279
+ var getPnl = (chain, walletAddress, params, options) => {
2280
+ return chainstreamApiClient(
2281
+ { url: `/v1/wallet/${chain}/${walletAddress}/pnl`, method: "GET", params },
2282
+ options
2283
+ );
2284
+ };
2285
+ var getPnlDetails = (chain, walletAddress, params, options) => {
2286
+ return chainstreamApiClient(
2287
+ { url: `/v1/wallet/${chain}/${walletAddress}/pnl-details`, method: "GET", params },
2288
+ options
2289
+ );
2290
+ };
2291
+ var getPnlByToken = (chain, walletAddress, params, options) => {
2292
+ return chainstreamApiClient(
2293
+ { url: `/v1/wallet/${chain}/${walletAddress}/pnl-by-token`, method: "GET", params },
2294
+ options
2295
+ );
2296
+ };
2297
+ var getWalletTransfers = (chain, walletAddress, params, options) => {
2298
+ return chainstreamApiClient(
2299
+ { url: `/v1/wallet/${chain}/${walletAddress}/transfers`, method: "GET", params },
2300
+ options
2301
+ );
2302
+ };
2303
+ var getWalletTransferTotal = (chain, walletAddress, params, options) => {
2304
+ return chainstreamApiClient(
2305
+ { url: `/v1/wallet/${chain}/${walletAddress}/transfer-total`, method: "GET", params },
2306
+ options
2307
+ );
2308
+ };
2151
2309
  var getBalanceUpdates = (chain, walletAddress, params, options) => {
2152
2310
  return chainstreamApiClient(
2153
2311
  { url: `/v1/wallet/${chain}/${walletAddress}/balance-updates`, method: "GET", params },
@@ -2329,6 +2487,11 @@ var PumpCreateTokenInputMigrationDex = {
2329
2487
  RAYDIUM: "RAYDIUM",
2330
2488
  METEORA: "METEORA"
2331
2489
  };
2490
+ var TraderPnlResolution = {
2491
+ "1d": "1d",
2492
+ "7d": "7d",
2493
+ "30d": "30d"
2494
+ };
2332
2495
  var DexPoolDTOType = {
2333
2496
  NUMBER_0: 0,
2334
2497
  NUMBER_1: 1,
@@ -2402,12 +2565,24 @@ var Resolution = {
2402
2565
  "15s": "15s",
2403
2566
  "30s": "30s",
2404
2567
  "1m": "1m",
2568
+ "3m": "3m",
2405
2569
  "5m": "5m",
2406
2570
  "15m": "15m",
2571
+ "30m": "30m",
2407
2572
  "1h": "1h",
2573
+ "2h": "2h",
2408
2574
  "4h": "4h",
2575
+ "6h": "6h",
2576
+ "8h": "8h",
2409
2577
  "12h": "12h",
2410
- "1d": "1d"
2578
+ "1d": "1d",
2579
+ "3d": "3d",
2580
+ "1w": "1w",
2581
+ "1M": "1M"
2582
+ };
2583
+ var PriceType = {
2584
+ usd: "usd",
2585
+ native: "native"
2411
2586
  };
2412
2587
  var TokenCreationDTOType = {
2413
2588
  create: "create",
@@ -2423,7 +2598,33 @@ var TokenTraderTag = {
2423
2598
  pro: "pro",
2424
2599
  insider: "insider",
2425
2600
  kol: "kol",
2426
- bluechip: "bluechip"
2601
+ bluechip: "bluechip",
2602
+ smart: "smart"
2603
+ };
2604
+ var TokenTransferItemDTOFlow = {
2605
+ in: "in",
2606
+ out: "out"
2607
+ };
2608
+ var PnlResolution = {
2609
+ "1d": "1d",
2610
+ "7d": "7d",
2611
+ "30d": "30d",
2612
+ all: "all"
2613
+ };
2614
+ var WalletPnlSummaryDTOResolution = {
2615
+ "1d": "1d",
2616
+ "7d": "7d",
2617
+ "30d": "30d",
2618
+ all: "all"
2619
+ };
2620
+ var TransactionHistoryItemDTOStatus = {
2621
+ UNKNOWN: "UNKNOWN",
2622
+ SUCCEEDED: "SUCCEEDED",
2623
+ FAILED: "FAILED"
2624
+ };
2625
+ var TransactionHistoryItemDTOMainAction = {
2626
+ send: "send",
2627
+ receive: "receive"
2427
2628
  };
2428
2629
  var BalanceTokenType = {
2429
2630
  SOL: "SOL",
@@ -2462,6 +2663,18 @@ var KYTRegisterWithdrawalRequestNetwork = {
2462
2663
  ethereum: "ethereum",
2463
2664
  Solana: "Solana"
2464
2665
  };
2666
+ var EndpointResponseChannelsItem = {
2667
+ soltokenmigrated: "sol.token.migrated",
2668
+ soltokencreated: "sol.token.created"
2669
+ };
2670
+ var CreateEndpointInputChannelsItem = {
2671
+ soltokenmigrated: "sol.token.migrated",
2672
+ soltokencreated: "sol.token.created"
2673
+ };
2674
+ var UpdateEndpointInputChannelsItem = {
2675
+ soltokenmigrated: "sol.token.migrated",
2676
+ soltokencreated: "sol.token.created"
2677
+ };
2465
2678
  var TradeType = {
2466
2679
  buy: "buy",
2467
2680
  sell: "sell"
@@ -2515,6 +2728,18 @@ var GetTopTradersSortBy = {
2515
2728
  tradeAmount: "tradeAmount",
2516
2729
  tradeCount: "tradeCount"
2517
2730
  };
2731
+ var GetTraderGainersLosersDirection = {
2732
+ next: "next",
2733
+ prev: "prev"
2734
+ };
2735
+ var GetTraderGainersLosersSortType = {
2736
+ desc: "desc",
2737
+ asc: "asc"
2738
+ };
2739
+ var SearchDirection = {
2740
+ next: "next",
2741
+ prev: "prev"
2742
+ };
2518
2743
  var SearchSort = {
2519
2744
  asc: "asc",
2520
2745
  desc: "desc"
@@ -2682,6 +2907,22 @@ var ListTokenSortBy = {
2682
2907
  m1BuyVolumeInUsd: "m1BuyVolumeInUsd",
2683
2908
  m1SellVolumeInUsd: "m1SellVolumeInUsd"
2684
2909
  };
2910
+ var GetTokenLiquiditySnapshotsDirection = {
2911
+ next: "next",
2912
+ prev: "prev"
2913
+ };
2914
+ var GetTokenTransfersDirection = {
2915
+ next: "next",
2916
+ prev: "prev"
2917
+ };
2918
+ var GetTokenTransferTotalDirection = {
2919
+ next: "next",
2920
+ prev: "prev"
2921
+ };
2922
+ var GetDexpoolSnapshotsDirection = {
2923
+ next: "next",
2924
+ prev: "prev"
2925
+ };
2685
2926
  var GetHotTokensSortBy = {
2686
2927
  marketDatapriceInUsd: "marketData.priceInUsd",
2687
2928
  statspriceChangeRatioInUsd1m: "stats.priceChangeRatioInUsd1m",
@@ -2977,6 +3218,42 @@ var GetMigratedTokensTag = {
2977
3218
  bonk_fun: "bonk_fun",
2978
3219
  moonit_fun: "moonit_fun"
2979
3220
  };
3221
+ var GetPnlByWalletDirection = {
3222
+ next: "next",
3223
+ prev: "prev"
3224
+ };
3225
+ var GetNetWorthDirection = {
3226
+ next: "next",
3227
+ prev: "prev"
3228
+ };
3229
+ var GetTokensBalanceDirection = {
3230
+ next: "next",
3231
+ prev: "prev"
3232
+ };
3233
+ var GetNetWorthDetailsDirection = {
3234
+ next: "next",
3235
+ prev: "prev"
3236
+ };
3237
+ var GetPnlDetailsDirection = {
3238
+ next: "next",
3239
+ prev: "prev"
3240
+ };
3241
+ var GetPnlByTokenDirection = {
3242
+ next: "next",
3243
+ prev: "prev"
3244
+ };
3245
+ var GetWalletTransfersDirection = {
3246
+ next: "next",
3247
+ prev: "prev"
3248
+ };
3249
+ var GetWalletTransferTotalDirection = {
3250
+ next: "next",
3251
+ prev: "prev"
3252
+ };
3253
+ var GetBalanceUpdatesDirection = {
3254
+ next: "next",
3255
+ prev: "prev"
3256
+ };
2980
3257
  var GetRedpacketsChain = {
2981
3258
  sol: "sol",
2982
3259
  bsc: "bsc",
@@ -2994,14 +3271,18 @@ export {
2994
3271
  ChainStreamClient,
2995
3272
  ChainSymbol,
2996
3273
  ClaimRedPacketInputChain,
3274
+ CreateEndpointInputChannelsItem,
2997
3275
  CreateRedPacketInputChain,
2998
3276
  CreateTokenInputDex,
2999
3277
  DexPoolDTOLiquidityModel,
3000
3278
  DexPoolDTOType,
3001
3279
  DexPoolDTOVersion,
3280
+ EndpointResponseChannelsItem,
3002
3281
  FilterConditionField,
3003
3282
  GetActivitiesDirection,
3004
3283
  GetActivitiesType,
3284
+ GetBalanceUpdatesDirection,
3285
+ GetDexpoolSnapshotsDirection,
3005
3286
  GetFinalStretchTokensSortBy,
3006
3287
  GetFinalStretchTokensSortDirection,
3007
3288
  GetFinalStretchTokensTag,
@@ -3014,9 +3295,14 @@ export {
3014
3295
  GetMigratedTokensTag,
3015
3296
  GetMintAndBurnDirection,
3016
3297
  GetMintAndBurnType,
3298
+ GetNetWorthDetailsDirection,
3299
+ GetNetWorthDirection,
3017
3300
  GetNewTokensSortBy,
3018
3301
  GetNewTokensSortDirection,
3019
3302
  GetNewTokensTag,
3303
+ GetPnlByTokenDirection,
3304
+ GetPnlByWalletDirection,
3305
+ GetPnlDetailsDirection,
3020
3306
  GetPoolsDirection,
3021
3307
  GetPoolsSortBy,
3022
3308
  GetPoolsSortDirection,
@@ -3025,14 +3311,22 @@ export {
3025
3311
  GetStocksTokensSortBy,
3026
3312
  GetStocksTokensSortDirection,
3027
3313
  GetStocksTokensTag,
3314
+ GetTokenLiquiditySnapshotsDirection,
3315
+ GetTokenTransferTotalDirection,
3316
+ GetTokenTransfersDirection,
3317
+ GetTokensBalanceDirection,
3028
3318
  GetTokensSortBy,
3029
3319
  GetTokensSortDirection,
3030
3320
  GetTopTradersDirection,
3031
3321
  GetTopTradersSortBy,
3032
3322
  GetTopTradersSortType,
3033
3323
  GetTopTradersTimeFrame,
3324
+ GetTraderGainersLosersDirection,
3325
+ GetTraderGainersLosersSortType,
3034
3326
  GetTradesDirection,
3035
3327
  GetTradesType,
3328
+ GetWalletTransferTotalDirection,
3329
+ GetWalletTransfersDirection,
3036
3330
  KYTRegisterTransferRequestDirection,
3037
3331
  KYTRegisterTransferRequestNetwork,
3038
3332
  KYTRegisterWithdrawalRequestNetwork,
@@ -3043,10 +3337,13 @@ export {
3043
3337
  ListTokenSortBy,
3044
3338
  MoonshotCreateTokenInputDex,
3045
3339
  MoonshotCreateTokenInputMigrationDex,
3340
+ PnlResolution,
3341
+ PriceType,
3046
3342
  PumpCreateTokenInputDex,
3047
3343
  PumpCreateTokenInputMigrationDex,
3048
3344
  QuoteDex,
3049
3345
  Resolution,
3346
+ SearchDirection,
3050
3347
  SearchSort,
3051
3348
  SearchSortBy,
3052
3349
  SendTxInputSubmitType,
@@ -3057,7 +3354,13 @@ export {
3057
3354
  SwapRouteInputSwapMode,
3058
3355
  TokenCreationDTOType,
3059
3356
  TokenTraderTag,
3357
+ TokenTransferItemDTOFlow,
3060
3358
  TradeType,
3359
+ TraderPnlResolution,
3360
+ TransactionHistoryItemDTOMainAction,
3361
+ TransactionHistoryItemDTOStatus,
3362
+ UpdateEndpointInputChannelsItem,
3363
+ WalletPnlSummaryDTOResolution,
3061
3364
  WsChannelType,
3062
3365
  WsDex,
3063
3366
  WsMetricType,
@@ -3073,7 +3376,6 @@ export {
3073
3376
  getActivities,
3074
3377
  getAddressRisk,
3075
3378
  getAvailableFields,
3076
- getBalance,
3077
3379
  getBalanceUpdates,
3078
3380
  getCandles,
3079
3381
  getClaims,
@@ -3098,9 +3400,17 @@ export {
3098
3400
  getMetadataMulti,
3099
3401
  getMigratedTokens,
3100
3402
  getMintAndBurn,
3403
+ getNetWorth,
3404
+ getNetWorthChart,
3405
+ getNetWorthDetails,
3406
+ getNetWorthSummary,
3101
3407
  getNewTokens,
3408
+ getPairCandles,
3102
3409
  getPnl,
3103
- getPnlStats,
3410
+ getPnlByToken,
3411
+ getPnlByWallet,
3412
+ getPnlDetails,
3413
+ getPoolCandles,
3104
3414
  getPools,
3105
3415
  getPriceByTime,
3106
3416
  getPrices,
@@ -3115,14 +3425,21 @@ export {
3115
3425
  getToken,
3116
3426
  getTokenLiquiditySnapshots,
3117
3427
  getTokenTraders,
3428
+ getTokenTransferTotal,
3429
+ getTokenTransfers,
3118
3430
  getTokens,
3431
+ getTokensBalance,
3119
3432
  getTopHolders,
3120
3433
  getTopTraders,
3434
+ getTraderGainersLosers,
3121
3435
  getTrades,
3122
3436
  getTransferAlerts,
3123
3437
  getTransferDirectExposure,
3124
3438
  getTransferNetworkIdentifications,
3125
3439
  getTransferSummary,
3440
+ getWalletFirstTx,
3441
+ getWalletTransferTotal,
3442
+ getWalletTransfers,
3126
3443
  getWithdrawalAddressIdentifications,
3127
3444
  getWithdrawalAlerts,
3128
3445
  getWithdrawalDirectExposure,