@pioneer-platform/utxo-network 8.12.14 → 8.12.16

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,27 @@
1
1
  # @pioneer-platform/utxo-network
2
2
 
3
+ ## 8.12.16
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: chore: chore: chore: fix: move @types/pdfkit to dependencies for Docker --production build
8
+ - Updated dependencies
9
+ - @pioneer-platform/blockbook@8.12.17
10
+ - @pioneer-platform/unchained@8.12.4
11
+ - @pioneer-platform/pioneer-caip@9.10.9
12
+ - @pioneer-platform/nodes@8.11.18
13
+
14
+ ## 8.12.15
15
+
16
+ ### Patch Changes
17
+
18
+ - chore: chore: chore: fix: move @types/pdfkit to dependencies for Docker --production build
19
+ - Updated dependencies
20
+ - @pioneer-platform/blockbook@8.12.16
21
+ - @pioneer-platform/unchained@8.12.3
22
+ - @pioneer-platform/pioneer-caip@9.10.8
23
+ - @pioneer-platform/nodes@8.11.17
24
+
3
25
  ## 8.12.14
4
26
 
5
27
  ### Patch Changes
package/lib/index.js CHANGED
@@ -325,6 +325,7 @@ let get_fees_with_rates = async function (coin, memo) {
325
325
  'ltc': 200, // LTC reasonable cap
326
326
  'bch': 10, // BCH typically has very low fees
327
327
  'dash': 10, // DASH typically has low fees
328
+ 'zec': 10, // ZEC typically has low fees similar to BCH
328
329
  };
329
330
  if (feeCapsBySatPerByte[coinLower] && txFee > feeCapsBySatPerByte[coinLower]) {
330
331
  console.warn(`${tag} Fee rate ${txFee} sat/byte for ${coin} exceeds reasonable cap of ${feeCapsBySatPerByte[coinLower]} sat/byte. Capping to reasonable value.`);
@@ -374,6 +375,7 @@ let get_fee = async function (coin) {
374
375
  'BCH': { fastest: 2, fast: 1, average: 1 }, // BCH has very low fees
375
376
  'DASH': { fastest: 2, fast: 1, average: 1 }, // DASH has very low fees
376
377
  'DGB': { fastest: 100, fast: 80, average: 75 }, // DGB requires min 22,600 sats total (~75 sat/byte for 300 byte tx)
378
+ 'ZEC': { fastest: 2, fast: 1, average: 1 }, // ZEC has very low fees similar to BCH
377
379
  };
378
380
  const fetchEstimate = async (blocks) => {
379
381
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/utxo-network",
3
- "version": "8.12.14",
3
+ "version": "8.12.16",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
@@ -11,11 +11,11 @@
11
11
  "build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
12
12
  },
13
13
  "dependencies": {
14
- "@pioneer-platform/blockbook": "^8.12.15",
14
+ "@pioneer-platform/blockbook": "^8.12.17",
15
15
  "@pioneer-platform/loggerdog": "^8.11.0",
16
- "@pioneer-platform/nodes": "^8.11.16",
17
- "@pioneer-platform/pioneer-caip": "^9.10.7",
18
- "@pioneer-platform/unchained": "^8.12.2",
16
+ "@pioneer-platform/nodes": "^8.11.18",
17
+ "@pioneer-platform/pioneer-caip": "^9.10.9",
18
+ "@pioneer-platform/unchained": "^8.12.4",
19
19
  "@types/request-promise-native": "^1.0.17",
20
20
  "@xchainjs/xchain-client": "^0.7.0",
21
21
  "@xchainjs/xchain-util": "^0.2.6",