@chainstream-io/sdk 0.0.9 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/dist/api/stream.d.ts +5 -1
  2. package/dist/api/stream.js +31 -6
  3. package/dist/api/stream.js.map +1 -1
  4. package/dist/api/stream.model.d.ts +3 -0
  5. package/dist/api/stream.model.js.map +1 -1
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.js +1 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/openapi/apis/DexApi.d.ts +5 -2
  10. package/dist/openapi/apis/DexApi.js +79 -4
  11. package/dist/openapi/apis/DexApi.js.map +1 -1
  12. package/dist/openapi/apis/TradeApi.d.ts +3 -1
  13. package/dist/openapi/apis/TradeApi.js +76 -1
  14. package/dist/openapi/apis/TradeApi.js.map +1 -1
  15. package/dist/openapi/index.d.ts +1 -1
  16. package/dist/openapi/index.js.map +1 -1
  17. package/dist/openapi/models/CreateTokenInput.d.ts +34 -0
  18. package/dist/openapi/models/CreateTokenInput.js +72 -0
  19. package/dist/openapi/models/CreateTokenInput.js.map +1 -0
  20. package/dist/openapi/models/DexDTO.d.ts +3 -3
  21. package/dist/openapi/models/DexPoolDTO.d.ts +3 -3
  22. package/dist/openapi/models/ObjectSerializer.d.ts +2 -1
  23. package/dist/openapi/models/ObjectSerializer.js +7 -4
  24. package/dist/openapi/models/ObjectSerializer.js.map +1 -1
  25. package/dist/openapi/models/QuoteResponse.d.ts +25 -0
  26. package/dist/openapi/models/QuoteResponse.js +52 -0
  27. package/dist/openapi/models/QuoteResponse.js.map +1 -0
  28. package/dist/openapi/models/TokenMarketData.d.ts +3 -3
  29. package/dist/openapi/models/TokenMarketData.js +6 -6
  30. package/dist/openapi/models/TokenMarketData.js.map +1 -1
  31. package/dist/openapi/models/TradeDetailDTO.d.ts +1 -1
  32. package/dist/openapi/models/TradeDetailDTO.js +2 -2
  33. package/dist/openapi/models/TradeDetailDTO.js.map +1 -1
  34. package/dist/openapi/models/all.d.ts +2 -1
  35. package/dist/openapi/models/all.js +2 -1
  36. package/dist/openapi/models/all.js.map +1 -1
  37. package/dist/openapi/types/ObjectParamAPI.d.ts +31 -2
  38. package/dist/openapi/types/ObjectParamAPI.js +16 -4
  39. package/dist/openapi/types/ObjectParamAPI.js.map +1 -1
  40. package/dist/openapi/types/ObservableAPI.d.ts +10 -5
  41. package/dist/openapi/types/ObservableAPI.js +44 -8
  42. package/dist/openapi/types/ObservableAPI.js.map +1 -1
  43. package/dist/openapi/types/PromiseAPI.d.ts +10 -5
  44. package/dist/openapi/types/PromiseAPI.js +24 -8
  45. package/dist/openapi/types/PromiseAPI.js.map +1 -1
  46. package/package.json +1 -1
  47. package/src/api/stream.model.ts +3 -0
  48. package/src/api/stream.ts +39 -3
  49. package/src/index.ts +1 -1
  50. package/src/openapi/.openapi-generator/FILES +2 -1
  51. package/src/openapi/apis/DexApi.ts +149 -7
  52. package/src/openapi/apis/TradeApi.ts +154 -1
  53. package/src/openapi/index.ts +1 -1
  54. package/src/openapi/models/{DexCreateTokenInput.ts → CreateTokenInput.ts} +5 -5
  55. package/src/openapi/models/DexDTO.ts +3 -3
  56. package/src/openapi/models/DexPoolDTO.ts +3 -3
  57. package/src/openapi/models/ObjectSerializer.ts +7 -4
  58. package/src/openapi/models/QuoteResponse.ts +89 -0
  59. package/src/openapi/models/TokenMarketData.ts +12 -12
  60. package/src/openapi/models/TradeDetailDTO.ts +4 -4
  61. package/src/openapi/models/all.ts +2 -1
  62. package/src/openapi/types/ObjectParamAPI.ts +192 -7
  63. package/src/openapi/types/ObservableAPI.ts +114 -11
  64. package/src/openapi/types/PromiseAPI.ts +88 -11
@@ -7,8 +7,8 @@ import { Candle } from '../models/Candle';
7
7
  import { ClaimRedPacketInput } from '../models/ClaimRedPacketInput';
8
8
  import { CreateRedPacketInput } from '../models/CreateRedPacketInput';
9
9
  import { CreateRedPacketReply } from '../models/CreateRedPacketReply';
10
+ import { CreateTokenInput } from '../models/CreateTokenInput';
10
11
  import { CreateTokenReply } from '../models/CreateTokenReply';
11
- import { DexCreateTokenInput } from '../models/DexCreateTokenInput';
12
12
  import { DexDTO } from '../models/DexDTO';
13
13
  import { DexPage } from '../models/DexPage';
14
14
  import { DexPoolDTO } from '../models/DexPoolDTO';
@@ -22,6 +22,7 @@ import { MoonshotSubmitCreateToken200Response } from '../models/MoonshotSubmitCr
22
22
  import { MoonshotSubmitCreateTokenInput } from '../models/MoonshotSubmitCreateTokenInput';
23
23
  import { PumpCreateTokenInput } from '../models/PumpCreateTokenInput';
24
24
  import { PumpCreateTokenReply } from '../models/PumpCreateTokenReply';
