@gala-chain/launchpad-sdk 3.15.1 → 3.15.3
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
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.15.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix: Initialize connection pool in fetchPrices method
|
|
8
|
+
|
|
9
|
+
fetchPrices was using this.pool! without calling ensureConnection first, causing a "Cannot read
|
|
10
|
+
properties of null" error. Now properly initializes the connection pool before querying.
|
|
11
|
+
|
|
12
|
+
## 3.15.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Fix: Correct query result destructuring in fetchPrices and fetchAllPrices methods
|
|
17
|
+
|
|
18
|
+
The fetchPrices method was incorrectly destructuring the query results, causing a "map is not a
|
|
19
|
+
function" error. Changed from destructuring the first element to properly handling the array
|
|
20
|
+
returned by executeQuery.
|
|
21
|
+
|
|
3
22
|
## 3.15.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|