@chainstream-io/sdk 0.1.16 → 0.1.18

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.
@@ -183,6 +183,305 @@ declare class TextApiResponse {
183
183
  value(): Promise<string>;
184
184
  }
185
185
 
186
+ /**
187
+ * Dex Aggregator API
188
+ * Dex Aggregator API ⚡️
189
+ *
190
+ * The version of the OpenAPI document: 1.0
191
+ * Contact: ai@sx.ai
192
+ *
193
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
194
+ * https://openapi-generator.tech
195
+ * Do not edit the class manually.
196
+ */
197
+ /**
198
+ *
199
+ * @export
200
+ * @interface AddressExposure
201
+ */
202
+ interface AddressExposure {
203
+ /**
204
+ * DTO.KYT.ADDRESS_EXPOSURE.CATEGORY
205
+ * @type {string}
206
+ * @memberof AddressExposure
207
+ */
208
+ category: string;
209
+ /**
210
+ * DTO.KYT.ADDRESS_EXPOSURE.VALUE
211
+ * @type {number}
212
+ * @memberof AddressExposure
213
+ */
214
+ value: number;
215
+ }
216
+ /**
217
+ * Check if a given object implements the AddressExposure interface.
218
+ */
219
+ declare function instanceOfAddressExposure(value: object): value is AddressExposure;
220
+ declare function AddressExposureFromJSON(json: any): AddressExposure;
221
+ declare function AddressExposureFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddressExposure;
222
+ declare function AddressExposureToJSON(json: any): AddressExposure;
223
+ declare function AddressExposureToJSONTyped(value?: AddressExposure | null, ignoreDiscriminator?: boolean): any;
224
+
225
+ /**
226
+ * Dex Aggregator API
227
+ * Dex Aggregator API ⚡️
228
+ *
229
+ * The version of the OpenAPI document: 1.0
230
+ * Contact: ai@sx.ai
231
+ *
232
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
233
+ * https://openapi-generator.tech
234
+ * Do not edit the class manually.
235
+ */
236
+
237
+ /**
238
+ *
239
+ * @export
240
+ * @interface AddressRiskResponseDTO
241
+ */
242
+ interface AddressRiskResponseDTO {
243
+ /**
244
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.ADDRESS
245
+ * @type {string}
246
+ * @memberof AddressRiskResponseDTO
247
+ */
248
+ address: string;
249
+ /**
250
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.RISK
251
+ * @type {string}
252
+ * @memberof AddressRiskResponseDTO
253
+ */
254
+ risk: string;
255
+ /**
256
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.RISK_REASON
257
+ * @type {string}
258
+ * @memberof AddressRiskResponseDTO
259
+ */
260
+ riskReason: string;
261
+ /**
262
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.ADDRESS_TYPE
263
+ * @type {string}
264
+ * @memberof AddressRiskResponseDTO
265
+ */
266
+ addressType: string;
267
+ /**
268
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.CLUSTER
269
+ * @type {string}
270
+ * @memberof AddressRiskResponseDTO
271
+ */
272
+ cluster: string;
273
+ /**
274
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.ADDRESS_IDENTIFICATIONS
275
+ * @type {Array<string>}
276
+ * @memberof AddressRiskResponseDTO
277
+ */
278
+ addressIdentifications: Array<string>;
279
+ /**
280
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.EXPOSURES
281
+ * @type {Array<AddressExposure>}
282
+ * @memberof AddressRiskResponseDTO
283
+ */
284
+ exposures: Array<AddressExposure>;
285
+ /**
286
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.TRIGGERS
287
+ * @type {Array<string>}
288
+ * @memberof AddressRiskResponseDTO
289
+ */
290
+ triggers: Array<string>;
291
+ /**
292
+ * DTO.KYT.ADDRESS_RISK_RESPONSE.STATUS
293
+ * @type {string}
294
+ * @memberof AddressRiskResponseDTO
295
+ */
296
+ status: string;
297
+ }
298
+ /**
299
+ * Check if a given object implements the AddressRiskResponseDTO interface.
300
+ */
301
+ declare function instanceOfAddressRiskResponseDTO(value: object): value is AddressRiskResponseDTO;
302
+ declare function AddressRiskResponseDTOFromJSON(json: any): AddressRiskResponseDTO;
303
+ declare function AddressRiskResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddressRiskResponseDTO;
304
+ declare function AddressRiskResponseDTOToJSON(json: any): AddressRiskResponseDTO;
305
+ declare function AddressRiskResponseDTOToJSONTyped(value?: AddressRiskResponseDTO | null, ignoreDiscriminator?: boolean): any;
306
+
307
+ /**
308
+ * Dex Aggregator API
309
+ * Dex Aggregator API ⚡️
310
+ *
311
+ * The version of the OpenAPI document: 1.0
312
+ * Contact: ai@sx.ai
313
+ *
314
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
315
+ * https://openapi-generator.tech
316
+ * Do not edit the class manually.
317
+ */
318
+ /**
319
+ *
320
+ * @export
321
+ * @interface AlertDetail
322
+ */
323
+ interface AlertDetail {
324
+ /**
325
+ * DTO.KYT.ALERT_DETAIL.ALERT_LEVEL
326
+ * @type {string}
327
+ * @memberof AlertDetail
328
+ */
329
+ alertLevel: string;
330
+ /**
331
+ * DTO.KYT.ALERT_DETAIL.SERVICE
332
+ * @type {string}
333
+ * @memberof AlertDetail
334
+ */
335
+ service: string;
336
+ /**
337
+ * DTO.KYT.ALERT_DETAIL.EXTERNAL_ID
338
+ * @type {string}
339
+ * @memberof AlertDetail
340
+ */
341
+ externalId: string;
342
+ /**
343
+ * DTO.KYT.ALERT_DETAIL.ALERT_AMOUNT
344
+ * @type {number}
345
+ * @memberof AlertDetail
346
+ */
347
+ alertAmount: number;
348
+ /**
349
+ * DTO.KYT.ALERT_DETAIL.EXPOSURE_TYPE
350
+ * @type {string}
351
+ * @memberof AlertDetail
352
+ */
353
+ exposureType: string;
354
+ /**
355
+ * DTO.KYT.ALERT_DETAIL.CATEGORY_ID
356
+ * @type {number}
357
+ * @memberof AlertDetail
358
+ */
359
+ categoryId: number;
360
+ /**
361
+ * DTO.KYT.ALERT_DETAIL.MEMO
362
+ * @type {string}
363
+ * @memberof AlertDetail
364
+ */
365
+ memo: string;
366
+ }
367
+ /**
368
+ * Check if a given object implements the AlertDetail interface.
369
+ */
370
+ declare function instanceOfAlertDetail(value: object): value is AlertDetail;
371
+ declare function AlertDetailFromJSON(json: any): AlertDetail;
372
+ declare function AlertDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): AlertDetail;
373
+ declare function AlertDetailToJSON(json: any): AlertDetail;
374
+ declare function AlertDetailToJSONTyped(value?: AlertDetail | null, ignoreDiscriminator?: boolean): any;
375
+
376
+ /**
377
+ * Dex Aggregator API
378
+ * Dex Aggregator API ⚡️
379
+ *
380
+ * The version of the OpenAPI document: 1.0
381
+ * Contact: ai@sx.ai
382
+ *
383
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
384
+ * https://openapi-generator.tech
385
+ * Do not edit the class manually.
386
+ */
387
+ /**
388
+ *
389
+ * @export
390
+ * @interface OnChainActivity
391
+ */
392
+ interface OnChainActivity {
393
+ /**
394
+ * DTO.KYT.ON_CHAIN_ACTIVITY.FIRST_TRANSACTION_AT
395
+ * @type {number}
396
+ * @memberof OnChainActivity
397
+ */
398
+ firstTransactionAt: number;
399
+ }
400
+ /**
401
+ * Check if a given object implements the OnChainActivity interface.
402
+ */
403
+ declare function instanceOfOnChainActivity(value: object): value is OnChainActivity;
404
+ declare function OnChainActivityFromJSON(json: any): OnChainActivity;
405
+ declare function OnChainActivityFromJSONTyped(json: any, ignoreDiscriminator: boolean): OnChainActivity;
406
+ declare function OnChainActivityToJSON(json: any): OnChainActivity;
407
+ declare function OnChainActivityToJSONTyped(value?: OnChainActivity | null, ignoreDiscriminator?: boolean): any;
408
+
409
+ /**
410
+ * Dex Aggregator API
411
+ * Dex Aggregator API ⚡️
412
+ *
413
+ * The version of the OpenAPI document: 1.0
414
+ * Contact: ai@sx.ai
415
+ *
416
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
417
+ * https://openapi-generator.tech
418
+ * Do not edit the class manually.
419
+ */
420
+
421
+ /**
422
+ *
423
+ * @export
424
+ * @interface AlteryaIdentification
425
+ */
426
+ interface AlteryaIdentification {
427
+ /**
428
+ * DTO.KYT.ALTERYA_IDENTIFICATION.OBJECT
429
+ * @type {string}
430
+ * @memberof AlteryaIdentification
431
+ */
432
+ object: string;
433
+ /**
434
+ * DTO.KYT.ALTERYA_IDENTIFICATION.ADDRESS
435
+ * @type {string}
436
+ * @memberof AlteryaIdentification
437
+ */
438
+ address: string;
439
+ /**
440
+ * DTO.KYT.ALTERYA_IDENTIFICATION.CHAIN
441
+ * @type {string}
442
+ * @memberof AlteryaIdentification
443
+ */
444
+ chain: string;
445
+ /**
446
+ * DTO.KYT.ALTERYA_IDENTIFICATION.RISK_LEVEL
447
+ * @type {string}
448
+ * @memberof AlteryaIdentification
449
+ */
450
+ riskLevel: string;
451
+ /**
452
+ * DTO.KYT.ALTERYA_IDENTIFICATION.REASON
453
+ * @type {string}
454
+ * @memberof AlteryaIdentification
455
+ */
456
+ reason: string;
457
+ /**
458
+ * DTO.KYT.ALTERYA_IDENTIFICATION.LABELS
459
+ * @type {Array<string>}
460
+ * @memberof AlteryaIdentification
461
+ */
462
+ labels: Array<string>;
463
+ /**
464
+ * DTO.KYT.ALTERYA_IDENTIFICATION.ON_CHAIN_ACTIVITY
465
+ * @type {OnChainActivity}
466
+ * @memberof AlteryaIdentification
467
+ */
468
+ onChainActivity: OnChainActivity;
469
+ /**
470
+ * DTO.KYT.ALTERYA_IDENTIFICATION.RISK_SCORE
471
+ * @type {number}
472
+ * @memberof AlteryaIdentification
473
+ */
474
+ riskScore: number;
475
+ }
476
+ /**
477
+ * Check if a given object implements the AlteryaIdentification interface.
478
+ */
479
+ declare function instanceOfAlteryaIdentification(value: object): value is AlteryaIdentification;
480
+ declare function AlteryaIdentificationFromJSON(json: any): AlteryaIdentification;
481
+ declare function AlteryaIdentificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): AlteryaIdentification;
482
+ declare function AlteryaIdentificationToJSON(json: any): AlteryaIdentification;
483
+ declare function AlteryaIdentificationToJSONTyped(value?: AlteryaIdentification | null, ignoreDiscriminator?: boolean): any;
484
+
186
485
  /**
187
486
  * Dex Aggregator API
188
487
  * Dex Aggregator API ⚡️
@@ -511,6 +810,51 @@ declare function ChainSymbolFromJSONTyped(json: any, ignoreDiscriminator: boolea
511
810
  declare function ChainSymbolToJSON(value?: ChainSymbol | null): any;
512
811
  declare function ChainSymbolToJSONTyped(value: any, ignoreDiscriminator: boolean): ChainSymbol;
513
812
 
813
+ /**
814
+ * Dex Aggregator API
815
+ * Dex Aggregator API ⚡️
816
+ *
817
+ * The version of the OpenAPI document: 1.0
818
+ * Contact: ai@sx.ai
819
+ *
820
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
821
+ * https://openapi-generator.tech
822
+ * Do not edit the class manually.
823
+ */
824
+ /**
825
+ *
826
+ * @export
827
+ * @interface ChainalysisAddressIdentification
828
+ */
829
+ interface ChainalysisAddressIdentification {
830
+ /**
831
+ * DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.ADDRESS_NAME
832
+ * @type {string}
833
+ * @memberof ChainalysisAddressIdentification
834
+ */
835
+ addressName: string;
836
+ /**
837
+ * DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.DESCRIPTION
838
+ * @type {string}
839
+ * @memberof ChainalysisAddressIdentification
840
+ */
841
+ description: string;
842
+ /**
843
+ * DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.CATEGORY_ID
844
+ * @type {number}
845
+ * @memberof ChainalysisAddressIdentification
846
+ */
847
+ categoryId: number;
848
+ }
849
+ /**
850
+ * Check if a given object implements the ChainalysisAddressIdentification interface.
851
+ */
852
+ declare function instanceOfChainalysisAddressIdentification(value: object): value is ChainalysisAddressIdentification;
853
+ declare function ChainalysisAddressIdentificationFromJSON(json: any): ChainalysisAddressIdentification;
854
+ declare function ChainalysisAddressIdentificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChainalysisAddressIdentification;
855
+ declare function ChainalysisAddressIdentificationToJSON(json: any): ChainalysisAddressIdentification;
856
+ declare function ChainalysisAddressIdentificationToJSONTyped(value?: ChainalysisAddressIdentification | null, ignoreDiscriminator?: boolean): any;
857
+
514
858
  /**
515
859
  * Dex Aggregator API
516
860
  * Dex Aggregator API ⚡️
@@ -584,6 +928,81 @@ declare function ClaimRedPacketInputFromJSONTyped(json: any, ignoreDiscriminator
584
928
  declare function ClaimRedPacketInputToJSON(json: any): ClaimRedPacketInput;
585
929
  declare function ClaimRedPacketInputToJSONTyped(value?: ClaimRedPacketInput | null, ignoreDiscriminator?: boolean): any;
586
930
 
931
+ /**
932
+ * Dex Aggregator API
933
+ * Dex Aggregator API ⚡️
934
+ *
935
+ * The version of the OpenAPI document: 1.0
936
+ * Contact: ai@sx.ai
937
+ *
938
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
939
+ * https://openapi-generator.tech
940
+ * Do not edit the class manually.
941
+ */
942
+ /**
943
+ *
944
+ * @export
945
+ * @interface CreateEndpointInput
946
+ */
947
+ interface CreateEndpointInput {
948
+ /**
949
+ * DTO.ENDPOINT.CHANNELS
950
+ * @type {Array<string>}
951
+ * @memberof CreateEndpointInput
952
+ */
953
+ channels?: Array<string>;
954
+ /**
955
+ * DTO.ENDPOINT.DESCRIPTION
956
+ * @type {string}
957
+ * @memberof CreateEndpointInput
958
+ */
959
+ description?: string;
960
+ /**
961
+ * DTO.ENDPOINT.DISABLED
962
+ * @type {boolean}
963
+ * @memberof CreateEndpointInput
964
+ */
965
+ disabled?: boolean;
966
+ /**
967
+ * DTO.ENDPOINT.FILTER_TYPES
968
+ * @type {Array<string>}
969
+ * @memberof CreateEndpointInput
970
+ */
971
+ filterTypes?: Array<string>;
972
+ /**
973
+ * DTO.ENDPOINT.METADATA
974
+ * @type {object}
975
+ * @memberof CreateEndpointInput
976
+ */
977
+ metadata?: object;
978
+ /**
979
+ * DTO.ENDPOINT.RATE_LIMIT
980
+ * @type {number}
981
+ * @memberof CreateEndpointInput
982
+ */
983
+ rateLimit?: number;
984
+ /**
985
+ * DTO.ENDPOINT.URL
986
+ * @type {string}
987
+ * @memberof CreateEndpointInput
988
+ */
989
+ url?: string;
990
+ /**
991
+ * DTO.ENDPOINT.FILTER
992
+ * @type {string}
993
+ * @memberof CreateEndpointInput
994
+ */
995
+ filter?: string;
996
+ }
997
+ /**
998
+ * Check if a given object implements the CreateEndpointInput interface.
999
+ */
1000
+ declare function instanceOfCreateEndpointInput(value: object): value is CreateEndpointInput;
1001
+ declare function CreateEndpointInputFromJSON(json: any): CreateEndpointInput;
1002
+ declare function CreateEndpointInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateEndpointInput;
1003
+ declare function CreateEndpointInputToJSON(json: any): CreateEndpointInput;
1004
+ declare function CreateEndpointInputToJSONTyped(value?: CreateEndpointInput | null, ignoreDiscriminator?: boolean): any;
1005
+
587
1006
  /**
588
1007
  * Dex Aggregator API
589
1008
  * Dex Aggregator API ⚡️
@@ -2602,9 +3021,259 @@ declare function DexPoolDTOToJSONTyped(value?: DexPoolDTO | null, ignoreDiscrimi
2602
3021
  /**
2603
3022
  *
2604
3023
  * @export
2605
- * @interface EstimateGasLimitInput
3024
+ * @interface DirectExposureDetail
2606
3025
  */
