edge-core-js 2.32.0 → 2.33.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 +9 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/currency/currency-pixie.js +9 -9
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +11 -14
- package/lib/core/currency/wallet/currency-wallet-files.js +30 -0
- package/lib/core/currency/wallet/currency-wallet-pixie.js +11 -8
- package/lib/core/currency/wallet/currency-wallet-reducer.js +14 -0
- package/lib/flow/types.js +1 -0
- package/lib/node/index.js +50 -20
- package/lib/types/types.js +1 -0
- package/package.json +2 -2
- package/src/types/types.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.33.0 (2025-07-21)
|
|
6
|
+
|
|
7
|
+
- added: Added `usesChangeServer` flag to `EdgeCurrencyInfo` to optimize syncing for engines which subscribe to the change-server.
|
|
8
|
+
- fixed: Race condition between engine change-server subscription and periodic sync.
|
|
9
|
+
|
|
10
|
+
## 2.32.1 (2025-07-18)
|
|
11
|
+
|
|
12
|
+
- fixed: Don't write the enabled tokens file until after we've read it from disk.
|
|
13
|
+
|
|
5
14
|
## 2.32.0 (2025-06-27)
|
|
6
15
|
|
|
7
16
|
- changed: Fake PIN disable while in duress mode.
|