@fleet-sdk/blockchain-providers 0.8.5 → 0.9.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 +17 -0
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/ergo-graphql/ergoGraphQLProvider.ts +12 -19
- package/src/types/blockchainProvider.ts +8 -15
- package/src/utils/graphql.test-d.ts +3 -5
- package/src/utils/graphql.ts +7 -15
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# @fleet-sdk/blockchain-providers
|
2
2
|
|
3
|
+
## 0.9.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [59018ee]
|
8
|
+
- @fleet-sdk/common@0.9.1
|
9
|
+
- @fleet-sdk/core@0.9.1
|
10
|
+
|
11
|
+
## 0.9.0
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- Updated dependencies [eeb2f66]
|
16
|
+
- Updated dependencies [eeb2f66]
|
17
|
+
- Updated dependencies [a33850a]
|
18
|
+
- @fleet-sdk/core@0.9.0
|
19
|
+
|
3
20
|
## 0.8.5
|
4
21
|
|
5
22
|
### Patch Changes
|
package/dist/index.js
CHANGED
@@ -796,9 +796,7 @@ var ErgoGraphQLProvider = class {
|
|
796
796
|
while (keepFetching) {
|
797
797
|
const response = await this.#getConfirmedTransactions(query2);
|
798
798
|
if (common.some(response.data?.transactions)) {
|
799
|
-
yield response.data.transactions.map(
|
800
|
-
(t) => mapConfirmedTransaction(t, this.#biMapper)
|
801
|
-
);
|
799
|
+
yield response.data.transactions.map((t) => mapConfirmedTransaction(t, this.#biMapper));
|
802
800
|
}
|
803
801
|
keepFetching = response.data?.transactions?.length === pageSize;
|
804
802
|
if (keepFetching) query2.skip += pageSize;
|