2607
- interface EstimateGasLimitInput {
3026
+ interface DirectExposureDetail {
3027
+ /**
3028
+ * DTO.KYT.DIRECT_EXPOSURE_DETAIL.NAME
3029
+ * @type {string}
3030
+ * @memberof DirectExposureDetail
3031
+ */
3032
+ name: string;
3033
+ /**
3034
+ * DTO.KYT.DIRECT_EXPOSURE_DETAIL.CATEGORY_ID
3035
+ * @type {number}
3036
+ * @memberof DirectExposureDetail
3037
+ */
3038
+ categoryId: number;
3039
+ }
3040
+ /**
3041
+ * Check if a given object implements the DirectExposureDetail interface.
3042
+ */
3043
+ declare function instanceOfDirectExposureDetail(value: object): value is DirectExposureDetail;
3044
+ declare function DirectExposureDetailFromJSON(json: any): DirectExposureDetail;
3045
+ declare function DirectExposureDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectExposureDetail;
3046
+ declare function DirectExposureDetailToJSON(json: any): DirectExposureDetail;
3047
+ declare function DirectExposureDetailToJSONTyped(value?: DirectExposureDetail | null, ignoreDiscriminator?: boolean): any;
3048
+
3049
+ /**
3050
+ * Dex Aggregator API
3051
+ * Dex Aggregator API ⚡️
3052
+ *
3053
+ * The version of the OpenAPI document: 1.0
3054
+ * Contact: ai@sx.ai
3055
+ *
3056
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3057
+ * https://openapi-generator.tech
3058
+ * Do not edit the class manually.
3059
+ */
3060
+ /**
3061
+ *
3062
+ * @export
3063
+ * @interface EndpointResponse
3064
+ */
3065
+ interface EndpointResponse {
3066
+ /**
3067
+ * DTO.ENDPOINT.ID
3068
+ * @type {string}
3069
+ * @memberof EndpointResponse
3070
+ */
3071
+ id?: string;
3072
+ /**
3073
+ * DTO.ENDPOINT.URL
3074
+ * @type {string}
3075
+ * @memberof EndpointResponse
3076
+ */
3077
+ url?: string;
3078
+ /**
3079
+ * DTO.ENDPOINT.DESCRIPTION
3080
+ * @type {string}
3081
+ * @memberof EndpointResponse
3082
+ */
3083
+ description?: string;
3084
+ /**
3085
+ * DTO.ENDPOINT.FILTER_TYPES
3086
+ * @type {Array<string>}
3087
+ * @memberof EndpointResponse
3088
+ */
3089
+ filterTypes?: Array<string>;
3090
+ /**
3091
+ * DTO.ENDPOINT.CHANNELS
3092
+ * @type {Array<string>}
3093
+ * @memberof EndpointResponse
3094
+ */
3095
+ channels?: Array<string>;
3096
+ /**
3097
+ * DTO.ENDPOINT.DISABLED
3098
+ * @type {boolean}
3099
+ * @memberof EndpointResponse
3100
+ */
3101
+ disabled?: boolean;
3102
+ /**
3103
+ * DTO.ENDPOINT.METADATA
3104
+ * @type {object}
3105
+ * @memberof EndpointResponse
3106
+ */
3107
+ metadata?: object;
3108
+ /**
3109
+ * DTO.ENDPOINT.RATE_LIMIT
3110
+ * @type {number}
3111
+ * @memberof EndpointResponse
3112
+ */
3113
+ rateLimit?: number;
3114
+ /**
3115
+ * DTO.ENDPOINT.FILTER
3116
+ * @type {string}
3117
+ * @memberof EndpointResponse
3118
+ */
3119
+ filter?: string;
3120
+ /**
3121
+ * DTO.ENDPOINT.CREATED_AT
3122
+ * @type {string}
3123
+ * @memberof EndpointResponse
3124
+ */
3125
+ createdAt?: string;
3126
+ /**
3127
+ * DTO.ENDPOINT.UPDATED_AT
3128
+ * @type {string}
3129
+ * @memberof EndpointResponse
3130
+ */
3131
+ updatedAt?: string;
3132
+ }
3133
+ /**
3134
+ * Check if a given object implements the EndpointResponse interface.
3135
+ */
3136
+ declare function instanceOfEndpointResponse(value: object): value is EndpointResponse;
3137
+ declare function EndpointResponseFromJSON(json: any): EndpointResponse;
3138
+ declare function EndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointResponse;
3139
+ declare function EndpointResponseToJSON(json: any): EndpointResponse;
3140
+ declare function EndpointResponseToJSONTyped(value?: EndpointResponse | null, ignoreDiscriminator?: boolean): any;
3141
+
3142
+ /**
3143
+ * Dex Aggregator API
3144
+ * Dex Aggregator API ⚡️
3145
+ *
3146
+ * The version of the OpenAPI document: 1.0
3147
+ * Contact: ai@sx.ai
3148
+ *
3149
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3150
+ * https://openapi-generator.tech
3151
+ * Do not edit the class manually.
3152
+ */
3153
+
3154
+ /**
3155
+ *
3156
+ * @export
3157
+ * @interface EndpointListResponse
3158
+ */
3159
+ interface EndpointListResponse {
3160
+ /**
3161
+ * DTO.ENDPOINT.PAGE.DATA
3162
+ * @type {Array<EndpointResponse>}
3163
+ * @memberof EndpointListResponse
3164
+ */
3165
+ data?: Array<EndpointResponse>;
3166
+ /**
3167
+ * DTO.ENDPOINT.PAGE.DONE
3168
+ * @type {boolean}
3169
+ * @memberof EndpointListResponse
3170
+ */
3171
+ done?: boolean;
3172
+ /**
3173
+ * DTO.ENDPOINT.PAGE.ITERATOR
3174
+ * @type {string}
3175
+ * @memberof EndpointListResponse
3176
+ */
3177
+ iterator?: string;
3178
+ /**
3179
+ * DTO.ENDPOINT.PAGE.PREV_ITERATOR
3180
+ * @type {string}
3181
+ * @memberof EndpointListResponse
3182
+ */
3183
+ prevIterator?: string;
3184
+ }
3185
+ /**
3186
+ * Check if a given object implements the EndpointListResponse interface.
3187
+ */
3188
+ declare function instanceOfEndpointListResponse(value: object): value is EndpointListResponse;
3189
+ declare function EndpointListResponseFromJSON(json: any): EndpointListResponse;
3190
+ declare function EndpointListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointListResponse;
3191
+ declare function EndpointListResponseToJSON(json: any): EndpointListResponse;
3192
+ declare function EndpointListResponseToJSONTyped(value?: EndpointListResponse | null, ignoreDiscriminator?: boolean): any;
3193
+
3194
+ /**
3195
+ * Dex Aggregator API
3196
+ * Dex Aggregator API ⚡️
3197
+ *
3198
+ * The version of the OpenAPI document: 1.0
3199
+ * Contact: ai@sx.ai
3200
+ *
3201
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3202
+ * https://openapi-generator.tech
3203
+ * Do not edit the class manually.
3204
+ */
3205
+ /**
3206
+ *
3207
+ * @export
3208
+ * @interface EndpointOperationResponse
3209
+ */
3210
+ interface EndpointOperationResponse {
3211
+ /**
3212
+ * DTO.ENDPOINT.SUCCESS
3213
+ * @type {boolean}
3214
+ * @memberof EndpointOperationResponse
3215
+ */
3216
+ success?: boolean;
3217
+ }
3218
+ /**
3219
+ * Check if a given object implements the EndpointOperationResponse interface.
3220
+ */
3221
+ declare function instanceOfEndpointOperationResponse(value: object): value is EndpointOperationResponse;
3222
+ declare function EndpointOperationResponseFromJSON(json: any): EndpointOperationResponse;
3223
+ declare function EndpointOperationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointOperationResponse;
3224
+ declare function EndpointOperationResponseToJSON(json: any): EndpointOperationResponse;
3225
+ declare function EndpointOperationResponseToJSONTyped(value?: EndpointOperationResponse | null, ignoreDiscriminator?: boolean): any;
3226
+
3227
+ /**
3228
+ * Dex Aggregator API
3229
+ * Dex Aggregator API ⚡️
3230
+ *
3231
+ * The version of the OpenAPI document: 1.0
3232
+ * Contact: ai@sx.ai
3233
+ *
3234
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3235
+ * https://openapi-generator.tech
3236
+ * Do not edit the class manually.
3237
+ */
3238
+ /**
3239
+ *
3240
+ * @export
3241
+ * @interface EndpointSecretResponse
3242
+ */
3243
+ interface EndpointSecretResponse {
3244
+ /**
3245
+ * DTO.ENDPOINT.SECRET
3246
+ * @type {string}
3247
+ * @memberof EndpointSecretResponse
3248
+ */
3249
+ secret?: string;
3250
+ }
3251
+ /**
3252
+ * Check if a given object implements the EndpointSecretResponse interface.
3253
+ */
3254
+ declare function instanceOfEndpointSecretResponse(value: object): value is EndpointSecretResponse;
3255
+ declare function EndpointSecretResponseFromJSON(json: any): EndpointSecretResponse;
3256
+ declare function EndpointSecretResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointSecretResponse;
3257
+ declare function EndpointSecretResponseToJSON(json: any): EndpointSecretResponse;
3258
+ declare function EndpointSecretResponseToJSONTyped(value?: EndpointSecretResponse | null, ignoreDiscriminator?: boolean): any;
3259
+
3260
+ /**
3261
+ * Dex Aggregator API
3262
+ * Dex Aggregator API ⚡️
3263
+ *
3264
+ * The version of the OpenAPI document: 1.0
3265
+ * Contact: ai@sx.ai
3266
+ *
3267
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3268
+ * https://openapi-generator.tech
3269
+ * Do not edit the class manually.
3270
+ */
3271
+ /**
3272
+ *
3273
+ * @export
3274
+ * @interface EstimateGasLimitInput
3275
+ */
3276
+ interface EstimateGasLimitInput {
2608
3277
  /**
2609
3278
  * From address
2610
3279
  * @type {string}
@@ -3020,40 +3689,59 @@ declare function JobStreamingDTOToJSONTyped(value?: JobStreamingDTO | null, igno
3020
3689
  /**
3021
3690
  *
3022
3691
  * @export
3023
- * @interface Link
3692
+ * @interface KYTRegisterTransferRequest
3024
3693
  */
3025
- interface Link {
3694
+ interface KYTRegisterTransferRequest {
3026
3695
  /**
3027
- * DTO.DEX.MOONSHOT.LINK.URL
3696
+ * DTO.KYT.KYT_REGISTER_TRANSFER_REQUEST.NETWORK
3028
3697
  * @type {string}
3029
- * @memberof Link
3698
+ * @memberof KYTRegisterTransferRequest
3030
3699
  */
3031
- url: string;
3700
+ network: KYTRegisterTransferRequestNetworkEnum;
3032
3701
  /**
3033
- * DTO.DEX.MOONSHOT.LINK.LABEL
3702
+ * DTO.KYT.KYT_REGISTER_TRANSFER_REQUEST.ASSET
3034
3703
  * @type {string}
3035
- * @memberof Link
3704
+ * @memberof KYTRegisterTransferRequest
3036
3705
  */
3037
- label: LinkLabelEnum;
3706
+ asset: string;
3707
+ /**
3708
+ * DTO.KYT.KYT_REGISTER_TRANSFER_REQUEST.TRANSFER_REFERENCE
3709
+ * @type {string}
3710
+ * @memberof KYTRegisterTransferRequest
3711
+ */
3712
+ transferReference: string;
3713
+ /**
3714
+ * DTO.KYT.KYT_REGISTER_TRANSFER_REQUEST.DIRECTION
3715
+ * @type {string}
3716
+ * @memberof KYTRegisterTransferRequest
3717
+ */
3718
+ direction: KYTRegisterTransferRequestDirectionEnum;
3038
3719
  }
3039
3720
  /**
3040
3721
  * @export
3041
3722
  */
3042
- declare const LinkLabelEnum: {
3043
- readonly Website: "website";
3044
- readonly Twitter: "twitter";
3045
- readonly Telegram: "telegram";
3046
- readonly Discord: "discord";
3723
+ declare const KYTRegisterTransferRequestNetworkEnum: {
3724
+ readonly Bitcoin: "bitcoin";
3725
+ readonly Ethereum: "ethereum";
3726
+ readonly Solana: "Solana";
3047
3727
  };
3048
- type LinkLabelEnum = typeof LinkLabelEnum[keyof typeof LinkLabelEnum];
3728
+ type KYTRegisterTransferRequestNetworkEnum = typeof KYTRegisterTransferRequestNetworkEnum[keyof typeof KYTRegisterTransferRequestNetworkEnum];
3049
3729
  /**
3050
- * Check if a given object implements the Link interface.
3730
+ * @export
3051
3731
  */
3052
- declare function instanceOfLink(value: object): value is Link;
3053
- declare function LinkFromJSON(json: any): Link;
3054
- declare function LinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): Link;
3055
- declare function LinkToJSON(json: any): Link;
3056
- declare function LinkToJSONTyped(value?: Link | null, ignoreDiscriminator?: boolean): any;
3732
+ declare const KYTRegisterTransferRequestDirectionEnum: {
3733
+ readonly Sent: "sent";
3734
+ readonly Received: "received";
3735
+ };
3736
+ type KYTRegisterTransferRequestDirectionEnum = typeof KYTRegisterTransferRequestDirectionEnum[keyof typeof KYTRegisterTransferRequestDirectionEnum];
3737
+ /**
3738
+ * Check if a given object implements the KYTRegisterTransferRequest interface.
3739
+ */
3740
+ declare function instanceOfKYTRegisterTransferRequest(value: object): value is KYTRegisterTransferRequest;
3741
+ declare function KYTRegisterTransferRequestFromJSON(json: any): KYTRegisterTransferRequest;
3742
+ declare function KYTRegisterTransferRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): KYTRegisterTransferRequest;
3743
+ declare function KYTRegisterTransferRequestToJSON(json: any): KYTRegisterTransferRequest;
3744
+ declare function KYTRegisterTransferRequestToJSONTyped(value?: KYTRegisterTransferRequest | null, ignoreDiscriminator?: boolean): any;
3057
3745
 
3058
3746
  /**
3059
3747
  * Dex Aggregator API
@@ -3066,104 +3754,84 @@ declare function LinkToJSONTyped(value?: Link | null, ignoreDiscriminator?: bool
3066
3754
  * https://openapi-generator.tech
3067
3755
  * Do not edit the class manually.
3068
3756
  */
3069
-
3070
3757
  /**
3071
3758
  *
3072
3759
  * @export
3073
- * @interface MoonshotCreateTokenInput
3760
+ * @interface KYTRegisterWithdrawalRequest
3074
3761
  */
3075
- interface MoonshotCreateTokenInput {
3076
- /**
3077
- * DTO.DEX.IDENTIFIER
3078
- * @type {string}
3079
- * @memberof MoonshotCreateTokenInput
3080
- */
3081
- dex: MoonshotCreateTokenInputDexEnum;
3762
+ interface KYTRegisterWithdrawalRequest {
3082
3763
  /**
3083
- * DTO.DEX.WALLET
3764
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.NETWORK
3084
3765
  * @type {string}
3085
- * @memberof MoonshotCreateTokenInput
3766
+ * @memberof KYTRegisterWithdrawalRequest
3086
3767
  */
3087
- userAddress: string;
3768
+ network: KYTRegisterWithdrawalRequestNetworkEnum;
3088
3769
  /**
3089
- * DTO.DEX.BASE.PRIORITY_FEE
3770
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ASSET
3090
3771
  * @type {string}
3091
- * @memberof MoonshotCreateTokenInput
3772
+ * @memberof KYTRegisterWithdrawalRequest
3092
3773
  */
3093
- priorityFee?: string;
3774
+ asset: string;
3094
3775
  /**
3095
- * DTO.DEX.MOONSHOT.MINT.NAME
3776
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ADDRESS
3096
3777
  * @type {string}
3097
- * @memberof MoonshotCreateTokenInput
3778
+ * @memberof KYTRegisterWithdrawalRequest
3098
3779
  */
3099
- name: string;
3780
+ address: string;
3100
3781
  /**
3101
- * DTO.DEX.MOONSHOT.MINT.SYMBOL
3102
- * @type {string}
3103
- * @memberof MoonshotCreateTokenInput
3782
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ASSET_AMOUNT
3783
+ * @type {number}
3784
+ * @memberof KYTRegisterWithdrawalRequest
3104
3785
  */
3105
- symbol: string;
3786
+ assetAmount: number;
3106
3787
  /**
3107
- * DTO.DEX.MOONSHOT.MINT.MIGRATION_DEX
3788
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ATTEMPT_TIMESTAMP
3108
3789
  * @type {string}
3109
- * @memberof MoonshotCreateTokenInput
3790
+ * @memberof KYTRegisterWithdrawalRequest
3110
3791
  */
3111
- migrationDex: MoonshotCreateTokenInputMigrationDexEnum;
3792
+ attemptTimestamp: string;
3112
3793
  /**
3113
- * DTO.DEX.MOONSHOT.MINT.ICON
3114
- * @type {string}
3115
- * @memberof MoonshotCreateTokenInput
3794
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ASSET_PRICE
3795
+ * @type {number}
3796
+ * @memberof KYTRegisterWithdrawalRequest
3116
3797
  */
3117
- icon: string;
3798
+ assetPrice?: number;
3118
3799
  /**
3119
- * DTO.DEX.MOONSHOT.MINT.DESCRIPTION
3800
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ASSET_DENOMINATION
3120
3801
  * @type {string}
3121
- * @memberof MoonshotCreateTokenInput
3122
- */
3123
- description: string;
3124
- /**
3125
- * DTO.DEX.MOONSHOT.MINT.LINKS
3126
- * @type {Array<Link>}
3127
- * @memberof MoonshotCreateTokenInput
3802
+ * @memberof KYTRegisterWithdrawalRequest
3128
3803
  */
3129
- links: Array<Link>;
3804
+ assetDenomination?: string;
3130
3805
  /**
3131
- * DTO.DEX.MOONSHOT.MINT.BANNER
3806
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.ASSET_ID
3132
3807
  * @type {string}
3133
- * @memberof MoonshotCreateTokenInput
3808
+ * @memberof KYTRegisterWithdrawalRequest
3134
3809
  */
3135
- banner?: string;
3810
+ assetId?: string;
3136
3811
  /**
3137
- * DTO.DEX.MOONSHOT.MINT.TOKEN_AMOUNT
3812
+ * DTO.KYT.KYT_REGISTER_WITHDRAWAL_REQUEST.MEMO
3138
3813
  * @type {string}
3139
- * @memberof MoonshotCreateTokenInput
3814
+ * @memberof KYTRegisterWithdrawalRequest
3140
3815
  */
3141
- tokenAmount: string;
3816
+ memo?: string;
3142
3817
  }
3143
3818
  /**
3144
3819
  * @export
3145
3820
  */
3146
- declare const MoonshotCreateTokenInputDexEnum: {
3147
- readonly Moonshot: "moonshot";
3148
- };
3149
- type MoonshotCreateTokenInputDexEnum = typeof MoonshotCreateTokenInputDexEnum[keyof typeof MoonshotCreateTokenInputDexEnum];
3150
- /**
3151
- * @export
3152
- */
3153
- declare const MoonshotCreateTokenInputMigrationDexEnum: {
3154
- readonly Raydium: "RAYDIUM";
3155
- readonly Meteora: "METEORA";
3156
- readonly Uniswap: "UNISWAP";
3821
+ declare const KYTRegisterWithdrawalRequestNetworkEnum: {
3822
+ readonly Bitcoin: "bitcoin";
3823
+ readonly Ethereum: "ethereum";
3824
+ readonly Solana: "Solana";
3157
3825
  };
3158
- type MoonshotCreateTokenInputMigrationDexEnum = typeof MoonshotCreateTokenInputMigrationDexEnum[keyof typeof MoonshotCreateTokenInputMigrationDexEnum];
3826
+ type KYTRegisterWithdrawalRequestNetworkEnum = typeof KYTRegisterWithdrawalRequestNetworkEnum[keyof typeof KYTRegisterWithdrawalRequestNetworkEnum];
3159
3827
  /**
3160
- * Check if a given object implements the MoonshotCreateTokenInput interface.
3828
+ * Check if a given object implements the KYTRegisterWithdrawalRequest interface.
3161
3829
  */
3162
- declare function instanceOfMoonshotCreateTokenInput(value: object): value is MoonshotCreateTokenInput;
3163
- declare function MoonshotCreateTokenInputFromJSON(json: any): MoonshotCreateTokenInput;
3164
- declare function MoonshotCreateTokenInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoonshotCreateTokenInput;
3165
- declare function MoonshotCreateTokenInputToJSON(json: any): MoonshotCreateTokenInput;
3166
- declare function MoonshotCreateTokenInputToJSONTyped(value?: MoonshotCreateTokenInput | null, ignoreDiscriminator?: boolean): any;
3830
+ declare function instanceOfKYTRegisterWithdrawalRequest(value: object): value is KYTRegisterWithdrawalRequest;
3831
+ declare function KYTRegisterWithdrawalRequestFromJSON(json: any): KYTRegisterWithdrawalRequest;
3832
+ declare function KYTRegisterWithdrawalRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): KYTRegisterWithdrawalRequest;
3833
+ declare function KYTRegisterWithdrawalRequestToJSON(json: any): KYTRegisterWithdrawalRequest;
3834
+ declare function KYTRegisterWithdrawalRequestToJSONTyped(value?: KYTRegisterWithdrawalRequest | null, ignoreDiscriminator?: boolean): any;
3167
3835
 
3168
3836
  /**
3169
3837
  * Dex Aggregator API
@@ -3179,12 +3847,528 @@ declare function MoonshotCreateTokenInputToJSONTyped(value?: MoonshotCreateToken
3179
3847
  /**
3180
3848
  *
3181
3849
  * @export
3182
- * @interface MoonshotCreateTokenReply
3850
+ * @interface KytAddressDTO
3183
3851
  */
3184
- interface MoonshotCreateTokenReply {
3852
+ interface KytAddressDTO {
3185
3853
  /**
3186
- * DTO.DEX.MOONSHOT.CREATE_TOKEN.SERIALIZED_TX
3187
- * @type {string}
3854
+ * DTO.KYT.KYT_ADDRESS.ID
3855
+ * @type {number}
3856
+ * @memberof KytAddressDTO
3857
+ */
3858
+ id: number;
3859
+ /**
3860
+ * DTO.KYT.KYT_ADDRESS.ORG_ID
3861
+ * @type {string}
3862
+ * @memberof KytAddressDTO
3863
+ */
3864
+ orgId: string;
3865
+ /**
3866
+ * DTO.KYT.KYT_ADDRESS.ADDRESS
3867
+ * @type {string}
3868
+ * @memberof KytAddressDTO
3869
+ */
3870
+ address: string;
3871
+ /**
3872
+ * DTO.KYT.KYT_ADDRESS.CREATED_AT
3873
+ * @type {Date}
3874
+ * @memberof KytAddressDTO
3875
+ */
3876
+ createdAt: Date;
3877
+ /**
3878
+ * DTO.KYT.KYT_ADDRESS.UPDATED_AT
3879
+ * @type {Date}
3880
+ * @memberof KytAddressDTO
3881
+ */
3882
+ updatedAt: Date;
3883
+ }
3884
+ /**
3885
+ * Check if a given object implements the KytAddressDTO interface.
3886
+ */
3887
+ declare function instanceOfKytAddressDTO(value: object): value is KytAddressDTO;
3888
+ declare function KytAddressDTOFromJSON(json: any): KytAddressDTO;
3889
+ declare function KytAddressDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): KytAddressDTO;
3890
+ declare function KytAddressDTOToJSON(json: any): KytAddressDTO;
3891
+ declare function KytAddressDTOToJSONTyped(value?: KytAddressDTO | null, ignoreDiscriminator?: boolean): any;
3892
+
3893
+ /**
3894
+ * Dex Aggregator API
3895
+ * Dex Aggregator API ⚡️
3896
+ *
3897
+ * The version of the OpenAPI document: 1.0
3898
+ * Contact: ai@sx.ai
3899
+ *
3900
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3901
+ * https://openapi-generator.tech
3902
+ * Do not edit the class manually.
3903
+ */
3904
+
3905
+ /**
3906
+ *
3907
+ * @export
3908
+ * @interface KytAddressPage
3909
+ */
3910
+ interface KytAddressPage {
3911
+ /**
3912
+ * DTO.KYT.STANDARD_PAGE.TOTAL
3913
+ * @type {number}
3914
+ * @memberof KytAddressPage
3915
+ */
3916
+ total: number;
3917
+ /**
3918
+ * DTO.KYT.STANDARD_PAGE.PAGE
3919
+ * @type {number}
3920
+ * @memberof KytAddressPage
3921
+ */
3922
+ page: number;
3923
+ /**
3924
+ * DTO.KYT.STANDARD_PAGE.PAGE_SIZE
3925
+ * @type {number}
3926
+ * @memberof KytAddressPage
3927
+ */
3928
+ pageSize: number;
3929
+ /**
3930
+ * DTO.KYT.STANDARD_PAGE.TOTAL_PAGES
3931
+ * @type {number}
3932
+ * @memberof KytAddressPage
3933
+ */
3934
+ totalPages: number;
3935
+ /**
3936
+ * DTO.KYT.KYT_ADDRESS_PAGE.DATA
3937
+ * @type {Array<KytAddressDTO>}
3938
+ * @memberof KytAddressPage
3939
+ */
3940
+ data: Array<KytAddressDTO>;
3941
+ }
3942
+ /**
3943
+ * Check if a given object implements the KytAddressPage interface.
3944
+ */
3945
+ declare function instanceOfKytAddressPage(value: object): value is KytAddressPage;
3946
+ declare function KytAddressPageFromJSON(json: any): KytAddressPage;
3947
+ declare function KytAddressPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): KytAddressPage;
3948
+ declare function KytAddressPageToJSON(json: any): KytAddressPage;
3949
+ declare function KytAddressPageToJSONTyped(value?: KytAddressPage | null, ignoreDiscriminator?: boolean): any;
3950
+
3951
+ /**
3952
+ * Dex Aggregator API
3953
+ * Dex Aggregator API ⚡️
3954
+ *
3955
+ * The version of the OpenAPI document: 1.0
3956
+ * Contact: ai@sx.ai
3957
+ *
3958
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3959
+ * https://openapi-generator.tech
3960
+ * Do not edit the class manually.
3961
+ */
3962
+ /**
3963
+ *
3964
+ * @export
3965
+ * @interface KytTransferDTO
3966
+ */
3967
+ interface KytTransferDTO {
3968
+ /**
3969
+ * DTO.KYT.KYT_TRANSFER.ID
3970
+ * @type {number}
3971
+ * @memberof KytTransferDTO
3972
+ */
3973
+ id: number;
3974
+ /**
3975
+ * DTO.KYT.KYT_TRANSFER.ORG_ID
3976
+ * @type {string}
3977
+ * @memberof KytTransferDTO
3978
+ */
3979
+ orgId: string;
3980
+ /**
3981
+ * DTO.KYT.KYT_TRANSFER.TX_HASH
3982
+ * @type {string}
3983
+ * @memberof KytTransferDTO
3984
+ */
3985
+ txHash: string;
3986
+ /**
3987
+ * DTO.KYT.KYT_TRANSFER.EXTERNAL_ID
3988
+ * @type {string}
3989
+ * @memberof KytTransferDTO
3990
+ */
3991
+ externalId: string;
3992
+ /**
3993
+ * DTO.KYT.KYT_TRANSFER.CREATED_AT
3994
+ * @type {Date}
3995
+ * @memberof KytTransferDTO
3996
+ */
3997
+ createdAt: Date;
3998
+ /**
3999
+ * DTO.KYT.KYT_TRANSFER.UPDATED_AT
4000
+ * @type {Date}
4001
+ * @memberof KytTransferDTO
4002
+ */
4003
+ updatedAt: Date;
4004
+ }
4005
+ /**
4006
+ * Check if a given object implements the KytTransferDTO interface.
4007
+ */
4008
+ declare function instanceOfKytTransferDTO(value: object): value is KytTransferDTO;
4009
+ declare function KytTransferDTOFromJSON(json: any): KytTransferDTO;
4010
+ declare function KytTransferDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): KytTransferDTO;
4011
+ declare function KytTransferDTOToJSON(json: any): KytTransferDTO;
4012
+ declare function KytTransferDTOToJSONTyped(value?: KytTransferDTO | null, ignoreDiscriminator?: boolean): any;
4013
+
4014
+ /**
4015
+ * Dex Aggregator API
4016
+ * Dex Aggregator API ⚡️
4017
+ *
4018
+ * The version of the OpenAPI document: 1.0
4019
+ * Contact: ai@sx.ai
4020
+ *
4021
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4022
+ * https://openapi-generator.tech
4023
+ * Do not edit the class manually.
4024
+ */
4025
+
4026
+ /**
4027
+ *
4028
+ * @export
4029
+ * @interface KytTransferPage
4030
+ */
4031
+ interface KytTransferPage {
4032
+ /**
4033
+ * DTO.KYT.STANDARD_PAGE.TOTAL
4034
+ * @type {number}
4035
+ * @memberof KytTransferPage
4036
+ */
4037
+ total: number;
4038
+ /**
4039
+ * DTO.KYT.STANDARD_PAGE.PAGE
4040
+ * @type {number}
4041
+ * @memberof KytTransferPage
4042
+ */
4043
+ page: number;
4044
+ /**
4045
+ * DTO.KYT.STANDARD_PAGE.PAGE_SIZE
4046
+ * @type {number}
4047
+ * @memberof KytTransferPage
4048
+ */
4049
+ pageSize: number;
4050
+ /**
4051
+ * DTO.KYT.STANDARD_PAGE.TOTAL_PAGES
4052
+ * @type {number}
4053
+ * @memberof KytTransferPage
4054
+ */
4055
+ totalPages: number;
4056
+ /**
4057
+ * DTO.KYT.KYT_TRANSFER_PAGE.DATA
4058
+ * @type {Array<KytTransferDTO>}
4059
+ * @memberof KytTransferPage
4060
+ */
4061
+ data: Array<KytTransferDTO>;
4062
+ }
4063
+ /**
4064
+ * Check if a given object implements the KytTransferPage interface.
4065
+ */
4066
+ declare function instanceOfKytTransferPage(value: object): value is KytTransferPage;
4067
+ declare function KytTransferPageFromJSON(json: any): KytTransferPage;
4068
+ declare function KytTransferPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): KytTransferPage;
4069
+ declare function KytTransferPageToJSON(json: any): KytTransferPage;
4070
+ declare function KytTransferPageToJSONTyped(value?: KytTransferPage | null, ignoreDiscriminator?: boolean): any;
4071
+
4072
+ /**
4073
+ * Dex Aggregator API
4074
+ * Dex Aggregator API ⚡️
4075
+ *
4076
+ * The version of the OpenAPI document: 1.0
4077
+ * Contact: ai@sx.ai
4078
+ *
4079
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4080
+ * https://openapi-generator.tech
4081
+ * Do not edit the class manually.
4082
+ */
4083
+ /**
4084
+ *
4085
+ * @export
4086
+ * @interface KytWithdrawalDTO
4087
+ */
4088
+ interface KytWithdrawalDTO {
4089
+ /**
4090
+ * DTO.KYT.KYT_WITHDRAWAL.ID
4091
+ * @type {number}
4092
+ * @memberof KytWithdrawalDTO
4093
+ */
4094
+ id: number;
4095
+ /**
4096
+ * DTO.KYT.KYT_WITHDRAWAL.ORG_ID
4097
+ * @type {string}
4098
+ * @memberof KytWithdrawalDTO
4099
+ */
4100
+ orgId: string;
4101
+ /**
4102
+ * DTO.KYT.KYT_WITHDRAWAL.ADDRESS
4103
+ * @type {string}
4104
+ * @memberof KytWithdrawalDTO
4105
+ */
4106
+ address: string;
4107
+ /**
4108
+ * DTO.KYT.KYT_WITHDRAWAL.EXTERNAL_ID
4109
+ * @type {string}
4110
+ * @memberof KytWithdrawalDTO
4111
+ */
4112
+ externalId: string;
4113
+ /**
4114
+ * DTO.KYT.KYT_WITHDRAWAL.CREATED_AT
4115
+ * @type {Date}
4116
+ * @memberof KytWithdrawalDTO
4117
+ */
4118
+ createdAt: Date;
4119
+ /**
4120
+ * DTO.KYT.KYT_WITHDRAWAL.UPDATED_AT
4121
+ * @type {Date}
4122
+ * @memberof KytWithdrawalDTO
4123
+ */
4124
+ updatedAt: Date;
4125
+ }
4126
+ /**
4127
+ * Check if a given object implements the KytWithdrawalDTO interface.
4128
+ */
4129
+ declare function instanceOfKytWithdrawalDTO(value: object): value is KytWithdrawalDTO;
4130
+ declare function KytWithdrawalDTOFromJSON(json: any): KytWithdrawalDTO;
4131
+ declare function KytWithdrawalDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): KytWithdrawalDTO;
4132
+ declare function KytWithdrawalDTOToJSON(json: any): KytWithdrawalDTO;
4133
+ declare function KytWithdrawalDTOToJSONTyped(value?: KytWithdrawalDTO | null, ignoreDiscriminator?: boolean): any;
4134
+
4135
+ /**
4136
+ * Dex Aggregator API
4137
+ * Dex Aggregator API ⚡️
4138
+ *
4139
+ * The version of the OpenAPI document: 1.0
4140
+ * Contact: ai@sx.ai
4141
+ *
4142
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4143
+ * https://openapi-generator.tech
4144
+ * Do not edit the class manually.
4145
+ */
4146
+
4147
+ /**
4148
+ *
4149
+ * @export
4150
+ * @interface KytWithdrawalPage
4151
+ */
4152
+ interface KytWithdrawalPage {
4153
+ /**
4154
+ * DTO.KYT.STANDARD_PAGE.TOTAL
4155
+ * @type {number}
4156
+ * @memberof KytWithdrawalPage
4157
+ */
4158
+ total: number;
4159
+ /**
4160
+ * DTO.KYT.STANDARD_PAGE.PAGE
4161
+ * @type {number}
4162
+ * @memberof KytWithdrawalPage
4163
+ */
4164
+ page: number;
4165
+ /**
4166
+ * DTO.KYT.STANDARD_PAGE.PAGE_SIZE
4167
+ * @type {number}
4168
+ * @memberof KytWithdrawalPage
4169
+ */
4170
+ pageSize: number;
4171
+ /**
4172
+ * DTO.KYT.STANDARD_PAGE.TOTAL_PAGES
4173
+ * @type {number}
4174
+ * @memberof KytWithdrawalPage
4175
+ */
4176
+ totalPages: number;
4177
+ /**
4178
+ * DTO.KYT.KYT_WITHDRAWAL_PAGE.DATA
4179
+ * @type {Array<KytWithdrawalDTO>}
4180
+ * @memberof KytWithdrawalPage
4181
+ */
4182
+ data: Array<KytWithdrawalDTO>;
4183
+ }
4184
+ /**
4185
+ * Check if a given object implements the KytWithdrawalPage interface.
4186
+ */
4187
+ declare function instanceOfKytWithdrawalPage(value: object): value is KytWithdrawalPage;
4188
+ declare function KytWithdrawalPageFromJSON(json: any): KytWithdrawalPage;
4189
+ declare function KytWithdrawalPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): KytWithdrawalPage;
4190
+ declare function KytWithdrawalPageToJSON(json: any): KytWithdrawalPage;
4191
+ declare function KytWithdrawalPageToJSONTyped(value?: KytWithdrawalPage | null, ignoreDiscriminator?: boolean): any;
4192
+
4193
+ /**
4194
+ * Dex Aggregator API
4195
+ * Dex Aggregator API ⚡️
4196
+ *
4197
+ * The version of the OpenAPI document: 1.0
4198
+ * Contact: ai@sx.ai
4199
+ *
4200
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4201
+ * https://openapi-generator.tech
4202
+ * Do not edit the class manually.
4203
+ */
4204
+ /**
4205
+ *
4206
+ * @export
4207
+ * @interface Link
4208
+ */
4209
+ interface Link {
4210
+ /**
4211
+ * DTO.DEX.MOONSHOT.LINK.URL
4212
+ * @type {string}
4213
+ * @memberof Link
4214
+ */
4215
+ url: string;
4216
+ /**
4217
+ * DTO.DEX.MOONSHOT.LINK.LABEL
4218
+ * @type {string}
4219
+ * @memberof Link
4220
+ */
4221
+ label: LinkLabelEnum;
4222
+ }
4223
+ /**
4224
+ * @export
4225
+ */
4226
+ declare const LinkLabelEnum: {
4227
+ readonly Website: "website";
4228
+ readonly Twitter: "twitter";
4229
+ readonly Telegram: "telegram";
4230
+ readonly Discord: "discord";
4231
+ };
4232
+ type LinkLabelEnum = typeof LinkLabelEnum[keyof typeof LinkLabelEnum];
4233
+ /**
4234
+ * Check if a given object implements the Link interface.
4235
+ */
4236
+ declare function instanceOfLink(value: object): value is Link;
4237
+ declare function LinkFromJSON(json: any): Link;
4238
+ declare function LinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): Link;
4239
+ declare function LinkToJSON(json: any): Link;
4240
+ declare function LinkToJSONTyped(value?: Link | null, ignoreDiscriminator?: boolean): any;
4241
+
4242
+ /**
4243
+ * Dex Aggregator API
4244
+ * Dex Aggregator API ⚡️
4245
+ *
4246
+ * The version of the OpenAPI document: 1.0
4247
+ * Contact: ai@sx.ai
4248
+ *
4249
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4250
+ * https://openapi-generator.tech
4251
+ * Do not edit the class manually.
4252
+ */
4253
+
4254
+ /**
4255
+ *
4256
+ * @export
4257
+ * @interface MoonshotCreateTokenInput
4258
+ */
4259
+ interface MoonshotCreateTokenInput {
4260
+ /**
4261
+ * DTO.DEX.IDENTIFIER
4262
+ * @type {string}
4263
+ * @memberof MoonshotCreateTokenInput
4264
+ */
4265
+ dex: MoonshotCreateTokenInputDexEnum;
4266
+ /**
4267
+ * DTO.DEX.WALLET
4268
+ * @type {string}
4269
+ * @memberof MoonshotCreateTokenInput
4270
+ */
4271
+ userAddress: string;
4272
+ /**
4273
+ * DTO.DEX.BASE.PRIORITY_FEE
4274
+ * @type {string}
4275
+ * @memberof MoonshotCreateTokenInput
4276
+ */
4277
+ priorityFee?: string;
4278
+ /**
4279
+ * DTO.DEX.MOONSHOT.MINT.NAME
4280
+ * @type {string}
4281
+ * @memberof MoonshotCreateTokenInput
4282
+ */
4283
+ name: string;
4284
+ /**
4285
+ * DTO.DEX.MOONSHOT.MINT.SYMBOL
4286
+ * @type {string}
4287
+ * @memberof MoonshotCreateTokenInput
4288
+ */
4289
+ symbol: string;
4290
+ /**
4291
+ * DTO.DEX.MOONSHOT.MINT.MIGRATION_DEX
4292
+ * @type {string}
4293
+ * @memberof MoonshotCreateTokenInput
4294
+ */
4295
+ migrationDex: MoonshotCreateTokenInputMigrationDexEnum;
4296
+ /**
4297
+ * DTO.DEX.MOONSHOT.MINT.ICON
4298
+ * @type {string}
4299
+ * @memberof MoonshotCreateTokenInput
4300
+ */
4301
+ icon: string;
4302
+ /**
4303
+ * DTO.DEX.MOONSHOT.MINT.DESCRIPTION
4304
+ * @type {string}
4305
+ * @memberof MoonshotCreateTokenInput
4306
+ */
4307
+ description: string;
4308
+ /**
4309
+ * DTO.DEX.MOONSHOT.MINT.LINKS
4310
+ * @type {Array<Link>}
4311
+ * @memberof MoonshotCreateTokenInput
4312
+ */
4313
+ links: Array<Link>;
4314
+ /**
4315
+ * DTO.DEX.MOONSHOT.MINT.BANNER
4316
+ * @type {string}
4317
+ * @memberof MoonshotCreateTokenInput
4318
+ */
4319
+ banner?: string;
4320
+ /**
4321
+ * DTO.DEX.MOONSHOT.MINT.TOKEN_AMOUNT
4322
+ * @type {string}
4323
+ * @memberof MoonshotCreateTokenInput
4324
+ */
4325
+ tokenAmount: string;
4326
+ }
4327
+ /**
4328
+ * @export
4329
+ */
4330
+ declare const MoonshotCreateTokenInputDexEnum: {
4331
+ readonly Moonshot: "moonshot";
4332
+ };
4333
+ type MoonshotCreateTokenInputDexEnum = typeof MoonshotCreateTokenInputDexEnum[keyof typeof MoonshotCreateTokenInputDexEnum];
4334
+ /**
4335
+ * @export
4336
+ */
4337
+ declare const MoonshotCreateTokenInputMigrationDexEnum: {
4338
+ readonly Raydium: "RAYDIUM";
4339
+ readonly Meteora: "METEORA";
4340
+ readonly Uniswap: "UNISWAP";
4341
+ };
4342
+ type MoonshotCreateTokenInputMigrationDexEnum = typeof MoonshotCreateTokenInputMigrationDexEnum[keyof typeof MoonshotCreateTokenInputMigrationDexEnum];
4343
+ /**
4344
+ * Check if a given object implements the MoonshotCreateTokenInput interface.
4345
+ */
4346
+ declare function instanceOfMoonshotCreateTokenInput(value: object): value is MoonshotCreateTokenInput;
4347
+ declare function MoonshotCreateTokenInputFromJSON(json: any): MoonshotCreateTokenInput;
4348
+ declare function MoonshotCreateTokenInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoonshotCreateTokenInput;
4349
+ declare function MoonshotCreateTokenInputToJSON(json: any): MoonshotCreateTokenInput;
4350
+ declare function MoonshotCreateTokenInputToJSONTyped(value?: MoonshotCreateTokenInput | null, ignoreDiscriminator?: boolean): any;
4351
+
4352
+ /**
4353
+ * Dex Aggregator API
4354
+ * Dex Aggregator API ⚡️
4355
+ *
4356
+ * The version of the OpenAPI document: 1.0
4357
+ * Contact: ai@sx.ai
4358
+ *
4359
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4360
+ * https://openapi-generator.tech
4361
+ * Do not edit the class manually.
4362
+ */
4363
+ /**
4364
+ *
4365
+ * @export
4366
+ * @interface MoonshotCreateTokenReply
4367
+ */
4368
+ interface MoonshotCreateTokenReply {
4369
+ /**
4370
+ * DTO.DEX.MOONSHOT.CREATE_TOKEN.SERIALIZED_TX
4371
+ * @type {string}
3188
4372
  * @memberof MoonshotCreateTokenReply
3189
4373
  */
3190
4374
  serializedTx: string;
@@ -3274,13 +4458,46 @@ interface MoonshotSubmitCreateTokenInput {
3274
4458
  extra?: object;
3275
4459
  }
3276
4460
  /**
3277
- * Check if a given object implements the MoonshotSubmitCreateTokenInput interface.
4461
+ * Check if a given object implements the MoonshotSubmitCreateTokenInput interface.
4462
+ */
4463
+ declare function instanceOfMoonshotSubmitCreateTokenInput(value: object): value is MoonshotSubmitCreateTokenInput;
4464
+ declare function MoonshotSubmitCreateTokenInputFromJSON(json: any): MoonshotSubmitCreateTokenInput;
4465
+ declare function MoonshotSubmitCreateTokenInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoonshotSubmitCreateTokenInput;
4466
+ declare function MoonshotSubmitCreateTokenInputToJSON(json: any): MoonshotSubmitCreateTokenInput;
4467
+ declare function MoonshotSubmitCreateTokenInputToJSONTyped(value?: MoonshotSubmitCreateTokenInput | null, ignoreDiscriminator?: boolean): any;
4468
+
4469
+ /**
4470
+ * Dex Aggregator API
4471
+ * Dex Aggregator API ⚡️
4472
+ *
4473
+ * The version of the OpenAPI document: 1.0
4474
+ * Contact: ai@sx.ai
4475
+ *
4476
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4477
+ * https://openapi-generator.tech
4478
+ * Do not edit the class manually.
4479
+ */
4480
+ /**
4481
+ *
4482
+ * @export
4483
+ * @interface NetworkIdentificationOrg
4484
+ */
4485
+ interface NetworkIdentificationOrg {
4486
+ /**
4487
+ * DTO.KYT.NETWORK_IDENTIFICATION_ORG.NAME
4488
+ * @type {string}
4489
+ * @memberof NetworkIdentificationOrg
4490
+ */
4491
+ name: string;
4492
+ }
4493
+ /**
4494
+ * Check if a given object implements the NetworkIdentificationOrg interface.
3278
4495
  */
3279
- declare function instanceOfMoonshotSubmitCreateTokenInput(value: object): value is MoonshotSubmitCreateTokenInput;
3280
- declare function MoonshotSubmitCreateTokenInputFromJSON(json: any): MoonshotSubmitCreateTokenInput;
3281
- declare function MoonshotSubmitCreateTokenInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoonshotSubmitCreateTokenInput;
3282
- declare function MoonshotSubmitCreateTokenInputToJSON(json: any): MoonshotSubmitCreateTokenInput;
3283
- declare function MoonshotSubmitCreateTokenInputToJSONTyped(value?: MoonshotSubmitCreateTokenInput | null, ignoreDiscriminator?: boolean): any;
4496
+ declare function instanceOfNetworkIdentificationOrg(value: object): value is NetworkIdentificationOrg;
4497
+ declare function NetworkIdentificationOrgFromJSON(json: any): NetworkIdentificationOrg;
4498
+ declare function NetworkIdentificationOrgFromJSONTyped(json: any, ignoreDiscriminator: boolean): NetworkIdentificationOrg;
4499
+ declare function NetworkIdentificationOrgToJSON(json: any): NetworkIdentificationOrg;
4500
+ declare function NetworkIdentificationOrgToJSONTyped(value?: NetworkIdentificationOrg | null, ignoreDiscriminator?: boolean): any;
3284
4501
 
3285
4502
  /**
3286
4503
  * Dex Aggregator API
@@ -3919,6 +5136,72 @@ declare function RedPacketsPageFromJSONTyped(json: any, ignoreDiscriminator: boo
3919
5136
  declare function RedPacketsPageToJSON(json: any): RedPacketsPage;
3920
5137
  declare function RedPacketsPageToJSONTyped(value?: RedPacketsPage | null, ignoreDiscriminator?: boolean): any;
3921
5138
 
5139
+ /**
5140
+ * Dex Aggregator API
5141
+ * Dex Aggregator API ⚡️
5142
+ *
5143
+ * The version of the OpenAPI document: 1.0
5144
+ * Contact: ai@sx.ai
5145
+ *
5146
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5147
+ * https://openapi-generator.tech
5148
+ * Do not edit the class manually.
5149
+ */
5150
+ /**
5151
+ *
5152
+ * @export
5153
+ * @interface RegisterAddressRequest
5154
+ */
5155
+ interface RegisterAddressRequest {
5156
+ /**
5157
+ * DTO.KYT.REGISTER_ADDRESS_REQUEST.ADDRESS
5158
+ * @type {string}
5159
+ * @memberof RegisterAddressRequest
5160
+ */
5161
+ address: string;
5162
+ }
5163
+ /**
5164
+ * Check if a given object implements the RegisterAddressRequest interface.
5165
+ */
5166
+ declare function instanceOfRegisterAddressRequest(value: object): value is RegisterAddressRequest;
5167
+ declare function RegisterAddressRequestFromJSON(json: any): RegisterAddressRequest;
5168
+ declare function RegisterAddressRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterAddressRequest;
5169
+ declare function RegisterAddressRequestToJSON(json: any): RegisterAddressRequest;
5170
+ declare function RegisterAddressRequestToJSONTyped(value?: RegisterAddressRequest | null, ignoreDiscriminator?: boolean): any;
5171
+
5172
+ /**
5173
+ * Dex Aggregator API
5174
+ * Dex Aggregator API ⚡️
5175
+ *
5176
+ * The version of the OpenAPI document: 1.0
5177
+ * Contact: ai@sx.ai
5178
+ *
5179
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5180
+ * https://openapi-generator.tech
5181
+ * Do not edit the class manually.
5182
+ */
5183
+ /**
5184
+ *
5185
+ * @export
5186
+ * @interface RegisterAddressResponseDTO
5187
+ */
5188
+ interface RegisterAddressResponseDTO {
5189
+ /**
5190
+ * DTO.KYT.REGISTER_ADDRESS_RESPONSE.ADDRESS
5191
+ * @type {string}
5192
+ * @memberof RegisterAddressResponseDTO
5193
+ */
5194
+ address: string;
5195
+ }
5196
+ /**
5197
+ * Check if a given object implements the RegisterAddressResponseDTO interface.
5198
+ */
5199
+ declare function instanceOfRegisterAddressResponseDTO(value: object): value is RegisterAddressResponseDTO;
5200
+ declare function RegisterAddressResponseDTOFromJSON(json: any): RegisterAddressResponseDTO;
5201
+ declare function RegisterAddressResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterAddressResponseDTO;
5202
+ declare function RegisterAddressResponseDTOToJSON(json: any): RegisterAddressResponseDTO;
5203
+ declare function RegisterAddressResponseDTOToJSONTyped(value?: RegisterAddressResponseDTO | null, ignoreDiscriminator?: boolean): any;
5204
+
3922
5205
  /**
3923
5206
  * Dex Aggregator API
3924
5207
  * Dex Aggregator API ⚡️
@@ -5356,110 +6639,387 @@ interface TradeDetailDTO {
5356
6639
  */
5357
6640
  tokenAddress: string;
5358
6641
  /**
5359
- * DTO.TRADE.DETAIL.POOL_ADDRESS
6642
+ * DTO.TRADE.DETAIL.POOL_ADDRESS
6643
+ * @type {string}
6644
+ * @memberof TradeDetailDTO
6645
+ */
6646
+ poolAddress: string;
6647
+ /**
6648
+ * DTO.TRADE.DETAIL.DEX_PROGRAM_ADDRESS
6649
+ * @type {string}
6650
+ * @memberof TradeDetailDTO
6651
+ */
6652
+ dexProgramAddress: string;
6653
+ /**
6654
+ * DTO.TRADE.DETAIL.DEX_PROTOCOL_FAMILY
6655
+ * @type {string}
6656
+ * @memberof TradeDetailDTO
6657
+ */
6658
+ dexProtocolFamily: string;
6659
+ /**
6660
+ * DTO.TRADE.DETAIL.DEX_IMAGE
6661
+ * @type {string}
6662
+ * @memberof TradeDetailDTO
6663
+ */
6664
+ dexImage: string;
6665
+ /**
6666
+ * DTO.TRADE.DETAIL.TOKEN_AMOUNT
6667
+ * @type {string}
6668
+ * @memberof TradeDetailDTO
6669
+ */
6670
+ tokenAmount: string;
6671
+ /**
6672
+ * DTO.TRADE.DETAIL.TOKEN_PRICE_IN_USD
6673
+ * @type {string}
6674
+ * @memberof TradeDetailDTO
6675
+ */
6676
+ tokenPriceInUsd: string;
6677
+ /**
6678
+ * DTO.TRADE.DETAIL.TOKEN_AMOUNT_IN_USD
6679
+ * @type {string}
6680
+ * @memberof TradeDetailDTO
6681
+ */
6682
+ tokenAmountInUsd: string;
6683
+ /**
6684
+ * DTO.TRADE.DETAIL.TYPE
6685
+ * @type {string}
6686
+ * @memberof TradeDetailDTO
6687
+ */
6688
+ type: string;
6689
+ /**
6690
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_NAME
6691
+ * @type {string}
6692
+ * @memberof TradeDetailDTO
6693
+ */
6694
+ sideTokenName: string;
6695
+ /**
6696
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_SYMBOL
6697
+ * @type {string}
6698
+ * @memberof TradeDetailDTO
6699
+ */
6700
+ sideTokenSymbol: string;
6701
+ /**
6702
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_IMAGE_URL
6703
+ * @type {string}
6704
+ * @memberof TradeDetailDTO
6705
+ */
6706
+ sideTokenImageUrl: string;
6707
+ /**
6708
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_ADDRESS
6709
+ * @type {string}
6710
+ * @memberof TradeDetailDTO
6711
+ */
6712
+ sideTokenAddress: string;
6713
+ /**
6714
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_PRICE_IN_USD
6715
+ * @type {string}
6716
+ * @memberof TradeDetailDTO
6717
+ */
6718
+ sideTokenPriceInUsd: string;
6719
+ /**
6720
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT
6721
+ * @type {string}
6722
+ * @memberof TradeDetailDTO
6723
+ */
6724
+ sideTokenAmount: string;
6725
+ /**
6726
+ * DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT_IN_USD
6727
+ * @type {string}
6728
+ * @memberof TradeDetailDTO
6729
+ */
6730
+ sideTokenAmountInUsd: string;
6731
+ /**
6732
+ * DTO.TRADE.DETAIL.STATUS
6733
+ * @type {string}
6734
+ * @memberof TradeDetailDTO
6735
+ */
6736
+ status: string;
6737
+ }
6738
+ /**
6739
+ * Check if a given object implements the TradeDetailDTO interface.
6740
+ */
6741
+ declare function instanceOfTradeDetailDTO(value: object): value is TradeDetailDTO;
6742
+ declare function TradeDetailDTOFromJSON(json: any): TradeDetailDTO;
6743
+ declare function TradeDetailDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradeDetailDTO;
6744
+ declare function TradeDetailDTOToJSON(json: any): TradeDetailDTO;
6745
+ declare function TradeDetailDTOToJSONTyped(value?: TradeDetailDTO | null, ignoreDiscriminator?: boolean): any;
6746
+
6747
+ /**
6748
+ * Dex Aggregator API
6749
+ * Dex Aggregator API ⚡️
6750
+ *
6751
+ * The version of the OpenAPI document: 1.0
6752
+ * Contact: ai@sx.ai
6753
+ *
6754
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6755
+ * https://openapi-generator.tech
6756
+ * Do not edit the class manually.
6757
+ */
6758
+
6759
+ /**
6760
+ *
6761
+ * @export
6762
+ * @interface TradePage
6763
+ */
6764
+ interface TradePage {
6765
+ /**
6766
+ * DTO.PAGE.HAS_NEXT
6767
+ * @type {boolean}
6768
+ * @memberof TradePage
6769
+ */
6770
+ hasNext?: boolean;
6771
+ /**
6772
+ * DTO.PAGE.HAS_PREV
6773
+ * @type {boolean}
6774
+ * @memberof TradePage
6775
+ */
6776
+ hasPrev?: boolean;
6777
+ /**
6778
+ * DTO.PAGE.START_CURSOR
6779
+ * @type {string}
6780
+ * @memberof TradePage
6781
+ */
6782
+ startCursor?: string;
6783
+ /**
6784
+ * DTO.PAGE.END_CURSOR
6785
+ * @type {string}
6786
+ * @memberof TradePage
6787
+ */
6788
+ endCursor?: string;
6789
+ /**
6790
+ * DTO.PAGE.TOTAL
6791
+ * @type {number}
6792
+ * @memberof TradePage
6793
+ */
6794
+ total?: number;
6795
+ /**
6796
+ * DTO.TRADE.PAGE.DATA
6797
+ * @type {Array<TradeDetailDTO>}
6798
+ * @memberof TradePage
6799
+ */
6800
+ data: Array<TradeDetailDTO>;
6801
+ }
6802
+ /**
6803
+ * Check if a given object implements the TradePage interface.
6804
+ */
6805
+ declare function instanceOfTradePage(value: object): value is TradePage;
6806
+ declare function TradePageFromJSON(json: any): TradePage;
6807
+ declare function TradePageFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradePage;
6808
+ declare function TradePageToJSON(json: any): TradePage;
6809
+ declare function TradePageToJSONTyped(value?: TradePage | null, ignoreDiscriminator?: boolean): any;
6810
+
6811
+ /**
6812
+ * Dex Aggregator API
6813
+ * Dex Aggregator API ⚡️
6814
+ *
6815
+ * The version of the OpenAPI document: 1.0
6816
+ * Contact: ai@sx.ai
6817
+ *
6818
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6819
+ * https://openapi-generator.tech
6820
+ * Do not edit the class manually.
6821
+ */
6822
+
6823
+ /**
6824
+ *
6825
+ * @export
6826
+ * @interface TransferAlertsResponseDTO
6827
+ */
6828
+ interface TransferAlertsResponseDTO {
6829
+ /**
6830
+ * DTO.KYT.TRANSFER_ALERTS_RESPONSE.ALERTS
6831
+ * @type {Array<AlertDetail>}
6832
+ * @memberof TransferAlertsResponseDTO
6833
+ */
6834
+ alerts: Array<AlertDetail>;
6835
+ }
6836
+ /**
6837
+ * Check if a given object implements the TransferAlertsResponseDTO interface.
6838
+ */
6839
+ declare function instanceOfTransferAlertsResponseDTO(value: object): value is TransferAlertsResponseDTO;
6840
+ declare function TransferAlertsResponseDTOFromJSON(json: any): TransferAlertsResponseDTO;
6841
+ declare function TransferAlertsResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferAlertsResponseDTO;
6842
+ declare function TransferAlertsResponseDTOToJSON(json: any): TransferAlertsResponseDTO;
6843
+ declare function TransferAlertsResponseDTOToJSONTyped(value?: TransferAlertsResponseDTO | null, ignoreDiscriminator?: boolean): any;
6844
+
6845
+ /**
6846
+ * Dex Aggregator API
6847
+ * Dex Aggregator API ⚡️
6848
+ *
6849
+ * The version of the OpenAPI document: 1.0
6850
+ * Contact: ai@sx.ai
6851
+ *
6852
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6853
+ * https://openapi-generator.tech
6854
+ * Do not edit the class manually.
6855
+ */
6856
+ /**
6857
+ *
6858
+ * @export
6859
+ * @interface TransferBaseResponseDTO
6860
+ */
6861
+ interface TransferBaseResponseDTO {
6862
+ /**
6863
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.UPDATED_AT
5360
6864
  * @type {string}
5361
- * @memberof TradeDetailDTO
6865
+ * @memberof TransferBaseResponseDTO
5362
6866
  */
5363
- poolAddress: string;
6867
+ updatedAt: string;
5364
6868
  /**
5365
- * DTO.TRADE.DETAIL.DEX_PROGRAM_ADDRESS
6869
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.ASSET
5366
6870
  * @type {string}
5367
- * @memberof TradeDetailDTO
6871
+ * @memberof TransferBaseResponseDTO
5368
6872
  */
5369
- dexProgramAddress: string;
6873
+ asset: string;
5370
6874
  /**
5371
- * DTO.TRADE.DETAIL.DEX_PROTOCOL_FAMILY
6875
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.ASSET_ID
5372
6876
  * @type {string}
5373
- * @memberof TradeDetailDTO
6877
+ * @memberof TransferBaseResponseDTO
5374
6878
  */
5375
- dexProtocolFamily: string;
6879
+ assetId: string;
5376
6880
  /**
5377
- * DTO.TRADE.DETAIL.DEX_IMAGE
6881
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.NETWORK
5378
6882
  * @type {string}
5379
- * @memberof TradeDetailDTO
6883
+ * @memberof TransferBaseResponseDTO
5380
6884
  */
5381
- dexImage: string;
6885
+ network: string;
5382
6886
  /**
5383
- * DTO.TRADE.DETAIL.TOKEN_AMOUNT
6887
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.TRANSFER_REFERENCE
5384
6888
  * @type {string}
5385
- * @memberof TradeDetailDTO
6889
+ * @memberof TransferBaseResponseDTO
5386
6890
  */
5387
- tokenAmount: string;
6891
+ transferReference: string;
5388
6892
  /**
5389
- * DTO.TRADE.DETAIL.TOKEN_PRICE_IN_USD
6893
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.MEMO
5390
6894
  * @type {string}
5391
- * @memberof TradeDetailDTO
6895
+ * @memberof TransferBaseResponseDTO
5392
6896
  */
5393
- tokenPriceInUsd: string;
6897
+ memo: string;
5394
6898
  /**
5395
- * DTO.TRADE.DETAIL.TOKEN_AMOUNT_IN_USD
6899
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.TX
5396
6900
  * @type {string}
5397
- * @memberof TradeDetailDTO
6901
+ * @memberof TransferBaseResponseDTO
5398
6902
  */
5399
- tokenAmountInUsd: string;
6903
+ tx: string;
5400
6904
  /**
5401
- * DTO.TRADE.DETAIL.TYPE
5402
- * @type {string}
5403
- * @memberof TradeDetailDTO
6905
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.IDX
6906
+ * @type {number}
6907
+ * @memberof TransferBaseResponseDTO
5404
6908
  */
5405
- type: string;
6909
+ idx: number;
5406
6910
  /**
5407
- * DTO.TRADE.DETAIL.SIDE_TOKEN_NAME
5408
- * @type {string}
5409
- * @memberof TradeDetailDTO
6911
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.USD_AMOUNT
6912
+ * @type {number}
6913
+ * @memberof TransferBaseResponseDTO
5410
6914
  */
5411
- sideTokenName: string;
6915
+ usdAmount: number;
5412
6916
  /**
5413
- * DTO.TRADE.DETAIL.SIDE_TOKEN_SYMBOL
5414
- * @type {string}
5415
- * @memberof TradeDetailDTO
6917
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.ASSET_AMOUNT
6918
+ * @type {number}
6919
+ * @memberof TransferBaseResponseDTO
5416
6920
  */
5417
- sideTokenSymbol: string;
6921
+ assetAmount: number;
5418
6922
  /**
5419
- * DTO.TRADE.DETAIL.SIDE_TOKEN_IMAGE_URL
6923
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.TIMESTAMP
5420
6924
  * @type {string}
5421
- * @memberof TradeDetailDTO
6925
+ * @memberof TransferBaseResponseDTO
5422
6926
  */
5423
- sideTokenImageUrl: string;
6927
+ timestamp: string;
5424
6928
  /**
5425
- * DTO.TRADE.DETAIL.SIDE_TOKEN_ADDRESS
6929
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.OUTPUT_ADDRESS
5426
6930
  * @type {string}
5427
- * @memberof TradeDetailDTO
6931
+ * @memberof TransferBaseResponseDTO
5428
6932
  */
5429
- sideTokenAddress: string;
6933
+ outputAddress: string;
5430
6934
  /**
5431
- * DTO.TRADE.DETAIL.SIDE_TOKEN_PRICE_IN_USD
6935
+ * DTO.KYT.TRANSFER_BASE_RESPONSE.EXTERNAL_ID
5432
6936
  * @type {string}
5433
- * @memberof TradeDetailDTO
6937
+ * @memberof TransferBaseResponseDTO
5434
6938
  */
5435
- sideTokenPriceInUsd: string;
6939
+ externalId: string;
6940
+ }
6941
+ /**
6942
+ * Check if a given object implements the TransferBaseResponseDTO interface.
6943
+ */
6944
+ declare function instanceOfTransferBaseResponseDTO(value: object): value is TransferBaseResponseDTO;
6945
+ declare function TransferBaseResponseDTOFromJSON(json: any): TransferBaseResponseDTO;
6946
+ declare function TransferBaseResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferBaseResponseDTO;
6947
+ declare function TransferBaseResponseDTOToJSON(json: any): TransferBaseResponseDTO;
6948
+ declare function TransferBaseResponseDTOToJSONTyped(value?: TransferBaseResponseDTO | null, ignoreDiscriminator?: boolean): any;
6949
+
6950
+ /**
6951
+ * Dex Aggregator API
6952
+ * Dex Aggregator API ⚡️
6953
+ *
6954
+ * The version of the OpenAPI document: 1.0
6955
+ * Contact: ai@sx.ai
6956
+ *
6957
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6958
+ * https://openapi-generator.tech
6959
+ * Do not edit the class manually.
6960
+ */
6961
+
6962
+ /**
6963
+ *
6964
+ * @export
6965
+ * @interface TransferDirectExposureResponseDTO
6966
+ */
6967
+ interface TransferDirectExposureResponseDTO {
5436
6968
  /**
5437
- * DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT
5438
- * @type {string}
5439
- * @memberof TradeDetailDTO
6969
+ * DTO.KYT.TRANSFER_DIRECT_EXPOSURE_RESPONSE.DIRECT
6970
+ * @type {DirectExposureDetail}
6971
+ * @memberof TransferDirectExposureResponseDTO
5440
6972
  */
5441
- sideTokenAmount: string;
6973
+ direct: DirectExposureDetail;
6974
+ }
6975
+ /**
6976
+ * Check if a given object implements the TransferDirectExposureResponseDTO interface.
6977
+ */
6978
+ declare function instanceOfTransferDirectExposureResponseDTO(value: object): value is TransferDirectExposureResponseDTO;
6979
+ declare function TransferDirectExposureResponseDTOFromJSON(json: any): TransferDirectExposureResponseDTO;
6980
+ declare function TransferDirectExposureResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferDirectExposureResponseDTO;
6981
+ declare function TransferDirectExposureResponseDTOToJSON(json: any): TransferDirectExposureResponseDTO;
6982
+ declare function TransferDirectExposureResponseDTOToJSONTyped(value?: TransferDirectExposureResponseDTO | null, ignoreDiscriminator?: boolean): any;
6983
+
6984
+ /**
6985
+ * Dex Aggregator API
6986
+ * Dex Aggregator API ⚡️
6987
+ *
6988
+ * The version of the OpenAPI document: 1.0
6989
+ * Contact: ai@sx.ai
6990
+ *
6991
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6992
+ * https://openapi-generator.tech
6993
+ * Do not edit the class manually.
6994
+ */
6995
+
6996
+ /**
6997
+ *
6998
+ * @export
6999
+ * @interface TransferNetworkIdentificationsResponseDTO
7000
+ */
7001
+ interface TransferNetworkIdentificationsResponseDTO {
5442
7002
  /**
5443
- * DTO.TRADE.DETAIL.SIDE_TOKEN_AMOUNT_IN_USD
5444
- * @type {string}
5445
- * @memberof TradeDetailDTO
7003
+ * DTO.KYT.TRANSFER_NETWORK_IDENTIFICATIONS_RESPONSE.COUNT
7004
+ * @type {number}
7005
+ * @memberof TransferNetworkIdentificationsResponseDTO
5446
7006
  */
5447
- sideTokenAmountInUsd: string;
7007
+ count: number;
5448
7008
  /**
5449
- * DTO.TRADE.DETAIL.STATUS
5450
- * @type {string}
5451
- * @memberof TradeDetailDTO
7009
+ * DTO.KYT.TRANSFER_NETWORK_IDENTIFICATIONS_RESPONSE.NETWORK_IDENTIFICATION_ORGS
7010
+ * @type {Array<NetworkIdentificationOrg>}
7011
+ * @memberof TransferNetworkIdentificationsResponseDTO
5452
7012
  */
5453
- status: string;
7013
+ networkIdentificationOrgs: Array<NetworkIdentificationOrg>;
5454
7014
  }
