@xchainjs/xchain-utxo 2.0.5 → 2.0.6

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/lib/client.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  import { BaseXChainClient, ExplorerProviders, FeeEstimateOptions, FeeRate, FeeRates, Fees, FeesWithRates, Protocol, TxHash, TxHistoryParams } from '@xchainjs/xchain-client';
4
2
  import { Address, Asset, Chain } from '@xchainjs/xchain-util';
5
3
  import { UtxoOnlineDataProviders } from '@xchainjs/xchain-utxo-providers';
package/lib/index.esm.js CHANGED
@@ -132,8 +132,8 @@ class Client extends BaseXChainClient {
132
132
  * @param {boolean} confirmedOnly Flag to scan only confirmed UTXOs.
133
133
  * @returns {UTXO[]} The UTXOs found.
134
134
  */
135
- scanUTXOs(address, confirmedOnly = true) {
136
- return __awaiter(this, void 0, void 0, function* () {
135
+ scanUTXOs(address_1) {
136
+ return __awaiter(this, arguments, void 0, function* (address, confirmedOnly = true) {
137
137
  return this.roundRobinGetUnspentTxs(address, confirmedOnly);
138
138
  });
139
139
  }
package/lib/index.js CHANGED
@@ -134,8 +134,8 @@ class Client extends xchainClient.BaseXChainClient {
134
134
  * @param {boolean} confirmedOnly Flag to scan only confirmed UTXOs.
135
135
  * @returns {UTXO[]} The UTXOs found.
136
136
  */
137
- scanUTXOs(address, confirmedOnly = true) {
138
- return __awaiter(this, void 0, void 0, function* () {
137
+ scanUTXOs(address_1) {
138
+ return __awaiter(this, arguments, void 0, function* (address, confirmedOnly = true) {
139
139
  return this.roundRobinGetUnspentTxs(address, confirmedOnly);
140
140
  });
141
141
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xchainjs/xchain-utxo",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "Genereic UTXO client for XChainJS",
5
5
  "keywords": [
6
6
  "XChain",
@@ -35,8 +35,8 @@
35
35
  "directory": "release/package"
36
36
  },
37
37
  "dependencies": {
38
- "@xchainjs/xchain-client": "2.0.5",
39
- "@xchainjs/xchain-util": "2.0.3",
40
- "@xchainjs/xchain-utxo-providers": "2.0.5"
38
+ "@xchainjs/xchain-client": "2.0.6",
39
+ "@xchainjs/xchain-util": "2.0.4",
40
+ "@xchainjs/xchain-utxo-providers": "2.0.6"
41
41
  }
42
42
  }