edge-core-js 0.19.43 → 0.19.44
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 +5 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +43 -3
- package/lib/core/account/account-reducer.js +16 -1
- package/lib/core/currency/wallet/currency-wallet-pixie.js +2 -1
- package/lib/flow/types.js +4 -0
- package/lib/node/index.js +43 -4
- package/lib/types/types.js +4 -0
- package/package.json +1 -1
- package/src/types/types.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v0.19.44 (2023-02-28)
|
|
4
|
+
|
|
5
|
+
- added: `EdgeAccount.currencyEngineErrors` - these are set for wallets that fail to load.
|
|
6
|
+
- added: `EdgeAccount.waitForAllWallets()` - resolves once all wallets have either loaded or failed (but balances may still be syncing).
|
|
7
|
+
|
|
3
8
|
## v0.19.43 (2023-02-23)
|
|
4
9
|
|
|
5
10
|
- added: Provide login request images for both dark & light mode apps as `EdgeLoginRequest.displayImageDarkUrl` and `EdgeLoginRequest.displayImageDarkUrl`.
|