5455
7015
  /**
5456
- * Check if a given object implements the TradeDetailDTO interface.
7016
+ * Check if a given object implements the TransferNetworkIdentificationsResponseDTO interface.
5457
7017
  */
5458
- declare function instanceOfTradeDetailDTO(value: object): value is TradeDetailDTO;
5459
- declare function TradeDetailDTOFromJSON(json: any): TradeDetailDTO;
5460
- declare function TradeDetailDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradeDetailDTO;
5461
- declare function TradeDetailDTOToJSON(json: any): TradeDetailDTO;
5462
- declare function TradeDetailDTOToJSONTyped(value?: TradeDetailDTO | null, ignoreDiscriminator?: boolean): any;
7018
+ declare function instanceOfTransferNetworkIdentificationsResponseDTO(value: object): value is TransferNetworkIdentificationsResponseDTO;
7019
+ declare function TransferNetworkIdentificationsResponseDTOFromJSON(json: any): TransferNetworkIdentificationsResponseDTO;
7020
+ declare function TransferNetworkIdentificationsResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferNetworkIdentificationsResponseDTO;
7021
+ declare function TransferNetworkIdentificationsResponseDTOToJSON(json: any): TransferNetworkIdentificationsResponseDTO;
7022
+ declare function TransferNetworkIdentificationsResponseDTOToJSONTyped(value?: TransferNetworkIdentificationsResponseDTO | null, ignoreDiscriminator?: boolean): any;
5463
7023
 
