@chainstream-io/sdk 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @chainstream-io/sdk@0.1.11
1
+ ## @chainstream-io/sdk@0.1.10
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @chainstream-io/sdk@0.1.11 --save
39
+ npm install @chainstream-io/sdk@0.1.10 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -443,6 +443,40 @@ declare function CandleFromJSONTyped(json: any, ignoreDiscriminator: boolean): C
443
443
  declare function CandleToJSON(json: any): Candle;
444
444
  declare function CandleToJSONTyped(value?: Candle | null, ignoreDiscriminator?: boolean): any;
445
445
 
446
+ /**
447
+ * Dex Aggregator API
448
+ * Dex Aggregator API ⚡️
449
+ *
450
+ * The version of the OpenAPI document: 1.0
451
+ * Contact: ai@sx.ai
452
+ *
453
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
454
+ * https://openapi-generator.tech
455
+ * Do not edit the class manually.
456
+ */
457
+ /**
458
+ *
459
+ * @export
460
+ */
461
+ declare const Chain: {
462
+ readonly Sol: "sol";
463
+ readonly Base: "base";
464
+ readonly Bsc: "bsc";
465
+ readonly Polygon: "polygon";
466
+ readonly Arbitrum: "arbitrum";
467
+ readonly Optimism: "optimism";
468
+ readonly Avalanche: "avalanche";
469
+ readonly Ethereum: "ethereum";
470
+ readonly Zksync: "zksync";
471
+ readonly Sui: "sui";
472
+ };
473
+ type Chain = typeof Chain[keyof typeof Chain];
474
+ declare function instanceOfChain(value: any): boolean;
475
+ declare function ChainFromJSON(json: any): Chain;
476
+ declare function ChainFromJSONTyped(json: any, ignoreDiscriminator: boolean): Chain;
477
+ declare function ChainToJSON(value?: Chain | null): any;
478
+ declare function ChainToJSONTyped(value: any, ignoreDiscriminator: boolean): Chain;
479
+
446
480
  /**
447
481
  * Dex Aggregator API
448
482
  * Dex Aggregator API ⚡️
@@ -494,6 +528,12 @@ declare function ChainSymbolToJSONTyped(value: any, ignoreDiscriminator: boolean
494
528
  * @interface ClaimRedPacketInput
495
529
  */
496
530
  interface ClaimRedPacketInput {
531
+ /**
532
+ * DTO.RED_PACKET.CHAIN
533
+ * @type {string}
534
+ * @memberof ClaimRedPacketInput
535
+ */
536
+ chain: ClaimRedPacketInputChainEnum;
497
537
  /**
498
538
  * DTO.RED_PACKET.PACKET_ID
499
539
  * @type {string}
@@ -519,6 +559,22 @@ interface ClaimRedPacketInput {
519
559
  */
520
560
  claimer: string;
521
561
  }
562
+ /**
563
+ * @export
564
+ */
565
+ declare const ClaimRedPacketInputChainEnum: {
566
+ readonly Sol: "sol";
567
+ readonly Base: "base";
568
+ readonly Bsc: "bsc";
569
+ readonly Polygon: "polygon";
570
+ readonly Arbitrum: "arbitrum";
571
+ readonly Optimism: "optimism";
572
+ readonly Avalanche: "avalanche";
573
+ readonly Ethereum: "ethereum";
574
+ readonly Zksync: "zksync";
575
+ readonly Sui: "sui";
576
+ };
577
+ type ClaimRedPacketInputChainEnum = typeof ClaimRedPacketInputChainEnum[keyof typeof ClaimRedPacketInputChainEnum];
522
578
  /**
523
579
  * Check if a given object implements the ClaimRedPacketInput interface.
524
580
  */
