@gala-chain/launchpad-sdk 3.15.4 → 3.16.1
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/CHANGELOG.md +103 -0
- package/dist/LaunchpadSDK.d.ts +3 -0
- package/dist/LaunchpadSDK.d.ts.map +1 -1
- package/dist/config/environments.d.ts +2 -0
- package/dist/config/environments.d.ts.map +1 -1
- package/dist/constants/version.generated.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/services/PriceHistoryService.d.ts +20 -9
- package/dist/services/PriceHistoryService.d.ts.map +1 -1
- package/dist/types/priceHistory.dto.d.ts +47 -0
- package/dist/types/priceHistory.dto.d.ts.map +1 -1
- package/dist/utils/tokenFormatConverter.d.ts +53 -0
- package/dist/utils/tokenFormatConverter.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Price History Service
|
|
3
3
|
*
|
|
4
|
-
* Handles fetching historical price data
|
|
5
|
-
*
|
|
4
|
+
* Handles fetching historical price data for DEX tokens with dual implementation:
|
|
5
|
+
* - Token history (fetchPriceHistory): Uses DEX Backend API
|
|
6
|
+
* - Price sheet (fetchPrices): Uses MySQL database
|
|
6
7
|
*
|
|
7
8
|
* Features:
|
|
8
|
-
* -
|
|
9
|
+
* - DEX Backend API integration for token price history
|
|
10
|
+
* - MySQL connection pooling for price sheet queries
|
|
9
11
|
* - Pagination matching SDK conventions
|
|
10
12
|
* - Date range filtering
|
|
11
13
|
* - Token filtering by TokenClassKey
|
|
@@ -16,6 +18,7 @@
|
|
|
16
18
|
* @since 3.13.0
|
|
17
19
|
*/
|
|
18
20
|
import { FetchPriceHistoryOptions, PriceHistoryResult, FetchPricesOptions, PricesResult } from '../types/priceHistory.dto';
|
|
21
|
+
import { HttpClient } from '../utils/http';
|
|
19
22
|
/**
|
|
20
23
|
* Price History Service Class
|
|
21
24
|
*
|
|
@@ -48,13 +51,15 @@ export declare class PriceHistoryService {
|
|
|
48
51
|
private readonly connectionString;
|
|
49
52
|
private readonly maxConnections;
|
|
50
53
|
private readonly queryTimeout;
|
|
54
|
+
private readonly httpClient;
|
|
51
55
|
/**
|
|
52
56
|
* Create a new PriceHistoryService instance
|
|
53
57
|
* @param connectionString MySQL connection string (format: mysql://user:password@host:port/database)
|
|
58
|
+
* @param httpClient HTTP client for DEX Backend API (for fetchPriceHistory)
|
|
54
59
|
* @param debugMode Enable debug logging
|
|
55
60
|
* @param config Optional configuration for connection pooling and timeouts
|
|
56
61
|
*/
|
|
57
|
-
constructor(connectionString: string, debugMode?: boolean, config?: PriceHistoryServiceConfig);
|
|
62
|
+
constructor(connectionString: string, httpClient: HttpClient, debugMode?: boolean, config?: PriceHistoryServiceConfig);
|
|
58
63
|
/**
|
|
59
64
|
* Build connection string with pool configuration options as URL parameters
|
|
60
65
|
* mysql2.createPool() only accepts a single parameter (the connection string)
|
|
@@ -70,10 +75,12 @@ export declare class PriceHistoryService {
|
|
|
70
75
|
/**
|
|
71
76
|
* Fetch price history for a token with pagination
|
|
72
77
|
*
|
|
78
|
+
* Fetches historical price snapshots from DEX Backend API.
|
|
79
|
+
* Returns paginated results matching SDK conventions.
|
|
80
|
+
*
|
|
73
81
|
* @param options Fetch options including flexible token ID, date range, and pagination
|
|
74
82
|
* @returns Promise<PriceHistoryResult> Price snapshots with pagination metadata
|
|
75
|
-
* @throws
|
|
76
|
-
* @throws NetworkError if database query fails
|
|
83
|
+
* @throws NetworkError if API request fails
|
|
77
84
|
* @throws ValidationError if parameters are invalid
|
|
78
85
|
*
|
|
79
86
|
* @example
|
|
@@ -101,16 +108,20 @@ export declare class PriceHistoryService {
|
|
|
101
108
|
* ```
|
|
102
109
|
*/
|
|
103
110
|
fetchPriceHistory(options: FetchPriceHistoryOptions): Promise<PriceHistoryResult>;
|
|
111
|
+
/**
|
|
112
|
+
* Transform DEX Backend API response to SDK PriceHistoryResult format
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
private transformApiResponseToPriceHistory;
|
|
104
116
|
/**
|
|
105
117
|
* Fetch all price history for a token with automatic pagination
|
|
106
118
|
*
|
|
107
|
-
* Convenience method that automatically iterates through all pages and combines results.
|
|
119
|
+
* Convenience method that automatically iterates through all pages from DEX Backend API and combines results.
|
|
108
120
|
* Returns all available price snapshots matching the filter criteria.
|
|
109
121
|
*
|
|
110
122
|
* @param options Fetch options including token ID, date range, and sort order (no pagination parameters)
|
|
111
123
|
* @returns Promise<PriceHistoryResult> All price snapshots with total count, combined from all pages
|
|
112
|
-
* @throws
|
|
113
|
-
* @throws NetworkError if database query fails
|
|
124
|
+
* @throws NetworkError if API request fails
|
|
114
125
|
* @throws ValidationError if parameters are invalid
|
|
115
126
|
*
|
|
116
127
|
* @example
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PriceHistoryService.d.ts","sourceRoot":"","sources":["../../src/services/PriceHistoryService.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"PriceHistoryService.d.ts","sourceRoot":"","sources":["../../src/services/PriceHistoryService.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAIH,OAAO,EACL,wBAAwB,EACxB,kBAAkB,EAElB,kBAAkB,EAClB,YAAY,EAEb,MAAM,2BAA2B,CAAC;AAEnC,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAO3C;;;;;;;;;;;;;;;;GAgBG;AACH;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,2DAA2D;IAC3D,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,oEAAoE;IACpE,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;IAChC,OAAO,CAAC,IAAI,CAA+B;IAC3C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAS;IAC1C,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAS;IACxC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;IACtC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IAExC;;;;;;OAMG;gBAED,gBAAgB,EAAE,MAAM,EACxB,UAAU,EAAE,UAAU,EACtB,SAAS,GAAE,OAAe,EAC1B,MAAM,CAAC,EAAE,yBAAyB;IAwBpC;;;;;OAKG;IACH,OAAO,CAAC,gCAAgC;IAexC;;;OAGG;YACW,gBAAgB;IAiD9B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkCG;IACG,iBAAiB,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IA+DvF;;;OAGG;IACH,OAAO,CAAC,kCAAkC;IAuB1C;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACG,oBAAoB,CACxB,OAAO,EAAE,IAAI,CAAC,wBAAwB,EAAE,MAAM,GAAG,OAAO,CAAC,GACxD,OAAO,CAAC,kBAAkB,CAAC;IAoC9B;;;;;;;;;;;;;;;;;;;OAmBG;IACG,WAAW,CACf,OAAO,CAAC,EAAE,kBAAkB,GAC3B,OAAO,CAAC,YAAY,CAAC;IA2FxB;;;;;;;;;;;;;;;;OAgBG;IACG,cAAc,IAAI,OAAO,CAAC,YAAY,CAAC;IAmC7C;;;;;;;;;OASG;YACW,eAAe;IAO7B;;;OAGG;YACW,YAAY;IAgD1B;;;;OAIG;IACH,OAAO,CAAC,qBAAqB;IAsB7B;;;OAGG;IACH,OAAO,CAAC,eAAe;IA+BvB;;;;;;;;;OASG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;CAYlC"}
|
|
@@ -157,4 +157,51 @@ export interface PricesResult {
|
|
|
157
157
|
/** Whether there are pages before this one */
|
|
158
158
|
hasPrevious: boolean;
|
|
159
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* DEX Backend API response format for price oracle /price-oracle/fetch-price endpoint
|
|
162
|
+
*
|
|
163
|
+
* @internal
|
|
164
|
+
* @since 3.16.0
|
|
165
|
+
*/
|
|
166
|
+
export interface DexPriceOracleResponse {
|
|
167
|
+
/** HTTP status code */
|
|
168
|
+
status: number;
|
|
169
|
+
/** Response message */
|
|
170
|
+
message: string;
|
|
171
|
+
/** Error flag */
|
|
172
|
+
error: boolean;
|
|
173
|
+
/** Response data containing price snapshots and pagination metadata */
|
|
174
|
+
data: {
|
|
175
|
+
/** Array of price snapshots */
|
|
176
|
+
data: Array<{
|
|
177
|
+
/** Unique identifier for the snapshot record */
|
|
178
|
+
id: number;
|
|
179
|
+
/** Token collection identifier */
|
|
180
|
+
collection: string;
|
|
181
|
+
/** Token category identifier */
|
|
182
|
+
category: string;
|
|
183
|
+
/** Token type identifier */
|
|
184
|
+
type: string;
|
|
185
|
+
/** Additional key for token identification */
|
|
186
|
+
additionalKey: string;
|
|
187
|
+
/** Token price as decimal string (USD) */
|
|
188
|
+
price: string;
|
|
189
|
+
/** Snapshot creation timestamp (ISO 8601) */
|
|
190
|
+
createdAt: string;
|
|
191
|
+
/** Snapshot update timestamp (ISO 8601) */
|
|
192
|
+
updatedAt: string;
|
|
193
|
+
}>;
|
|
194
|
+
/** Pagination metadata */
|
|
195
|
+
meta: {
|
|
196
|
+
/** Total number of items matching the filter */
|
|
197
|
+
totalItems: number;
|
|
198
|
+
/** Current page number (1-based) */
|
|
199
|
+
currentPage: number;
|
|
200
|
+
/** Number of items per page */
|
|
201
|
+
pageSize: number;
|
|
202
|
+
/** Total number of available pages */
|
|
203
|
+
totalPages: number;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
}
|
|
160
207
|
//# sourceMappingURL=priceHistory.dto.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"priceHistory.dto.d.ts","sourceRoot":"","sources":["../../src/types/priceHistory.dto.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,MAAM,CAAC;AAE5C;;;;;;;;;GASG;AACH,MAAM,WAAW,wBAAwB;IACvC,qFAAqF;IACrF,OAAO,EAAE,OAAO,UAAU,EAAE,OAAO,CAAC;IACpC,mFAAmF;IACnF,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,yEAAyE;IACzE,EAAE,CAAC,EAAE,IAAI,CAAC;IACV,8DAA8D;IAC9D,SAAS,CAAC,EAAE,cAAc,CAAC;IAC3B,0DAA0D;IAC1D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yDAAyD;IACzD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,aAAa;IAC5B,sEAAsE;IACtE,KAAK,EAAE,MAAM,CAAC;IACd,iEAAiE;IACjE,SAAS,EAAE,IAAI,CAAC;IAChB,kCAAkC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,gCAAgC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,4BAA4B;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,8CAA8C;IAC9C,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAM,WAAW,kBAAkB;IACjC,wDAAwD;IACxD,SAAS,EAAE,aAAa,EAAE,CAAC;IAC3B,oCAAoC;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,+BAA+B;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,oDAAoD;IACpD,KAAK,EAAE,MAAM,CAAC;IACd,sCAAsC;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,kDAAkD;IAClD,OAAO,EAAE,OAAO,CAAC;IACjB,8CAA8C;IAC9C,WAAW,EAAE,OAAO,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC,0DAA0D;IAC1D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yDAAyD;IACzD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,mDAAmD;IACnD,UAAU,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;CAC7B;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,WAAW,YAAY;IAC3B,6DAA6D;IAC7D,SAAS,EAAE,aAAa,EAAE,CAAC;IAC3B,oCAAoC;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,+BAA+B;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,sCAAsC;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,kDAAkD;IAClD,OAAO,EAAE,OAAO,CAAC;IACjB,8CAA8C;IAC9C,WAAW,EAAE,OAAO,CAAC;CACtB"}
|
|
1
|
+
{"version":3,"file":"priceHistory.dto.d.ts","sourceRoot":"","sources":["../../src/types/priceHistory.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Token Format Conversion Utilities
|
|
3
|
+
*
|
|
4
|
+
* Converts between pipe-delimited and dollar-delimited token ID formats.
|
|
5
|
+
* Used for translating between SDK format (pipe) and DEX Backend API format (dollar).
|
|
6
|
+
*
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Convert pipe-delimited token ID to dollar-delimited format for API
|
|
11
|
+
*
|
|
12
|
+
* @param pipeToken Pipe-delimited format: "Token|Unit|GUSDC|eth:0x..."
|
|
13
|
+
* @returns Dollar-delimited format: "Token$Unit$GUSDC$eth:0x..."
|
|
14
|
+
* @throws Error if token is null or empty
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```typescript
|
|
18
|
+
* pipeFormatToDollarFormat("Token|Unit|GUSDC|eth:0x123")
|
|
19
|
+
* // Returns: "Token$Unit$GUSDC$eth:0x123"
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function pipeFormatToDollarFormat(pipeToken: string): string;
|
|
23
|
+
/**
|
|
24
|
+
* Convert dollar-delimited API response to pipe-delimited format
|
|
25
|
+
*
|
|
26
|
+
* @param dollarToken Dollar-delimited format: "Token$Unit$GUSDC$eth:0x..."
|
|
27
|
+
* @returns Pipe-delimited format: "Token|Unit|GUSDC|eth:0x..."
|
|
28
|
+
* @throws Error if token is null or empty
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* ```typescript
|
|
32
|
+
* dollarFormatToPipeFormat("Token$Unit$GUSDC$eth:0x123")
|
|
33
|
+
* // Returns: "Token|Unit|GUSDC|eth:0x123"
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
export declare function dollarFormatToPipeFormat(dollarToken: string): string;
|
|
37
|
+
/**
|
|
38
|
+
* Convert sort order from SDK format (uppercase) to API format (lowercase)
|
|
39
|
+
*
|
|
40
|
+
* @param sortOrder SDK sort order: 'ASC' | 'DESC'
|
|
41
|
+
* @returns API sort order: 'asc' | 'desc' | undefined
|
|
42
|
+
*
|
|
43
|
+
* @example
|
|
44
|
+
* ```typescript
|
|
45
|
+
* convertSortOrderToApi('ASC')
|
|
46
|
+
* // Returns: 'asc'
|
|
47
|
+
*
|
|
48
|
+
* convertSortOrderToApi(undefined)
|
|
49
|
+
* // Returns: undefined
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
export declare function convertSortOrderToApi(sortOrder?: 'ASC' | 'DESC'): 'asc' | 'desc' | undefined;
|
|
53
|
+
//# sourceMappingURL=tokenFormatConverter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokenFormatConverter.d.ts","sourceRoot":"","sources":["../../src/utils/tokenFormatConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH;;;;;;;;;;;;GAYG;AACH,wBAAgB,wBAAwB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAMlE;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,wBAAwB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAMpE;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,qBAAqB,CAAC,SAAS,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,MAAM,GAAG,SAAS,CAM5F"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.1",
|
|
4
4
|
"description": "TypeScript SDK for Gala Launchpad Backend API - Production-ready DeFi token launchpad integration with wallet-based authentication, GalaChain trading, and comprehensive user operations. 100% tested (22/22 endpoints working).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|