5464
7024
  /**
5465
7025
  * Dex Aggregator API
@@ -5472,58 +7032,75 @@ declare function TradeDetailDTOToJSONTyped(value?: TradeDetailDTO | null, ignore
5472
7032
  * https://openapi-generator.tech
5473
7033
  * Do not edit the class manually.
5474
7034
  */
5475
-
5476
7035
  /**
5477
7036
  *
5478
7037
  * @export
5479
- * @interface TradePage
7038
+ * @interface UpdateEndpointInput
5480
7039
  */
5481
- interface TradePage {
7040
+ interface UpdateEndpointInput {
5482
7041
  /**
5483
- * DTO.PAGE.HAS_NEXT
5484
- * @type {boolean}
5485
- * @memberof TradePage
7042
+ * DTO.ENDPOINT.ENDPOINT_ID
7043
+ * @type {string}
7044
+ * @memberof UpdateEndpointInput
5486
7045
  */
5487
- hasNext?: boolean;
7046
+ endpointId?: string;
5488
7047
  /**
5489
- * DTO.PAGE.HAS_PREV
5490
- * @type {boolean}
5491
- * @memberof TradePage
7048
+ * DTO.ENDPOINT.CHANNELS
7049
+ * @type {Array<string>}
7050
+ * @memberof UpdateEndpointInput
5492
7051
  */
5493
- hasPrev?: boolean;
7052
+ channels?: Array<string>;
5494
7053
  /**
5495
- * DTO.PAGE.START_CURSOR
7054
+ * DTO.ENDPOINT.DESCRIPTION
5496
7055
  * @type {string}
5497
- * @memberof TradePage
7056
+ * @memberof UpdateEndpointInput
5498
7057
  */
5499
- startCursor?: string;
7058
+ description?: string;
5500
7059
  /**
5501
- * DTO.PAGE.END_CURSOR
5502
- * @type {string}
5503
- * @memberof TradePage
7060
+ * DTO.ENDPOINT.DISABLED
7061
+ * @type {boolean}
7062
+ * @memberof UpdateEndpointInput
5504
7063
  */
5505
- endCursor?: string;
7064
+ disabled?: boolean;
5506
7065
  /**
5507
- * DTO.PAGE.TOTAL
7066
+ * DTO.ENDPOINT.FILTER_TYPES
7067
+ * @type {Array<string>}
7068
+ * @memberof UpdateEndpointInput
7069
+ */
7070
+ filterTypes?: Array<string>;
7071
+ /**
7072
+ * DTO.ENDPOINT.METADATA
7073
+ * @type {object}
7074
+ * @memberof UpdateEndpointInput
7075
+ */
7076
+ metadata?: object;
7077
+ /**
7078
+ * DTO.ENDPOINT.RATE_LIMIT
5508
7079
  * @type {number}
5509
- * @memberof TradePage
7080
+ * @memberof UpdateEndpointInput
5510
7081
  */
5511
- total?: number;
7082
+ rateLimit?: number;
5512
7083
  /**
5513
- * DTO.TRADE.PAGE.DATA
5514
- * @type {Array<TradeDetailDTO>}
5515
- * @memberof TradePage
7084
+ * DTO.ENDPOINT.URL
7085
+ * @type {string}
7086
+ * @memberof UpdateEndpointInput
5516
7087
  */
5517
- data: Array<TradeDetailDTO>;
7088
+ url?: string;
7089
+ /**
7090
+ * DTO.ENDPOINT.FILTER
7091
+ * @type {string}
7092
+ * @memberof UpdateEndpointInput
7093
+ */
7094
+ filter?: string;
5518
7095
  }
5519
7096
  /**
5520
- * Check if a given object implements the TradePage interface.
7097
+ * Check if a given object implements the UpdateEndpointInput interface.
5521
7098
  */
5522
- declare function instanceOfTradePage(value: object): value is TradePage;
5523
- declare function TradePageFromJSON(json: any): TradePage;
5524
- declare function TradePageFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradePage;
5525
- declare function TradePageToJSON(json: any): TradePage;
5526
- declare function TradePageToJSONTyped(value?: TradePage | null, ignoreDiscriminator?: boolean): any;
7099
+ declare function instanceOfUpdateEndpointInput(value: object): value is UpdateEndpointInput;
7100
+ declare function UpdateEndpointInputFromJSON(json: any): UpdateEndpointInput;
7101
+ declare function UpdateEndpointInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateEndpointInput;
7102
+ declare function UpdateEndpointInputToJSON(json: any): UpdateEndpointInput;
7103
+ declare function UpdateEndpointInputToJSONTyped(value?: UpdateEndpointInput | null, ignoreDiscriminator?: boolean): any;
5527
7104
 
5528
7105
  /**
5529
7106
  * Dex Aggregator API
@@ -5838,80 +7415,241 @@ interface WalletPnlDTO {
5838
7415
  */
5839
7416
  buys: number;
5840
7417
  /**
5841
- * DTO.WALLET.PNL.SELL_AMOUNT
5842
- * @type {number}
5843
- * @memberof WalletPnlDTO
7418
+ * DTO.WALLET.PNL.SELL_AMOUNT
7419
+ * @type {number}
7420
+ * @memberof WalletPnlDTO
7421
+ */
7422
+ sellAmount: number;
7423
+ /**
7424
+ * DTO.WALLET.PNL.SELL_AMOUNT_USD
7425
+ * @type {number}
7426
+ * @memberof WalletPnlDTO
7427
+ */
7428
+ sellAmountInUsd: number;
7429
+ /**
7430
+ * DTO.WALLET.PNL.SELLS
7431
+ * @type {number}
7432
+ * @memberof WalletPnlDTO
7433
+ */
7434
+ sells: number;
7435
+ /**
7436
+ * DTO.WALLET.PNL.AVERAGE_BUY_PRICE
7437
+ * @type {number}
7438
+ * @memberof WalletPnlDTO
7439
+ */
7440
+ averageBuyPriceInUsd: number;
7441
+ /**
7442
+ * DTO.WALLET.PNL.AVERAGE_SELL_PRICE
7443
+ * @type {number}
7444
+ * @memberof WalletPnlDTO
7445
+ */
7446
+ averageSellPriceInUsd: number;
7447
+ /**
7448
+ * DTO.WALLET.PNL.UNREALIZED_PROFIT
7449
+ * @type {number}
7450
+ * @memberof WalletPnlDTO
7451
+ */
7452
+ unrealizedProfitInUsd: number;
7453
+ /**
7454
+ * DTO.WALLET.PNL.UNREALIZED_PROFIT_RATIO
7455
+ * @type {number}
7456
+ * @memberof WalletPnlDTO
7457
+ */
7458
+ unrealizedProfitRatio: number;
7459
+ /**
7460
+ * DTO.WALLET.PNL.REALIZED_PROFIT
7461
+ * @type {number}
7462
+ * @memberof WalletPnlDTO
7463
+ */
7464
+ realizedProfitInUsd: number;
7465
+ /**
7466
+ * DTO.WALLET.PNL.REALIZED_PROFIT_RATIO
7467
+ * @type {number}
7468
+ * @memberof WalletPnlDTO
7469
+ */
7470
+ realizedProfitRatio: number;
7471
+ /**
7472
+ * DTO.WALLET.PNL.TOTAL_REALIZED_PROFIT
7473
+ * @type {number}
7474
+ * @memberof WalletPnlDTO
7475
+ */
7476
+ totalRealizedProfitInUsd: number;
7477
+ /**
7478
+ * DTO.WALLET.PNL.TOTAL_REALIZED_PROFIT_RATIO
7479
+ * @type {number}
7480
+ * @memberof WalletPnlDTO
7481
+ */
7482
+ totalRealizedProfitRatio: number;
7483
+ }
7484
+ /**
7485
+ * Check if a given object implements the WalletPnlDTO interface.
7486
+ */
7487
+ declare function instanceOfWalletPnlDTO(value: object): value is WalletPnlDTO;
7488
+ declare function WalletPnlDTOFromJSON(json: any): WalletPnlDTO;
7489
+ declare function WalletPnlDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletPnlDTO;
7490
+ declare function WalletPnlDTOToJSON(json: any): WalletPnlDTO;
7491
+ declare function WalletPnlDTOToJSONTyped(value?: WalletPnlDTO | null, ignoreDiscriminator?: boolean): any;
7492
+
7493
+ /**
7494
+ * Dex Aggregator API
7495
+ * Dex Aggregator API ⚡️
7496
+ *
7497
+ * The version of the OpenAPI document: 1.0
7498
+ * Contact: ai@sx.ai
7499
+ *
7500
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7501
+ * https://openapi-generator.tech
7502
+ * Do not edit the class manually.
7503
+ */
7504
+
7505
+ /**
7506
+ *
7507
+ * @export
7508
+ * @interface WithdrawalAddressIdentificationsResponseDTO
7509
+ */
7510
+ interface WithdrawalAddressIdentificationsResponseDTO {
7511
+ /**
7512
+ * DTO.KYT.WITHDRAWAL_ADDRESS_IDENTIFICATIONS_RESPONSE.CHAINALYSIS_IDENTIFICATIONS
7513
+ * @type {Array<ChainalysisAddressIdentification>}
7514
+ * @memberof WithdrawalAddressIdentificationsResponseDTO
7515
+ */
7516
+ chainalysisIdentifications: Array<ChainalysisAddressIdentification>;
7517
+ /**
7518
+ * DTO.KYT.WITHDRAWAL_ADDRESS_IDENTIFICATIONS_RESPONSE.CUSTOM_ADDRESSES
7519
+ * @type {Array<string>}
7520
+ * @memberof WithdrawalAddressIdentificationsResponseDTO
7521
+ */
7522
+ customAddresses: Array<string>;
7523
+ }
7524
+ /**
7525
+ * Check if a given object implements the WithdrawalAddressIdentificationsResponseDTO interface.
7526
+ */
7527
+ declare function instanceOfWithdrawalAddressIdentificationsResponseDTO(value: object): value is WithdrawalAddressIdentificationsResponseDTO;
7528
+ declare function WithdrawalAddressIdentificationsResponseDTOFromJSON(json: any): WithdrawalAddressIdentificationsResponseDTO;
7529
+ declare function WithdrawalAddressIdentificationsResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): WithdrawalAddressIdentificationsResponseDTO;
7530
+ declare function WithdrawalAddressIdentificationsResponseDTOToJSON(json: any): WithdrawalAddressIdentificationsResponseDTO;
7531
+ declare function WithdrawalAddressIdentificationsResponseDTOToJSONTyped(value?: WithdrawalAddressIdentificationsResponseDTO | null, ignoreDiscriminator?: boolean): any;
7532
+
7533
+ /**
7534
+ * Dex Aggregator API
7535
+ * Dex Aggregator API ⚡️
7536
+ *
7537
+ * The version of the OpenAPI document: 1.0
7538
+ * Contact: ai@sx.ai
7539
+ *
7540
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7541
+ * https://openapi-generator.tech
7542
+ * Do not edit the class manually.
7543
+ */
7544
+ /**
7545
+ *
7546
+ * @export
7547
+ * @interface WithdrawalBaseResponseDTO
7548
+ */
7549
+ interface WithdrawalBaseResponseDTO {
7550
+ /**
7551
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.ASSET
7552
+ * @type {string}
7553
+ * @memberof WithdrawalBaseResponseDTO
5844
7554
  */
5845
- sellAmount: number;
7555
+ asset: string;
5846
7556
  /**
5847
- * DTO.WALLET.PNL.SELL_AMOUNT_USD
5848
- * @type {number}
5849
- * @memberof WalletPnlDTO
7557
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.ASSET_ID
7558
+ * @type {string}
7559
+ * @memberof WithdrawalBaseResponseDTO
5850
7560
  */
5851
- sellAmountInUsd: number;
7561
+ assetId: string;
5852
7562
  /**
5853
- * DTO.WALLET.PNL.SELLS
5854
- * @type {number}
5855
- * @memberof WalletPnlDTO
7563
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.NETWORK
7564
+ * @type {string}
7565
+ * @memberof WithdrawalBaseResponseDTO
5856
7566
  */
5857
- sells: number;
7567
+ network: string;
5858
7568
  /**
5859
- * DTO.WALLET.PNL.AVERAGE_BUY_PRICE
5860
- * @type {number}
5861
- * @memberof WalletPnlDTO
7569
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.ADDRESS
7570
+ * @type {string}
7571
+ * @memberof WithdrawalBaseResponseDTO
5862
7572
  */
5863
- averageBuyPriceInUsd: number;
7573
+ address: string;
5864
7574
  /**
5865
- * DTO.WALLET.PNL.AVERAGE_SELL_PRICE
5866
- * @type {number}
5867
- * @memberof WalletPnlDTO
7575
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.MEMO
7576
+ * @type {string}
7577
+ * @memberof WithdrawalBaseResponseDTO
5868
7578
  */
5869
- averageSellPriceInUsd: number;
7579
+ memo: string;
5870
7580
  /**
5871
- * DTO.WALLET.PNL.UNREALIZED_PROFIT
5872
- * @type {number}
5873
- * @memberof WalletPnlDTO
7581
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.ATTEMPT_IDENTIFIER
7582
+ * @type {string}
7583
+ * @memberof WithdrawalBaseResponseDTO
5874
7584
  */
5875
- unrealizedProfitInUsd: number;
7585
+ attemptIdentifier: string;
5876
7586
  /**
5877
- * DTO.WALLET.PNL.UNREALIZED_PROFIT_RATIO
7587
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.ASSET_AMOUNT
5878
7588
  * @type {number}
5879
- * @memberof WalletPnlDTO
7589
+ * @memberof WithdrawalBaseResponseDTO
5880
7590
  */
5881
- unrealizedProfitRatio: number;
7591
+ assetAmount: number;
5882
7592
  /**
5883
- * DTO.WALLET.PNL.REALIZED_PROFIT
5884
- * @type {number}
5885
- * @memberof WalletPnlDTO
7593
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.EXTERNAL_ID
7594
+ * @type {string}
7595
+ * @memberof WithdrawalBaseResponseDTO
5886
7596
  */
5887
- realizedProfitInUsd: number;
7597
+ externalId: string;
5888
7598
  /**
5889
- * DTO.WALLET.PNL.REALIZED_PROFIT_RATIO
7599
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.USD_AMOUNT
5890
7600
  * @type {number}
5891
- * @memberof WalletPnlDTO
7601
+ * @memberof WithdrawalBaseResponseDTO
5892
7602
  */
5893
- realizedProfitRatio: number;
7603
+ usdAmount: number;
5894
7604
  /**
5895
- * DTO.WALLET.PNL.TOTAL_REALIZED_PROFIT
5896
- * @type {number}
5897
- * @memberof WalletPnlDTO
7605
+ * DTO.KYT.WITHDRAWAL_BASE_RESPONSE.UPDATED_AT
7606
+ * @type {string}
7607
+ * @memberof WithdrawalBaseResponseDTO
5898
7608
  */
5899
- totalRealizedProfitInUsd: number;
7609
+ updatedAt: string;
7610
+ }
7611
+ /**
7612
+ * Check if a given object implements the WithdrawalBaseResponseDTO interface.
7613
+ */
7614
+ declare function instanceOfWithdrawalBaseResponseDTO(value: object): value is WithdrawalBaseResponseDTO;
7615
+ declare function WithdrawalBaseResponseDTOFromJSON(json: any): WithdrawalBaseResponseDTO;
7616
+ declare function WithdrawalBaseResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): WithdrawalBaseResponseDTO;
7617
+ declare function WithdrawalBaseResponseDTOToJSON(json: any): WithdrawalBaseResponseDTO;
7618
+ declare function WithdrawalBaseResponseDTOToJSONTyped(value?: WithdrawalBaseResponseDTO | null, ignoreDiscriminator?: boolean): any;
7619
+
7620
+ /**
7621
+ * Dex Aggregator API
7622
+ * Dex Aggregator API ⚡️
7623
+ *
7624
+ * The version of the OpenAPI document: 1.0
7625
+ * Contact: ai@sx.ai
7626
+ *
7627
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7628
+ * https://openapi-generator.tech
7629
+ * Do not edit the class manually.
7630
+ */
7631
+
7632
+ /**
7633
+ *
7634
+ * @export
7635
+ * @interface WithdrawalFraudAssessmentResponseDTO
7636
+ */
7637
+ interface WithdrawalFraudAssessmentResponseDTO {
5900
7638
  /**
5901
- * DTO.WALLET.PNL.TOTAL_REALIZED_PROFIT_RATIO
5902
- * @type {number}
5903
- * @memberof WalletPnlDTO
7639
+ * DTO.KYT.WITHDRAWAL_FRAUD_ASSESSMENT_RESPONSE.ALTERYA_IDENTIFICATIONS
7640
+ * @type {Array<AlteryaIdentification>}
7641
+ * @memberof WithdrawalFraudAssessmentResponseDTO
5904
7642
  */
5905
- totalRealizedProfitRatio: number;
7643
+ alteryaIdentifications: Array<AlteryaIdentification>;
5906
7644
  }