@@ -545,6 +601,12 @@ declare function ClaimRedPacketInputToJSONTyped(value?: ClaimRedPacketInput | nu
545
601
  * @interface CreateRedPacketInput
546
602
  */
547
603
  interface CreateRedPacketInput {
604
+ /**
605
+ * DTO.RED_PACKET.CHAIN
606
+ * @type {string}
607
+ * @memberof CreateRedPacketInput
608
+ */
609
+ chain: CreateRedPacketInputChainEnum;
548
610
  /**
549
611
  * DTO.RED_PACKET.CREATOR
550
612
  * @type {string}
@@ -594,6 +656,22 @@ interface CreateRedPacketInput {
594
656
  */
595
657
  claimAuthority?: string;
596
658
  }
659
+ /**
660
+ * @export
661
+ */
662
+ declare const CreateRedPacketInputChainEnum: {
663
+ readonly Sol: "sol";
664
+ readonly Base: "base";
665
+ readonly Bsc: "bsc";
666
+ readonly Polygon: "polygon";
667
+ readonly Arbitrum: "arbitrum";
668
+ readonly Optimism: "optimism";
669
+ readonly Avalanche: "avalanche";
670
+ readonly Ethereum: "ethereum";
671
+ readonly Zksync: "zksync";
672
+ readonly Sui: "sui";
673
+ };
674
+ type CreateRedPacketInputChainEnum = typeof CreateRedPacketInputChainEnum[keyof typeof CreateRedPacketInputChainEnum];
597
675
  /**
598
676
  * Check if a given object implements the CreateRedPacketInput interface.
599
677
  */
@@ -969,6 +1047,96 @@ declare function DexPoolDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean
969
1047
  declare function DexPoolDTOToJSON(json: any): DexPoolDTO;
970
1048
  declare function DexPoolDTOToJSONTyped(value?: DexPoolDTO | null, ignoreDiscriminator?: boolean): any;
971
1049
 
1050
+ /**
1051
+ * Dex Aggregator API
1052
+ * Dex Aggregator API ⚡️
1053
+ *
1054
+ * The version of the OpenAPI document: 1.0
1055
+ * Contact: ai@sx.ai
1056
+ *
1057
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1058
+ * https://openapi-generator.tech
1059
+ * Do not edit the class manually.
1060
+ */
1061
+ /**
1062
+ *
1063
+ * @export
1064
+ * @interface EstimateGasLimitInput
1065
+ */
1066
+ interface EstimateGasLimitInput {
1067
+ /**
1068
+ * From address
1069
+ * @type {string}
1070
+ * @memberof EstimateGasLimitInput
1071
+ */
1072
+ from: string;
1073
+ /**
1074
+ * To address
1075
+ * @type {string}
1076
+ * @memberof EstimateGasLimitInput
1077
+ */
1078
+ to: string;
1079
+ /**
1080
+ * Transaction data (hex)
1081
+ * @type {string}
1082
+ * @memberof EstimateGasLimitInput
1083
+ */
1084
+ data: string;
1085
+ /**
1086
+ * Value to send (in wei, hex string)
1087
+ * @type {string}
1088
+ * @memberof EstimateGasLimitInput
1089
+ */
1090
+ value?: string;
1091
+ }
1092
+ /**
1093
+ * Check if a given object implements the EstimateGasLimitInput interface.
1094
+ */
1095
+ declare function instanceOfEstimateGasLimitInput(value: object): value is EstimateGasLimitInput;
1096
+ declare function EstimateGasLimitInputFromJSON(json: any): EstimateGasLimitInput;
1097
+ declare function EstimateGasLimitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): EstimateGasLimitInput;
1098
+ declare function EstimateGasLimitInputToJSON(json: any): EstimateGasLimitInput;
1099
+ declare function EstimateGasLimitInputToJSONTyped(value?: EstimateGasLimitInput | null, ignoreDiscriminator?: boolean): any;
1100
+
1101
+ /**
1102
+ * Dex Aggregator API
1103
+ * Dex Aggregator API ⚡️
1104
+ *
1105
+ * The version of the OpenAPI document: 1.0
1106
+ * Contact: ai@sx.ai
1107
+ *
1108
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1109
+ * https://openapi-generator.tech
1110
+ * Do not edit the class manually.
1111
+ */
1112
+ /**
1113
+ *
1114
+ * @export
1115
+ * @interface EstimateGasLimitResponse
1116
+ */
1117
+ interface EstimateGasLimitResponse {
1118
+ /**
1119
+ * Estimated gas limit (hex string)
1120
+ * @type {string}
1121
+ * @memberof EstimateGasLimitResponse
1122
+ */
1123
+ gasLimit: string;
1124
+ /**
1125
+ * Chain symbol
1126
+ * @type {string}
1127
+ * @memberof EstimateGasLimitResponse
1128
+ */
1129
+ chain: string;
1130
+ }
1131
+ /**
1132
+ * Check if a given object implements the EstimateGasLimitResponse interface.
1133
+ */
1134
+ declare function instanceOfEstimateGasLimitResponse(value: object): value is EstimateGasLimitResponse;
1135
+ declare function EstimateGasLimitResponseFromJSON(json: any): EstimateGasLimitResponse;
1136
+ declare function EstimateGasLimitResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EstimateGasLimitResponse;
1137
+ declare function EstimateGasLimitResponseToJSON(json: any): EstimateGasLimitResponse;
1138
+ declare function EstimateGasLimitResponseToJSONTyped(value?: EstimateGasLimitResponse | null, ignoreDiscriminator?: boolean): any;
1139
+
972
1140
  /**
973
1141
  * Dex Aggregator API
974
1142
  * Dex Aggregator API ⚡️
@@ -1180,6 +1348,45 @@ declare function GainersAndLosersPageFromJSONTyped(json: any, ignoreDiscriminato
1180
1348
  declare function GainersAndLosersPageToJSON(json: any): GainersAndLosersPage;
1181
1349
  declare function GainersAndLosersPageToJSONTyped(value?: GainersAndLosersPage | null, ignoreDiscriminator?: boolean): any;
1182
1350
 
1351
+ /**
1352
+ * Dex Aggregator API
1353
+ * Dex Aggregator API ⚡️
1354
+ *
1355
+ * The version of the OpenAPI document: 1.0
1356
+ * Contact: ai@sx.ai
1357
+ *
1358
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1359
+ * https://openapi-generator.tech
1360
+ * Do not edit the class manually.
1361
+ */
1362
+ /**
1363
+ *
1364
+ * @export
1365
+ * @interface GasPriceResponse
1366
+ */
1367
+ interface GasPriceResponse {
1368
+ /**
1369
+ * Current gas price in wei (hex string)
1370
+ * @type {string}
1371
+ * @memberof GasPriceResponse
1372
+ */
1373
+ gasPrice: string;
1374
+ /**
1375
+ * Chain symbol
1376
+ * @type {string}
1377
+ * @memberof GasPriceResponse
1378
+ */
1379
+ chain: string;
1380
+ }
1381
+ /**
1382
+ * Check if a given object implements the GasPriceResponse interface.
1383
+ */
1384
+ declare function instanceOfGasPriceResponse(value: object): value is GasPriceResponse;
1385
+ declare function GasPriceResponseFromJSON(json: any): GasPriceResponse;
1386
+ declare function GasPriceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GasPriceResponse;
1387
+ declare function GasPriceResponseToJSON(json: any): GasPriceResponse;
1388
+ declare function GasPriceResponseToJSONTyped(value?: GasPriceResponse | null, ignoreDiscriminator?: boolean): any;
1389
+
1183
1390
  /**
1184
1391
  * Dex Aggregator API
1185
1392
  * Dex Aggregator API ⚡️
@@ -1776,10 +1983,10 @@ interface RedPacketClaimDTO {
1776
1983
  packetId: string;
1777
1984
  /**
1778
1985
  * DTO.RED_PACKET.CHAIN
1779
- * @type {ChainSymbol}
1986
+ * @type {Chain}
1780
1987
  * @memberof RedPacketClaimDTO
1781
1988
  */
1782
- chain: ChainSymbol;
1989
+ chain: Chain;
1783
1990
  /**
1784
1991
  * DTO.RED_PACKET.CLAIMER
1785
1992
  * @type {string}
@@ -1904,10 +2111,10 @@ declare function RedPacketClaimsPageToJSONTyped(value?: RedPacketClaimsPage | nu
1904
2111
  interface RedPacketDTO {
1905
2112
  /**
1906
2113
  * GLOBAL.CHAIN.DESCRIPTION
1907
- * @type {ChainSymbol}
2114
+ * @type {Chain}
1908
2115
  * @memberof RedPacketDTO
1909
2116
  */
1910
- chain: ChainSymbol;
2117
+ chain: Chain;
1911
2118
  /**
1912
2119
  * DTO.RED_PACKET.ID
1913
2120
  * @type {string}
@@ -3909,7 +4116,7 @@ interface Token {
3909
4116
  * @type {TokenStat}
3910
4117
  * @memberof Token
3911
4118
  */
3912
- stats: TokenStat;
4119
+ stats?: TokenStat;
3913
4120
  /**
3914
4121
  * DTO.TOKEN.LIQUIDITY
3915
4122
  * @type {Array<DexPoolDTO>}
@@ -6183,7 +6390,7 @@ interface GetRedpacketsRequest {
6183
6390
  limit?: number;
6184
6391
  direction?: string;
6185
6392
  creator?: string;
6186
- chain?: ChainSymbol;
6393
+ chain?: GetRedpacketsChainEnum;
6187
6394
  }
6188
6395
  interface GetRedpacketsByAddressRequest {
6189
6396
  address: string;
@@ -6280,6 +6487,22 @@ declare class RedPacketApi extends BaseAPI {
6280
6487
  */
6281
6488
  redpacketSend(requestParameters: RedpacketSendRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<RedPacketSendTxResponse>;
6282
6489
  }
6490
+ /**
6491
+ * @export
6492
+ */
6493
+ declare const GetRedpacketsChainEnum: {
6494
+ readonly Sol: "sol";
6495
+ readonly Base: "base";
6496
+ readonly Bsc: "bsc";
6497
+ readonly Polygon: "polygon";
6498
+ readonly Arbitrum: "arbitrum";
6499
+ readonly Optimism: "optimism";
6500
+ readonly Avalanche: "avalanche";
6501
+ readonly Ethereum: "ethereum";
6502
+ readonly Zksync: "zksync";
6503
+ readonly Sui: "sui";
6504
+ };
6505
+ type GetRedpacketsChainEnum = typeof GetRedpacketsChainEnum[keyof typeof GetRedpacketsChainEnum];
6283
6506
 
6284
6507
  /**
6285
6508
  * Dex Aggregator API
@@ -6967,6 +7190,7 @@ interface GetActivitiesRequest {
6967
7190
  afterTimestamp?: number;
6968
7191
  beforeBlockHeight?: number;
6969
7192
  afterBlockHeight?: number;
7193
+ transactionsSignature?: string;
6970
7194
  type?: GetActivitiesTypeEnum;
6971
7195
  }
6972
7196
  interface GetGainersLosersRequest {
@@ -7000,6 +7224,7 @@ interface GetTradesRequest {
7000
7224
  afterTimestamp?: number;
7001
7225
  beforeBlockHeight?: number;
7002
7226
  afterBlockHeight?: number;
7227
+ transactionsSignature?: string;
7003
7228
  type?: GetTradesTypeEnum;
7004
7229
  }
7005
7230
  /**
@@ -7169,6 +7394,13 @@ type GetTradesTypeEnum = typeof GetTradesTypeEnum[keyof typeof GetTradesTypeEnum
7169
7394
  * Do not edit the class manually.
7170
7395
  */
