@riocrypto/common-server 1.0.830 → 1.0.831

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.
@@ -110,11 +110,13 @@ class FireblocksClient {
110
110
  }
111
111
  getTransactions(crypto, nextPage) {
112
112
  return __awaiter(this, void 0, void 0, function* () {
113
- let transactions = yield this.fireblocks.getTransactionsWithPageInfo({
114
- assets: crypto,
115
- limit: 100,
116
- }, nextPage);
117
- return transactions;
113
+ let transactionData = nextPage
114
+ ? yield this.fireblocks.getTransactionsWithPageInfo(undefined, nextPage)
115
+ : yield this.fireblocks.getTransactionsWithPageInfo({
116
+ assets: crypto,
117
+ limit: 100,
118
+ });
119
+ return transactionData;
118
120
  });
119
121
  }
120
122
  getDepositAddress(crypto) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.830",
3
+ "version": "1.0.831",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",