edge-currency-monero 2.0.1 → 2.1.0

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.1.0 (2026-01-15)
6
+
7
+ - changed: Reduce "high" fee level mapping from priority 4 to 3.
8
+
5
9
  ## 2.0.1 (2025-11-17)
6
10
 
7
11
  - fixed: Handle REST responses from monero-lws.
@@ -802,7 +802,7 @@ const PRIMARY_CURRENCY_TOKEN_ID = null
802
802
 
803
803
  function translateFee(fee) {
804
804
  if (fee === 'low') return 1
805
- if (fee === 'high') return 4
805
+ if (fee === 'high') return 3
806
806
  return 2
807
807
  }
808
808
 
@@ -3254,7 +3254,7 @@ var MoneroEngine = /*#__PURE__*/function () {
3254
3254
 
3255
3255
  function translateFee(fee) {
3256
3256
  if (fee === 'low') return 1;
3257
- if (fee === 'high') return 4;
3257
+ if (fee === 'high') return 3;
3258
3258
  return 2;
3259
3259
  }
3260
3260
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edge-currency-monero",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "Edge Monero currency plugin",
5
5
  "homepage": "https://edge.app",
6
6
  "repository": {