edge-core-js 2.27.4 → 2.29.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 +12 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +17 -3
- package/lib/core/account/plugin-api.js +10 -0
- package/lib/core/context/context-api.js +6 -5
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +16 -3
- package/lib/core/login/login-reducer.js +7 -2
- package/lib/core/login/login.js +0 -41
- package/lib/core/login/pin2.js +57 -20
- package/lib/flow/types.js +27 -2
- package/lib/node/index.js +84 -54
- package/lib/types/types.js +25 -0
- package/package.json +1 -1
- package/src/types/types.ts +27 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.29.0 (2025-05-26)
|
|
6
|
+
|
|
7
|
+
- added: Add `getTokenDetails` to currency tools
|
|
8
|
+
|
|
9
|
+
## 2.28.0 (2025-05-22)
|
|
10
|
+
|
|
11
|
+
- added: Added `forDuressAccount` option to `checkPin`.
|
|
12
|
+
- changed: Extended `onSubscribeAddresses` callback to optionally include checkpoints.
|
|
13
|
+
- fixed: Disabling pin-login while in duress mode disables pin-login for the main login.
|
|
14
|
+
- fixed: `loginWithPassword` bug disabled duress mode when doing an online login.
|
|
15
|
+
- fixed: Properly fake duress mode settings while in duress mode.
|
|
16
|
+
|
|
5
17
|
## 2.27.4 (2025-05-13)
|
|
6
18
|
|
|
7
19
|
- fixed: Disable duress pin mistakenly disables pin-login for entire account.
|