7171
7396
 
7397
+ interface EstimateGasLimitRequest {
7398
+ chain: EstimateGasLimitChainEnum;
7399
+ estimateGasLimitInput: EstimateGasLimitInput;
7400
+ }
7401
+ interface GetGasPriceRequest {
7402
+ chain: GetGasPriceChainEnum;
7403
+ }
7172
7404
  interface SendRequest {
7173
7405
  chain: string;
7174
7406
  sendTxInput: SendTxInput;
@@ -7177,6 +7409,26 @@ interface SendRequest {
7177
7409
  *
7178
7410
  */
7179
7411
  declare class TransactionApi extends BaseAPI {
7412
+ /**
7413
+ * CONTROLLER.TRANSACTION.ESTIMATE_GAS_LIMIT.DESCRIPTION
7414
+ * CONTROLLER.TRANSACTION.ESTIMATE_GAS_LIMIT.SUMMARY
7415
+ */
7416
+ estimateGasLimitRaw(requestParameters: EstimateGasLimitRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<EstimateGasLimitResponse>>;
7417
+ /**
7418
+ * CONTROLLER.TRANSACTION.ESTIMATE_GAS_LIMIT.DESCRIPTION
7419
+ * CONTROLLER.TRANSACTION.ESTIMATE_GAS_LIMIT.SUMMARY
7420
+ */
7421
+ estimateGasLimit(requestParameters: EstimateGasLimitRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<EstimateGasLimitResponse>;
7422
+ /**
7423
+ * CONTROLLER.TRANSACTION.GET_GAS_PRICE.DESCRIPTION
7424
+ * CONTROLLER.TRANSACTION.GET_GAS_PRICE.SUMMARY
7425
+ */
7426
+ getGasPriceRaw(requestParameters: GetGasPriceRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GasPriceResponse>>;
7427
+ /**
7428
+ * CONTROLLER.TRANSACTION.GET_GAS_PRICE.DESCRIPTION
7429
+ * CONTROLLER.TRANSACTION.GET_GAS_PRICE.SUMMARY
7430
+ */
7431
+ getGasPrice(requestParameters: GetGasPriceRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GasPriceResponse>;
7180
7432
  /**
7181
7433
  * CONTROLLER.TRANSACTION.SEND.DESCRIPTION
7182
7434
  * CONTROLLER.TRANSACTION.SEND.SUMMARY
@@ -7188,6 +7440,34 @@ declare class TransactionApi extends BaseAPI {
7188
7440
  */
7189
7441
  send(requestParameters: SendRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SendTxResponse>;
7190
7442
  }
7443
+ /**
7444
+ * @export
7445
+ */
7446
+ declare const EstimateGasLimitChainEnum: {
7447
+ readonly Base: "base";
7448
+ readonly Bsc: "bsc";
7449
+ readonly Polygon: "polygon";
7450
+ readonly Arbitrum: "arbitrum";
7451
+ readonly Optimism: "optimism";
7452
+ readonly Avalanche: "avalanche";
7453
+ readonly Ethereum: "ethereum";
7454
+ readonly Zksync: "zksync";
7455
+ };
7456
+ type EstimateGasLimitChainEnum = typeof EstimateGasLimitChainEnum[keyof typeof EstimateGasLimitChainEnum];
7457
+ /**
7458
+ * @export
7459
+ */
7460
+ declare const GetGasPriceChainEnum: {
7461
+ readonly Base: "base";
7462
+ readonly Bsc: "bsc";
7463
+ readonly Polygon: "polygon";
7464
+ readonly Arbitrum: "arbitrum";
7465
+ readonly Optimism: "optimism";
7466
+ readonly Avalanche: "avalanche";
7467
+ readonly Ethereum: "ethereum";
7468
+ readonly Zksync: "zksync";
7469
+ };
7470
+ type GetGasPriceChainEnum = typeof GetGasPriceChainEnum[keyof typeof GetGasPriceChainEnum];
7191
7471
 
7192
7472
  /**
7193
7473
  * Dex Aggregator API
@@ -7298,4 +7578,4 @@ declare class WatchlistApi extends BaseAPI {
7298
7578
  watchlistAdd(requestParameters: WatchlistAddRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<BooleanResultDTO>;
7299
7579
  }
7300
7580
 
7301
- 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, SearchSortByEnum 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 GetMarketDataRequest as aA, type GetMarketDataMultiRequest as aB, type GetMetadataRequest as aC, type GetMetadataMultiRequest as aD, type GetMintAndBurnRequest as aE, type GetPoolsRequest as aF, type GetPriceByTimeRequest as aG, type GetPricesRequest as aH, type GetSecurityRequest as aI, type GetStatsRequest as aJ, type GetStatsMultiRequest as aK, type GetTokenRequest as aL, type GetTokensRequest as aM, type GetTopHoldersRequest as aN, type ListTokenRequest as aO, type SearchRequest as aP, TokenApi as aQ, GetHoldersDirectionEnum as aR, GetMintAndBurnDirectionEnum as aS, GetMintAndBurnTypeEnum as aT, GetPricesDirectionEnum as aU, GetTokensSortByEnum as aV, GetTokensSortDirectionEnum as aW, ListTokenDirectionEnum as aX, ListTokenSortEnum as aY, ListTokenSortByEnum as aZ, SearchSortEnum 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, type GetCandlesRequest as aw, type GetCreationRequest as ax, type GetHoldersRequest as ay, type GetHoldersMultiRequest as az, Configuration as b, instanceOfClaimRedPacketInput as b$, type GetActivitiesRequest as b0, type GetGainersLosersRequest as b1, type GetTopTradersRequest as b2, type GetTradesRequest as b3, TradeApi as b4, GetActivitiesDirectionEnum as b5, GetActivitiesTypeEnum as b6, GetGainersLosersDirectionEnum as b7, GetGainersLosersTypeEnum as b8, GetGainersLosersSortByEnum as b9, BlockchainLatestBlockDTOToJSON as bA, BlockchainLatestBlockDTOToJSONTyped as bB, type BooleanResultDTO as bC, instanceOfBooleanResultDTO as bD, BooleanResultDTOFromJSON as bE, BooleanResultDTOFromJSONTyped as bF, BooleanResultDTOToJSON as bG, BooleanResultDTOToJSONTyped as bH, type CalculatePnlInput as bI, instanceOfCalculatePnlInput as bJ, CalculatePnlInputFromJSON as bK, CalculatePnlInputFromJSONTyped as bL, CalculatePnlInputToJSON as bM, CalculatePnlInputToJSONTyped as bN, type Candle as bO, instanceOfCandle as bP, CandleFromJSON as bQ, CandleFromJSONTyped as bR, CandleToJSON as bS, CandleToJSONTyped as bT, ChainSymbol as bU, instanceOfChainSymbol as bV, ChainSymbolFromJSON as bW, ChainSymbolFromJSONTyped as bX, ChainSymbolToJSON as bY, ChainSymbolToJSONTyped as bZ, type ClaimRedPacketInput as b_, GetGainersLosersSortTypeEnum as ba, GetTopTradersDirectionEnum as bb, GetTopTradersTimeFrameEnum as bc, GetTopTradersSortTypeEnum as bd, GetTopTradersSortByEnum as be, GetTradesDirectionEnum as bf, GetTradesTypeEnum as bg, type SendRequest as bh, TransactionApi as bi, type CalculatePnlRequest as bj, type GetBalanceRequest as bk, type GetPnlRequest as bl, type GetPnlStatsRequest as bm, WalletApi as bn, type WatchlistAddRequest as bo, WatchlistApi as bp, type BlockchainDTO as bq, instanceOfBlockchainDTO as br, BlockchainDTOFromJSON as bs, BlockchainDTOFromJSONTyped as bt, BlockchainDTOToJSON as bu, BlockchainDTOToJSONTyped as bv, type BlockchainLatestBlockDTO as bw, instanceOfBlockchainLatestBlockDTO as bx, BlockchainLatestBlockDTOFromJSON as by, BlockchainLatestBlockDTOFromJSONTyped as bz, RequiredError as c, GainersAndLosersPageFromJSONTyped as c$, ClaimRedPacketInputFromJSON as c0, ClaimRedPacketInputFromJSONTyped as c1, ClaimRedPacketInputToJSON as c2, ClaimRedPacketInputToJSONTyped as c3, type CreateRedPacketInput as c4, instanceOfCreateRedPacketInput as c5, CreateRedPacketInputFromJSON as c6, CreateRedPacketInputFromJSONTyped as c7, CreateRedPacketInputToJSON as c8, CreateRedPacketInputToJSONTyped as c9, instanceOfDexPage as cA, DexPageFromJSON as cB, DexPageFromJSONTyped as cC, DexPageToJSON as cD, DexPageToJSONTyped as cE, type DexPoolDTO as cF, instanceOfDexPoolDTO as cG, DexPoolDTOFromJSON as cH, DexPoolDTOFromJSONTyped as cI, DexPoolDTOToJSON as cJ, DexPoolDTOToJSONTyped as cK, type FilterCondition as cL, FilterConditionFieldEnum as cM, instanceOfFilterCondition as cN, FilterConditionFromJSON as cO, FilterConditionFromJSONTyped as cP, FilterConditionToJSON as cQ, FilterConditionToJSONTyped as cR, type GainersAndLosersDTO as cS, instanceOfGainersAndLosersDTO as cT, GainersAndLosersDTOFromJSON as cU, GainersAndLosersDTOFromJSONTyped as cV, GainersAndLosersDTOToJSON as cW, GainersAndLosersDTOToJSONTyped as cX, type GainersAndLosersPage as cY, instanceOfGainersAndLosersPage as cZ, GainersAndLosersPageFromJSON as c_, type CreateRedPacketReply as ca, instanceOfCreateRedPacketReply as cb, CreateRedPacketReplyFromJSON as cc, CreateRedPacketReplyFromJSONTyped as cd, CreateRedPacketReplyToJSON as ce, CreateRedPacketReplyToJSONTyped as cf, type CreateTokenInput as cg, CreateTokenInputDexEnum as ch, instanceOfCreateTokenInput as ci, CreateTokenInputFromJSON as cj, CreateTokenInputFromJSONTyped as ck, CreateTokenInputToJSON as cl, CreateTokenInputToJSONTyped as cm, type CreateTokenReply as cn, instanceOfCreateTokenReply as co, CreateTokenReplyFromJSON as cp, CreateTokenReplyFromJSONTyped as cq, CreateTokenReplyToJSON as cr, CreateTokenReplyToJSONTyped as cs, type DexDTO as ct, instanceOfDexDTO as cu, DexDTOFromJSON as cv, DexDTOFromJSONTyped as cw, DexDTOToJSON as cx, DexDTOToJSONTyped as cy, type DexPage as cz, COLLECTION_FORMATS as d, instanceOfQuoteResponse as d$, GainersAndLosersPageToJSON as d0, GainersAndLosersPageToJSONTyped as d1, type JobDTO as d2, instanceOfJobDTO as d3, JobDTOFromJSON as d4, JobDTOFromJSONTyped as d5, JobDTOToJSON as d6, JobDTOToJSONTyped as d7, type JobStreamingDTO as d8, instanceOfJobStreamingDTO as d9, type MoonshotSubmitCreateToken200Response as dA, instanceOfMoonshotSubmitCreateToken200Response as dB, MoonshotSubmitCreateToken200ResponseFromJSON as dC, MoonshotSubmitCreateToken200ResponseFromJSONTyped as dD, MoonshotSubmitCreateToken200ResponseToJSON as dE, MoonshotSubmitCreateToken200ResponseToJSONTyped as dF, type MoonshotSubmitCreateTokenInput as dG, instanceOfMoonshotSubmitCreateTokenInput as dH, MoonshotSubmitCreateTokenInputFromJSON as dI, MoonshotSubmitCreateTokenInputFromJSONTyped as dJ, MoonshotSubmitCreateTokenInputToJSON as dK, MoonshotSubmitCreateTokenInputToJSONTyped as dL, type PumpCreateTokenInput as dM, PumpCreateTokenInputDexEnum as dN, PumpCreateTokenInputMigrationDexEnum as dO, instanceOfPumpCreateTokenInput as dP, PumpCreateTokenInputFromJSON as dQ, PumpCreateTokenInputFromJSONTyped as dR, PumpCreateTokenInputToJSON as dS, PumpCreateTokenInputToJSONTyped as dT, type PumpCreateTokenReply as dU, instanceOfPumpCreateTokenReply as dV, PumpCreateTokenReplyFromJSON as dW, PumpCreateTokenReplyFromJSONTyped as dX, PumpCreateTokenReplyToJSON as dY, PumpCreateTokenReplyToJSONTyped as dZ, type QuoteResponse as d_, JobStreamingDTOFromJSON as da, JobStreamingDTOFromJSONTyped as db, JobStreamingDTOToJSON as dc, JobStreamingDTOToJSONTyped as dd, type Link as de, LinkLabelEnum as df, instanceOfLink as dg, LinkFromJSON as dh, LinkFromJSONTyped as di, LinkToJSON as dj, LinkToJSONTyped as dk, type MoonshotCreateTokenInput as dl, MoonshotCreateTokenInputDexEnum as dm, MoonshotCreateTokenInputMigrationDexEnum as dn, instanceOfMoonshotCreateTokenInput as dp, MoonshotCreateTokenInputFromJSON as dq, MoonshotCreateTokenInputFromJSONTyped as dr, MoonshotCreateTokenInputToJSON as ds, MoonshotCreateTokenInputToJSONTyped as dt, type MoonshotCreateTokenReply as du, instanceOfMoonshotCreateTokenReply as dv, MoonshotCreateTokenReplyFromJSON as dw, MoonshotCreateTokenReplyFromJSONTyped as dx, MoonshotCreateTokenReplyToJSON as dy, MoonshotCreateTokenReplyToJSONTyped as dz, type FetchAPI as e, SendTxResponseToJSON as e$, QuoteResponseFromJSON as e0, QuoteResponseFromJSONTyped as e1, QuoteResponseToJSON as e2, QuoteResponseToJSONTyped as e3, type RedPacketClaimDTO as e4, instanceOfRedPacketClaimDTO as e5, RedPacketClaimDTOFromJSON as e6, RedPacketClaimDTOFromJSONTyped as e7, RedPacketClaimDTOToJSON as e8, RedPacketClaimDTOToJSONTyped as e9, RedPacketSendTxResponseFromJSON as eA, RedPacketSendTxResponseFromJSONTyped as eB, RedPacketSendTxResponseToJSON as eC, RedPacketSendTxResponseToJSONTyped as eD, type RedPacketsPage as eE, instanceOfRedPacketsPage as eF, RedPacketsPageFromJSON as eG, RedPacketsPageFromJSONTyped as eH, RedPacketsPageToJSON as eI, RedPacketsPageToJSONTyped as eJ, Resolution as eK, instanceOfResolution as eL, ResolutionFromJSON as eM, ResolutionFromJSONTyped as eN, ResolutionToJSON as eO, ResolutionToJSONTyped as eP, type SendTxInput as eQ, SendTxInputSubmitTypeEnum as eR, instanceOfSendTxInput as eS, SendTxInputFromJSON as eT, SendTxInputFromJSONTyped as eU, SendTxInputToJSON as eV, SendTxInputToJSONTyped as eW, type SendTxResponse as eX, instanceOfSendTxResponse as eY, SendTxResponseFromJSON as eZ, SendTxResponseFromJSONTyped as e_, type RedPacketClaimsPage as ea, instanceOfRedPacketClaimsPage as eb, RedPacketClaimsPageFromJSON as ec, RedPacketClaimsPageFromJSONTyped as ed, RedPacketClaimsPageToJSON as ee, RedPacketClaimsPageToJSONTyped as ef, type RedPacketDTO as eg, instanceOfRedPacketDTO as eh, RedPacketDTOFromJSON as ei, RedPacketDTOFromJSONTyped as ej, RedPacketDTOToJSON as ek, RedPacketDTOToJSONTyped as el, type RedPacketReply as em, instanceOfRedPacketReply as en, RedPacketReplyFromJSON as eo, RedPacketReplyFromJSONTyped as ep, RedPacketReplyToJSON as eq, RedPacketReplyToJSONTyped as er, type RedPacketSendTxInput as es, instanceOfRedPacketSendTxInput as et, RedPacketSendTxInputFromJSON as eu, RedPacketSendTxInputFromJSONTyped as ev, RedPacketSendTxInputToJSON as ew, RedPacketSendTxInputToJSONTyped as ex, type RedPacketSendTxResponse as ey, instanceOfRedPacketSendTxResponse as ez, type HTTPHeaders as f, TokenHolderFromJSONTyped as f$, SendTxResponseToJSONTyped as f0, type SwapInput as f1, SwapInputDexEnum as f2, SwapInputSwapModeEnum as f3, instanceOfSwapInput as f4, SwapInputFromJSON as f5, SwapInputFromJSONTyped as f6, SwapInputToJSON as f7, SwapInputToJSONTyped as f8, type SwapReply as f9, TokenCreationDTOTypeEnum as fA, instanceOfTokenCreationDTO as fB, TokenCreationDTOFromJSON as fC, TokenCreationDTOFromJSONTyped as fD, TokenCreationDTOToJSON as fE, TokenCreationDTOToJSONTyped as fF, type TokenCreationPage as fG, instanceOfTokenCreationPage as fH, TokenCreationPageFromJSON as fI, TokenCreationPageFromJSONTyped as fJ, TokenCreationPageToJSON as fK, TokenCreationPageToJSONTyped as fL, type TokenCreatorsDTO as fM, instanceOfTokenCreatorsDTO as fN, TokenCreatorsDTOFromJSON as fO, TokenCreatorsDTOFromJSONTyped as fP, TokenCreatorsDTOToJSON as fQ, TokenCreatorsDTOToJSONTyped as fR, type TokenExtraDTO as fS, instanceOfTokenExtraDTO as fT, TokenExtraDTOFromJSON as fU, TokenExtraDTOFromJSONTyped as fV, TokenExtraDTOToJSON as fW, TokenExtraDTOToJSONTyped as fX, type TokenHolder as fY, instanceOfTokenHolder as fZ, TokenHolderFromJSON as f_, instanceOfSwapReply as fa, SwapReplyFromJSON as fb, SwapReplyFromJSONTyped as fc, SwapReplyToJSON as fd, SwapReplyToJSONTyped as fe, type SwapRouteInput as ff, SwapRouteInputDexEnum as fg, SwapRouteInputSwapModeEnum as fh, instanceOfSwapRouteInput as fi, SwapRouteInputFromJSON as fj, SwapRouteInputFromJSONTyped as fk, SwapRouteInputToJSON as fl, SwapRouteInputToJSONTyped as fm, type SwapRouteResponse as fn, instanceOfSwapRouteResponse as fo, SwapRouteResponseFromJSON as fp, SwapRouteResponseFromJSONTyped as fq, SwapRouteResponseToJSON as fr, SwapRouteResponseToJSONTyped as fs, type Token as ft, instanceOfToken as fu, TokenFromJSON as fv, TokenFromJSONTyped as fw, TokenToJSON as fx, TokenToJSONTyped as fy, type TokenCreationDTO as fz, type HTTPQuery as g, instanceOfTopTradersPage as g$, TokenHolderToJSON as g0, TokenHolderToJSONTyped as g1, type TokenHolderPage as g2, instanceOfTokenHolderPage as g3, TokenHolderPageFromJSON as g4, TokenHolderPageFromJSONTyped as g5, TokenHolderPageToJSON as g6, TokenHolderPageToJSONTyped as g7, type TokenListPage as g8, instanceOfTokenListPage as g9, TokenPriceDTOToJSON as gA, TokenPriceDTOToJSONTyped as gB, type TokenPricePage as gC, instanceOfTokenPricePage as gD, TokenPricePageFromJSON as gE, TokenPricePageFromJSONTyped as gF, TokenPricePageToJSON as gG, TokenPricePageToJSONTyped as gH, type TokenSocialMediasDTO as gI, instanceOfTokenSocialMediasDTO as gJ, TokenSocialMediasDTOFromJSON as gK, TokenSocialMediasDTOFromJSONTyped as gL, TokenSocialMediasDTOToJSON as gM, TokenSocialMediasDTOToJSONTyped as gN, type TokenStat as gO, instanceOfTokenStat as gP, TokenStatFromJSON as gQ, TokenStatFromJSONTyped as gR, TokenStatToJSON as gS, TokenStatToJSONTyped as gT, type TopTradersDTO as gU, instanceOfTopTradersDTO as gV, TopTradersDTOFromJSON as gW, TopTradersDTOFromJSONTyped as gX, TopTradersDTOToJSON as gY, TopTradersDTOToJSONTyped as gZ, type TopTradersPage as g_, TokenListPageFromJSON as ga, TokenListPageFromJSONTyped as gb, TokenListPageToJSON as gc, TokenListPageToJSONTyped as gd, type TokenMarketData as ge, instanceOfTokenMarketData as gf, TokenMarketDataFromJSON as gg, TokenMarketDataFromJSONTyped as gh, TokenMarketDataToJSON as gi, TokenMarketDataToJSONTyped as gj, type TokenMetadata as gk, instanceOfTokenMetadata as gl, TokenMetadataFromJSON as gm, TokenMetadataFromJSONTyped as gn, TokenMetadataToJSON as go, TokenMetadataToJSONTyped as gp, type TokenPage as gq, instanceOfTokenPage as gr, TokenPageFromJSON as gs, TokenPageFromJSONTyped as gt, TokenPageToJSON as gu, TokenPageToJSONTyped as gv, type TokenPriceDTO as gw, instanceOfTokenPriceDTO as gx, TokenPriceDTOFromJSON as gy, TokenPriceDTOFromJSONTyped as gz, type HTTPBody as h, TopTradersPageFromJSON as h0, TopTradersPageFromJSONTyped as h1, TopTradersPageToJSON as h2, TopTradersPageToJSONTyped as h3, type TradeDetailDTO as h4, instanceOfTradeDetailDTO as h5, TradeDetailDTOFromJSON as h6, TradeDetailDTOFromJSONTyped as h7, TradeDetailDTOToJSON as h8, TradeDetailDTOToJSONTyped as h9, type TradePage as ha, instanceOfTradePage as hb, TradePageFromJSON as hc, TradePageFromJSONTyped as hd, TradePageToJSON as he, TradePageToJSONTyped as hf, type WalletBalanceDetailDTO as hg, instanceOfWalletBalanceDetailDTO as hh, WalletBalanceDetailDTOFromJSON as hi, WalletBalanceDetailDTOFromJSONTyped as hj, WalletBalanceDetailDTOToJSON as hk, WalletBalanceDetailDTOToJSONTyped as hl, type WalletBalancesDTO as hm, instanceOfWalletBalancesDTO as hn, WalletBalancesDTOFromJSON as ho, WalletBalancesDTOFromJSONTyped as hp, WalletBalancesDTOToJSON as hq, WalletBalancesDTOToJSONTyped as hr, type WalletPnlDTO as hs, instanceOfWalletPnlDTO as ht, WalletPnlDTOFromJSON as hu, WalletPnlDTOFromJSONTyped as hv, WalletPnlDTOToJSON as hw, WalletPnlDTOToJSONTyped as hx, type HTTPRequestInit as i, 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 };
7581
+ 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, SearchSortEnum 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 GetHoldersMultiRequest as aA, type GetMarketDataRequest as aB, type GetMarketDataMultiRequest as aC, type GetMetadataRequest as aD, type GetMetadataMultiRequest as aE, type GetMintAndBurnRequest as aF, type GetPoolsRequest as aG, type GetPriceByTimeRequest as aH, type GetPricesRequest as aI, type GetSecurityRequest as aJ, type GetStatsRequest as aK, type GetStatsMultiRequest as aL, type GetTokenRequest as aM, type GetTokensRequest as aN, type GetTopHoldersRequest as aO, type ListTokenRequest as aP, type SearchRequest as aQ, TokenApi as aR, GetHoldersDirectionEnum as aS, GetMintAndBurnDirectionEnum as aT, GetMintAndBurnTypeEnum as aU, GetPricesDirectionEnum as aV, GetTokensSortByEnum as aW, GetTokensSortDirectionEnum as aX, ListTokenDirectionEnum as aY, ListTokenSortEnum as aZ, ListTokenSortByEnum 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 GetHoldersRequest as az, Configuration as b, ChainFromJSON as b$, SearchSortByEnum as b0, type GetActivitiesRequest as b1, type GetGainersLosersRequest as b2, type GetTopTradersRequest as b3, type GetTradesRequest as b4, TradeApi as b5, GetActivitiesDirectionEnum as b6, GetActivitiesTypeEnum as b7, GetGainersLosersDirectionEnum as b8, GetGainersLosersTypeEnum as b9, BlockchainDTOToJSONTyped as bA, type BlockchainLatestBlockDTO as bB, instanceOfBlockchainLatestBlockDTO as bC, BlockchainLatestBlockDTOFromJSON as bD, BlockchainLatestBlockDTOFromJSONTyped as bE, BlockchainLatestBlockDTOToJSON as bF, BlockchainLatestBlockDTOToJSONTyped as bG, type BooleanResultDTO as bH, instanceOfBooleanResultDTO as bI, BooleanResultDTOFromJSON as bJ, BooleanResultDTOFromJSONTyped as bK, BooleanResultDTOToJSON as bL, BooleanResultDTOToJSONTyped as bM, type CalculatePnlInput as bN, instanceOfCalculatePnlInput as bO, CalculatePnlInputFromJSON as bP, CalculatePnlInputFromJSONTyped as bQ, CalculatePnlInputToJSON as bR, CalculatePnlInputToJSONTyped as bS, type Candle as bT, instanceOfCandle as bU, CandleFromJSON as bV, CandleFromJSONTyped as bW, CandleToJSON as bX, CandleToJSONTyped as bY, Chain as bZ, instanceOfChain as b_, GetGainersLosersSortByEnum as ba, GetGainersLosersSortTypeEnum as bb, GetTopTradersDirectionEnum as bc, GetTopTradersTimeFrameEnum as bd, GetTopTradersSortTypeEnum as be, GetTopTradersSortByEnum as bf, GetTradesDirectionEnum as bg, GetTradesTypeEnum as bh, type EstimateGasLimitRequest as bi, type GetGasPriceRequest as bj, type SendRequest as bk, TransactionApi as bl, EstimateGasLimitChainEnum as bm, GetGasPriceChainEnum as bn, type CalculatePnlRequest as bo, type GetBalanceRequest as bp, type GetPnlRequest as bq, type GetPnlStatsRequest as br, WalletApi as bs, type WatchlistAddRequest as bt, WatchlistApi as bu, type BlockchainDTO as bv, instanceOfBlockchainDTO as bw, BlockchainDTOFromJSON as bx, BlockchainDTOFromJSONTyped as by, BlockchainDTOToJSON as bz, RequiredError as c, EstimateGasLimitInputFromJSONTyped as c$, ChainFromJSONTyped as c0, ChainToJSON as c1, ChainToJSONTyped as c2, ChainSymbol as c3, instanceOfChainSymbol as c4, ChainSymbolFromJSON as c5, ChainSymbolFromJSONTyped as c6, ChainSymbolToJSON as c7, ChainSymbolToJSONTyped as c8, type ClaimRedPacketInput as c9, type CreateTokenReply as cA, instanceOfCreateTokenReply as cB, CreateTokenReplyFromJSON as cC, CreateTokenReplyFromJSONTyped as cD, CreateTokenReplyToJSON as cE, CreateTokenReplyToJSONTyped as cF, type DexDTO as cG, instanceOfDexDTO as cH, DexDTOFromJSON as cI, DexDTOFromJSONTyped as cJ, DexDTOToJSON as cK, DexDTOToJSONTyped as cL, type DexPage as cM, instanceOfDexPage as cN, DexPageFromJSON as cO, DexPageFromJSONTyped as cP, DexPageToJSON as cQ, DexPageToJSONTyped as cR, type DexPoolDTO as cS, instanceOfDexPoolDTO as cT, DexPoolDTOFromJSON as cU, DexPoolDTOFromJSONTyped as cV, DexPoolDTOToJSON as cW, DexPoolDTOToJSONTyped as cX, type EstimateGasLimitInput as cY, instanceOfEstimateGasLimitInput as cZ, EstimateGasLimitInputFromJSON as c_, ClaimRedPacketInputChainEnum as ca, instanceOfClaimRedPacketInput as cb, ClaimRedPacketInputFromJSON as cc, ClaimRedPacketInputFromJSONTyped as cd, ClaimRedPacketInputToJSON as ce, ClaimRedPacketInputToJSONTyped as cf, type CreateRedPacketInput as cg, CreateRedPacketInputChainEnum as ch, instanceOfCreateRedPacketInput as ci, CreateRedPacketInputFromJSON as cj, CreateRedPacketInputFromJSONTyped as ck, CreateRedPacketInputToJSON as cl, CreateRedPacketInputToJSONTyped as cm, type CreateRedPacketReply as cn, instanceOfCreateRedPacketReply as co, CreateRedPacketReplyFromJSON as cp, CreateRedPacketReplyFromJSONTyped as cq, CreateRedPacketReplyToJSON as cr, CreateRedPacketReplyToJSONTyped as cs, type CreateTokenInput as ct, CreateTokenInputDexEnum as cu, instanceOfCreateTokenInput as cv, CreateTokenInputFromJSON as cw, CreateTokenInputFromJSONTyped as cx, CreateTokenInputToJSON as cy, CreateTokenInputToJSONTyped as cz, COLLECTION_FORMATS as d, MoonshotCreateTokenReplyFromJSON as d$, EstimateGasLimitInputToJSON as d0, EstimateGasLimitInputToJSONTyped as d1, type EstimateGasLimitResponse as d2, instanceOfEstimateGasLimitResponse as d3, EstimateGasLimitResponseFromJSON as d4, EstimateGasLimitResponseFromJSONTyped as d5, EstimateGasLimitResponseToJSON as d6, EstimateGasLimitResponseToJSONTyped as d7, type FilterCondition as d8, FilterConditionFieldEnum as d9, JobDTOFromJSON as dA, JobDTOFromJSONTyped as dB, JobDTOToJSON as dC, JobDTOToJSONTyped as dD, type JobStreamingDTO as dE, instanceOfJobStreamingDTO as dF, JobStreamingDTOFromJSON as dG, JobStreamingDTOFromJSONTyped as dH, JobStreamingDTOToJSON as dI, JobStreamingDTOToJSONTyped as dJ, type Link as dK, LinkLabelEnum as dL, instanceOfLink as dM, LinkFromJSON as dN, LinkFromJSONTyped as dO, LinkToJSON as dP, LinkToJSONTyped as dQ, type MoonshotCreateTokenInput as dR, MoonshotCreateTokenInputDexEnum as dS, MoonshotCreateTokenInputMigrationDexEnum as dT, instanceOfMoonshotCreateTokenInput as dU, MoonshotCreateTokenInputFromJSON as dV, MoonshotCreateTokenInputFromJSONTyped as dW, MoonshotCreateTokenInputToJSON as dX, MoonshotCreateTokenInputToJSONTyped as dY, type MoonshotCreateTokenReply as dZ, instanceOfMoonshotCreateTokenReply as d_, instanceOfFilterCondition as da, FilterConditionFromJSON as db, FilterConditionFromJSONTyped as dc, FilterConditionToJSON as dd, FilterConditionToJSONTyped as de, type GainersAndLosersDTO as df, instanceOfGainersAndLosersDTO as dg, GainersAndLosersDTOFromJSON as dh, GainersAndLosersDTOFromJSONTyped as di, GainersAndLosersDTOToJSON as dj, GainersAndLosersDTOToJSONTyped as dk, type GainersAndLosersPage as dl, instanceOfGainersAndLosersPage as dm, GainersAndLosersPageFromJSON as dn, GainersAndLosersPageFromJSONTyped as dp, GainersAndLosersPageToJSON as dq, GainersAndLosersPageToJSONTyped as dr, type GasPriceResponse as ds, instanceOfGasPriceResponse as dt, GasPriceResponseFromJSON as du, GasPriceResponseFromJSONTyped as dv, GasPriceResponseToJSON as dw, GasPriceResponseToJSONTyped as dx, type JobDTO as dy, instanceOfJobDTO as dz, type FetchAPI as e, RedPacketSendTxInputToJSON as e$, MoonshotCreateTokenReplyFromJSONTyped as e0, MoonshotCreateTokenReplyToJSON as e1, MoonshotCreateTokenReplyToJSONTyped as e2, type MoonshotSubmitCreateToken200Response as e3, instanceOfMoonshotSubmitCreateToken200Response as e4, MoonshotSubmitCreateToken200ResponseFromJSON as e5, MoonshotSubmitCreateToken200ResponseFromJSONTyped as e6, MoonshotSubmitCreateToken200ResponseToJSON as e7, MoonshotSubmitCreateToken200ResponseToJSONTyped as e8, type MoonshotSubmitCreateTokenInput as e9, instanceOfRedPacketClaimDTO as eA, RedPacketClaimDTOFromJSON as eB, RedPacketClaimDTOFromJSONTyped as eC, RedPacketClaimDTOToJSON as eD, RedPacketClaimDTOToJSONTyped as eE, type RedPacketClaimsPage as eF, instanceOfRedPacketClaimsPage as eG, RedPacketClaimsPageFromJSON as eH, RedPacketClaimsPageFromJSONTyped as eI, RedPacketClaimsPageToJSON as eJ, RedPacketClaimsPageToJSONTyped as eK, type RedPacketDTO as eL, instanceOfRedPacketDTO as eM, RedPacketDTOFromJSON as eN, RedPacketDTOFromJSONTyped as eO, RedPacketDTOToJSON as eP, RedPacketDTOToJSONTyped as eQ, type RedPacketReply as eR, instanceOfRedPacketReply as eS, RedPacketReplyFromJSON as eT, RedPacketReplyFromJSONTyped as eU, RedPacketReplyToJSON as eV, RedPacketReplyToJSONTyped as eW, type RedPacketSendTxInput as eX, instanceOfRedPacketSendTxInput as eY, RedPacketSendTxInputFromJSON as eZ, RedPacketSendTxInputFromJSONTyped as e_, instanceOfMoonshotSubmitCreateTokenInput as ea, MoonshotSubmitCreateTokenInputFromJSON as eb, MoonshotSubmitCreateTokenInputFromJSONTyped as ec, MoonshotSubmitCreateTokenInputToJSON as ed, MoonshotSubmitCreateTokenInputToJSONTyped as ee, type PumpCreateTokenInput as ef, PumpCreateTokenInputDexEnum as eg, PumpCreateTokenInputMigrationDexEnum as eh, instanceOfPumpCreateTokenInput as ei, PumpCreateTokenInputFromJSON as ej, PumpCreateTokenInputFromJSONTyped as ek, PumpCreateTokenInputToJSON as el, PumpCreateTokenInputToJSONTyped as em, type PumpCreateTokenReply as en, instanceOfPumpCreateTokenReply as eo, PumpCreateTokenReplyFromJSON as ep, PumpCreateTokenReplyFromJSONTyped as eq, PumpCreateTokenReplyToJSON as er, PumpCreateTokenReplyToJSONTyped as es, type QuoteResponse as et, instanceOfQuoteResponse as eu, QuoteResponseFromJSON as ev, QuoteResponseFromJSONTyped as ew, QuoteResponseToJSON as ex, QuoteResponseToJSONTyped as ey, type RedPacketClaimDTO as ez, type HTTPHeaders as f, TokenFromJSONTyped as f$, RedPacketSendTxInputToJSONTyped as f0, type RedPacketSendTxResponse as f1, instanceOfRedPacketSendTxResponse as f2, RedPacketSendTxResponseFromJSON as f3, RedPacketSendTxResponseFromJSONTyped as f4, RedPacketSendTxResponseToJSON as f5, RedPacketSendTxResponseToJSONTyped as f6, type RedPacketsPage as f7, instanceOfRedPacketsPage as f8, RedPacketsPageFromJSON as f9, SwapInputFromJSON as fA, SwapInputFromJSONTyped as fB, SwapInputToJSON as fC, SwapInputToJSONTyped as fD, type SwapReply as fE, instanceOfSwapReply as fF, SwapReplyFromJSON as fG, SwapReplyFromJSONTyped as fH, SwapReplyToJSON as fI, SwapReplyToJSONTyped as fJ, type SwapRouteInput as fK, SwapRouteInputDexEnum as fL, SwapRouteInputSwapModeEnum as fM, instanceOfSwapRouteInput as fN, SwapRouteInputFromJSON as fO, SwapRouteInputFromJSONTyped as fP, SwapRouteInputToJSON as fQ, SwapRouteInputToJSONTyped as fR, type SwapRouteResponse as fS, instanceOfSwapRouteResponse as fT, SwapRouteResponseFromJSON as fU, SwapRouteResponseFromJSONTyped as fV, SwapRouteResponseToJSON as fW, SwapRouteResponseToJSONTyped as fX, type Token as fY, instanceOfToken as fZ, TokenFromJSON as f_, RedPacketsPageFromJSONTyped as fa, RedPacketsPageToJSON as fb, RedPacketsPageToJSONTyped as fc, Resolution as fd, instanceOfResolution as fe, ResolutionFromJSON as ff, ResolutionFromJSONTyped as fg, ResolutionToJSON as fh, ResolutionToJSONTyped as fi, type SendTxInput as fj, SendTxInputSubmitTypeEnum as fk, instanceOfSendTxInput as fl, SendTxInputFromJSON as fm, SendTxInputFromJSONTyped as fn, SendTxInputToJSON as fo, SendTxInputToJSONTyped as fp, type SendTxResponse as fq, instanceOfSendTxResponse as fr, SendTxResponseFromJSON as fs, SendTxResponseFromJSONTyped as ft, SendTxResponseToJSON as fu, SendTxResponseToJSONTyped as fv, type SwapInput as fw, SwapInputDexEnum as fx, SwapInputSwapModeEnum as fy, instanceOfSwapInput as fz, type HTTPQuery as g, type TokenPriceDTO as g$, TokenToJSON as g0, TokenToJSONTyped as g1, type TokenCreationDTO as g2, TokenCreationDTOTypeEnum as g3, instanceOfTokenCreationDTO as g4, TokenCreationDTOFromJSON as g5, TokenCreationDTOFromJSONTyped as g6, TokenCreationDTOToJSON as g7, TokenCreationDTOToJSONTyped as g8, type TokenCreationPage as g9, TokenHolderPageFromJSONTyped as gA, TokenHolderPageToJSON as gB, TokenHolderPageToJSONTyped as gC, type TokenListPage as gD, instanceOfTokenListPage as gE, TokenListPageFromJSON as gF, TokenListPageFromJSONTyped as gG, TokenListPageToJSON as gH, TokenListPageToJSONTyped as gI, type TokenMarketData as gJ, instanceOfTokenMarketData as gK, TokenMarketDataFromJSON as gL, TokenMarketDataFromJSONTyped as gM, TokenMarketDataToJSON as gN, TokenMarketDataToJSONTyped as gO, type TokenMetadata as gP, instanceOfTokenMetadata as gQ, TokenMetadataFromJSON as gR, TokenMetadataFromJSONTyped as gS, TokenMetadataToJSON as gT, TokenMetadataToJSONTyped as gU, type TokenPage as gV, instanceOfTokenPage as gW, TokenPageFromJSON as gX, TokenPageFromJSONTyped as gY, TokenPageToJSON as gZ, TokenPageToJSONTyped as g_, instanceOfTokenCreationPage as ga, TokenCreationPageFromJSON as gb, TokenCreationPageFromJSONTyped as gc, TokenCreationPageToJSON as gd, TokenCreationPageToJSONTyped as ge, type TokenCreatorsDTO as gf, instanceOfTokenCreatorsDTO as gg, TokenCreatorsDTOFromJSON as gh, TokenCreatorsDTOFromJSONTyped as gi, TokenCreatorsDTOToJSON as gj, TokenCreatorsDTOToJSONTyped as gk, type TokenExtraDTO as gl, instanceOfTokenExtraDTO as gm, TokenExtraDTOFromJSON as gn, TokenExtraDTOFromJSONTyped as go, TokenExtraDTOToJSON as gp, TokenExtraDTOToJSONTyped as gq, type TokenHolder as gr, instanceOfTokenHolder as gs, TokenHolderFromJSON as gt, TokenHolderFromJSONTyped as gu, TokenHolderToJSON as gv, TokenHolderToJSONTyped as gw, type TokenHolderPage as gx, instanceOfTokenHolderPage as gy, TokenHolderPageFromJSON as gz, type HTTPBody as h, WalletPnlDTOToJSON as h$, instanceOfTokenPriceDTO as h0, TokenPriceDTOFromJSON as h1, TokenPriceDTOFromJSONTyped as h2, TokenPriceDTOToJSON as h3, TokenPriceDTOToJSONTyped as h4, type TokenPricePage as h5, instanceOfTokenPricePage as h6, TokenPricePageFromJSON as h7, TokenPricePageFromJSONTyped as h8, TokenPricePageToJSON as h9, instanceOfTradeDetailDTO as hA, TradeDetailDTOFromJSON as hB, TradeDetailDTOFromJSONTyped as hC, TradeDetailDTOToJSON as hD, TradeDetailDTOToJSONTyped as hE, type TradePage as hF, instanceOfTradePage as hG, TradePageFromJSON as hH, TradePageFromJSONTyped as hI, TradePageToJSON as hJ, TradePageToJSONTyped as hK, type WalletBalanceDetailDTO as hL, instanceOfWalletBalanceDetailDTO as hM, WalletBalanceDetailDTOFromJSON as hN, WalletBalanceDetailDTOFromJSONTyped as hO, WalletBalanceDetailDTOToJSON as hP, WalletBalanceDetailDTOToJSONTyped as hQ, type WalletBalancesDTO as hR, instanceOfWalletBalancesDTO as hS, WalletBalancesDTOFromJSON as hT, WalletBalancesDTOFromJSONTyped as hU, WalletBalancesDTOToJSON as hV, WalletBalancesDTOToJSONTyped as hW, type WalletPnlDTO as hX, instanceOfWalletPnlDTO as hY, WalletPnlDTOFromJSON as hZ, WalletPnlDTOFromJSONTyped as h_, TokenPricePageToJSONTyped as ha, type TokenSocialMediasDTO as hb, instanceOfTokenSocialMediasDTO as hc, TokenSocialMediasDTOFromJSON as hd, TokenSocialMediasDTOFromJSONTyped as he, TokenSocialMediasDTOToJSON as hf, TokenSocialMediasDTOToJSONTyped as hg, type TokenStat as hh, instanceOfTokenStat as hi, TokenStatFromJSON as hj, TokenStatFromJSONTyped as hk, TokenStatToJSON as hl, TokenStatToJSONTyped as hm, type TopTradersDTO as hn, instanceOfTopTradersDTO as ho, TopTradersDTOFromJSON as hp, TopTradersDTOFromJSONTyped as hq, TopTradersDTOToJSON as hr, TopTradersDTOToJSONTyped as hs, type TopTradersPage as ht, instanceOfTopTradersPage as hu, TopTradersPageFromJSON as hv, TopTradersPageFromJSONTyped as hw, TopTradersPageToJSON as hx, TopTradersPageToJSONTyped as hy, type TradeDetailDTO as hz, type HTTPRequestInit as i, WalletPnlDTOToJSONTyped as i0, 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 };