5907
7645
  /**
5908
- * Check if a given object implements the WalletPnlDTO interface.
7646
+ * Check if a given object implements the WithdrawalFraudAssessmentResponseDTO interface.
5909
7647
  */
5910
- declare function instanceOfWalletPnlDTO(value: object): value is WalletPnlDTO;
5911
- declare function WalletPnlDTOFromJSON(json: any): WalletPnlDTO;
5912
- declare function WalletPnlDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletPnlDTO;
5913
- declare function WalletPnlDTOToJSON(json: any): WalletPnlDTO;
5914
- declare function WalletPnlDTOToJSONTyped(value?: WalletPnlDTO | null, ignoreDiscriminator?: boolean): any;
7648
+ declare function instanceOfWithdrawalFraudAssessmentResponseDTO(value: object): value is WithdrawalFraudAssessmentResponseDTO;
7649
+ declare function WithdrawalFraudAssessmentResponseDTOFromJSON(json: any): WithdrawalFraudAssessmentResponseDTO;
7650
+ declare function WithdrawalFraudAssessmentResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): WithdrawalFraudAssessmentResponseDTO;
7651
+ declare function WithdrawalFraudAssessmentResponseDTOToJSON(json: any): WithdrawalFraudAssessmentResponseDTO;
7652
+ declare function WithdrawalFraudAssessmentResponseDTOToJSONTyped(value?: WithdrawalFraudAssessmentResponseDTO | null, ignoreDiscriminator?: boolean): any;
5915
7653
 
