@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 +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/fees/index.ts +1 -1
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":
|
|
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":
|
|
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":
|
|
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
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':
|
|
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 :
|