25
+ import { QuoteResponse } from '../models/QuoteResponse';
25
26
  import { RedPacketClaimDTO } from '../models/RedPacketClaimDTO';
26
27
  import { RedPacketClaimsPage } from '../models/RedPacketClaimsPage';
27
28
  import { RedPacketDTO } from '../models/RedPacketDTO';
@@ -240,10 +241,10 @@ export interface DexApiCreateTokenRequest {
240
241
  chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui'
241
242
  /**
242
243
  * Token creation parameters
243
- * @type DexCreateTokenInput
244
+ * @type CreateTokenInput
244
245
  * @memberof DexApicreateToken
245
246
  */
246
- dexCreateTokenInput: DexCreateTokenInput
247
+ createTokenInput: CreateTokenInput
247
248
  }
248
249
 
249
250
  export interface DexApiListRequest {
@@ -272,6 +273,58 @@ export interface DexApiListRequest {
272
273
  dexProgram?: string
273
274
  }
274
275
 
276
+ export interface DexApiQuoteRequest {
277
+ /**
278
+ * GLOBAL.CHAIN.DESCRIPTION
279
+ * Defaults to: undefined
280
+ * @type 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui'
281
+ * @memberof DexApiquote
282
+ */
283
+ chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui'
284
+ /**
285
+ * DTO.DEX.QUOTE.DEX
286
+ * Defaults to: undefined
287
+ * @type 'raydium' | 'pumpfun'
288
+ * @memberof DexApiquote
289
+ */
290
+ dex: 'raydium' | 'pumpfun'
291
+ /**
292
+ * DTO.DEX.QUOTE.AMOUNT
293
+ * Defaults to: undefined
294
+ * @type string
295
+ * @memberof DexApiquote
296
+ */
297
+ amount: string
298
+ /**
299
+ * DTO.DEX.QUOTE.INPUT_MINT
300
+ * Defaults to: undefined
301
+ * @type string
302
+ * @memberof DexApiquote
303
+ */
304
+ inputMint: string
305
+ /**
306
+ * DTO.DEX.QUOTE.OUTPUT_MINT
307
+ * Defaults to: undefined
308
+ * @type string
309
+ * @memberof DexApiquote
310
+ */
311
+ outputMint: string
312
+ /**
313
+ * DTO.DEX.QUOTE.EXACT_IN
314
+ * Defaults to: true
315
+ * @type boolean
316
+ * @memberof DexApiquote
317
+ */
318
+ exactIn: boolean
319
+ /**
320
+ * DTO.DEX.QUOTE.SLIPPAGE
321
+ * Defaults to: undefined
322
+ * @type number
323
+ * @memberof DexApiquote
324
+ */
325
+ slippage: number
326
+ }
327
+
275
328
  export interface DexApiRouteRequest {
276
329
  /**
277
330
  * GLOBAL.CHAIN.DESCRIPTION
@@ -317,7 +370,7 @@ export class ObjectDexApi {
317
370
  * @param param the request object
318
371
  */
319
372
  public createTokenWithHttpInfo(param: DexApiCreateTokenRequest, options?: Configuration): Promise<HttpInfo<CreateTokenReply>> {
320
- return this.api.createTokenWithHttpInfo(param.chain, param.dexCreateTokenInput, options).toPromise();
373
+ return this.api.createTokenWithHttpInfo(param.chain, param.createTokenInput, options).toPromise();
321
374
  }
322
375
 
323
376
  /**
@@ -326,7 +379,7 @@ export class ObjectDexApi {
326
379
  * @param param the request object
327
380
  */
328
381
  public createToken(param: DexApiCreateTokenRequest, options?: Configuration): Promise<CreateTokenReply> {
329
- return this.api.createToken(param.chain, param.dexCreateTokenInput, options).toPromise();
382
+ return this.api.createToken(param.chain, param.createTokenInput, options).toPromise();
330
383
  }
331
384
 
332
385
  /**
@@ -347,6 +400,24 @@ export class ObjectDexApi {
347
400
  return this.api.list(param.chains, param.limit, param.dexProgram, options).toPromise();
348
401
  }
349
402
 
403
+ /**
404
+ * CONTROLLER.DEX.QUOTE.DESCRIPTION
405
+ * CONTROLLER.DEX.QUOTE.SUMMARY
406
+ * @param param the request object
407
+ */
408
+ public quoteWithHttpInfo(param: DexApiQuoteRequest, options?: Configuration): Promise<HttpInfo<QuoteResponse>> {
409
+ return this.api.quoteWithHttpInfo(param.chain, param.dex, param.amount, param.inputMint, param.outputMint, param.exactIn, param.slippage, options).toPromise();
410
+ }
411
+
412
+ /**
413
+ * CONTROLLER.DEX.QUOTE.DESCRIPTION
414
+ * CONTROLLER.DEX.QUOTE.SUMMARY
415
+ * @param param the request object
416
+ */
417
+ public quote(param: DexApiQuoteRequest, options?: Configuration): Promise<QuoteResponse> {
418
+ return this.api.quote(param.chain, param.dex, param.amount, param.inputMint, param.outputMint, param.exactIn, param.slippage, options).toPromise();
419
+ }
420
+
350
421
  /**
351
422
  * CONTROLLER.DEX.ROUTE.DESCRIPTION
352
423
  * CONTROLLER.DEX.ROUTE.SUMMARY
@@ -3128,6 +3199,95 @@ export class ObjectTokenApi {
3128
3199
  import { ObservableTradeApi } from "./ObservableAPI";
3129
3200
  import { TradeApiRequestFactory, TradeApiResponseProcessor} from "../apis/TradeApi";
3130
3201
 
3202
+ export interface TradeApiGetActivitiesRequest {
3203
+ /**
3204
+ * GLOBAL.CHAIN.DESCRIPTION
3205
+ * Defaults to: undefined
3206
+ * @type &#39;sol&#39; | &#39;base&#39; | &#39;bsc&#39; | &#39;polygon&#39; | &#39;arbitrum&#39; | &#39;optimism&#39; | &#39;avalanche&#39; | &#39;ethereum&#39; | &#39;zksync&#39; | &#39;sui&#39;
3207
+ * @memberof TradeApigetActivities
3208
+ */
3209
+ chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui'
3210
+ /**
3211
+ * DTO.PAGE.CURSOR.DESCRIPTION
3212
+ * Defaults to: undefined
3213
+ * @type string
3214
+ * @memberof TradeApigetActivities
3215
+ */
3216
+ cursor?: string
3217
+ /**
3218
+ * DTO.PAGE.LIMIT
3219
+ * Minimum: 1
3220
+ * Maximum: 100
3221
+ * Defaults to: 20
3222
+ * @type number
3223
+ * @memberof TradeApigetActivities
3224
+ */
3225
+ limit?: number
3226
+ /**
3227
+ * DTO.PAGE.DIRECTION
3228
+ * Defaults to: &#39;next&#39;
3229
+ * @type &#39;next&#39; | &#39;prev&#39;
3230
+ * @memberof TradeApigetActivities
3231
+ */
3232
+ direction?: 'next' | 'prev'
3233
+ /**
3234
+ * DTO.TRADE.QUERY.TOKEN_ADDRESS
3235
+ * Defaults to: undefined
3236
+ * @type string
3237
+ * @memberof TradeApigetActivities
3238
+ */
3239
+ tokenAddress?: string
3240
+ /**
3241
+ * DTO.TRADE.QUERY.WALLET_ADDRESS
3242
+ * Defaults to: undefined
3243
+ * @type string
3244
+ * @memberof TradeApigetActivities
3245
+ */
3246
+ walletAddress?: string
3247
+ /**
3248
+ * DTO.TRADE.QUERY.POOL_ADDRESS
3249
+ * Defaults to: undefined
3250
+ * @type string
3251
+ * @memberof TradeApigetActivities
3252
+ */
3253
+ poolAddress?: string
3254
+ /**
3255
+ * DTO.TRADE.QUERY.BEFORE_TIMESTAMP
3256
+ * Defaults to: undefined
3257
+ * @type number
3258
+ * @memberof TradeApigetActivities
3259
+ */
3260
+ beforeTimestamp?: number
3261
+ /**
3262
+ * DTO.TRADE.QUERY.AFTER_TIMESTAMP
3263
+ * Defaults to: undefined
3264
+ * @type number
3265
+ * @memberof TradeApigetActivities
3266
+ */
3267
+ afterTimestamp?: number
3268
+ /**
3269
+ * DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
3270
+ * Defaults to: undefined
3271
+ * @type number
3272
+ * @memberof TradeApigetActivities
3273
+ */
3274
+ beforeBlockHeight?: number
3275
+ /**
3276
+ * DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
3277
+ * Defaults to: undefined
3278
+ * @type number
3279
+ * @memberof TradeApigetActivities
3280
+ */
3281
+ afterBlockHeight?: number
3282
+ /**
3283
+ * DTO.TRADE.QUERY.ACTIVITIES_TYPE
3284
+ * Defaults to: undefined
3285
+ * @type &#39;BUY&#39; | &#39;SELL&#39; | &#39;LIQUIDITY_INITIALIZE&#39; | &#39;LIQUIDITY_ADD&#39; | &#39;LIQUIDITY_REMOVE&#39; | &#39;RED_PACKET_CREATE&#39; | &#39;RED_PACKET_CLAIM&#39; | &#39;RED_PACKET_COMPLETE&#39; | &#39;RED_PACKET_REFUND&#39;
3286
+ * @memberof TradeApigetActivities
3287
+ */
3288
+ type?: 'BUY' | 'SELL' | 'LIQUIDITY_INITIALIZE' | 'LIQUIDITY_ADD' | 'LIQUIDITY_REMOVE' | 'RED_PACKET_CREATE' | 'RED_PACKET_CLAIM' | 'RED_PACKET_COMPLETE' | 'RED_PACKET_REFUND'
3289
+ }
3290
+
3131
3291
  export interface TradeApiGetGainersLosersRequest {
3132
3292
  /**
3133
3293
  * GLOBAL.CHAIN.DESCRIPTION
@@ -3323,6 +3483,13 @@ export interface TradeApiGetTradesRequest {
3323
3483
  * @memberof TradeApigetTrades
3324
3484
  */
3325
3485
  afterBlockHeight?: number
3486
+ /**
3487
+ * DTO.TRADE.QUERY.TRADES_TYPE
3488
+ * Defaults to: undefined
3489
+ * @type &#39;BUY&#39; | &#39;SELL&#39;
3490
+ * @memberof TradeApigetTrades
3491
+ */
3492
+ type?: 'BUY' | 'SELL'
3326
3493
  }
3327
3494
 
3328
3495
  export class ObjectTradeApi {
@@ -3332,6 +3499,24 @@ export class ObjectTradeApi {
3332
3499
  this.api = new ObservableTradeApi(configuration, requestFactory, responseProcessor);
3333
3500
  }
3334
3501
 
3502
+ /**
3503
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.DESCRIPTION
3504
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.SUMMARY
3505
+ * @param param the request object
3506
+ */
3507
+ public getActivitiesWithHttpInfo(param: TradeApiGetActivitiesRequest, options?: Configuration): Promise<HttpInfo<TradePage>> {
3508
+ return this.api.getActivitiesWithHttpInfo(param.chain, param.cursor, param.limit, param.direction, param.tokenAddress, param.walletAddress, param.poolAddress, param.beforeTimestamp, param.afterTimestamp, param.beforeBlockHeight, param.afterBlockHeight, param.type, options).toPromise();
3509
+ }
3510
+
3511
+ /**
3512
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.DESCRIPTION
3513
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.SUMMARY
3514
+ * @param param the request object
3515
+ */
3516
+ public getActivities(param: TradeApiGetActivitiesRequest, options?: Configuration): Promise<TradePage> {
3517
+ return this.api.getActivities(param.chain, param.cursor, param.limit, param.direction, param.tokenAddress, param.walletAddress, param.poolAddress, param.beforeTimestamp, param.afterTimestamp, param.beforeBlockHeight, param.afterBlockHeight, param.type, options).toPromise();
3518
+ }
3519
+
3335
3520
  /**
3336
3521
  * CONTROLLER.TRADE.GET.GAINERS_LOSERS.DESCRIPTION
3337
3522
  * CONTROLLER.TRADE.GET.GAINERS_LOSERS.SUMMARY
@@ -3374,7 +3559,7 @@ export class ObjectTradeApi {
3374
3559
  * @param param the request object
3375
3560
  */
3376
3561
  public getTradesWithHttpInfo(param: TradeApiGetTradesRequest, options?: Configuration): Promise<HttpInfo<TradePage>> {
3377
- return this.api.getTradesWithHttpInfo(param.chain, param.cursor, param.limit, param.direction, param.tokenAddress, param.walletAddress, param.poolAddress, param.beforeTimestamp, param.afterTimestamp, param.beforeBlockHeight, param.afterBlockHeight, options).toPromise();
3562
+ return this.api.getTradesWithHttpInfo(param.chain, param.cursor, param.limit, param.direction, param.tokenAddress, param.walletAddress, param.poolAddress, param.beforeTimestamp, param.afterTimestamp, param.beforeBlockHeight, param.afterBlockHeight, param.type, options).toPromise();
3378
3563
  }
3379
3564
 
3380
3565
  /**
@@ -3383,7 +3568,7 @@ export class ObjectTradeApi {
3383
3568
  * @param param the request object
3384
3569
  */
3385
3570
  public getTrades(param: TradeApiGetTradesRequest, options?: Configuration): Promise<TradePage> {
3386
- return this.api.getTrades(param.chain, param.cursor, param.limit, param.direction, param.tokenAddress, param.walletAddress, param.poolAddress, param.beforeTimestamp, param.afterTimestamp, param.beforeBlockHeight, param.afterBlockHeight, options).toPromise();
3571
+ return this.api.getTrades(param.chain, param.cursor, param.limit, param.direction, param.tokenAddress, param.walletAddress, param.poolAddress, param.beforeTimestamp, param.afterTimestamp, param.beforeBlockHeight, param.afterBlockHeight, param.type, options).toPromise();
3387
3572
  }
3388
3573
 
3389
3574
  }
@@ -8,8 +8,8 @@ import { Candle } from '../models/Candle';
8
8
  import { ClaimRedPacketInput } from '../models/ClaimRedPacketInput';
9
9
  import { CreateRedPacketInput } from '../models/CreateRedPacketInput';
10
10
  import { CreateRedPacketReply } from '../models/CreateRedPacketReply';
11
+ import { CreateTokenInput } from '../models/CreateTokenInput';
11
12
  import { CreateTokenReply } from '../models/CreateTokenReply';
12
- import { DexCreateTokenInput } from '../models/DexCreateTokenInput';
13
13
  import { DexDTO } from '../models/DexDTO';
14
14
  import { DexPage } from '../models/DexPage';
15
15
  import { DexPoolDTO } from '../models/DexPoolDTO';
@@ -23,6 +23,7 @@ import { MoonshotSubmitCreateToken200Response } from '../models/MoonshotSubmitCr
23
23
  import { MoonshotSubmitCreateTokenInput } from '../models/MoonshotSubmitCreateTokenInput';
24
24
  import { PumpCreateTokenInput } from '../models/PumpCreateTokenInput';
25
25
  import { PumpCreateTokenReply } from '../models/PumpCreateTokenReply';
26
+ import { QuoteResponse } from '../models/QuoteResponse';
26
27
  import { RedPacketClaimDTO } from '../models/RedPacketClaimDTO';
27
28
  import { RedPacketClaimsPage } from '../models/RedPacketClaimsPage';
28
29
  import { RedPacketDTO } from '../models/RedPacketDTO';
@@ -299,10 +300,10 @@ export class ObservableDexApi {
299
300
  * CONTROLLER.DEX.CREATE.DESCRIPTION
300
301
  * CONTROLLER.DEX.CREATE.SUMMARY
301
302
  * @param chain GLOBAL.CHAIN.DESCRIPTION
302
- * @param dexCreateTokenInput Token creation parameters
303
+ * @param createTokenInput Token creation parameters
303
304
  */
304
- public createTokenWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dexCreateTokenInput: DexCreateTokenInput, _options?: Configuration): Observable<HttpInfo<CreateTokenReply>> {
305
- const requestContextPromise = this.requestFactory.createToken(chain, dexCreateTokenInput, _options);
305
+ public createTokenWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', createTokenInput: CreateTokenInput, _options?: Configuration): Observable<HttpInfo<CreateTokenReply>> {
306
+ const requestContextPromise = this.requestFactory.createToken(chain, createTokenInput, _options);
306
307
 
307
308
  // build promise chain
308
309
  let middlewarePreObservable = from<RequestContext>(requestContextPromise);
@@ -324,10 +325,10 @@ export class ObservableDexApi {
324
325
  * CONTROLLER.DEX.CREATE.DESCRIPTION
325
326
  * CONTROLLER.DEX.CREATE.SUMMARY
326
327
  * @param chain GLOBAL.CHAIN.DESCRIPTION
327
- * @param dexCreateTokenInput Token creation parameters
328
+ * @param createTokenInput Token creation parameters
328
329
  */
329
- public createToken(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dexCreateTokenInput: DexCreateTokenInput, _options?: Configuration): Observable<CreateTokenReply> {
330
- return this.createTokenWithHttpInfo(chain, dexCreateTokenInput, _options).pipe(map((apiResponse: HttpInfo<CreateTokenReply>) => apiResponse.data));
330
+ public createToken(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', createTokenInput: CreateTokenInput, _options?: Configuration): Observable<CreateTokenReply> {
331
+ return this.createTokenWithHttpInfo(chain, createTokenInput, _options).pipe(map((apiResponse: HttpInfo<CreateTokenReply>) => apiResponse.data));
331
332
  }
332
333
 
333
334
  /**
@@ -367,6 +368,51 @@ export class ObservableDexApi {
367
368
  return this.listWithHttpInfo(chains, limit, dexProgram, _options).pipe(map((apiResponse: HttpInfo<DexPage>) => apiResponse.data));
368
369
  }
369
370
 
371
+ /**
372
+ * CONTROLLER.DEX.QUOTE.DESCRIPTION
373
+ * CONTROLLER.DEX.QUOTE.SUMMARY
374
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
375
+ * @param dex DTO.DEX.QUOTE.DEX
376
+ * @param amount DTO.DEX.QUOTE.AMOUNT
377
+ * @param inputMint DTO.DEX.QUOTE.INPUT_MINT
378
+ * @param outputMint DTO.DEX.QUOTE.OUTPUT_MINT
379
+ * @param exactIn DTO.DEX.QUOTE.EXACT_IN
380
+ * @param slippage DTO.DEX.QUOTE.SLIPPAGE
381
+ */
382
+ public quoteWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dex: 'raydium' | 'pumpfun', amount: string, inputMint: string, outputMint: string, exactIn: boolean, slippage: number, _options?: Configuration): Observable<HttpInfo<QuoteResponse>> {
383
+ const requestContextPromise = this.requestFactory.quote(chain, dex, amount, inputMint, outputMint, exactIn, slippage, _options);
384
+
385
+ // build promise chain
386
+ let middlewarePreObservable = from<RequestContext>(requestContextPromise);
387
+ for (const middleware of this.configuration.middleware) {
388
+ middlewarePreObservable = middlewarePreObservable.pipe(mergeMap((ctx: RequestContext) => middleware.pre(ctx)));
389
+ }
390
+
391
+ return middlewarePreObservable.pipe(mergeMap((ctx: RequestContext) => this.configuration.httpApi.send(ctx))).
392
+ pipe(mergeMap((response: ResponseContext) => {
393
+ let middlewarePostObservable = of(response);
394
+ for (const middleware of this.configuration.middleware) {
395
+ middlewarePostObservable = middlewarePostObservable.pipe(mergeMap((rsp: ResponseContext) => middleware.post(rsp)));
396
+ }
397
+ return middlewarePostObservable.pipe(map((rsp: ResponseContext) => this.responseProcessor.quoteWithHttpInfo(rsp)));
398
+ }));
399
+ }
400
+
401
+ /**
402
+ * CONTROLLER.DEX.QUOTE.DESCRIPTION
403
+ * CONTROLLER.DEX.QUOTE.SUMMARY
404
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
405
+ * @param dex DTO.DEX.QUOTE.DEX
406
+ * @param amount DTO.DEX.QUOTE.AMOUNT
407
+ * @param inputMint DTO.DEX.QUOTE.INPUT_MINT
408
+ * @param outputMint DTO.DEX.QUOTE.OUTPUT_MINT
409
+ * @param exactIn DTO.DEX.QUOTE.EXACT_IN
410
+ * @param slippage DTO.DEX.QUOTE.SLIPPAGE
411
+ */
412
+ public quote(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dex: 'raydium' | 'pumpfun', amount: string, inputMint: string, outputMint: string, exactIn: boolean, slippage: number, _options?: Configuration): Observable<QuoteResponse> {
413
+ return this.quoteWithHttpInfo(chain, dex, amount, inputMint, outputMint, exactIn, slippage, _options).pipe(map((apiResponse: HttpInfo<QuoteResponse>) => apiResponse.data));
414
+ }
415
+
370
416
  /**
371
417
  * CONTROLLER.DEX.ROUTE.DESCRIPTION
372
418
  * CONTROLLER.DEX.ROUTE.SUMMARY
@@ -2246,6 +2292,61 @@ export class ObservableTradeApi {
2246
2292
  this.responseProcessor = responseProcessor || new TradeApiResponseProcessor();
2247
2293
  }
2248
2294
 
2295
+ /**
2296
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.DESCRIPTION
2297
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.SUMMARY
2298
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
2299
+ * @param [cursor] DTO.PAGE.CURSOR.DESCRIPTION
2300
+ * @param [limit] DTO.PAGE.LIMIT
2301
+ * @param [direction] DTO.PAGE.DIRECTION
2302
+ * @param [tokenAddress] DTO.TRADE.QUERY.TOKEN_ADDRESS
2303
+ * @param [walletAddress] DTO.TRADE.QUERY.WALLET_ADDRESS
2304
+ * @param [poolAddress] DTO.TRADE.QUERY.POOL_ADDRESS
2305
+ * @param [beforeTimestamp] DTO.TRADE.QUERY.BEFORE_TIMESTAMP
2306
+ * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
2307
+ * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
2308
+ * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
2309
+ * @param [type] DTO.TRADE.QUERY.ACTIVITIES_TYPE
2310
+ */
2311
+ public getActivitiesWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL' | 'LIQUIDITY_INITIALIZE' | 'LIQUIDITY_ADD' | 'LIQUIDITY_REMOVE' | 'RED_PACKET_CREATE' | 'RED_PACKET_CLAIM' | 'RED_PACKET_COMPLETE' | 'RED_PACKET_REFUND', _options?: Configuration): Observable<HttpInfo<TradePage>> {
2312
+ const requestContextPromise = this.requestFactory.getActivities(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options);
2313
+
2314
+ // build promise chain
2315
+ let middlewarePreObservable = from<RequestContext>(requestContextPromise);
2316
+ for (const middleware of this.configuration.middleware) {
2317
+ middlewarePreObservable = middlewarePreObservable.pipe(mergeMap((ctx: RequestContext) => middleware.pre(ctx)));
2318
+ }
2319
+
2320
+ return middlewarePreObservable.pipe(mergeMap((ctx: RequestContext) => this.configuration.httpApi.send(ctx))).
2321
+ pipe(mergeMap((response: ResponseContext) => {
2322
+ let middlewarePostObservable = of(response);
2323
+ for (const middleware of this.configuration.middleware) {
2324
+ middlewarePostObservable = middlewarePostObservable.pipe(mergeMap((rsp: ResponseContext) => middleware.post(rsp)));
2325
+ }
2326
+ return middlewarePostObservable.pipe(map((rsp: ResponseContext) => this.responseProcessor.getActivitiesWithHttpInfo(rsp)));
2327
+ }));
2328
+ }
2329
+
2330
+ /**
2331
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.DESCRIPTION
2332
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.SUMMARY
2333
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
2334
+ * @param [cursor] DTO.PAGE.CURSOR.DESCRIPTION
2335
+ * @param [limit] DTO.PAGE.LIMIT
2336
+ * @param [direction] DTO.PAGE.DIRECTION
2337
+ * @param [tokenAddress] DTO.TRADE.QUERY.TOKEN_ADDRESS
2338
+ * @param [walletAddress] DTO.TRADE.QUERY.WALLET_ADDRESS
2339
+ * @param [poolAddress] DTO.TRADE.QUERY.POOL_ADDRESS
2340
+ * @param [beforeTimestamp] DTO.TRADE.QUERY.BEFORE_TIMESTAMP
2341
+ * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
2342
+ * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
2343
+ * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
2344
+ * @param [type] DTO.TRADE.QUERY.ACTIVITIES_TYPE
2345
+ */
2346
+ public getActivities(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL' | 'LIQUIDITY_INITIALIZE' | 'LIQUIDITY_ADD' | 'LIQUIDITY_REMOVE' | 'RED_PACKET_CREATE' | 'RED_PACKET_CLAIM' | 'RED_PACKET_COMPLETE' | 'RED_PACKET_REFUND', _options?: Configuration): Observable<TradePage> {
2347
+ return this.getActivitiesWithHttpInfo(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options).pipe(map((apiResponse: HttpInfo<TradePage>) => apiResponse.data));
2348
+ }
2349
+
2249
2350
  /**
2250
2351
  * CONTROLLER.TRADE.GET.GAINERS_LOSERS.DESCRIPTION
2251
2352
  * CONTROLLER.TRADE.GET.GAINERS_LOSERS.SUMMARY
@@ -2352,9 +2453,10 @@ export class ObservableTradeApi {
2352
2453
  * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
2353
2454
  * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
2354
2455
  * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
2456
+ * @param [type] DTO.TRADE.QUERY.TRADES_TYPE
2355
2457
  */
2356
- public getTradesWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, _options?: Configuration): Observable<HttpInfo<TradePage>> {
2357
- const requestContextPromise = this.requestFactory.getTrades(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, _options);
2458
+ public getTradesWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL', _options?: Configuration): Observable<HttpInfo<TradePage>> {
2459
+ const requestContextPromise = this.requestFactory.getTrades(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options);
2358
2460
 
2359
2461
  // build promise chain
2360
2462
  let middlewarePreObservable = from<RequestContext>(requestContextPromise);
@@ -2386,9 +2488,10 @@ export class ObservableTradeApi {
2386
2488
  * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
2387
2489
  * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
2388
2490
  * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
2491
+ * @param [type] DTO.TRADE.QUERY.TRADES_TYPE
2389
2492
  */
2390
- public getTrades(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, _options?: Configuration): Observable<TradePage> {
2391
- return this.getTradesWithHttpInfo(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, _options).pipe(map((apiResponse: HttpInfo<TradePage>) => apiResponse.data));
2493
+ public getTrades(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL', _options?: Configuration): Observable<TradePage> {
2494
+ return this.getTradesWithHttpInfo(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options).pipe(map((apiResponse: HttpInfo<TradePage>) => apiResponse.data));
2392
2495
  }
2393
2496
 
2394
2497
  }
@@ -7,8 +7,8 @@ import { Candle } from '../models/Candle';
7
7
  import { ClaimRedPacketInput } from '../models/ClaimRedPacketInput';
8
8
  import { CreateRedPacketInput } from '../models/CreateRedPacketInput';
9
9
  import { CreateRedPacketReply } from '../models/CreateRedPacketReply';
10
+ import { CreateTokenInput } from '../models/CreateTokenInput';
10
11
  import { CreateTokenReply } from '../models/CreateTokenReply';
11
- import { DexCreateTokenInput } from '../models/DexCreateTokenInput';
12
12
  import { DexDTO } from '../models/DexDTO';
13
13
  import { DexPage } from '../models/DexPage';
14
14
  import { DexPoolDTO } from '../models/DexPoolDTO';
@@ -22,6 +22,7 @@ import { MoonshotSubmitCreateToken200Response } from '../models/MoonshotSubmitCr
22
22
  import { MoonshotSubmitCreateTokenInput } from '../models/MoonshotSubmitCreateTokenInput';
23
23
  import { PumpCreateTokenInput } from '../models/PumpCreateTokenInput';
24
24
  import { PumpCreateTokenReply } from '../models/PumpCreateTokenReply';
25
+ import { QuoteResponse } from '../models/QuoteResponse';
25
26
  import { RedPacketClaimDTO } from '../models/RedPacketClaimDTO';
26
27
  import { RedPacketClaimsPage } from '../models/RedPacketClaimsPage';
27
28
  import { RedPacketDTO } from '../models/RedPacketDTO';
@@ -233,10 +234,10 @@ export class PromiseDexApi {
233
234
  * CONTROLLER.DEX.CREATE.DESCRIPTION
234
235
  * CONTROLLER.DEX.CREATE.SUMMARY
235
236
  * @param chain GLOBAL.CHAIN.DESCRIPTION
236
- * @param dexCreateTokenInput Token creation parameters
237
+ * @param createTokenInput Token creation parameters
237
238
  */
238
- public createTokenWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dexCreateTokenInput: DexCreateTokenInput, _options?: Configuration): Promise<HttpInfo<CreateTokenReply>> {
239
- const result = this.api.createTokenWithHttpInfo(chain, dexCreateTokenInput, _options);
239
+ public createTokenWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', createTokenInput: CreateTokenInput, _options?: Configuration): Promise<HttpInfo<CreateTokenReply>> {
240
+ const result = this.api.createTokenWithHttpInfo(chain, createTokenInput, _options);
240
241
  return result.toPromise();
241
242
  }
242
243
 
@@ -244,10 +245,10 @@ export class PromiseDexApi {
244
245
  * CONTROLLER.DEX.CREATE.DESCRIPTION
245
246
  * CONTROLLER.DEX.CREATE.SUMMARY
246
247
  * @param chain GLOBAL.CHAIN.DESCRIPTION
247
- * @param dexCreateTokenInput Token creation parameters
248
+ * @param createTokenInput Token creation parameters
248
249
  */
249
- public createToken(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dexCreateTokenInput: DexCreateTokenInput, _options?: Configuration): Promise<CreateTokenReply> {
250
- const result = this.api.createToken(chain, dexCreateTokenInput, _options);
250
+ public createToken(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', createTokenInput: CreateTokenInput, _options?: Configuration): Promise<CreateTokenReply> {
251
+ const result = this.api.createToken(chain, createTokenInput, _options);
251
252
  return result.toPromise();
252
253
  }
253
254
 
@@ -275,6 +276,38 @@ export class PromiseDexApi {
275
276
  return result.toPromise();
276
277
  }
277
278
 
279
+ /**
280
+ * CONTROLLER.DEX.QUOTE.DESCRIPTION
281
+ * CONTROLLER.DEX.QUOTE.SUMMARY
282
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
283
+ * @param dex DTO.DEX.QUOTE.DEX
284
+ * @param amount DTO.DEX.QUOTE.AMOUNT
285
+ * @param inputMint DTO.DEX.QUOTE.INPUT_MINT
286
+ * @param outputMint DTO.DEX.QUOTE.OUTPUT_MINT
287
+ * @param exactIn DTO.DEX.QUOTE.EXACT_IN
288
+ * @param slippage DTO.DEX.QUOTE.SLIPPAGE
289
+ */
290
+ public quoteWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dex: 'raydium' | 'pumpfun', amount: string, inputMint: string, outputMint: string, exactIn: boolean, slippage: number, _options?: Configuration): Promise<HttpInfo<QuoteResponse>> {
291
+ const result = this.api.quoteWithHttpInfo(chain, dex, amount, inputMint, outputMint, exactIn, slippage, _options);
292
+ return result.toPromise();
293
+ }
294
+
295
+ /**
296
+ * CONTROLLER.DEX.QUOTE.DESCRIPTION
297
+ * CONTROLLER.DEX.QUOTE.SUMMARY
298
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
299
+ * @param dex DTO.DEX.QUOTE.DEX
300
+ * @param amount DTO.DEX.QUOTE.AMOUNT
301
+ * @param inputMint DTO.DEX.QUOTE.INPUT_MINT
302
+ * @param outputMint DTO.DEX.QUOTE.OUTPUT_MINT
303
+ * @param exactIn DTO.DEX.QUOTE.EXACT_IN
304
+ * @param slippage DTO.DEX.QUOTE.SLIPPAGE
305
+ */
306
+ public quote(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', dex: 'raydium' | 'pumpfun', amount: string, inputMint: string, outputMint: string, exactIn: boolean, slippage: number, _options?: Configuration): Promise<QuoteResponse> {
307
+ const result = this.api.quote(chain, dex, amount, inputMint, outputMint, exactIn, slippage, _options);
308
+ return result.toPromise();
309
+ }
310
+
278
311
  /**
279
312
  * CONTROLLER.DEX.ROUTE.DESCRIPTION
280
313
  * CONTROLLER.DEX.ROUTE.SUMMARY
@@ -1654,6 +1687,48 @@ export class PromiseTradeApi {
1654
1687
  this.api = new ObservableTradeApi(configuration, requestFactory, responseProcessor);
1655
1688
  }
1656
1689
 
1690
+ /**
1691
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.DESCRIPTION
1692
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.SUMMARY
1693
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
1694
+ * @param [cursor] DTO.PAGE.CURSOR.DESCRIPTION
1695
+ * @param [limit] DTO.PAGE.LIMIT
1696
+ * @param [direction] DTO.PAGE.DIRECTION
1697
+ * @param [tokenAddress] DTO.TRADE.QUERY.TOKEN_ADDRESS
1698
+ * @param [walletAddress] DTO.TRADE.QUERY.WALLET_ADDRESS
1699
+ * @param [poolAddress] DTO.TRADE.QUERY.POOL_ADDRESS
1700
+ * @param [beforeTimestamp] DTO.TRADE.QUERY.BEFORE_TIMESTAMP
1701
+ * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
1702
+ * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
1703
+ * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
1704
+ * @param [type] DTO.TRADE.QUERY.ACTIVITIES_TYPE
1705
+ */
1706
+ public getActivitiesWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL' | 'LIQUIDITY_INITIALIZE' | 'LIQUIDITY_ADD' | 'LIQUIDITY_REMOVE' | 'RED_PACKET_CREATE' | 'RED_PACKET_CLAIM' | 'RED_PACKET_COMPLETE' | 'RED_PACKET_REFUND', _options?: Configuration): Promise<HttpInfo<TradePage>> {
1707
+ const result = this.api.getActivitiesWithHttpInfo(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options);
1708
+ return result.toPromise();
1709
+ }
1710
+
1711
+ /**
1712
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.DESCRIPTION
1713
+ * CONTROLLER.TRADE.GET.TOKEN_ACTIVITIES.SUMMARY
1714
+ * @param chain GLOBAL.CHAIN.DESCRIPTION
1715
+ * @param [cursor] DTO.PAGE.CURSOR.DESCRIPTION
1716
+ * @param [limit] DTO.PAGE.LIMIT
1717
+ * @param [direction] DTO.PAGE.DIRECTION
1718
+ * @param [tokenAddress] DTO.TRADE.QUERY.TOKEN_ADDRESS
1719
+ * @param [walletAddress] DTO.TRADE.QUERY.WALLET_ADDRESS
1720
+ * @param [poolAddress] DTO.TRADE.QUERY.POOL_ADDRESS
1721
+ * @param [beforeTimestamp] DTO.TRADE.QUERY.BEFORE_TIMESTAMP
1722
+ * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
1723
+ * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
1724
+ * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
1725
+ * @param [type] DTO.TRADE.QUERY.ACTIVITIES_TYPE
1726
+ */
1727
+ public getActivities(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL' | 'LIQUIDITY_INITIALIZE' | 'LIQUIDITY_ADD' | 'LIQUIDITY_REMOVE' | 'RED_PACKET_CREATE' | 'RED_PACKET_CLAIM' | 'RED_PACKET_COMPLETE' | 'RED_PACKET_REFUND', _options?: Configuration): Promise<TradePage> {
1728
+ const result = this.api.getActivities(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options);
1729
+ return result.toPromise();
1730
+ }
1731
+
1657
1732
  /**
1658
1733
  * CONTROLLER.TRADE.GET.GAINERS_LOSERS.DESCRIPTION
1659
1734
  * CONTROLLER.TRADE.GET.GAINERS_LOSERS.SUMMARY
@@ -1734,9 +1809,10 @@ export class PromiseTradeApi {
1734
1809
  * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
1735
1810
  * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
1736
1811
  * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
1812
+ * @param [type] DTO.TRADE.QUERY.TRADES_TYPE
1737
1813
  */
1738
- public getTradesWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, _options?: Configuration): Promise<HttpInfo<TradePage>> {
1739
- const result = this.api.getTradesWithHttpInfo(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, _options);
1814
+ public getTradesWithHttpInfo(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL', _options?: Configuration): Promise<HttpInfo<TradePage>> {
1815
+ const result = this.api.getTradesWithHttpInfo(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options);
1740
1816
  return result.toPromise();
1741
1817
  }
1742
1818
 
@@ -1754,9 +1830,10 @@ export class PromiseTradeApi {
1754
1830
  * @param [afterTimestamp] DTO.TRADE.QUERY.AFTER_TIMESTAMP
1755
1831
  * @param [beforeBlockHeight] DTO.TRADE.QUERY.BEFORE_BLOCK_HEIGHT
1756
1832
  * @param [afterBlockHeight] DTO.TRADE.QUERY.AFTER_BLOCK_HEIGHT
1833
+ * @param [type] DTO.TRADE.QUERY.TRADES_TYPE
1757
1834
  */
1758
- public getTrades(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, _options?: Configuration): Promise<TradePage> {
1759
- const result = this.api.getTrades(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, _options);
1835
+ public getTrades(chain: 'sol' | 'base' | 'bsc' | 'polygon' | 'arbitrum' | 'optimism' | 'avalanche' | 'ethereum' | 'zksync' | 'sui', cursor?: string, limit?: number, direction?: 'next' | 'prev', tokenAddress?: string, walletAddress?: string, poolAddress?: string, beforeTimestamp?: number, afterTimestamp?: number, beforeBlockHeight?: number, afterBlockHeight?: number, type?: 'BUY' | 'SELL', _options?: Configuration): Promise<TradePage> {
1836
+ const result = this.api.getTrades(chain, cursor, limit, direction, tokenAddress, walletAddress, poolAddress, beforeTimestamp, afterTimestamp, beforeBlockHeight, afterBlockHeight, type, _options);
1760
1837
  return result.toPromise();
1761
1838
  }
1762
1839