5916
7654
  /**
5917
7655
  * Dex Aggregator API
@@ -6163,6 +7901,125 @@ declare class DexPoolApi extends BaseAPI {
6163
7901
  getDexpool(requestParameters: GetDexpoolRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<DexPoolDTO>;
6164
7902
  }
6165
7903
 
7904
+ /**
7905
+ * Dex Aggregator API
7906
+ * Dex Aggregator API ⚡️
7907
+ *
7908
+ * The version of the OpenAPI document: 1.0
7909
+ * Contact: ai@sx.ai
7910
+ *
7911
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7912
+ * https://openapi-generator.tech
7913
+ * Do not edit the class manually.
7914
+ */
7915
+
7916
+ interface CreateEndpointRequest {
7917
+ createEndpointInput: CreateEndpointInput;
7918
+ }
7919
+ interface DeleteEndpointRequest {
7920
+ id: string;
7921
+ }
7922
+ interface GetEndpointRequest {
7923
+ id: string;
7924
+ }
7925
+ interface GetEndpointSecretRequest {
7926
+ id: string;
7927
+ }
7928
+ interface ListEndpointsRequest {
7929
+ limit?: number;
7930
+ iterator?: string;
7931
+ order?: ListEndpointsOrderEnum;
7932
+ }
7933
+ interface RotateEndpointSecretRequest {
7934
+ id: string;
7935
+ }
7936
+ interface UpdateEndpointRequest {
7937
+ updateEndpointInput: UpdateEndpointInput;
7938
+ }
7939
+ /**
7940
+ *
7941
+ */
7942
+ declare class EndpointApi extends BaseAPI {
7943
+ /**
7944
+ * CONTROLLER.ENDPOINT.CREATE.DESCRIPTION
7945
+ * CONTROLLER.ENDPOINT.CREATE.SUMMARY
7946
+ */
7947
+ createEndpointRaw(requestParameters: CreateEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointResponse>>;
7948
+ /**
7949
+ * CONTROLLER.ENDPOINT.CREATE.DESCRIPTION
7950
+ * CONTROLLER.ENDPOINT.CREATE.SUMMARY
7951
+ */
7952
+ createEndpoint(requestParameters: CreateEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointResponse>;
7953
+ /**
7954
+ * CONTROLLER.ENDPOINT.DELETE.DESCRIPTION
7955
+ * CONTROLLER.ENDPOINT.DELETE.SUMMARY
7956
+ */
7957
+ deleteEndpointRaw(requestParameters: DeleteEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointOperationResponse>>;
7958
+ /**
7959
+ * CONTROLLER.ENDPOINT.DELETE.DESCRIPTION
7960
+ * CONTROLLER.ENDPOINT.DELETE.SUMMARY
7961
+ */
7962
+ deleteEndpoint(requestParameters: DeleteEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointOperationResponse>;
7963
+ /**
7964
+ * CONTROLLER.ENDPOINT.GET.DESCRIPTION
7965
+ * CONTROLLER.ENDPOINT.GET.SUMMARY
7966
+ */
7967
+ getEndpointRaw(requestParameters: GetEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointResponse>>;
7968
+ /**
7969
+ * CONTROLLER.ENDPOINT.GET.DESCRIPTION
7970
+ * CONTROLLER.ENDPOINT.GET.SUMMARY
7971
+ */
7972
+ getEndpoint(requestParameters: GetEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointResponse>;
7973
+ /**
7974
+ * CONTROLLER.ENDPOINT.GET.SECRET.DESCRIPTION
7975
+ * CONTROLLER.ENDPOINT.GET.SECRET.SUMMARY
7976
+ */
7977
+ getEndpointSecretRaw(requestParameters: GetEndpointSecretRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointSecretResponse>>;
7978
+ /**
7979
+ * CONTROLLER.ENDPOINT.GET.SECRET.DESCRIPTION
7980
+ * CONTROLLER.ENDPOINT.GET.SECRET.SUMMARY
7981
+ */
7982
+ getEndpointSecret(requestParameters: GetEndpointSecretRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointSecretResponse>;
7983
+ /**
7984
+ * CONTROLLER.ENDPOINT.LIST.DESCRIPTION
7985
+ * CONTROLLER.ENDPOINT.LIST.SUMMARY
7986
+ */
7987
+ listEndpointsRaw(requestParameters: ListEndpointsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointListResponse>>;
7988
+ /**
7989
+ * CONTROLLER.ENDPOINT.LIST.DESCRIPTION
7990
+ * CONTROLLER.ENDPOINT.LIST.SUMMARY
7991
+ */
7992
+ listEndpoints(requestParameters?: ListEndpointsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointListResponse>;
7993
+ /**
7994
+ * CONTROLLER.ENDPOINT.ROTATE.DESCRIPTION
7995
+ * CONTROLLER.ENDPOINT.ROTATE.SUMMARY
7996
+ */
7997
+ rotateEndpointSecretRaw(requestParameters: RotateEndpointSecretRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointOperationResponse>>;
7998
+ /**
7999
+ * CONTROLLER.ENDPOINT.ROTATE.DESCRIPTION
8000
+ * CONTROLLER.ENDPOINT.ROTATE.SUMMARY
8001
+ */
8002
+ rotateEndpointSecret(requestParameters: RotateEndpointSecretRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointOperationResponse>;
8003
+ /**
8004
+ * CONTROLLER.ENDPOINT.UPDATE.DESCRIPTION
8005
+ * CONTROLLER.ENDPOINT.UPDATE.SUMMARY
8006
+ */
8007
+ updateEndpointRaw(requestParameters: UpdateEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EndpointResponse>>;
8008
+ /**
8009
+ * CONTROLLER.ENDPOINT.UPDATE.DESCRIPTION
8010
+ * CONTROLLER.ENDPOINT.UPDATE.SUMMARY
8011
+ */
8012
+ updateEndpoint(requestParameters: UpdateEndpointRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EndpointResponse>;
8013
+ }
8014
+ /**
8015
+ * @export
8016
+ */
8017
+ declare const ListEndpointsOrderEnum: {
8018
+ readonly Ascending: "ascending";
8019
+ readonly Descending: "descending";
8020
+ };
8021
+ type ListEndpointsOrderEnum = typeof ListEndpointsOrderEnum[keyof typeof ListEndpointsOrderEnum];
8022
+
6166
8023
  /**
6167
8024
  * Dex Aggregator API
6168
8025
  * Dex Aggregator API ⚡️
@@ -6235,6 +8092,248 @@ declare class JobsApi extends BaseAPI {
6235
8092
  streaming(requestParameters: StreamingRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<JobStreamingDTO>;
6236
8093
  }
6237
8094
 
8095
+ /**
8096
+ * Dex Aggregator API
8097
+ * Dex Aggregator API ⚡️
8098
+ *
8099
+ * The version of the OpenAPI document: 1.0
8100
+ * Contact: ai@sx.ai
8101
+ *
8102
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8103
+ * https://openapi-generator.tech
8104
+ * Do not edit the class manually.
8105
+ */
8106
+
8107
+ interface GetAddressRiskRequest {
8108
+ address: string;
8109
+ }
8110
+ interface GetKytAddressesRequest {
8111
+ page?: number;
8112
+ pageSize?: number;
8113
+ }
8114
+ interface GetKytTransfersRequest {
8115
+ page?: number;
8116
+ pageSize?: number;
8117
+ }
8118
+ interface GetKytWithdrawalsRequest {
8119
+ page?: number;
8120
+ pageSize?: number;
8121
+ }
8122
+ interface GetTransferAlertsRequest {
8123
+ transferId: string;
8124
+ }
8125
+ interface GetTransferDirectExposureRequest {
8126
+ transferId: string;
8127
+ }
8128
+ interface GetTransferNetworkIdentificationsRequest {
8129
+ transferId: string;
8130
+ }
8131
+ interface GetTransferSummaryRequest {
8132
+ transferId: string;
8133
+ }
8134
+ interface GetWithdrawalAddressIdentificationsRequest {
8135
+ withdrawalId: string;
8136
+ }
8137
+ interface GetWithdrawalAlertsRequest {
8138
+ withdrawalId: string;
8139
+ }
8140
+ interface GetWithdrawalDirectExposureRequest {
8141
+ withdrawalId: string;
8142
+ }
8143
+ interface GetWithdrawalFraudAssessmentRequest {
8144
+ withdrawalId: string;
8145
+ }
8146
+ interface GetWithdrawalNetworkIdentificationsRequest {
8147
+ withdrawalId: string;
8148
+ }
8149
+ interface GetWithdrawalSummaryRequest {
8150
+ withdrawalId: string;
8151
+ }
8152
+ interface RegisterAddressOperationRequest {
8153
+ registerAddressRequest: RegisterAddressRequest;
8154
+ }
8155
+ interface RegisterTransferRequest {
8156
+ kYTRegisterTransferRequest: KYTRegisterTransferRequest;
8157
+ }
8158
+ interface RegisterWithdrawalRequest {
8159
+ kYTRegisterWithdrawalRequest: KYTRegisterWithdrawalRequest;
8160
+ }
8161
+ /**
8162
+ *
8163
+ */
8164
+ declare class KYTApi extends BaseAPI {
8165
+ /**
8166
+ * CONTROLLER.KYT.GET_ADDRESS_RISK.DESCRIPTION
8167
+ * CONTROLLER.KYT.GET_ADDRESS_RISK.SUMMARY
8168
+ */
8169
+ getAddressRiskRaw(requestParameters: GetAddressRiskRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<AddressRiskResponseDTO>>;
8170
+ /**
8171
+ * CONTROLLER.KYT.GET_ADDRESS_RISK.DESCRIPTION
8172
+ * CONTROLLER.KYT.GET_ADDRESS_RISK.SUMMARY
8173
+ */
8174
+ getAddressRisk(requestParameters: GetAddressRiskRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<AddressRiskResponseDTO>;
8175
+ /**
8176
+ * CONTROLLER.KYT.GET_KYT_ADDRESSES.DESCRIPTION
8177
+ * CONTROLLER.KYT.GET_KYT_ADDRESSES.SUMMARY
8178
+ */
8179
+ getKytAddressesRaw(requestParameters: GetKytAddressesRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<KytAddressPage>>;
8180
+ /**
8181
+ * CONTROLLER.KYT.GET_KYT_ADDRESSES.DESCRIPTION
8182
+ * CONTROLLER.KYT.GET_KYT_ADDRESSES.SUMMARY
8183
+ */
8184
+ getKytAddresses(requestParameters?: GetKytAddressesRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<KytAddressPage>;
8185
+ /**
8186
+ * CONTROLLER.KYT.GET_KYT_TRANSFERS.DESCRIPTION
8187
+ * CONTROLLER.KYT.GET_KYT_TRANSFERS.SUMMARY
8188
+ */
8189
+ getKytTransfersRaw(requestParameters: GetKytTransfersRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<KytTransferPage>>;
8190
+ /**
8191
+ * CONTROLLER.KYT.GET_KYT_TRANSFERS.DESCRIPTION
8192
+ * CONTROLLER.KYT.GET_KYT_TRANSFERS.SUMMARY
8193
+ */
8194
+ getKytTransfers(requestParameters?: GetKytTransfersRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<KytTransferPage>;
8195
+ /**
8196
+ * CONTROLLER.KYT.GET_KYT_WITHDRAWALS.DESCRIPTION
8197
+ * CONTROLLER.KYT.GET_KYT_WITHDRAWALS.SUMMARY
8198
+ */
8199
+ getKytWithdrawalsRaw(requestParameters: GetKytWithdrawalsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<KytWithdrawalPage>>;
8200
+ /**
8201
+ * CONTROLLER.KYT.GET_KYT_WITHDRAWALS.DESCRIPTION
8202
+ * CONTROLLER.KYT.GET_KYT_WITHDRAWALS.SUMMARY
8203
+ */
8204
+ getKytWithdrawals(requestParameters?: GetKytWithdrawalsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<KytWithdrawalPage>;
8205
+ /**
8206
+ * CONTROLLER.KYT.GET_TRANSFER_ALERTS.DESCRIPTION
8207
+ * CONTROLLER.KYT.GET_TRANSFER_ALERTS.SUMMARY
8208
+ */
8209
+ getTransferAlertsRaw(requestParameters: GetTransferAlertsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferAlertsResponseDTO>>;
8210
+ /**
8211
+ * CONTROLLER.KYT.GET_TRANSFER_ALERTS.DESCRIPTION
8212
+ * CONTROLLER.KYT.GET_TRANSFER_ALERTS.SUMMARY
8213
+ */
8214
+ getTransferAlerts(requestParameters: GetTransferAlertsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferAlertsResponseDTO>;
8215
+ /**
8216
+ * CONTROLLER.KYT.GET_TRANSFER_DIRECT_EXPOSURE.DESCRIPTION
8217
+ * CONTROLLER.KYT.GET_TRANSFER_DIRECT_EXPOSURE.SUMMARY
8218
+ */
8219
+ getTransferDirectExposureRaw(requestParameters: GetTransferDirectExposureRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferDirectExposureResponseDTO>>;
8220
+ /**
8221
+ * CONTROLLER.KYT.GET_TRANSFER_DIRECT_EXPOSURE.DESCRIPTION
8222
+ * CONTROLLER.KYT.GET_TRANSFER_DIRECT_EXPOSURE.SUMMARY
8223
+ */
8224
+ getTransferDirectExposure(requestParameters: GetTransferDirectExposureRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferDirectExposureResponseDTO>;
8225
+ /**
8226
+ * CONTROLLER.KYT.GET_TRANSFER_NETWORK_IDENTIFICATIONS.DESCRIPTION
8227
+ * CONTROLLER.KYT.GET_TRANSFER_NETWORK_IDENTIFICATIONS.SUMMARY
8228
+ */
8229
+ getTransferNetworkIdentificationsRaw(requestParameters: GetTransferNetworkIdentificationsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferNetworkIdentificationsResponseDTO>>;
8230
+ /**
8231
+ * CONTROLLER.KYT.GET_TRANSFER_NETWORK_IDENTIFICATIONS.DESCRIPTION
8232
+ * CONTROLLER.KYT.GET_TRANSFER_NETWORK_IDENTIFICATIONS.SUMMARY
8233
+ */
8234
+ getTransferNetworkIdentifications(requestParameters: GetTransferNetworkIdentificationsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferNetworkIdentificationsResponseDTO>;
8235
+ /**
8236
+ * CONTROLLER.KYT.GET_TRANSFER_SUMMARY.DESCRIPTION
8237
+ * CONTROLLER.KYT.GET_TRANSFER_SUMMARY.SUMMARY
8238
+ */
8239
+ getTransferSummaryRaw(requestParameters: GetTransferSummaryRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferBaseResponseDTO>>;
8240
+ /**
8241
+ * CONTROLLER.KYT.GET_TRANSFER_SUMMARY.DESCRIPTION
8242
+ * CONTROLLER.KYT.GET_TRANSFER_SUMMARY.SUMMARY
8243
+ */
8244
+ getTransferSummary(requestParameters: GetTransferSummaryRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferBaseResponseDTO>;
8245
+ /**
8246
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ADDRESS_IDENTIFICATIONS.DESCRIPTION
8247
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ADDRESS_IDENTIFICATIONS.SUMMARY
8248
+ */
8249
+ getWithdrawalAddressIdentificationsRaw(requestParameters: GetWithdrawalAddressIdentificationsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<WithdrawalAddressIdentificationsResponseDTO>>;
8250
+ /**
8251
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ADDRESS_IDENTIFICATIONS.DESCRIPTION
8252
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ADDRESS_IDENTIFICATIONS.SUMMARY
8253
+ */
8254
+ getWithdrawalAddressIdentifications(requestParameters: GetWithdrawalAddressIdentificationsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<WithdrawalAddressIdentificationsResponseDTO>;
8255
+ /**
8256
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ALERTS.DESCRIPTION
8257
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ALERTS.SUMMARY
8258
+ */
8259
+ getWithdrawalAlertsRaw(requestParameters: GetWithdrawalAlertsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferAlertsResponseDTO>>;
8260
+ /**
8261
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ALERTS.DESCRIPTION
8262
+ * CONTROLLER.KYT.GET_WITHDRAWAL_ALERTS.SUMMARY
8263
+ */
8264
+ getWithdrawalAlerts(requestParameters: GetWithdrawalAlertsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferAlertsResponseDTO>;
8265
+ /**
8266
+ * CONTROLLER.KYT.GET_WITHDRAWAL_DIRECT_EXPOSURE.DESCRIPTION
8267
+ * CONTROLLER.KYT.GET_WITHDRAWAL_DIRECT_EXPOSURE.SUMMARY
8268
+ */
8269
+ getWithdrawalDirectExposureRaw(requestParameters: GetWithdrawalDirectExposureRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferDirectExposureResponseDTO>>;
8270
+ /**
8271
+ * CONTROLLER.KYT.GET_WITHDRAWAL_DIRECT_EXPOSURE.DESCRIPTION
8272
+ * CONTROLLER.KYT.GET_WITHDRAWAL_DIRECT_EXPOSURE.SUMMARY
8273
+ */
8274
+ getWithdrawalDirectExposure(requestParameters: GetWithdrawalDirectExposureRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferDirectExposureResponseDTO>;
8275
+ /**
8276
+ * CONTROLLER.KYT.GET_WITHDRAWAL_FRAUD_ASSESSMENT.DESCRIPTION
8277
+ * CONTROLLER.KYT.GET_WITHDRAWAL_FRAUD_ASSESSMENT.SUMMARY
8278
+ */
8279
+ getWithdrawalFraudAssessmentRaw(requestParameters: GetWithdrawalFraudAssessmentRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<WithdrawalFraudAssessmentResponseDTO>>;
8280
+ /**
8281
+ * CONTROLLER.KYT.GET_WITHDRAWAL_FRAUD_ASSESSMENT.DESCRIPTION
8282
+ * CONTROLLER.KYT.GET_WITHDRAWAL_FRAUD_ASSESSMENT.SUMMARY
8283
+ */
8284
+ getWithdrawalFraudAssessment(requestParameters: GetWithdrawalFraudAssessmentRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<WithdrawalFraudAssessmentResponseDTO>;
8285
+ /**
8286
+ * CONTROLLER.KYT.GET_WITHDRAWAL_NETWORK_IDENTIFICATIONS.DESCRIPTION
8287
+ * CONTROLLER.KYT.GET_WITHDRAWAL_NETWORK_IDENTIFICATIONS.SUMMARY
8288
+ */
8289
+ getWithdrawalNetworkIdentificationsRaw(requestParameters: GetWithdrawalNetworkIdentificationsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferNetworkIdentificationsResponseDTO>>;
8290
+ /**
8291
+ * CONTROLLER.KYT.GET_WITHDRAWAL_NETWORK_IDENTIFICATIONS.DESCRIPTION
8292
+ * CONTROLLER.KYT.GET_WITHDRAWAL_NETWORK_IDENTIFICATIONS.SUMMARY
8293
+ */
8294
+ getWithdrawalNetworkIdentifications(requestParameters: GetWithdrawalNetworkIdentificationsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferNetworkIdentificationsResponseDTO>;
8295
+ /**
8296
+ * CONTROLLER.KYT.GET_WITHDRAWAL_SUMMARY.DESCRIPTION
8297
+ * CONTROLLER.KYT.GET_WITHDRAWAL_SUMMARY.SUMMARY
8298
+ */
8299
+ getWithdrawalSummaryRaw(requestParameters: GetWithdrawalSummaryRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<WithdrawalBaseResponseDTO>>;
8300
+ /**
8301
+ * CONTROLLER.KYT.GET_WITHDRAWAL_SUMMARY.DESCRIPTION
8302
+ * CONTROLLER.KYT.GET_WITHDRAWAL_SUMMARY.SUMMARY
8303
+ */
8304
+ getWithdrawalSummary(requestParameters: GetWithdrawalSummaryRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<WithdrawalBaseResponseDTO>;
8305
+ /**
8306
+ * CONTROLLER.KYT.REGISTER_ADDRESS.DESCRIPTION
8307
+ * CONTROLLER.KYT.REGISTER_ADDRESS.SUMMARY
8308
+ */
8309
+ registerAddressRaw(requestParameters: RegisterAddressOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<RegisterAddressResponseDTO>>;
8310
+ /**
8311
+ * CONTROLLER.KYT.REGISTER_ADDRESS.DESCRIPTION
8312
+ * CONTROLLER.KYT.REGISTER_ADDRESS.SUMMARY
8313
+ */
8314
+ registerAddress(requestParameters: RegisterAddressOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<RegisterAddressResponseDTO>;
8315
+ /**
8316
+ * CONTROLLER.KYT.REGISTER_TRANSFER.DESCRIPTION
8317
+ * CONTROLLER.KYT.REGISTER_TRANSFER.SUMMARY
8318
+ */
8319
+ registerTransferRaw(requestParameters: RegisterTransferRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TransferBaseResponseDTO>>;
8320
+ /**
8321
+ * CONTROLLER.KYT.REGISTER_TRANSFER.DESCRIPTION
8322
+ * CONTROLLER.KYT.REGISTER_TRANSFER.SUMMARY
8323
+ */
8324
+ registerTransfer(requestParameters: RegisterTransferRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TransferBaseResponseDTO>;
8325
+ /**
8326
+ * CONTROLLER.KYT.REGISTER_WITHDRAWAL.DESCRIPTION
8327
+ * CONTROLLER.KYT.REGISTER_WITHDRAWAL.SUMMARY
8328
+ */
8329
+ registerWithdrawalRaw(requestParameters: RegisterWithdrawalRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<WithdrawalBaseResponseDTO>>;
8330
+ /**
8331
+ * CONTROLLER.KYT.REGISTER_WITHDRAWAL.DESCRIPTION
8332
+ * CONTROLLER.KYT.REGISTER_WITHDRAWAL.SUMMARY
8333
+ */
8334
+ registerWithdrawal(requestParameters: RegisterWithdrawalRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<WithdrawalBaseResponseDTO>;
8335
+ }
8336
+
6238
8337
  /**
6239
8338
  * Dex Aggregator API
6240
8339
  * Dex Aggregator API ⚡️
@@ -7977,4 +10076,4 @@ declare class WatchlistApi extends BaseAPI {
7977
10076
  watchlistAdd(requestParameters: WatchlistAddRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<BooleanResultDTO>;
7978
10077
  }
7979
10078
 
7980
- export { type StreamingRequest as $, type ApiResponse as A, BaseAPI as B, type ConfigurationParameters as C, DefaultConfig as D, type ErrorContext as E, FetchError as F, type GetLatestBlockRequest as G, type HTTPMethod as H, type InitOverrideFunction as I, type Json as J, DefiSolanaPumpfunApi as K, type CreateTokenRequest as L, type ModelPropertyNaming as M, type ListDexRequest as N, type RouteRequest as O, type PumpfunCreateTokenRequest as P, type QuoteRequest as Q, ResponseError as R, type SwapRequest as S, TextApiResponse as T, DexApi as U, VoidApiResponse as V, QuoteDexEnum as W, type GetDexpoolRequest as X, DexPoolApi as Y, IpfsApi as Z, type GetRequest as _, BASE_PATH as a, ListTokenSortEnum as a$, JobsApi as a0, type GetFinalStretchTokensRequest as a1, type GetHotTokensRequest as a2, type GetMigratedTokensRequest as a3, type GetNewTokensRequest as a4, type GetStocksTokensRequest as a5, RankingApi as a6, GetFinalStretchTokensSortByEnum as a7, GetFinalStretchTokensSortDirectionEnum as a8, GetFinalStretchTokensTagEnum as a9, type GetHoldersRequest as aA, type GetHoldersMultiRequest as aB, type GetMarketDataRequest as aC, type GetMarketDataMultiRequest as aD, type GetMetadataRequest as aE, type GetMetadataMultiRequest as aF, type GetMintAndBurnRequest as aG, type GetPoolsRequest as aH, type GetPriceByTimeRequest as aI, type GetPricesRequest as aJ, type GetSecurityRequest as aK, type GetStatsRequest as aL, type GetStatsMultiRequest as aM, type GetTokenRequest as aN, type GetTokenTradersRequest as aO, type GetTokensRequest as aP, type GetTopHoldersRequest as aQ, type ListTokenRequest as aR, type SearchRequest as aS, TokenApi as aT, GetHoldersDirectionEnum as aU, GetMintAndBurnDirectionEnum as aV, GetMintAndBurnTypeEnum as aW, GetPricesDirectionEnum as aX, GetTokensSortByEnum as aY, GetTokensSortDirectionEnum as aZ, ListTokenDirectionEnum as a_, GetHotTokensDurationEnum as aa, GetHotTokensSortByEnum as ab, GetHotTokensSortDirectionEnum as ac, GetHotTokensTagEnum as ad, GetMigratedTokensSortByEnum as ae, GetMigratedTokensSortDirectionEnum as af, GetMigratedTokensTagEnum as ag, GetNewTokensSortByEnum as ah, GetNewTokensSortDirectionEnum as ai, GetNewTokensTagEnum as aj, GetStocksTokensSortByEnum as ak, GetStocksTokensSortDirectionEnum as al, GetStocksTokensTagEnum as am, type ClaimRedpacketRequest as an, type CreateRedpacketRequest as ao, type GetClaimsRequest as ap, type GetClaimsByAddressRequest as aq, type GetRedpacketRequest as ar, type GetRedpacketsRequest as as, type GetRedpacketsByAddressRequest as at, type RedpacketSendRequest as au, RedPacketApi as av, GetRedpacketsChainEnum as aw, type GetCandlesRequest as ax, type GetCreationRequest as ay, type GetDevTokensRequest as az, Configuration as b, Chain as b$, ListTokenSortByEnum as b0, SearchSortEnum as b1, SearchSortByEnum as b2, type GetActivitiesRequest as b3, type GetGainersLosersRequest as b4, type GetTopTradersRequest as b5, type GetTradesRequest as b6, TradeApi as b7, GetActivitiesDirectionEnum as b8, GetActivitiesTypeEnum as b9, BlockchainDTOFromJSONTyped as bA, BlockchainDTOToJSON as bB, BlockchainDTOToJSONTyped as bC, type BlockchainLatestBlockDTO as bD, instanceOfBlockchainLatestBlockDTO as bE, BlockchainLatestBlockDTOFromJSON as bF, BlockchainLatestBlockDTOFromJSONTyped as bG, BlockchainLatestBlockDTOToJSON as bH, BlockchainLatestBlockDTOToJSONTyped as bI, type BooleanResultDTO as bJ, instanceOfBooleanResultDTO as bK, BooleanResultDTOFromJSON as bL, BooleanResultDTOFromJSONTyped as bM, BooleanResultDTOToJSON as bN, BooleanResultDTOToJSONTyped as bO, type CalculatePnlInput as bP, instanceOfCalculatePnlInput as bQ, CalculatePnlInputFromJSON as bR, CalculatePnlInputFromJSONTyped as bS, CalculatePnlInputToJSON as bT, CalculatePnlInputToJSONTyped as bU, type Candle as bV, instanceOfCandle as bW, CandleFromJSON as bX, CandleFromJSONTyped as bY, CandleToJSON as bZ, CandleToJSONTyped as b_, GetGainersLosersDirectionEnum as ba, GetGainersLosersTypeEnum as bb, GetGainersLosersSortByEnum as bc, GetGainersLosersSortTypeEnum as bd, GetTopTradersDirectionEnum as be, GetTopTradersTimeFrameEnum as bf, GetTopTradersSortTypeEnum as bg, GetTopTradersSortByEnum as bh, GetTradesDirectionEnum as bi, GetTradesTypeEnum as bj, type EstimateGasLimitRequest as bk, type GetGasPriceRequest as bl, type SendRequest as bm, TransactionApi as bn, EstimateGasLimitChainEnum as bo, GetGasPriceChainEnum as bp, type CalculatePnlRequest as bq, type GetBalanceRequest as br, type GetPnlRequest as bs, type GetPnlStatsRequest as bt, WalletApi as bu, type WatchlistAddRequest as bv, WatchlistApi as bw, type BlockchainDTO as bx, instanceOfBlockchainDTO as by, BlockchainDTOFromJSON as bz, RequiredError as c, instanceOfDexPoolDTO as c$, instanceOfChain as c0, ChainFromJSON as c1, ChainFromJSONTyped as c2, ChainToJSON as c3, ChainToJSONTyped as c4, ChainSymbol as c5, instanceOfChainSymbol as c6, ChainSymbolFromJSON as c7, ChainSymbolFromJSONTyped as c8, ChainSymbolToJSON as c9, CreateTokenInputToJSON as cA, CreateTokenInputToJSONTyped as cB, type CreateTokenReply as cC, instanceOfCreateTokenReply as cD, CreateTokenReplyFromJSON as cE, CreateTokenReplyFromJSONTyped as cF, CreateTokenReplyToJSON as cG, CreateTokenReplyToJSONTyped as cH, type DevTokenDTO as cI, instanceOfDevTokenDTO as cJ, DevTokenDTOFromJSON as cK, DevTokenDTOFromJSONTyped as cL, DevTokenDTOToJSON as cM, DevTokenDTOToJSONTyped as cN, type DexDTO as cO, instanceOfDexDTO as cP, DexDTOFromJSON as cQ, DexDTOFromJSONTyped as cR, DexDTOToJSON as cS, DexDTOToJSONTyped as cT, type DexPage as cU, instanceOfDexPage as cV, DexPageFromJSON as cW, DexPageFromJSONTyped as cX, DexPageToJSON as cY, DexPageToJSONTyped as cZ, type DexPoolDTO as c_, ChainSymbolToJSONTyped as ca, type ClaimRedPacketInput as cb, ClaimRedPacketInputChainEnum as cc, instanceOfClaimRedPacketInput as cd, ClaimRedPacketInputFromJSON as ce, ClaimRedPacketInputFromJSONTyped as cf, ClaimRedPacketInputToJSON as cg, ClaimRedPacketInputToJSONTyped as ch, type CreateRedPacketInput as ci, CreateRedPacketInputChainEnum as cj, instanceOfCreateRedPacketInput as ck, CreateRedPacketInputFromJSON as cl, CreateRedPacketInputFromJSONTyped as cm, CreateRedPacketInputToJSON as cn, CreateRedPacketInputToJSONTyped as co, type CreateRedPacketReply as cp, instanceOfCreateRedPacketReply as cq, CreateRedPacketReplyFromJSON as cr, CreateRedPacketReplyFromJSONTyped as cs, CreateRedPacketReplyToJSON as ct, CreateRedPacketReplyToJSONTyped as cu, type CreateTokenInput as cv, CreateTokenInputDexEnum as cw, instanceOfCreateTokenInput as cx, CreateTokenInputFromJSON as cy, CreateTokenInputFromJSONTyped as cz, COLLECTION_FORMATS as d, MoonshotCreateTokenInputMigrationDexEnum as d$, DexPoolDTOFromJSON as d0, DexPoolDTOFromJSONTyped as d1, DexPoolDTOToJSON as d2, DexPoolDTOToJSONTyped as d3, type EstimateGasLimitInput as d4, instanceOfEstimateGasLimitInput as d5, EstimateGasLimitInputFromJSON as d6, EstimateGasLimitInputFromJSONTyped as d7, EstimateGasLimitInputToJSON as d8, EstimateGasLimitInputToJSONTyped as d9, type GasPriceResponse as dA, instanceOfGasPriceResponse as dB, GasPriceResponseFromJSON as dC, GasPriceResponseFromJSONTyped as dD, GasPriceResponseToJSON as dE, GasPriceResponseToJSONTyped as dF, type JobDTO as dG, instanceOfJobDTO as dH, JobDTOFromJSON as dI, JobDTOFromJSONTyped as dJ, JobDTOToJSON as dK, JobDTOToJSONTyped as dL, type JobStreamingDTO as dM, instanceOfJobStreamingDTO as dN, JobStreamingDTOFromJSON as dO, JobStreamingDTOFromJSONTyped as dP, JobStreamingDTOToJSON as dQ, JobStreamingDTOToJSONTyped as dR, type Link as dS, LinkLabelEnum as dT, instanceOfLink as dU, LinkFromJSON as dV, LinkFromJSONTyped as dW, LinkToJSON as dX, LinkToJSONTyped as dY, type MoonshotCreateTokenInput as dZ, MoonshotCreateTokenInputDexEnum as d_, type EstimateGasLimitResponse as da, instanceOfEstimateGasLimitResponse as db, EstimateGasLimitResponseFromJSON as dc, EstimateGasLimitResponseFromJSONTyped as dd, EstimateGasLimitResponseToJSON as de, EstimateGasLimitResponseToJSONTyped as df, type FilterCondition as dg, FilterConditionFieldEnum as dh, instanceOfFilterCondition as di, FilterConditionFromJSON as dj, FilterConditionFromJSONTyped as dk, FilterConditionToJSON as dl, FilterConditionToJSONTyped as dm, type GainersAndLosersDTO as dn, instanceOfGainersAndLosersDTO as dp, GainersAndLosersDTOFromJSON as dq, GainersAndLosersDTOFromJSONTyped as dr, GainersAndLosersDTOToJSON as ds, GainersAndLosersDTOToJSONTyped as dt, type GainersAndLosersPage as du, instanceOfGainersAndLosersPage as dv, GainersAndLosersPageFromJSON as dw, GainersAndLosersPageFromJSONTyped as dx, GainersAndLosersPageToJSON as dy, GainersAndLosersPageToJSONTyped as dz, type FetchAPI as e, RedPacketReplyFromJSON as e$, instanceOfMoonshotCreateTokenInput as e0, MoonshotCreateTokenInputFromJSON as e1, MoonshotCreateTokenInputFromJSONTyped as e2, MoonshotCreateTokenInputToJSON as e3, MoonshotCreateTokenInputToJSONTyped as e4, type MoonshotCreateTokenReply as e5, instanceOfMoonshotCreateTokenReply as e6, MoonshotCreateTokenReplyFromJSON as e7, MoonshotCreateTokenReplyFromJSONTyped as e8, MoonshotCreateTokenReplyToJSON as e9, PumpCreateTokenReplyToJSONTyped as eA, type QuoteResponse as eB, instanceOfQuoteResponse as eC, QuoteResponseFromJSON as eD, QuoteResponseFromJSONTyped as eE, QuoteResponseToJSON as eF, QuoteResponseToJSONTyped as eG, type RedPacketClaimDTO as eH, instanceOfRedPacketClaimDTO as eI, RedPacketClaimDTOFromJSON as eJ, RedPacketClaimDTOFromJSONTyped as eK, RedPacketClaimDTOToJSON as eL, RedPacketClaimDTOToJSONTyped as eM, type RedPacketClaimsPage as eN, instanceOfRedPacketClaimsPage as eO, RedPacketClaimsPageFromJSON as eP, RedPacketClaimsPageFromJSONTyped as eQ, RedPacketClaimsPageToJSON as eR, RedPacketClaimsPageToJSONTyped as eS, type RedPacketDTO as eT, instanceOfRedPacketDTO as eU, RedPacketDTOFromJSON as eV, RedPacketDTOFromJSONTyped as eW, RedPacketDTOToJSON as eX, RedPacketDTOToJSONTyped as eY, type RedPacketReply as eZ, instanceOfRedPacketReply as e_, MoonshotCreateTokenReplyToJSONTyped as ea, type MoonshotSubmitCreateToken200Response as eb, instanceOfMoonshotSubmitCreateToken200Response as ec, MoonshotSubmitCreateToken200ResponseFromJSON as ed, MoonshotSubmitCreateToken200ResponseFromJSONTyped as ee, MoonshotSubmitCreateToken200ResponseToJSON as ef, MoonshotSubmitCreateToken200ResponseToJSONTyped as eg, type MoonshotSubmitCreateTokenInput as eh, instanceOfMoonshotSubmitCreateTokenInput as ei, MoonshotSubmitCreateTokenInputFromJSON as ej, MoonshotSubmitCreateTokenInputFromJSONTyped as ek, MoonshotSubmitCreateTokenInputToJSON as el, MoonshotSubmitCreateTokenInputToJSONTyped as em, type PumpCreateTokenInput as en, PumpCreateTokenInputDexEnum as eo, PumpCreateTokenInputMigrationDexEnum as ep, instanceOfPumpCreateTokenInput as eq, PumpCreateTokenInputFromJSON as er, PumpCreateTokenInputFromJSONTyped as es, PumpCreateTokenInputToJSON as et, PumpCreateTokenInputToJSONTyped as eu, type PumpCreateTokenReply as ev, instanceOfPumpCreateTokenReply as ew, PumpCreateTokenReplyFromJSON as ex, PumpCreateTokenReplyFromJSONTyped as ey, PumpCreateTokenReplyToJSON as ez, type HTTPHeaders as f, instanceOfSwapRouteResponse as f$, RedPacketReplyFromJSONTyped as f0, RedPacketReplyToJSON as f1, RedPacketReplyToJSONTyped as f2, type RedPacketSendTxInput as f3, instanceOfRedPacketSendTxInput as f4, RedPacketSendTxInputFromJSON as f5, RedPacketSendTxInputFromJSONTyped as f6, RedPacketSendTxInputToJSON as f7, RedPacketSendTxInputToJSONTyped as f8, type RedPacketSendTxResponse as f9, SendTxResponseFromJSON as fA, SendTxResponseFromJSONTyped as fB, SendTxResponseToJSON as fC, SendTxResponseToJSONTyped as fD, type SwapInput as fE, SwapInputDexEnum as fF, SwapInputSwapModeEnum as fG, instanceOfSwapInput as fH, SwapInputFromJSON as fI, SwapInputFromJSONTyped as fJ, SwapInputToJSON as fK, SwapInputToJSONTyped as fL, type SwapReply as fM, instanceOfSwapReply as fN, SwapReplyFromJSON as fO, SwapReplyFromJSONTyped as fP, SwapReplyToJSON as fQ, SwapReplyToJSONTyped as fR, type SwapRouteInput as fS, SwapRouteInputDexEnum as fT, SwapRouteInputSwapModeEnum as fU, instanceOfSwapRouteInput as fV, SwapRouteInputFromJSON as fW, SwapRouteInputFromJSONTyped as fX, SwapRouteInputToJSON as fY, SwapRouteInputToJSONTyped as fZ, type SwapRouteResponse as f_, instanceOfRedPacketSendTxResponse as fa, RedPacketSendTxResponseFromJSON as fb, RedPacketSendTxResponseFromJSONTyped as fc, RedPacketSendTxResponseToJSON as fd, RedPacketSendTxResponseToJSONTyped as fe, type RedPacketsPage as ff, instanceOfRedPacketsPage as fg, RedPacketsPageFromJSON as fh, RedPacketsPageFromJSONTyped as fi, RedPacketsPageToJSON as fj, RedPacketsPageToJSONTyped as fk, Resolution as fl, instanceOfResolution as fm, ResolutionFromJSON as fn, ResolutionFromJSONTyped as fo, ResolutionToJSON as fp, ResolutionToJSONTyped as fq, type SendTxInput as fr, SendTxInputSubmitTypeEnum as fs, instanceOfSendTxInput as ft, SendTxInputFromJSON as fu, SendTxInputFromJSONTyped as fv, SendTxInputToJSON as fw, SendTxInputToJSONTyped as fx, type SendTxResponse as fy, instanceOfSendTxResponse as fz, type HTTPQuery as g, TokenMetadataToJSON as g$, SwapRouteResponseFromJSON as g0, SwapRouteResponseFromJSONTyped as g1, SwapRouteResponseToJSON as g2, SwapRouteResponseToJSONTyped as g3, type Token as g4, instanceOfToken as g5, TokenFromJSON as g6, TokenFromJSONTyped as g7, TokenToJSON as g8, TokenToJSONTyped as g9, instanceOfTokenHolder as gA, TokenHolderFromJSON as gB, TokenHolderFromJSONTyped as gC, TokenHolderToJSON as gD, TokenHolderToJSONTyped as gE, type TokenHolderPage as gF, instanceOfTokenHolderPage as gG, TokenHolderPageFromJSON as gH, TokenHolderPageFromJSONTyped as gI, TokenHolderPageToJSON as gJ, TokenHolderPageToJSONTyped as gK, type TokenListPage as gL, instanceOfTokenListPage as gM, TokenListPageFromJSON as gN, TokenListPageFromJSONTyped as gO, TokenListPageToJSON as gP, TokenListPageToJSONTyped as gQ, type TokenMarketData as gR, instanceOfTokenMarketData as gS, TokenMarketDataFromJSON as gT, TokenMarketDataFromJSONTyped as gU, TokenMarketDataToJSON as gV, TokenMarketDataToJSONTyped as gW, type TokenMetadata as gX, instanceOfTokenMetadata as gY, TokenMetadataFromJSON as gZ, TokenMetadataFromJSONTyped as g_, type TokenCreationDTO as ga, TokenCreationDTOTypeEnum as gb, instanceOfTokenCreationDTO as gc, TokenCreationDTOFromJSON as gd, TokenCreationDTOFromJSONTyped as ge, TokenCreationDTOToJSON as gf, TokenCreationDTOToJSONTyped as gg, type TokenCreationPage as gh, instanceOfTokenCreationPage as gi, TokenCreationPageFromJSON as gj, TokenCreationPageFromJSONTyped as gk, TokenCreationPageToJSON as gl, TokenCreationPageToJSONTyped as gm, type TokenCreatorsDTO as gn, instanceOfTokenCreatorsDTO as go, TokenCreatorsDTOFromJSON as gp, TokenCreatorsDTOFromJSONTyped as gq, TokenCreatorsDTOToJSON as gr, TokenCreatorsDTOToJSONTyped as gs, type TokenExtraDTO as gt, instanceOfTokenExtraDTO as gu, TokenExtraDTOFromJSON as gv, TokenExtraDTOFromJSONTyped as gw, TokenExtraDTOToJSON as gx, TokenExtraDTOToJSONTyped as gy, type TokenHolder as gz, type HTTPBody as h, TradePageFromJSON as h$, TokenMetadataToJSONTyped as h0, type TokenPage as h1, instanceOfTokenPage as h2, TokenPageFromJSON as h3, TokenPageFromJSONTyped as h4, TokenPageToJSON as h5, TokenPageToJSONTyped as h6, type TokenPriceDTO as h7, instanceOfTokenPriceDTO as h8, TokenPriceDTOFromJSON as h9, TokenTraderToJSONTyped as hA, TokenTraderTag as hB, instanceOfTokenTraderTag as hC, TokenTraderTagFromJSON as hD, TokenTraderTagFromJSONTyped as hE, TokenTraderTagToJSON as hF, TokenTraderTagToJSONTyped as hG, type TopTradersDTO as hH, instanceOfTopTradersDTO as hI, TopTradersDTOFromJSON as hJ, TopTradersDTOFromJSONTyped as hK, TopTradersDTOToJSON as hL, TopTradersDTOToJSONTyped as hM, type TopTradersPage as hN, instanceOfTopTradersPage as hO, TopTradersPageFromJSON as hP, TopTradersPageFromJSONTyped as hQ, TopTradersPageToJSON as hR, TopTradersPageToJSONTyped as hS, type TradeDetailDTO as hT, instanceOfTradeDetailDTO as hU, TradeDetailDTOFromJSON as hV, TradeDetailDTOFromJSONTyped as hW, TradeDetailDTOToJSON as hX, TradeDetailDTOToJSONTyped as hY, type TradePage as hZ, instanceOfTradePage as h_, TokenPriceDTOFromJSONTyped as ha, TokenPriceDTOToJSON as hb, TokenPriceDTOToJSONTyped as hc, type TokenPricePage as hd, instanceOfTokenPricePage as he, TokenPricePageFromJSON as hf, TokenPricePageFromJSONTyped as hg, TokenPricePageToJSON as hh, TokenPricePageToJSONTyped as hi, type TokenSocialMediasDTO as hj, instanceOfTokenSocialMediasDTO as hk, TokenSocialMediasDTOFromJSON as hl, TokenSocialMediasDTOFromJSONTyped as hm, TokenSocialMediasDTOToJSON as hn, TokenSocialMediasDTOToJSONTyped as ho, type TokenStat as hp, instanceOfTokenStat as hq, TokenStatFromJSON as hr, TokenStatFromJSONTyped as hs, TokenStatToJSON as ht, TokenStatToJSONTyped as hu, type TokenTrader as hv, instanceOfTokenTrader as hw, TokenTraderFromJSON as hx, TokenTraderFromJSONTyped as hy, TokenTraderToJSON as hz, type HTTPRequestInit as i, TradePageFromJSONTyped as i0, TradePageToJSON as i1, TradePageToJSONTyped as i2, type WalletBalanceDetailDTO as i3, instanceOfWalletBalanceDetailDTO as i4, WalletBalanceDetailDTOFromJSON as i5, WalletBalanceDetailDTOFromJSONTyped as i6, WalletBalanceDetailDTOToJSON as i7, WalletBalanceDetailDTOToJSONTyped as i8, type WalletBalancesDTO as i9, instanceOfWalletBalancesDTO as ia, WalletBalancesDTOFromJSON as ib, WalletBalancesDTOFromJSONTyped as ic, WalletBalancesDTOToJSON as id, WalletBalancesDTOToJSONTyped as ie, type WalletPnlDTO as ig, instanceOfWalletPnlDTO as ih, WalletPnlDTOFromJSON as ii, WalletPnlDTOFromJSONTyped as ij, WalletPnlDTOToJSON as ik, WalletPnlDTOToJSONTyped as il, type FetchParams as j, type RequestOpts as k, exists as l, mapValues as m, canConsumeForm as n, type Consume as o, type RequestContext as p, querystring as q, type ResponseContext as r, type Middleware as s, type ResponseTransformer as t, JSONApiResponse as u, BlobApiResponse as v, BlockchainApi as w, type MoonshotCreateTokenRequest as x, type MoonshotSubmitCreateTokenRequest as y, DefiSolanaMoonshotApi as z };
10079
+ export { type GetEndpointRequest as $, type ApiResponse as A, BASE_PATH as B, type ConfigurationParameters as C, DefaultConfig as D, type ErrorContext as E, FetchError as F, type GetLatestBlockRequest as G, type HTTPMethod as H, type InitOverrideFunction as I, type Json as J, DefiSolanaPumpfunApi as K, type CreateTokenRequest as L, type ModelPropertyNaming as M, type ListDexRequest as N, type RouteRequest as O, type PumpfunCreateTokenRequest as P, type QuoteRequest as Q, ResponseError as R, type SwapRequest as S, TextApiResponse as T, DexApi as U, VoidApiResponse as V, QuoteDexEnum as W, type GetDexpoolRequest as X, DexPoolApi as Y, type CreateEndpointRequest as Z, type DeleteEndpointRequest as _, Configuration as a, type GetHoldersRequest as a$, type GetEndpointSecretRequest as a0, type ListEndpointsRequest as a1, type RotateEndpointSecretRequest as a2, type UpdateEndpointRequest as a3, EndpointApi as a4, ListEndpointsOrderEnum as a5, IpfsApi as a6, type GetRequest as a7, type StreamingRequest as a8, JobsApi as a9, GetFinalStretchTokensTagEnum as aA, GetHotTokensDurationEnum as aB, GetHotTokensSortByEnum as aC, GetHotTokensSortDirectionEnum as aD, GetHotTokensTagEnum as aE, GetMigratedTokensSortByEnum as aF, GetMigratedTokensSortDirectionEnum as aG, GetMigratedTokensTagEnum as aH, GetNewTokensSortByEnum as aI, GetNewTokensSortDirectionEnum as aJ, GetNewTokensTagEnum as aK, GetStocksTokensSortByEnum as aL, GetStocksTokensSortDirectionEnum as aM, GetStocksTokensTagEnum as aN, type ClaimRedpacketRequest as aO, type CreateRedpacketRequest as aP, type GetClaimsRequest as aQ, type GetClaimsByAddressRequest as aR, type GetRedpacketRequest as aS, type GetRedpacketsRequest as aT, type GetRedpacketsByAddressRequest as aU, type RedpacketSendRequest as aV, RedPacketApi as aW, GetRedpacketsChainEnum as aX, type GetCandlesRequest as aY, type GetCreationRequest as aZ, type GetDevTokensRequest as a_, type GetAddressRiskRequest as aa, type GetKytAddressesRequest as ab, type GetKytTransfersRequest as ac, type GetKytWithdrawalsRequest as ad, type GetTransferAlertsRequest as ae, type GetTransferDirectExposureRequest as af, type GetTransferNetworkIdentificationsRequest as ag, type GetTransferSummaryRequest as ah, type GetWithdrawalAddressIdentificationsRequest as ai, type GetWithdrawalAlertsRequest as aj, type GetWithdrawalDirectExposureRequest as ak, type GetWithdrawalFraudAssessmentRequest as al, type GetWithdrawalNetworkIdentificationsRequest as am, type GetWithdrawalSummaryRequest as an, type RegisterAddressOperationRequest as ao, type RegisterTransferRequest as ap, type RegisterWithdrawalRequest as aq, KYTApi as ar, type GetFinalStretchTokensRequest as as, type GetHotTokensRequest as at, type GetMigratedTokensRequest as au, type GetNewTokensRequest as av, type GetStocksTokensRequest as aw, RankingApi as ax, GetFinalStretchTokensSortByEnum as ay, GetFinalStretchTokensSortDirectionEnum as az, BaseAPI as b, AddressExposureFromJSONTyped as b$, type GetHoldersMultiRequest as b0, type GetMarketDataRequest as b1, type GetMarketDataMultiRequest as b2, type GetMetadataRequest as b3, type GetMetadataMultiRequest as b4, type GetMintAndBurnRequest as b5, type GetPoolsRequest as b6, type GetPriceByTimeRequest as b7, type GetPricesRequest as b8, type GetSecurityRequest as b9, GetActivitiesTypeEnum as bA, GetGainersLosersDirectionEnum as bB, GetGainersLosersTypeEnum as bC, GetGainersLosersSortByEnum as bD, GetGainersLosersSortTypeEnum as bE, GetTopTradersDirectionEnum as bF, GetTopTradersTimeFrameEnum as bG, GetTopTradersSortTypeEnum as bH, GetTopTradersSortByEnum as bI, GetTradesDirectionEnum as bJ, GetTradesTypeEnum as bK, type EstimateGasLimitRequest as bL, type GetGasPriceRequest as bM, type SendRequest as bN, TransactionApi as bO, EstimateGasLimitChainEnum as bP, GetGasPriceChainEnum as bQ, type CalculatePnlRequest as bR, type GetBalanceRequest as bS, type GetPnlRequest as bT, type GetPnlStatsRequest as bU, WalletApi as bV, type WatchlistAddRequest as bW, WatchlistApi as bX, type AddressExposure as bY, instanceOfAddressExposure as bZ, AddressExposureFromJSON as b_, type GetStatsRequest as ba, type GetStatsMultiRequest as bb, type GetTokenRequest as bc, type GetTokenTradersRequest as bd, type GetTokensRequest as be, type GetTopHoldersRequest as bf, type ListTokenRequest as bg, type SearchRequest as bh, TokenApi as bi, GetHoldersDirectionEnum as bj, GetMintAndBurnDirectionEnum as bk, GetMintAndBurnTypeEnum as bl, GetPricesDirectionEnum as bm, GetTokensSortByEnum as bn, GetTokensSortDirectionEnum as bo, ListTokenDirectionEnum as bp, ListTokenSortEnum as bq, ListTokenSortByEnum as br, SearchSortEnum as bs, SearchSortByEnum as bt, type GetActivitiesRequest as bu, type GetGainersLosersRequest as bv, type GetTopTradersRequest as bw, type GetTradesRequest as bx, TradeApi as by, GetActivitiesDirectionEnum as bz, RequiredError as c, instanceOfChainalysisAddressIdentification as c$, AddressExposureToJSON as c0, AddressExposureToJSONTyped as c1, type AddressRiskResponseDTO as c2, instanceOfAddressRiskResponseDTO as c3, AddressRiskResponseDTOFromJSON as c4, AddressRiskResponseDTOFromJSONTyped as c5, AddressRiskResponseDTOToJSON as c6, AddressRiskResponseDTOToJSONTyped as c7, type AlertDetail as c8, instanceOfAlertDetail as c9, BooleanResultDTOToJSON as cA, BooleanResultDTOToJSONTyped as cB, type CalculatePnlInput as cC, instanceOfCalculatePnlInput as cD, CalculatePnlInputFromJSON as cE, CalculatePnlInputFromJSONTyped as cF, CalculatePnlInputToJSON as cG, CalculatePnlInputToJSONTyped as cH, type Candle as cI, instanceOfCandle as cJ, CandleFromJSON as cK, CandleFromJSONTyped as cL, CandleToJSON as cM, CandleToJSONTyped as cN, Chain as cO, instanceOfChain as cP, ChainFromJSON as cQ, ChainFromJSONTyped as cR, ChainToJSON as cS, ChainToJSONTyped as cT, ChainSymbol as cU, instanceOfChainSymbol as cV, ChainSymbolFromJSON as cW, ChainSymbolFromJSONTyped as cX, ChainSymbolToJSON as cY, ChainSymbolToJSONTyped as cZ, type ChainalysisAddressIdentification as c_, AlertDetailFromJSON as ca, AlertDetailFromJSONTyped as cb, AlertDetailToJSON as cc, AlertDetailToJSONTyped as cd, type AlteryaIdentification as ce, instanceOfAlteryaIdentification as cf, AlteryaIdentificationFromJSON as cg, AlteryaIdentificationFromJSONTyped as ch, AlteryaIdentificationToJSON as ci, AlteryaIdentificationToJSONTyped as cj, type BlockchainDTO as ck, instanceOfBlockchainDTO as cl, BlockchainDTOFromJSON as cm, BlockchainDTOFromJSONTyped as cn, BlockchainDTOToJSON as co, BlockchainDTOToJSONTyped as cp, type BlockchainLatestBlockDTO as cq, instanceOfBlockchainLatestBlockDTO as cr, BlockchainLatestBlockDTOFromJSON as cs, BlockchainLatestBlockDTOFromJSONTyped as ct, BlockchainLatestBlockDTOToJSON as cu, BlockchainLatestBlockDTOToJSONTyped as cv, type BooleanResultDTO as cw, instanceOfBooleanResultDTO as cx, BooleanResultDTOFromJSON as cy, BooleanResultDTOFromJSONTyped as cz, COLLECTION_FORMATS as d, instanceOfDexPoolDTO as d$, ChainalysisAddressIdentificationFromJSON as d0, ChainalysisAddressIdentificationFromJSONTyped as d1, ChainalysisAddressIdentificationToJSON as d2, ChainalysisAddressIdentificationToJSONTyped as d3, type ClaimRedPacketInput as d4, ClaimRedPacketInputChainEnum as d5, instanceOfClaimRedPacketInput as d6, ClaimRedPacketInputFromJSON as d7, ClaimRedPacketInputFromJSONTyped as d8, ClaimRedPacketInputToJSON as d9, CreateTokenInputToJSON as dA, CreateTokenInputToJSONTyped as dB, type CreateTokenReply as dC, instanceOfCreateTokenReply as dD, CreateTokenReplyFromJSON as dE, CreateTokenReplyFromJSONTyped as dF, CreateTokenReplyToJSON as dG, CreateTokenReplyToJSONTyped as dH, type DevTokenDTO as dI, instanceOfDevTokenDTO as dJ, DevTokenDTOFromJSON as dK, DevTokenDTOFromJSONTyped as dL, DevTokenDTOToJSON as dM, DevTokenDTOToJSONTyped as dN, type DexDTO as dO, instanceOfDexDTO as dP, DexDTOFromJSON as dQ, DexDTOFromJSONTyped as dR, DexDTOToJSON as dS, DexDTOToJSONTyped as dT, type DexPage as dU, instanceOfDexPage as dV, DexPageFromJSON as dW, DexPageFromJSONTyped as dX, DexPageToJSON as dY, DexPageToJSONTyped as dZ, type DexPoolDTO as d_, ClaimRedPacketInputToJSONTyped as da, type CreateEndpointInput as db, instanceOfCreateEndpointInput as dc, CreateEndpointInputFromJSON as dd, CreateEndpointInputFromJSONTyped as de, CreateEndpointInputToJSON as df, CreateEndpointInputToJSONTyped as dg, type CreateRedPacketInput as dh, CreateRedPacketInputChainEnum as di, instanceOfCreateRedPacketInput as dj, CreateRedPacketInputFromJSON as dk, CreateRedPacketInputFromJSONTyped as dl, CreateRedPacketInputToJSON as dm, CreateRedPacketInputToJSONTyped as dn, type CreateRedPacketReply as dp, instanceOfCreateRedPacketReply as dq, CreateRedPacketReplyFromJSON as dr, CreateRedPacketReplyFromJSONTyped as ds, CreateRedPacketReplyToJSON as dt, CreateRedPacketReplyToJSONTyped as du, type CreateTokenInput as dv, CreateTokenInputDexEnum as dw, instanceOfCreateTokenInput as dx, CreateTokenInputFromJSON as dy, CreateTokenInputFromJSONTyped as dz, type FetchAPI as e, GainersAndLosersPageToJSON as e$, DexPoolDTOFromJSON as e0, DexPoolDTOFromJSONTyped as e1, DexPoolDTOToJSON as e2, DexPoolDTOToJSONTyped as e3, type DirectExposureDetail as e4, instanceOfDirectExposureDetail as e5, DirectExposureDetailFromJSON as e6, DirectExposureDetailFromJSONTyped as e7, DirectExposureDetailToJSON as e8, DirectExposureDetailToJSONTyped as e9, EstimateGasLimitInputFromJSON as eA, EstimateGasLimitInputFromJSONTyped as eB, EstimateGasLimitInputToJSON as eC, EstimateGasLimitInputToJSONTyped as eD, type EstimateGasLimitResponse as eE, instanceOfEstimateGasLimitResponse as eF, EstimateGasLimitResponseFromJSON as eG, EstimateGasLimitResponseFromJSONTyped as eH, EstimateGasLimitResponseToJSON as eI, EstimateGasLimitResponseToJSONTyped as eJ, type FilterCondition as eK, FilterConditionFieldEnum as eL, instanceOfFilterCondition as eM, FilterConditionFromJSON as eN, FilterConditionFromJSONTyped as eO, FilterConditionToJSON as eP, FilterConditionToJSONTyped as eQ, type GainersAndLosersDTO as eR, instanceOfGainersAndLosersDTO as eS, GainersAndLosersDTOFromJSON as eT, GainersAndLosersDTOFromJSONTyped as eU, GainersAndLosersDTOToJSON as eV, GainersAndLosersDTOToJSONTyped as eW, type GainersAndLosersPage as eX, instanceOfGainersAndLosersPage as eY, GainersAndLosersPageFromJSON as eZ, GainersAndLosersPageFromJSONTyped as e_, type EndpointListResponse as ea, instanceOfEndpointListResponse as eb, EndpointListResponseFromJSON as ec, EndpointListResponseFromJSONTyped as ed, EndpointListResponseToJSON as ee, EndpointListResponseToJSONTyped as ef, type EndpointOperationResponse as eg, instanceOfEndpointOperationResponse as eh, EndpointOperationResponseFromJSON as ei, EndpointOperationResponseFromJSONTyped as ej, EndpointOperationResponseToJSON as ek, EndpointOperationResponseToJSONTyped as el, type EndpointResponse as em, instanceOfEndpointResponse as en, EndpointResponseFromJSON as eo, EndpointResponseFromJSONTyped as ep, EndpointResponseToJSON as eq, EndpointResponseToJSONTyped as er, type EndpointSecretResponse as es, instanceOfEndpointSecretResponse as et, EndpointSecretResponseFromJSON as eu, EndpointSecretResponseFromJSONTyped as ev, EndpointSecretResponseToJSON as ew, EndpointSecretResponseToJSONTyped as ex, type EstimateGasLimitInput as ey, instanceOfEstimateGasLimitInput as ez, type HTTPHeaders as f, KytWithdrawalDTOToJSONTyped as f$, GainersAndLosersPageToJSONTyped as f0, type GasPriceResponse as f1, instanceOfGasPriceResponse as f2, GasPriceResponseFromJSON as f3, GasPriceResponseFromJSONTyped as f4, GasPriceResponseToJSON as f5, GasPriceResponseToJSONTyped as f6, type JobDTO as f7, instanceOfJobDTO as f8, JobDTOFromJSON as f9, KytAddressDTOFromJSON as fA, KytAddressDTOFromJSONTyped as fB, KytAddressDTOToJSON as fC, KytAddressDTOToJSONTyped as fD, type KytAddressPage as fE, instanceOfKytAddressPage as fF, KytAddressPageFromJSON as fG, KytAddressPageFromJSONTyped as fH, KytAddressPageToJSON as fI, KytAddressPageToJSONTyped as fJ, type KytTransferDTO as fK, instanceOfKytTransferDTO as fL, KytTransferDTOFromJSON as fM, KytTransferDTOFromJSONTyped as fN, KytTransferDTOToJSON as fO, KytTransferDTOToJSONTyped as fP, type KytTransferPage as fQ, instanceOfKytTransferPage as fR, KytTransferPageFromJSON as fS, KytTransferPageFromJSONTyped as fT, KytTransferPageToJSON as fU, KytTransferPageToJSONTyped as fV, type KytWithdrawalDTO as fW, instanceOfKytWithdrawalDTO as fX, KytWithdrawalDTOFromJSON as fY, KytWithdrawalDTOFromJSONTyped as fZ, KytWithdrawalDTOToJSON as f_, JobDTOFromJSONTyped as fa, JobDTOToJSON as fb, JobDTOToJSONTyped as fc, type JobStreamingDTO as fd, instanceOfJobStreamingDTO as fe, JobStreamingDTOFromJSON as ff, JobStreamingDTOFromJSONTyped as fg, JobStreamingDTOToJSON as fh, JobStreamingDTOToJSONTyped as fi, type KYTRegisterTransferRequest as fj, KYTRegisterTransferRequestNetworkEnum as fk, KYTRegisterTransferRequestDirectionEnum as fl, instanceOfKYTRegisterTransferRequest as fm, KYTRegisterTransferRequestFromJSON as fn, KYTRegisterTransferRequestFromJSONTyped as fo, KYTRegisterTransferRequestToJSON as fp, KYTRegisterTransferRequestToJSONTyped as fq, type KYTRegisterWithdrawalRequest as fr, KYTRegisterWithdrawalRequestNetworkEnum as fs, instanceOfKYTRegisterWithdrawalRequest as ft, KYTRegisterWithdrawalRequestFromJSON as fu, KYTRegisterWithdrawalRequestFromJSONTyped as fv, KYTRegisterWithdrawalRequestToJSON as fw, KYTRegisterWithdrawalRequestToJSONTyped as fx, type KytAddressDTO as fy, instanceOfKytAddressDTO as fz, type HTTPQuery as g, PumpCreateTokenReplyToJSON as g$, type KytWithdrawalPage as g0, instanceOfKytWithdrawalPage as g1, KytWithdrawalPageFromJSON as g2, KytWithdrawalPageFromJSONTyped as g3, KytWithdrawalPageToJSON as g4, KytWithdrawalPageToJSONTyped as g5, type Link as g6, LinkLabelEnum as g7, instanceOfLink as g8, LinkFromJSON as g9, MoonshotSubmitCreateTokenInputFromJSONTyped as gA, MoonshotSubmitCreateTokenInputToJSON as gB, MoonshotSubmitCreateTokenInputToJSONTyped as gC, type NetworkIdentificationOrg as gD, instanceOfNetworkIdentificationOrg as gE, NetworkIdentificationOrgFromJSON as gF, NetworkIdentificationOrgFromJSONTyped as gG, NetworkIdentificationOrgToJSON as gH, NetworkIdentificationOrgToJSONTyped as gI, type OnChainActivity as gJ, instanceOfOnChainActivity as gK, OnChainActivityFromJSON as gL, OnChainActivityFromJSONTyped as gM, OnChainActivityToJSON as gN, OnChainActivityToJSONTyped as gO, type PumpCreateTokenInput as gP, PumpCreateTokenInputDexEnum as gQ, PumpCreateTokenInputMigrationDexEnum as gR, instanceOfPumpCreateTokenInput as gS, PumpCreateTokenInputFromJSON as gT, PumpCreateTokenInputFromJSONTyped as gU, PumpCreateTokenInputToJSON as gV, PumpCreateTokenInputToJSONTyped as gW, type PumpCreateTokenReply as gX, instanceOfPumpCreateTokenReply as gY, PumpCreateTokenReplyFromJSON as gZ, PumpCreateTokenReplyFromJSONTyped as g_, LinkFromJSONTyped as ga, LinkToJSON as gb, LinkToJSONTyped as gc, type MoonshotCreateTokenInput as gd, MoonshotCreateTokenInputDexEnum as ge, MoonshotCreateTokenInputMigrationDexEnum as gf, instanceOfMoonshotCreateTokenInput as gg, MoonshotCreateTokenInputFromJSON as gh, MoonshotCreateTokenInputFromJSONTyped as gi, MoonshotCreateTokenInputToJSON as gj, MoonshotCreateTokenInputToJSONTyped as gk, type MoonshotCreateTokenReply as gl, instanceOfMoonshotCreateTokenReply as gm, MoonshotCreateTokenReplyFromJSON as gn, MoonshotCreateTokenReplyFromJSONTyped as go, MoonshotCreateTokenReplyToJSON as gp, MoonshotCreateTokenReplyToJSONTyped as gq, type MoonshotSubmitCreateToken200Response as gr, instanceOfMoonshotSubmitCreateToken200Response as gs, MoonshotSubmitCreateToken200ResponseFromJSON as gt, MoonshotSubmitCreateToken200ResponseFromJSONTyped as gu, MoonshotSubmitCreateToken200ResponseToJSON as gv, MoonshotSubmitCreateToken200ResponseToJSONTyped as gw, type MoonshotSubmitCreateTokenInput as gx, instanceOfMoonshotSubmitCreateTokenInput as gy, MoonshotSubmitCreateTokenInputFromJSON as gz, type HTTPBody as h, ResolutionFromJSON as h$, PumpCreateTokenReplyToJSONTyped as h0, type QuoteResponse as h1, instanceOfQuoteResponse as h2, QuoteResponseFromJSON as h3, QuoteResponseFromJSONTyped as h4, QuoteResponseToJSON as h5, QuoteResponseToJSONTyped as h6, type RedPacketClaimDTO as h7, instanceOfRedPacketClaimDTO as h8, RedPacketClaimDTOFromJSON as h9, RedPacketSendTxInputToJSONTyped as hA, type RedPacketSendTxResponse as hB, instanceOfRedPacketSendTxResponse as hC, RedPacketSendTxResponseFromJSON as hD, RedPacketSendTxResponseFromJSONTyped as hE, RedPacketSendTxResponseToJSON as hF, RedPacketSendTxResponseToJSONTyped as hG, type RedPacketsPage as hH, instanceOfRedPacketsPage as hI, RedPacketsPageFromJSON as hJ, RedPacketsPageFromJSONTyped as hK, RedPacketsPageToJSON as hL, RedPacketsPageToJSONTyped as hM, type RegisterAddressRequest as hN, instanceOfRegisterAddressRequest as hO, RegisterAddressRequestFromJSON as hP, RegisterAddressRequestFromJSONTyped as hQ, RegisterAddressRequestToJSON as hR, RegisterAddressRequestToJSONTyped as hS, type RegisterAddressResponseDTO as hT, instanceOfRegisterAddressResponseDTO as hU, RegisterAddressResponseDTOFromJSON as hV, RegisterAddressResponseDTOFromJSONTyped as hW, RegisterAddressResponseDTOToJSON as hX, RegisterAddressResponseDTOToJSONTyped as hY, Resolution as hZ, instanceOfResolution as h_, RedPacketClaimDTOFromJSONTyped as ha, RedPacketClaimDTOToJSON as hb, RedPacketClaimDTOToJSONTyped as hc, type RedPacketClaimsPage as hd, instanceOfRedPacketClaimsPage as he, RedPacketClaimsPageFromJSON as hf, RedPacketClaimsPageFromJSONTyped as hg, RedPacketClaimsPageToJSON as hh, RedPacketClaimsPageToJSONTyped as hi, type RedPacketDTO as hj, instanceOfRedPacketDTO as hk, RedPacketDTOFromJSON as hl, RedPacketDTOFromJSONTyped as hm, RedPacketDTOToJSON as hn, RedPacketDTOToJSONTyped as ho, type RedPacketReply as hp, instanceOfRedPacketReply as hq, RedPacketReplyFromJSON as hr, RedPacketReplyFromJSONTyped as hs, RedPacketReplyToJSON as ht, RedPacketReplyToJSONTyped as hu, type RedPacketSendTxInput as hv, instanceOfRedPacketSendTxInput as hw, RedPacketSendTxInputFromJSON as hx, RedPacketSendTxInputFromJSONTyped as hy, RedPacketSendTxInputToJSON as hz, type HTTPRequestInit as i, TokenCreationPageToJSON as i$, ResolutionFromJSONTyped as i0, ResolutionToJSON as i1, ResolutionToJSONTyped as i2, type SendTxInput as i3, SendTxInputSubmitTypeEnum as i4, instanceOfSendTxInput as i5, SendTxInputFromJSON as i6, SendTxInputFromJSONTyped as i7, SendTxInputToJSON as i8, SendTxInputToJSONTyped as i9, SwapRouteInputFromJSON as iA, SwapRouteInputFromJSONTyped as iB, SwapRouteInputToJSON as iC, SwapRouteInputToJSONTyped as iD, type SwapRouteResponse as iE, instanceOfSwapRouteResponse as iF, SwapRouteResponseFromJSON as iG, SwapRouteResponseFromJSONTyped as iH, SwapRouteResponseToJSON as iI, SwapRouteResponseToJSONTyped as iJ, type Token as iK, instanceOfToken as iL, TokenFromJSON as iM, TokenFromJSONTyped as iN, TokenToJSON as iO, TokenToJSONTyped as iP, type TokenCreationDTO as iQ, TokenCreationDTOTypeEnum as iR, instanceOfTokenCreationDTO as iS, TokenCreationDTOFromJSON as iT, TokenCreationDTOFromJSONTyped as iU, TokenCreationDTOToJSON as iV, TokenCreationDTOToJSONTyped as iW, type TokenCreationPage as iX, instanceOfTokenCreationPage as iY, TokenCreationPageFromJSON as iZ, TokenCreationPageFromJSONTyped as i_, type SendTxResponse as ia, instanceOfSendTxResponse as ib, SendTxResponseFromJSON as ic, SendTxResponseFromJSONTyped as id, SendTxResponseToJSON as ie, SendTxResponseToJSONTyped as ig, type SwapInput as ih, SwapInputDexEnum as ii, SwapInputSwapModeEnum as ij, instanceOfSwapInput as ik, SwapInputFromJSON as il, SwapInputFromJSONTyped as im, SwapInputToJSON as io, SwapInputToJSONTyped as ip, type SwapReply as iq, instanceOfSwapReply as ir, SwapReplyFromJSON as is, SwapReplyFromJSONTyped as it, SwapReplyToJSON as iu, SwapReplyToJSONTyped as iv, type SwapRouteInput as iw, SwapRouteInputDexEnum as ix, SwapRouteInputSwapModeEnum as iy, instanceOfSwapRouteInput as iz, type FetchParams as j, TokenSocialMediasDTOFromJSON as j$, TokenCreationPageToJSONTyped as j0, type TokenCreatorsDTO as j1, instanceOfTokenCreatorsDTO as j2, TokenCreatorsDTOFromJSON as j3, TokenCreatorsDTOFromJSONTyped as j4, TokenCreatorsDTOToJSON as j5, TokenCreatorsDTOToJSONTyped as j6, type TokenExtraDTO as j7, instanceOfTokenExtraDTO as j8, TokenExtraDTOFromJSON as j9, TokenMarketDataToJSONTyped as jA, type TokenMetadata as jB, instanceOfTokenMetadata as jC, TokenMetadataFromJSON as jD, TokenMetadataFromJSONTyped as jE, TokenMetadataToJSON as jF, TokenMetadataToJSONTyped as jG, type TokenPage as jH, instanceOfTokenPage as jI, TokenPageFromJSON as jJ, TokenPageFromJSONTyped as jK, TokenPageToJSON as jL, TokenPageToJSONTyped as jM, type TokenPriceDTO as jN, instanceOfTokenPriceDTO as jO, TokenPriceDTOFromJSON as jP, TokenPriceDTOFromJSONTyped as jQ, TokenPriceDTOToJSON as jR, TokenPriceDTOToJSONTyped as jS, type TokenPricePage as jT, instanceOfTokenPricePage as jU, TokenPricePageFromJSON as jV, TokenPricePageFromJSONTyped as jW, TokenPricePageToJSON as jX, TokenPricePageToJSONTyped as jY, type TokenSocialMediasDTO as jZ, instanceOfTokenSocialMediasDTO as j_, TokenExtraDTOFromJSONTyped as ja, TokenExtraDTOToJSON as jb, TokenExtraDTOToJSONTyped as jc, type TokenHolder as jd, instanceOfTokenHolder as je, TokenHolderFromJSON as jf, TokenHolderFromJSONTyped as jg, TokenHolderToJSON as jh, TokenHolderToJSONTyped as ji, type TokenHolderPage as jj, instanceOfTokenHolderPage as jk, TokenHolderPageFromJSON as jl, TokenHolderPageFromJSONTyped as jm, TokenHolderPageToJSON as jn, TokenHolderPageToJSONTyped as jo, type TokenListPage as jp, instanceOfTokenListPage as jq, TokenListPageFromJSON as jr, TokenListPageFromJSONTyped as js, TokenListPageToJSON as jt, TokenListPageToJSONTyped as ju, type TokenMarketData as jv, instanceOfTokenMarketData as jw, TokenMarketDataFromJSON as jx, TokenMarketDataFromJSONTyped as jy, TokenMarketDataToJSON as jz, type RequestOpts as k, type TransferNetworkIdentificationsResponseDTO as k$, TokenSocialMediasDTOFromJSONTyped as k0, TokenSocialMediasDTOToJSON as k1, TokenSocialMediasDTOToJSONTyped as k2, type TokenStat as k3, instanceOfTokenStat as k4, TokenStatFromJSON as k5, TokenStatFromJSONTyped as k6, TokenStatToJSON as k7, TokenStatToJSONTyped as k8, type TokenTrader as k9, TradeDetailDTOFromJSONTyped as kA, TradeDetailDTOToJSON as kB, TradeDetailDTOToJSONTyped as kC, type TradePage as kD, instanceOfTradePage as kE, TradePageFromJSON as kF, TradePageFromJSONTyped as kG, TradePageToJSON as kH, TradePageToJSONTyped as kI, type TransferAlertsResponseDTO as kJ, instanceOfTransferAlertsResponseDTO as kK, TransferAlertsResponseDTOFromJSON as kL, TransferAlertsResponseDTOFromJSONTyped as kM, TransferAlertsResponseDTOToJSON as kN, TransferAlertsResponseDTOToJSONTyped as kO, type TransferBaseResponseDTO as kP, instanceOfTransferBaseResponseDTO as kQ, TransferBaseResponseDTOFromJSON as kR, TransferBaseResponseDTOFromJSONTyped as kS, TransferBaseResponseDTOToJSON as kT, TransferBaseResponseDTOToJSONTyped as kU, type TransferDirectExposureResponseDTO as kV, instanceOfTransferDirectExposureResponseDTO as kW, TransferDirectExposureResponseDTOFromJSON as kX, TransferDirectExposureResponseDTOFromJSONTyped as kY, TransferDirectExposureResponseDTOToJSON as kZ, TransferDirectExposureResponseDTOToJSONTyped as k_, instanceOfTokenTrader as ka, TokenTraderFromJSON as kb, TokenTraderFromJSONTyped as kc, TokenTraderToJSON as kd, TokenTraderToJSONTyped as ke, TokenTraderTag as kf, instanceOfTokenTraderTag as kg, TokenTraderTagFromJSON as kh, TokenTraderTagFromJSONTyped as ki, TokenTraderTagToJSON as kj, TokenTraderTagToJSONTyped as kk, type TopTradersDTO as kl, instanceOfTopTradersDTO as km, TopTradersDTOFromJSON as kn, TopTradersDTOFromJSONTyped as ko, TopTradersDTOToJSON as kp, TopTradersDTOToJSONTyped as kq, type TopTradersPage as kr, instanceOfTopTradersPage as ks, TopTradersPageFromJSON as kt, TopTradersPageFromJSONTyped as ku, TopTradersPageToJSON as kv, TopTradersPageToJSONTyped as kw, type TradeDetailDTO as kx, instanceOfTradeDetailDTO as ky, TradeDetailDTOFromJSON as kz, exists as l, instanceOfTransferNetworkIdentificationsResponseDTO as l0, TransferNetworkIdentificationsResponseDTOFromJSON as l1, TransferNetworkIdentificationsResponseDTOFromJSONTyped as l2, TransferNetworkIdentificationsResponseDTOToJSON as l3, TransferNetworkIdentificationsResponseDTOToJSONTyped as l4, type UpdateEndpointInput as l5, instanceOfUpdateEndpointInput as l6, UpdateEndpointInputFromJSON as l7, UpdateEndpointInputFromJSONTyped as l8, UpdateEndpointInputToJSON as l9, instanceOfWithdrawalBaseResponseDTO as lA, WithdrawalBaseResponseDTOFromJSON as lB, WithdrawalBaseResponseDTOFromJSONTyped as lC, WithdrawalBaseResponseDTOToJSON as lD, WithdrawalBaseResponseDTOToJSONTyped as lE, type WithdrawalFraudAssessmentResponseDTO as lF, instanceOfWithdrawalFraudAssessmentResponseDTO as lG, WithdrawalFraudAssessmentResponseDTOFromJSON as lH, WithdrawalFraudAssessmentResponseDTOFromJSONTyped as lI, WithdrawalFraudAssessmentResponseDTOToJSON as lJ, WithdrawalFraudAssessmentResponseDTOToJSONTyped as lK, UpdateEndpointInputToJSONTyped as la, type WalletBalanceDetailDTO as lb, instanceOfWalletBalanceDetailDTO as lc, WalletBalanceDetailDTOFromJSON as ld, WalletBalanceDetailDTOFromJSONTyped as le, WalletBalanceDetailDTOToJSON as lf, WalletBalanceDetailDTOToJSONTyped as lg, type WalletBalancesDTO as lh, instanceOfWalletBalancesDTO as li, WalletBalancesDTOFromJSON as lj, WalletBalancesDTOFromJSONTyped as lk, WalletBalancesDTOToJSON as ll, WalletBalancesDTOToJSONTyped as lm, type WalletPnlDTO as ln, instanceOfWalletPnlDTO as lo, WalletPnlDTOFromJSON as lp, WalletPnlDTOFromJSONTyped as lq, WalletPnlDTOToJSON as lr, WalletPnlDTOToJSONTyped as ls, type WithdrawalAddressIdentificationsResponseDTO as lt, instanceOfWithdrawalAddressIdentificationsResponseDTO as lu, WithdrawalAddressIdentificationsResponseDTOFromJSON as lv, WithdrawalAddressIdentificationsResponseDTOFromJSONTyped as lw, WithdrawalAddressIdentificationsResponseDTOToJSON as lx, WithdrawalAddressIdentificationsResponseDTOToJSONTyped as ly, type WithdrawalBaseResponseDTO as lz, mapValues as m, canConsumeForm as n, type Consume as o, type RequestContext as p, querystring as q, type ResponseContext as r, type Middleware as s, type ResponseTransformer as t, JSONApiResponse as u, BlobApiResponse as v, BlockchainApi as w, type MoonshotCreateTokenRequest as x, type MoonshotSubmitCreateTokenRequest as y, DefiSolanaMoonshotApi as z };