@pioneer-platform/pioneer-sdk 8.15.17 → 8.15.18

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/dist/index.cjs CHANGED
@@ -3503,7 +3503,7 @@ function normalizeFeeData(feeData, networkType, networkName, networkId) {
3503
3503
  "bip122:000000000000000000651ef99cb9fcbe": 50,
3504
3504
  "bip122:000007d91d1254d60e2dd1ae58038307": 50,
3505
3505
  "bip122:000000000019d6689c085ae165831e93": 5000,
3506
- "bip122:4da631f2ac1bed857bd968c67c913978": 50
3506
+ "bip122:4da631f2ac1bed857bd968c67c913978": 150
3507
3507
  };
3508
3508
  const matchedNetworkId = networkId && sanityLimits[networkId] ? networkId : Object.keys(sanityLimits).find((id) => networkName.toLowerCase().includes(id.split(":")[1]?.substring(0, 8)));
3509
3509
  if (matchedNetworkId && sanityLimits[matchedNetworkId]) {
package/dist/index.es.js CHANGED
@@ -3687,7 +3687,7 @@ function normalizeFeeData(feeData, networkType, networkName, networkId) {
3687
3687
  "bip122:000000000000000000651ef99cb9fcbe": 50,
3688
3688
  "bip122:000007d91d1254d60e2dd1ae58038307": 50,
3689
3689
  "bip122:000000000019d6689c085ae165831e93": 5000,
3690
- "bip122:4da631f2ac1bed857bd968c67c913978": 50
3690
+ "bip122:4da631f2ac1bed857bd968c67c913978": 150
3691
3691
  };
3692
3692
  const matchedNetworkId = networkId && sanityLimits[networkId] ? networkId : Object.keys(sanityLimits).find((id) => networkName.toLowerCase().includes(id.split(":")[1]?.substring(0, 8)));
3693
3693
  if (matchedNetworkId && sanityLimits[matchedNetworkId]) {
package/dist/index.js CHANGED
@@ -3687,7 +3687,7 @@ function normalizeFeeData(feeData, networkType, networkName, networkId) {
3687
3687
  "bip122:000000000000000000651ef99cb9fcbe": 50,
3688
3688
  "bip122:000007d91d1254d60e2dd1ae58038307": 50,
3689
3689
  "bip122:000000000019d6689c085ae165831e93": 5000,
3690
- "bip122:4da631f2ac1bed857bd968c67c913978": 50
3690
+ "bip122:4da631f2ac1bed857bd968c67c913978": 150
3691
3691
  };
3692
3692
  const matchedNetworkId = networkId && sanityLimits[networkId] ? networkId : Object.keys(sanityLimits).find((id) => networkName.toLowerCase().includes(id.split(":")[1]?.substring(0, 8)));
3693
3693
  if (matchedNetworkId && sanityLimits[matchedNetworkId]) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "highlander",
3
3
  "name": "@pioneer-platform/pioneer-sdk",
4
- "version": "8.15.17",
4
+ "version": "8.15.18",
5
5
  "dependencies": {
6
6
  "@keepkey/keepkey-sdk": "^0.2.62",
7
7
  "@pioneer-platform/pioneer-caip": "^9.10.2",
package/src/fees/index.ts CHANGED
@@ -294,7 +294,7 @@ function normalizeFeeData(
294
294
  'bip122:000000000000000000651ef99cb9fcbe': 50, // BCH max 50 sat/byte (low fee chain)
295
295
  'bip122:000007d91d1254d60e2dd1ae58038307': 50, // DASH max 50 sat/byte (low fee chain)
296
296
  'bip122:000000000019d6689c085ae165831e93': 5000, // BTC max 5000 sat/byte (can spike during congestion)
297
- 'bip122:4da631f2ac1bed857bd968c67c913978': 50, // DGB max 50 sat/byte (low fee chain)
297
+ 'bip122:4da631f2ac1bed857bd968c67c913978': 150, // DGB max 150 sat/byte (min relay fee 22,600 sats)
298
298
  };
299
299
 
300
300
  const matchedNetworkId = networkId && sanityLimits[networkId] ? networkId :