edge-core-js 0.19.42 → 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 +12 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/android/src/main/assets/edge-core-js/edge-core.js.map +1 -1
- package/lib/core/account/account-api.js +43 -3
- package/lib/core/account/account-cleaners.js +1 -0
- package/lib/core/account/account-files.js +20 -5
- package/lib/core/account/account-reducer.js +16 -1
- package/lib/core/account/lobby-api.js +61 -22
- package/lib/core/currency/wallet/currency-wallet-files.js +2 -2
- package/lib/core/currency/wallet/currency-wallet-pixie.js +2 -1
- package/lib/core/fake/fake-world.js +17 -2
- package/lib/core/login/keys.js +13 -1
- package/lib/core/root.js +1 -19
- package/lib/flow/types.js +21 -2
- package/lib/io/react-native/react-native-worker.js +3 -0
- package/lib/node/index.js +132 -57
- package/lib/types/types.js +19 -0
- package/lib/util/validateServer.js +18 -0
- package/package.json +1 -1
- package/src/types/types.ts +21 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
8
|
+
## v0.19.43 (2023-02-23)
|
|
9
|
+
|
|
10
|
+
- added: Provide login request images for both dark & light mode apps as `EdgeLoginRequest.displayImageDarkUrl` and `EdgeLoginRequest.displayImageDarkUrl`.
|
|
11
|
+
- added: `EdgeFakeContextOptions.allowNetworkAccess`, which allows non-Edge traffic to pass through to the real network.
|
|
12
|
+
- added: `EdgeWalletInfoFull.migratedFromWalletId`, which can be saved when sweeping funds from an old wallet to a new wallet.
|
|
13
|
+
- deprecated: `EdgeLoginRequest.displayImageUrl`. Use the new dark or light mode images instead.
|
|
14
|
+
|
|
3
15
|
## v0.19.42 (2023-02-02)
|
|
4
16
|
|
|
5
17
|
- added: Support for token activation
|